:root {
  --ink: #20201d;
  --muted: #69675f;
  --paper: #faf7ef;
  --surface: #ffffff;
  --line: #ded6c7;
  --accent: #8b2f20;
  --accent-dark: #561d16;
  --green: #394d3b;
  --shadow: 0 18px 50px rgba(32, 32, 29, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", Arial, sans-serif;
  background: var(--paper);
  line-height: 1.75;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(250, 247, 239, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  color: var(--accent-dark);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.site-nav a {
  min-width: 72px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--surface);
  background: var(--green);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 72px);
  padding: clamp(28px, 6vw, 72px);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(32, 32, 29, 0.78), rgba(32, 32, 29, 0.38) 52%, rgba(32, 32, 29, 0.1));
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  align-self: center;
  width: min(680px, 100%);
  color: var(--surface);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.hero .eyebrow {
  color: #f4d6b3;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.25;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 8vw, 86px);
}

h2 {
  font-size: clamp(28px, 5vw, 48px);
}

h3 {
  font-size: 20px;
}

.hero-copy p:not(.eyebrow),
.page-title p:not(.eyebrow),
.split-section p:not(.eyebrow) {
  max-width: 52rem;
  margin: 18px 0 0;
  font-size: clamp(16px, 2vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 132px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-align: center;
}

.button.primary {
  color: var(--surface);
  background: var(--accent);
}

.button.secondary {
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.72);
}

.section,
.page-title,
.menu-layout,
.access-layout,
.split-section {
  width: min(1120px, calc(100% - 36px));
  margin-inline: auto;
}

.section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.section-heading {
  margin-bottom: 28px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature,
.menu-item,
.info-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.feature {
  padding: 28px;
}

.feature p,
.menu-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: 0 0 clamp(64px, 9vw, 110px);
}

.split-section img,
.menu-highlight img,
.map-panel img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.page-title {
  padding: clamp(44px, 8vw, 82px) 0 clamp(28px, 5vw, 48px);
}

.menu-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  padding-bottom: clamp(64px, 9vw, 110px);
}

.menu-highlight {
  display: grid;
  gap: 20px;
  align-content: start;
}

.menu-highlight > div {
  padding-right: 16px;
}

.menu-list {
  display: grid;
  gap: 14px;
}

.menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
}

.menu-item span {
  flex: 0 0 auto;
  color: var(--accent);
  font-weight: 800;
}

.access-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding-bottom: clamp(64px, 9vw, 110px);
}

.map-panel {
  min-height: 430px;
}

.info-panel {
  padding: clamp(24px, 4vw, 38px);
}

.shop-info {
  display: grid;
  gap: 0;
  margin: 24px 0;
}

.shop-info div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.shop-info dt {
  color: var(--green);
  font-weight: 800;
}

.shop-info dd {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding: 26px clamp(18px, 4vw, 56px);
  color: var(--surface);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .site-nav {
    width: 100%;
    justify-content: stretch;
  }

  .site-nav a {
    flex: 1 1 88px;
  }

  .hero {
    min-height: 620px;
    padding: 36px 18px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(32, 32, 29, 0.36), rgba(32, 32, 29, 0.82));
  }

  .feature-grid,
  .split-section,
  .menu-layout,
  .access-layout {
    grid-template-columns: 1fr;
  }

  .split-section img,
  .menu-highlight img,
  .map-panel img {
    min-height: 240px;
  }

  .menu-item {
    align-items: stretch;
    flex-direction: column;
  }

  .shop-info div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}