:root {
  --ink: #101b24;
  --ink-deep: #0b141b;
  --ink-soft: #20343e;
  --paper: #f2eee4;
  --paper-bright: #fbf8ef;
  --moon: #f6dca3;
  --moon-pale: #f8efd9;
  --broth: #c9803e;
  --broth-dark: #784022;
  --vermilion: #c84b3f;
  --muted: #b8c4c5;
  --muted-dark: #687879;
  --line: rgba(242, 238, 228, .2);
  --line-dark: rgba(16, 27, 36, .16);
  --shadow: 0 24px 70px rgba(3, 10, 14, .24);
  --serif: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "Yu Mincho Pro", "Noto Serif JP", serif;
  --sans: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", sans-serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 12%, rgba(246, 220, 163, .08), transparent 28rem),
    radial-gradient(circle at 90% 70%, rgba(201, 128, 62, .08), transparent 32rem),
    linear-gradient(140deg, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(35deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: auto, auto, 9px 9px, 11px 11px;
  content: "";
  opacity: .55;
  pointer-events: none;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.018), transparent);
  content: "";
  pointer-events: none;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

::selection {
  background: var(--vermilion);
  color: var(--paper-bright);
}

:focus-visible {
  outline: 3px solid var(--moon);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 200;
  padding: .65rem 1rem;
  background: var(--moon);
  color: var(--ink);
  font-size: .8rem;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(1180px, calc(100% - 6rem));
  margin: 0 auto;
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  padding: 1.35rem 0;
}

.header-inner {
  display: flex;
  width: min(1280px, calc(100% - 5rem));
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border: 1px solid rgba(246, 220, 163, .55);
  border-radius: 50%;
  color: var(--moon);
}

.brand-mark svg {
  width: 1.65rem;
  height: 1.65rem;
}

.brand-copy {
  display: grid;
  gap: .05rem;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1;
}

.brand-sub {
  color: var(--muted);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.site-nav a {
  position: relative;
  color: rgba(242, 238, 228, .82);
  transition: color .25s ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -.45rem;
  left: 0;
  height: 1px;
  background: var(--moon);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--moon);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-reserve {
  margin-left: .5rem;
  padding: .65rem 1rem;
  border: 1px solid var(--moon);
  color: var(--moon);
}

.site-nav .nav-reserve::after {
  display: none;
}

.site-nav .nav-reserve:hover,
.site-nav .nav-reserve:focus-visible {
  background: var(--moon);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: .6rem;
  padding: .5rem 0;
  border: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.nav-toggle-icon,
.nav-toggle-icon::after {
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--moon);
  content: "";
  transition: transform .25s ease;
}

.nav-toggle-icon::after {
  margin-top: .4rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  padding: 8.5rem 0 5.5rem;
  background:
    radial-gradient(circle at 76% 42%, rgba(246, 220, 163, .18), transparent 23rem),
    radial-gradient(circle at 10% 90%, rgba(201, 128, 62, .12), transparent 27rem),
    linear-gradient(135deg, var(--ink-deep), var(--ink) 58%, #172933);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 9%;
  width: 1px;
  height: 42%;
  background: linear-gradient(var(--moon), transparent);
  content: "";
  opacity: .55;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.eyebrow {
  display: flex;
  margin: 0 0 1.2rem;
  align-items: center;
  gap: .7rem;
  color: var(--vermilion);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .25em;
  line-height: 1.4;
}

.eyebrow-line {
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background: currentColor;
}

.eyebrow-light {
  color: var(--moon);
}

.hero h1,
.concept h2,
.story-copy h2,
.access-copy h2,
.reservation-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.25;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(3.2rem, 7.2vw, 6.9rem);
  line-height: 1.16;
}

.hero h1 em {
  position: relative;
  color: var(--moon);
  font-style: normal;
}

.hero h1 em::after {
  position: absolute;
  right: .05em;
  bottom: .08em;
  left: .05em;
  height: .1em;
  border-radius: 50%;
  background: var(--vermilion);
  content: "";
  opacity: .8;
  transform: rotate(-1deg);
}

.hero-lede {
  max-width: 34rem;
  margin: 1.7rem 0 0;
  color: rgba(242, 238, 228, .78);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 2.2;
}

.hero-actions {
  display: flex;
  margin-top: 2.35rem;
  flex-wrap: wrap;
  gap: .8rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  padding: .82rem 1.35rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.3;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--moon);
  color: var(--ink);
}

.button-primary:hover {
  background: var(--paper-bright);
}

.button-ghost {
  border-color: rgba(246, 220, 163, .55);
  color: var(--moon);
}

.button-ghost:hover {
  background: rgba(246, 220, 163, .1);
}

.button-light {
  background: var(--paper);
  color: var(--ink);
}

.button-light:hover {
  background: var(--moon);
}

.hero-meta {
  display: flex;
  margin: 3.2rem 0 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid var(--line);
  gap: 2.5rem;
}

.hero-meta div {
  min-width: 5rem;
}

.hero-meta dt {
  margin-bottom: .2rem;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.hero-meta dd {
  margin: 0;
  font-family: var(--serif);
  font-size: .98rem;
  font-weight: 700;
}

.hero-art {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
}

.moon-disc {
  position: absolute;
  top: 4%;
  right: 7%;
  width: min(34vw, 410px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 37% 35%, rgba(255,255,255,.8), transparent 7%),
    radial-gradient(circle at 63% 59%, rgba(184, 125, 63, .16), transparent 12%),
    radial-gradient(circle at 50% 50%, #fff4d5 0, #f4d594 48%, #c68c4c 70%, #9b6740 100%);
  box-shadow: 0 0 0 1px rgba(255, 243, 210, .25), 0 0 80px rgba(246, 220, 163, .26), inset -22px -24px 45px rgba(120, 64, 34, .18);
}

.moon-disc::after {
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(120, 64, 34, .15);
  border-radius: inherit;
  content: "";
}

.bowl-wrap {
  position: absolute;
  bottom: 5%;
  left: 50%;
  width: min(76%, 480px);
  transform: translateX(-50%);
  filter: drop-shadow(0 28px 30px rgba(3, 10, 14, .34));
}

.bowl-svg {
  width: 100%;
  overflow: visible;
}

.steam path {
  fill: none;
  stroke: rgba(248, 239, 217, .5);
  stroke-linecap: round;
  stroke-width: 5;
  animation: steam-rise 4.5s ease-in-out infinite;
}

.steam path:nth-child(2) {
  animation-delay: -1.5s;
  opacity: .7;
}

.steam path:nth-child(3) {
  animation-delay: -3s;
  opacity: .45;
}

.vertical-caption {
  position: absolute;
  top: 12%;
  right: 0;
  margin: 0;
  color: rgba(242, 238, 228, .72);
  font-family: var(--serif);
  font-size: .86rem;
  letter-spacing: .2em;
  line-height: 2;
  writing-mode: vertical-rl;
}

.art-rule {
  position: absolute;
  bottom: 17%;
  left: 0;
  width: 2.2rem;
  height: 1px;
  background: var(--moon);
  opacity: .7;
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: .55rem;
  transform: translateX(-50%);
}

.hero-scroll span {
  width: 1px;
  height: 2.8rem;
  background: linear-gradient(var(--moon), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

.hero-scroll small {
  color: var(--muted);
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .25em;
}

.section-light {
  color: var(--ink);
}

.concept {
  position: relative;
  padding: 7.5rem 0 8rem;
}

.concept::before {
  position: absolute;
  top: 3rem;
  right: 6%;
  width: 1px;
  height: 8rem;
  background: var(--broth);
  content: "";
}

.section-intro {
  max-width: 42rem;
}

.section-intro h2,
.section-heading-row h2,
.story-copy h2,
.access-copy h2,
.reservation-panel h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.concept-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  align-items: start;
  gap: clamp(3rem, 9vw, 9rem);
}

.concept-lead {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.18rem, 2.1vw, 1.65rem);
  line-height: 2.15;
}

.principles {
  display: grid;
  gap: 1rem;
}

.principle {
  position: relative;
  min-height: 13rem;
  padding: 1.6rem 1.7rem 1.5rem 7.2rem;
  border-top: 1px solid var(--line-dark);
  background: linear-gradient(110deg, rgba(201, 128, 62, .06), transparent 48%);
}

.principle:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.principle-number {
  position: absolute;
  top: 1.55rem;
  left: 1.55rem;
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border: 1px solid var(--broth);
  border-radius: 50%;
  color: var(--broth-dark);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
}

.principle h3 {
  margin: .15rem 0 .7rem;
  font-family: var(--serif);
  font-size: 1.22rem;
  letter-spacing: .08em;
}

.principle p {
  margin: 0;
  color: var(--muted-dark);
  font-size: .9rem;
  line-height: 1.9;
}

.menu-section {
  position: relative;
  padding: 7.5rem 0 8rem;
  background:
    linear-gradient(135deg, rgba(201, 128, 62, .13), transparent 34rem),
    var(--ink);
}

.menu-section::before {
  position: absolute;
  top: 7.5rem;
  left: 50%;
  width: min(70vw, 760px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246, 220, 163, .4), transparent);
  content: "";
  transform: translateX(-50%);
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.section-heading-row h2 {
  color: var(--paper);
}

.section-description {
  max-width: 29rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.02rem;
}

.menu-controls {
  display: flex;
  padding: .25rem;
  border: 1px solid var(--line);
  gap: .25rem;
}

.filter-button {
  min-width: 4.5rem;
  padding: .5rem .75rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  transition: background .2s ease, color .2s ease;
}

.filter-button:hover {
  color: var(--moon);
}

.filter-button.is-active {
  background: var(--moon);
  color: var(--ink);
}

.menu-count {
  margin: 2rem 0 1rem;
  color: var(--moon);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
}

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

.menu-card {
  display: flex;
  min-height: 19rem;
  padding: 1.45rem 1.4rem 1.35rem;
  flex-direction: column;
  border: 1px solid rgba(246, 220, 163, .2);
  background: rgba(251, 248, 239, .045);
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}

.menu-card:hover {
  border-color: rgba(246, 220, 163, .6);
  background: rgba(251, 248, 239, .09);
  transform: translateY(-5px);
}

.menu-card[hidden] {
  display: none;
}

.menu-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.menu-tag {
  color: var(--moon);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.menu-price {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 700;
}

.menu-card h3 {
  margin: 1.7rem 0 .65rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: .06em;
}

.menu-card p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.85;
}

.menu-note {
  margin-top: auto !important;
  padding-top: 1rem;
  color: var(--moon) !important;
  font-size: .68rem !important;
  letter-spacing: .08em;
}

.menu-footnote {
  margin: 2.2rem 0 0;
  color: var(--muted);
  font-size: .74rem;
}

.story-section {
  padding: 8rem 0;
  background: var(--ink-deep);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.story-art {
  position: relative;
  min-height: 430px;
}

.night-window {
  position: absolute;
  inset: 8% 8% 0;
  overflow: hidden;
  border: 1px solid rgba(242, 238, 228, .28);
  background: linear-gradient(155deg, #263d49, #101b24 62%, #0b141b);
  box-shadow: var(--shadow);
}

.night-window::before,
.night-window::after {
  position: absolute;
  z-index: 1;
  background: rgba(242, 238, 228, .18);
  content: "";
}

.night-window::before {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.night-window::after {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
}

.window-moon {
  position: absolute;
  top: 15%;
  right: 18%;
  width: 5.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--moon);
  box-shadow: 0 0 38px rgba(246, 220, 163, .42);
}

.window-sill {
  position: absolute;
  right: -5%;
  bottom: -1px;
  left: -5%;
  height: 1rem;
  background: #2d424b;
}

.night-window svg {
  position: absolute;
  right: 10%;
  bottom: 19%;
  left: 10%;
  z-index: 2;
  width: 80%;
}

.story-stamp {
  position: absolute;
  right: 8%;
  bottom: -1.2rem;
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  place-items: center;
  border: 2px solid var(--vermilion);
  color: var(--vermilion);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .1em;
  transform: rotate(7deg);
}

.story-copy h2 {
  color: var(--paper);
}

.text-accent {
  color: var(--moon);
}

.story-copy > p:not(.eyebrow, .story-signature) {
  max-width: 38rem;
  margin: 1.8rem 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 2.15;
}

.story-copy blockquote {
  margin: 2.2rem 0 0;
  padding: 1.3rem 0 1.3rem 1.4rem;
  border-left: 2px solid var(--vermilion);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 2;
}

.story-signature {
  margin-top: 1.5rem !important;
  color: var(--moon) !important;
  font-size: .8rem !important;
  letter-spacing: .15em;
}

.access-section {
  padding: 7.5rem 0;
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.access-copy h2 {
  font-size: clamp(2.3rem, 4.7vw, 4.3rem);
}

.access-details {
  display: grid;
  margin-top: 2.8rem;
  border-top: 1px solid var(--line-dark);
  gap: 0;
}

.access-details > div {
  display: grid;
  grid-template-columns: 5rem 1fr;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line-dark);
  gap: 1rem;
}

.access-details span {
  color: var(--vermilion);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.access-details p,
.access-details dl {
  margin: 0;
  color: var(--muted-dark);
  font-size: .88rem;
  line-height: 1.8;
}

.access-details dl > div {
  display: flex;
  justify-content: space-between;
  padding: 0;
  border: 0;
}

.access-details dt {
  color: var(--ink);
  font-weight: 700;
}

.access-details dd {
  margin: 0;
}

.map-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: #dfe5df;
  box-shadow: 12px 12px 0 var(--broth);
}

.map-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(30deg, transparent 48%, rgba(16, 27, 36, .08) 49%, transparent 50%),
    linear-gradient(120deg, transparent 48%, rgba(16, 27, 36, .07) 49%, transparent 50%);
  background-size: 70px 70px, 90px 90px;
  content: "";
}

.map-lines {
  position: absolute;
  inset: 0;
}

.map-line {
  position: absolute;
  display: block;
  height: 8px;
  border-radius: 10px;
  background: #f7f4ea;
  box-shadow: 0 0 0 1px rgba(16, 27, 36, .08);
  transform: rotate(-24deg);
}

.line-one {
  top: 28%;
  left: -10%;
  width: 115%;
}

.line-two {
  top: 58%;
  left: -15%;
  width: 125%;
  transform: rotate(20deg);
}

.line-three {
  top: 16%;
  left: 58%;
  width: 12px;
  height: 100%;
  transform: rotate(68deg);
}

.line-four {
  top: 62%;
  left: 22%;
  width: 10px;
  height: 80%;
  transform: rotate(68deg);
}

.map-pin {
  position: absolute;
  top: 43%;
  left: 55%;
  z-index: 2;
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border-radius: 50% 50% 50% 0;
  background: var(--vermilion);
  box-shadow: 0 8px 20px rgba(200, 75, 63, .3);
  transform: rotate(-45deg);
}

.map-pin span {
  width: .65rem;
  height: .65rem;
  border: 2px solid var(--paper);
  border-radius: 50%;
  transform: rotate(45deg);
}

.map-label {
  position: absolute;
  z-index: 2;
  display: grid;
  padding: .45rem .6rem;
  border: 1px solid rgba(16, 27, 36, .2);
  background: rgba(251, 248, 239, .9);
  color: var(--ink);
  font-size: .72rem;
  line-height: 1.35;
}

.map-label small {
  color: var(--muted-dark);
  font-size: .62rem;
}

.map-label strong {
  font-family: var(--serif);
  font-size: .9rem;
}

.map-label:first-of-type {
  top: 17%;
  left: 13%;
}

.map-label-shop {
  top: 57%;
  left: 60%;
  border-color: var(--vermilion);
}

.reservation-section {
  padding: 1rem 0 7.5rem;
  background: var(--ink);
}

.reservation-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .5fr);
  align-items: end;
  gap: 3rem;
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid rgba(246, 220, 163, .3);
  background:
    radial-gradient(circle at 85% 15%, rgba(246, 220, 163, .13), transparent 17rem),
    linear-gradient(120deg, #172933, var(--ink-deep));
  box-shadow: var(--shadow);
}

.reservation-panel h2 {
  color: var(--paper);
}

.reservation-panel > div:first-child > p:not(.eyebrow) {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-family: var(--serif);
}

.reservation-actions {
  display: grid;
  justify-items: start;
  gap: .85rem;
}

.reservation-actions p {
  margin: -.2rem 0 0;
  color: var(--muted);
  font-size: .72rem;
}

.text-link {
  border-bottom: 1px solid var(--moon);
  color: var(--moon);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.text-link:hover {
  color: var(--paper);
}

.site-footer {
  padding: 2.5rem 0;
  background: var(--ink-deep);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: .8rem 2rem;
}

.brand-footer .brand-name {
  font-size: 1.1rem;
}

.brand-footer .brand-sub {
  font-size: .5rem;
}

.footer-note {
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: .82rem;
}

.footer-inner small {
  grid-column: 1 / -1;
  color: rgba(184, 196, 197, .52);
  font-size: .58rem;
  letter-spacing: .12em;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes steam-rise {
  0%, 100% { opacity: .18; transform: translateY(7px); }
  45% { opacity: .65; }
  60% { opacity: .35; transform: translateY(-10px); }
}

@keyframes scroll-pulse {
  0%, 100% { opacity: .3; transform: scaleY(.55); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .section-shell,
  .header-inner {
    width: min(100% - 3rem, 680px);
  }

  .site-header {
    padding: 1rem 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 4.5rem;
    right: 1.5rem;
    left: 1.5rem;
    display: grid;
    padding: 1.2rem;
    border: 1px solid var(--line);
    background: rgba(11, 20, 27, .96);
    box-shadow: var(--shadow);
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-.7rem);
    transition: opacity .2s ease, transform .2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: .85rem .35rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-reserve {
    margin: 1rem 0 0;
    text-align: center;
  }

  .hero {
    padding-top: 8rem;
  }

  .hero-grid,
  .concept-grid,
  .story-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 3rem;
  }

  .hero-copy {
    max-width: 42rem;
  }

  .hero-art {
    min-height: 430px;
  }

  .moon-disc {
    right: 2%;
    width: min(58vw, 350px);
  }

  .vertical-caption {
    right: 3%;
  }

  .concept-grid,
  .story-grid,
  .access-grid {
    gap: 3.5rem;
  }

  .section-heading-row {
    align-items: start;
    flex-direction: column;
  }

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

  .map-card {
    min-height: 340px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .section-shell,
  .header-inner {
    width: calc(100% - 2rem);
  }

  .header-inner {
    width: calc(100% - 1.25rem);
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .brand-mark {
    width: 2.3rem;
    height: 2.3rem;
  }

  .brand-mark svg {
    width: 1.4rem;
    height: 1.4rem;
  }

  .nav-toggle {
    font-size: .68rem;
  }

  .hero {
    min-height: auto;
    padding: 7.2rem 0 5rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.5rem);
  }

  .hero-lede {
    font-size: .98rem;
  }

  .hero-actions {
    display: grid;
    margin-top: 1.8rem;
  }

  .button {
    width: 100%;
  }

  .hero-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .8rem;
  }

  .hero-meta dd {
    font-size: .82rem;
  }

  .hero-art {
    min-height: 330px;
    margin-top: 1rem;
  }

  .moon-disc {
    top: 0;
    right: 5%;
    width: 65vw;
  }

  .bowl-wrap {
    bottom: 1%;
    width: 90%;
  }

  .vertical-caption {
    top: 8%;
    right: 0;
    font-size: .72rem;
  }

  .art-rule {
    bottom: 12%;
  }

  .hero-scroll {
    display: none;
  }

  .concept,
  .menu-section,
  .access-section {
    padding: 5.5rem 0 6rem;
  }

  .section-intro h2,
  .section-heading-row h2,
  .story-copy h2,
  .access-copy h2,
  .reservation-panel h2 {
    font-size: clamp(2.25rem, 12vw, 3.4rem);
  }

  .concept-lead {
    font-size: 1.12rem;
  }

  .principle {
    min-height: 0;
    padding: 1.4rem 1.1rem 1.3rem 5.6rem;
  }

  .principle-number {
    top: 1.25rem;
    left: 1.1rem;
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.05rem;
  }

  .principle h3 {
    font-size: 1.05rem;
  }

  .principle p {
    font-size: .82rem;
  }

  .menu-controls {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .filter-button {
    min-width: 0;
    padding: .55rem .2rem;
    font-size: .65rem;
  }

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

  .menu-card {
    min-height: 0;
  }

  .story-section {
    padding: 6rem 0;
  }

  .story-art {
    min-height: 300px;
  }

  .night-window {
    inset: 12% 4% 0;
  }

  .story-stamp {
    right: 4%;
    bottom: -1rem;
  }

  .access-details > div {
    grid-template-columns: 1fr;
    gap: .45rem;
  }

  .map-card {
    min-height: 300px;
    box-shadow: 8px 8px 0 var(--broth);
  }

  .reservation-section {
    padding-bottom: 5rem;
  }

  .reservation-panel {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.3rem;
  }

  .reservation-actions {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-inner small {
    grid-column: auto;
  }
}
