:root {
  --ink: #1c130e;
  --muted: #6b5848;
  --paper: #ead7bd;
  --paper-strong: #d9bb93;
  --coal: #120d0a;
  --coal-soft: #2a1a12;
  --amber: #c47624;
  --amber-light: #e4a052;
  --line: rgba(69, 43, 21, 0.18);
  --shadow: 0 26px 80px rgba(27, 14, 7, 0.26);
  --section-title-size: clamp(22px, 4vw, 52px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px clamp(18px, 4vw, 52px);
  color: #fff8e8;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(241, 228, 211, 0.95);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  display: grid;
  width: clamp(150px, 18vw, 192px);
  min-height: 70px;
  align-content: center;
  justify-items: center;
  padding: 4px 0 6px;
  flex: 0 0 auto;
  color: #fff8ea;
  text-align: center;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.32));
}

.brand-kicker,
.brand-name {
  display: block;
  width: 100%;
  color: currentColor;
  font-family:
    "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22),
    0 2px 7px rgba(0, 0, 0, 0.62);
}

.brand-kicker {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.46em;
  margin-bottom: 8px;
  padding-left: 0.04em;
  font-size: clamp(16px, 1.85vw, 22px);
}

.brand-kicker span {
  display: inline-block;
}

.brand-kicker .brand-kana {
  font-size: 0.76em;
}

.brand-name {
  font-size: clamp(34px, 4.4vw, 48px);
  letter-spacing: 0.12em;
  padding-left: 0.12em;
}

.site-header.is-scrolled .brand {
  color: #2a2018;
  filter: none;
}

.site-header.is-scrolled .brand-kicker,
.site-header.is-scrolled .brand-name {
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.78),
    0 6px 16px rgba(64, 42, 22, 0.12);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: inherit;
  font-size: 14px;
  font-weight: 700;
}

.header-tel {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.42em;
  border: 0;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
}

.tel-icon {
  font-size: 1.05em;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: clip;
  color: #fff8e8;
  isolation: isolate;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 6, 4, 0.76), rgba(8, 6, 4, 0.28) 50%, rgba(8, 6, 4, 0.58)),
    linear-gradient(0deg, rgba(8, 6, 4, 0.82), rgba(8, 6, 4, 0.08) 64%);
}

.hero-content {
  width: min(1160px, calc(100% - 36px));
  justify-self: center;
  padding: clamp(82px, 11vh, 112px) clamp(18px, 4vw, 52px);
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: var(--amber-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 14px 0 24px;
  font-size: clamp(38px, 5.3vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}

h1 span {
  display: block;
  width: fit-content;
  max-width: 100%;
  text-align: center;
  white-space: nowrap;
}

.hero-lead {
  max-width: 640px;
  margin: 0;
  margin-inline: auto;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 2;
  text-align: center;
}

.hero-actions,
.access-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 14px 21px;
  font-size: 14px;
  font-weight: 900;
}

.primary-button {
  background: var(--amber);
  color: #1b1109;
}

.secondary-button {
  border: 1px solid currentColor;
  color: inherit;
}

.secondary-button.dark {
  color: var(--ink);
}

.access-panel dl {
  display: grid;
  gap: 13px;
  margin: 0;
}

.access-panel div {
  min-width: 0;
}

.access-panel dl > div {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
}

dt {
  color: var(--amber-light);
  font-size: 12px;
  font-weight: 900;
}

dd {
  margin: 0;
  line-height: 1.65;
}

.section {
  padding: clamp(56px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 780px;
}

.section-heading h2 {
  margin: 10px 0 0;
  font-size: var(--section-title-size);
  line-height: 1.12;
  letter-spacing: 0;
}

.photo-story {
  background:
    radial-gradient(circle at 15% 12%, rgba(196, 118, 36, 0.11), transparent 34%),
    linear-gradient(180deg, #ead5ba 0%, #e2c39d 100%);
}

.photo-story .section-heading {
  max-width: none;
  margin-inline: auto;
  text-align: center;
}

.photo-story .section-heading h2 {
  display: inline-block;
  margin-inline: auto;
  font-size: var(--section-title-size);
  white-space: nowrap;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  max-width: 1180px;
  margin-top: 36px;
  margin-inline: auto;
}

.photo-card {
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(57, 36, 20, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background: #fff0dc;
  box-shadow: 0 18px 50px rgba(69, 40, 16, 0.13);
}

.photo-card img {
  width: 100%;
  height: clamp(260px, 31vw, 420px);
  object-fit: cover;
}

.photo-card figcaption {
  padding: 13px 15px 15px;
  color: var(--muted);
  line-height: 1.65;
}

.menu-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(196, 118, 36, 0.15), transparent 32%),
    linear-gradient(180deg, #ecd6ba 0%, #f4e5d1 100%);
}

.food-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(196, 118, 36, 0.13), transparent 34%),
    linear-gradient(180deg, #ead1b0 0%, #f5e8d6 100%);
}

.drink-section {
  background:
    radial-gradient(circle at 86% 12%, rgba(228, 160, 82, 0.18), transparent 36%),
    radial-gradient(circle at 8% 85%, rgba(196, 118, 36, 0.12), transparent 34%),
    linear-gradient(180deg, #130d0a 0%, #24160f 56%, #332014 100%);
  color: #fff6e8;
}

.menu-section .section-heading {
  max-width: 980px;
}

.menu-section .section-heading h2 {
  max-width: 900px;
}

.food-section .section-heading {
  max-width: none;
  margin-inline: auto;
  text-align: center;
}

.food-section .section-heading h2 {
  display: inline-block;
  max-width: none;
  font-size: var(--section-title-size);
  white-space: nowrap;
}

.food-section .menu-feature {
  margin-left: auto;
  margin-right: auto;
}

.food-section .menu-visual,
.food-section .menu-copy {
  grid-column: 1 / -1;
}

.food-section .menu-visual {
  justify-self: center;
  width: min(100%, 780px);
}

.food-section .menu-copy {
  justify-items: center;
  text-align: center;
}

.food-section .menu-copy p {
  width: 100%;
}

.food-section .menu-copy p span {
  display: block;
}

.drink-section .section-heading {
  max-width: none;
  margin-inline: auto;
  text-align: center;
}

.drink-section .section-heading h2 {
  display: inline-block;
  max-width: none;
  color: #fff6e8;
}

.drink-section .menu-feature {
  margin-left: auto;
  margin-right: auto;
}

.drink-section .menu-feature.reverse .menu-visual,
.drink-section .menu-copy {
  grid-column: 1 / -1;
}

.drink-section .menu-feature.reverse .menu-visual {
  order: 0;
  justify-self: center;
  width: min(100%, 780px);
}

.drink-section .menu-copy {
  justify-items: center;
  text-align: center;
}

.menu-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  width: min(94%, 1080px);
  max-width: 1180px;
  margin-top: 38px;
  margin-right: auto;
}

.menu-feature.reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

.menu-feature.reverse .menu-visual {
  order: 2;
}

.menu-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(57, 36, 20, 0.16);
  background: #1d1410;
  box-shadow: var(--shadow);
}

.drink-section .menu-visual {
  border-color: rgba(255, 246, 232, 0.12);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.menu-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.menu-copy {
  display: grid;
  gap: 24px;
}

.menu-copy p {
  margin: 0;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 2;
  color: var(--muted);
}

.drink-section .menu-copy p {
  color: rgba(255, 246, 232, 0.76);
  width: 100%;
}

.drink-section .menu-copy p span {
  display: block;
}

.menu-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-list li {
  position: relative;
  padding: 15px 18px 15px 34px;
  border: 1px solid rgba(57, 36, 20, 0.15);
  border-radius: 8px;
  background: rgba(255, 246, 232, 0.48);
  color: var(--ink);
  line-height: 1.65;
}

.drink-section .menu-list li {
  border-color: rgba(255, 246, 232, 0.16);
  background: rgba(255, 246, 232, 0.08);
  color: rgba(255, 246, 232, 0.88);
}

.menu-list li::before {
  content: "";
  position: absolute;
  top: 1.45em;
  left: 16px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--amber);
}

.access {
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 240, 220, 0.28), transparent 34%),
    linear-gradient(180deg, #d7ba92 0%, #c9aa80 100%);
}

.access .section-heading {
  max-width: none;
  margin-inline: auto;
  text-align: center;
}

.access-panel {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: clamp(22px, 5vw, 70px);
  max-width: 1120px;
  margin-top: 34px;
  margin-inline: auto;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(57, 36, 20, 0.16);
  border-radius: 8px;
  background: rgba(255, 241, 222, 0.84);
  box-shadow: 0 22px 70px rgba(69, 40, 16, 0.12);
  text-align: center;
}

.access-panel dl {
  width: min(100%, 680px);
  gap: 0;
  justify-items: stretch;
  text-align: left;
}

.access-panel dl > div {
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: start;
  justify-items: stretch;
  gap: clamp(12px, 3vw, 26px);
  padding: 16px 0;
  border-bottom: 1px solid rgba(139, 85, 30, 0.18);
}

.access-panel dt {
  color: #8b551e;
  text-align: left;
}

.access-panel dd {
  text-align: left;
}

.access-note {
  align-content: start;
  justify-content: center;
  width: min(100%, 720px);
  margin-top: 0;
}

.access-note p {
  flex: 0 0 100%;
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
  text-align: center;
}

.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 22px clamp(18px, 5vw, 72px);
  background: var(--coal);
  color: rgba(255, 247, 230, 0.72);
  font-size: 12px;
  text-align: center;
}

.site-footer p {
  width: 100%;
  margin: 0;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .photo-card img {
    height: 260px;
  }

  .menu-feature,
  .menu-feature.reverse,
  .access-panel {
    grid-template-columns: 1fr;
  }

  .menu-feature.reverse .menu-visual {
    order: 0;
  }
}

@media (max-width: 720px) {
  h1 {
    flex-direction: column;
    align-items: center;
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: absolute;
    padding: 16px 18px;
  }

  .brand {
    width: 132px;
    min-height: 56px;
    padding: 2px 0 4px;
  }

  .brand-kicker {
    gap: 0.36em;
    margin-bottom: 6px;
    padding-left: 0.02em;
    font-size: 14px;
  }

  .brand-name {
    font-size: 32px;
    letter-spacing: 0.1em;
    padding-left: 0.1em;
  }

  .header-tel {
    padding: 8px 0;
    font-size: 12px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(8, 6, 4, 0.9), rgba(8, 6, 4, 0.2) 64%),
      linear-gradient(90deg, rgba(8, 6, 4, 0.58), rgba(8, 6, 4, 0.12));
  }

  .hero-content {
    width: 100%;
    padding: 96px 18px;
  }

  h1 {
    font-size: clamp(30px, 9.2vw, 42px);
  }

  .photo-story .section-heading h2 {
    white-space: normal;
  }

  .hero-actions,
  .access-note {
    flex-direction: column;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-card img {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .menu-feature,
  .food-section .menu-feature {
    width: 100%;
  }

  .access-panel dl > div {
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 12px;
  }

  .site-footer {
    flex-direction: column;
  }
}
