:root {
  --ink: #090b0a;
  --ink-soft: #101411;
  --paper: #f1ede4;
  --paper-deep: #ddd2bf;
  --gold: #c69a59;
  --gold-bright: #e3b875;
  --sage: #718071;
  --muted: #9b9d96;
  --line-dark: rgba(10, 13, 11, 0.18);
  --line-light: rgba(241, 237, 228, 0.2);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --font-geist-sans: "Helvetica Neue", Arial, sans-serif;
  --sans: var(--font-geist-sans);
  --scroll-y: 0;
  --scroll-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

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

button {
  border: 0;
}

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

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

::selection {
  background: var(--gold);
  color: var(--ink);
}

.shell {
  width: min(1320px, calc(100% - 96px));
  margin-inline: auto;
}

.section {
  padding-block: clamp(110px, 12vw, 190px);
}

.eyebrow {
  margin: 0;
  color: currentColor;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

/* Intro */
.intro-screen {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #070908;
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.7s cubic-bezier(0.77, 0, 0.18, 1), visibility 0.7s;
}

.intro-screen--done {
  visibility: hidden;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
}

.intro-emblem {
  position: absolute;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border: 1px solid rgba(226, 182, 114, 0.55);
  border-radius: 50%;
  animation: intro-orbit 4s linear infinite;
}

.intro-emblem::before,
.intro-emblem::after {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  content: "";
}

.intro-emblem::before { top: -3px; }
.intro-emblem::after { bottom: -3px; }

.intro-emblem span {
  font-family: var(--serif);
  font-size: 34px;
  transform: rotate(0deg);
  animation: intro-counter 4s linear infinite;
}

.intro-line {
  position: absolute;
  top: calc(50% + 80px);
  width: 160px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.intro-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold-bright);
  transform: translateX(-100%);
  animation: intro-load 1.2s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}

.intro-screen > p {
  position: absolute;
  top: calc(50% + 104px);
  margin: 0;
  color: rgba(241, 237, 228, 0.56);
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

@keyframes intro-orbit { to { transform: rotate(360deg); } }
@keyframes intro-counter { to { transform: rotate(-360deg); } }
@keyframes intro-load { to { transform: translateX(0); } }

/* Custom cursor */
.cursor-system {
  pointer-events: none;
}

.cursor-dot,
.cursor-halo {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  will-change: transform;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 18px rgba(227, 184, 117, 0.65);
  transition: opacity 0.2s;
}

.cursor-halo {
  display: grid;
  width: 44px;
  height: 44px;
  margin: -22px 0 0 -22px;
  place-items: center;
  border: 1px solid rgba(227, 184, 117, 0.58);
  border-radius: 50%;
  background: rgba(9, 11, 10, 0.03);
  backdrop-filter: blur(2px);
  transition: width 0.35s ease, height 0.35s ease, margin 0.35s ease, background 0.35s ease, opacity 0.2s;
}

.cursor-dot[data-visible="true"],
.cursor-halo[data-visible="true"] { opacity: 1; }

.cursor-halo[data-active="true"] {
  width: 76px;
  height: 76px;
  margin: -38px 0 0 -38px;
  background: rgba(198, 154, 89, 0.92);
  border-color: var(--gold);
}

.cursor-halo span {
  color: var(--ink);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.14em;
}

html.has-custom-cursor,
html.has-custom-cursor body,
html.has-custom-cursor body * {
  cursor: none !important;
}

.scroll-progress {
  position: fixed;
  z-index: 700;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-bright);
  transform: scaleX(var(--scroll-progress));
  transform-origin: left;
}

/* Header + brand */
.site-header {
  position: fixed;
  z-index: 300;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: 104px;
  padding: 0 48px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 9, 8, 0.78);
  backdrop-filter: blur(18px) saturate(0.9);
  color: var(--paper);
}

.logo-link { justify-self: start; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-orbit {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(198, 154, 89, 0.72);
  border-radius: 50%;
}

.brand-orbit::before {
  position: absolute;
  top: -2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-bright);
  content: "";
}

.brand-orbit span {
  margin-top: -1px;
  font-family: var(--serif);
  font-size: 16px;
}

.brand-word {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: 0.25em;
}

.brand--compact .brand-orbit {
  width: 38px;
  height: 38px;
  color: var(--ink);
}

.desktop-nav {
  display: flex;
  gap: 34px;
  align-items: center;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: var(--gold-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-self: end;
}

.text-button {
  display: inline-flex;
  padding: 10px 0;
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.text-button span { transition: transform 0.3s ease; }
.text-button:hover span { transform: translate(3px, -3px); }

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 0.3s;
}

.menu-toggle--open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle--open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-book { display: none; }

/* Hero */
.hero {
  position: relative;
  height: max(780px, 100svh);
  min-height: 780px;
  overflow: hidden;
  background: #0d110e;
}

.hero-media,
.hero-shade,
.film-grain {
  position: absolute;
  inset: 0;
}

.hero-media {
  top: -7%;
  bottom: -7%;
  transform: translate3d(0, calc(var(--scroll-y) * 0.1px), 0) scale(1.04);
  will-change: transform;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 8, 6, 0.88) 0%, rgba(5, 8, 6, 0.53) 43%, rgba(5, 8, 6, 0.16) 76%),
    linear-gradient(0deg, rgba(5, 8, 6, 0.82) 0%, transparent 50%, rgba(5, 8, 6, 0.42) 100%);
}

.film-grain {
  opacity: 0.14;
  background-image:
    repeating-linear-gradient(115deg, transparent 0, rgba(255, 255, 255, 0.09) 1px, transparent 2px, transparent 5px),
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px);
  background-size: 7px 7px, 5px 5px;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-orbits {
  position: absolute;
  top: 50%;
  right: -14vw;
  width: 52vw;
  aspect-ratio: 1;
  transform: translateY(-50%);
}

.hero-orbits i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(227, 184, 117, 0.13);
  border-radius: 50%;
}

.hero-orbits i:nth-child(2) { inset: 14%; }
.hero-orbits i:nth-child(3) { inset: 29%; }

.hero-orbits::after {
  position: absolute;
  top: 50%;
  left: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 20px rgba(227, 184, 117, 0.7);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  height: 100%;
  padding-top: 190px;
  padding-bottom: 82px;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 70px;
  align-items: end;
}

.hero-copy { max-width: 980px; }

.hero-eyebrow {
  margin-bottom: 25px;
  color: var(--gold-bright);
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(74px, 8.2vw, 134px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.78;
}

.hero h1 span { display: block; }
.hero-title-indent { margin-left: clamp(50px, 8vw, 138px); }
.hero h1 .hero-title-soft {
  margin-top: 0.19em;
  color: rgba(241, 237, 228, 0.72);
  font-size: 0.57em;
  font-style: italic;
  letter-spacing: -0.035em;
}

.hero-intro-row {
  display: flex;
  max-width: 700px;
  margin: 54px 0 0 clamp(50px, 8vw, 138px);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.hero-intro-row > p {
  max-width: 430px;
  margin: 0;
  color: rgba(241, 237, 228, 0.72);
  font-size: 14px;
  line-height: 1.75;
}

.circle-action {
  position: relative;
  display: grid;
  width: 114px;
  height: 114px;
  flex: 0 0 114px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(227, 184, 117, 0.6);
  border-radius: 50%;
  background: rgba(9, 11, 10, 0.16);
  color: var(--paper);
  overflow: hidden;
  transition: border-color 0.4s, color 0.4s, transform 0.4s;
}

.circle-action::before {
  position: absolute;
  inset: 100% 0 0;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  transition: inset 0.45s cubic-bezier(0.77, 0, 0.18, 1);
}

.circle-action span,
.circle-action b { position: relative; z-index: 1; }
.circle-action span { font-size: 9px; font-weight: 650; letter-spacing: 0.16em; text-transform: uppercase; }
.circle-action b { position: absolute; top: 23px; right: 27px; font-size: 12px; font-weight: 400; }
.circle-action:hover { color: var(--ink); transform: rotate(-4deg); }
.circle-action:hover::before { inset: 0; }

.hero-meta {
  padding-bottom: 7px;
  color: rgba(241, 237, 228, 0.72);
}

.live-clock {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--paper);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #9cbf87;
  box-shadow: 0 0 0 4px rgba(156, 191, 135, 0.1);
  animation: pulse 2s infinite;
}

@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(156, 191, 135, 0); } }
.clock-divider { width: 16px; height: 1px; background: rgba(255,255,255,.3); }
.clock-time { font-variant-numeric: tabular-nums; }
.hero-meta-rule { height: 1px; margin: 25px 0; background: rgba(255, 255, 255, 0.22); }
.hero-meta > p { margin: 16px 0 0; font-size: 10px; line-height: 1.65; letter-spacing: 0.07em; text-transform: uppercase; }

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 47px;
  bottom: 43px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  color: rgba(241, 237, 228, 0.62);
}

.scroll-cue span { font-size: 8px; letter-spacing: 0.18em; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-cue i { display: block; width: 1px; height: 42px; background: linear-gradient(var(--gold-bright), transparent); }

.rhythm-strip {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid rgba(9, 11, 10, 0.12);
  background: var(--gold);
  color: var(--ink);
}

.rhythm-strip > div {
  display: flex;
  width: max-content;
  height: 53px;
  align-items: center;
  animation: marquee 30s linear infinite;
}

.rhythm-strip span { margin: 0 28px; font-family: var(--serif); font-size: 14px; letter-spacing: 0.16em; }
.rhythm-strip i { font-size: 8px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Shared reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.section-index {
  display: grid;
  margin-bottom: clamp(70px, 8vw, 120px);
  grid-template-columns: auto minmax(60px, 180px) auto;
  gap: 16px;
  align-items: center;
  color: rgba(241, 237, 228, 0.5);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-index i { height: 1px; background: currentColor; opacity: 0.45; }
.section-index--dark { color: rgba(9, 11, 10, 0.5); }

/* Story */
.story {
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 0 0 100vmax var(--paper);
  clip-path: inset(0 -100vmax);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  gap: 9vw;
  align-items: end;
}

.story-heading .eyebrow { margin-bottom: 25px; color: #66665f; }
.story-heading h2,
.menu-heading h2,
.experience-copy h2,
.visit-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(57px, 6.5vw, 105px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.story-copy {
  padding-bottom: 4px;
  color: #555750;
}

.story-copy p { margin: 0 0 25px; font-size: 13px; line-height: 1.8; }
.story-copy .story-lead { color: var(--ink); font-family: var(--serif); font-size: 23px; line-height: 1.35; }

.inline-link {
  display: inline-flex;
  margin-top: 18px;
  padding-bottom: 8px;
  align-items: center;
  gap: 48px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.inline-link span { transition: transform 0.3s; }
.inline-link:hover span { transform: translate(3px, 3px); }

.story-visuals {
  display: grid;
  margin-top: clamp(90px, 12vw, 180px);
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: 8vw;
  align-items: center;
}

.story-image { margin: 0; }
.story-image--primary { width: 78%; margin-left: 7%; }
.story-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; filter: saturate(0.82) contrast(1.03); }
.story-image figcaption { display: flex; margin-top: 14px; justify-content: space-between; gap: 20px; color: #696a64; font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; }

.story-note { max-width: 340px; }
.story-note > p { margin: 40px 0 28px; font-family: var(--serif); font-size: clamp(30px, 3.2vw, 48px); letter-spacing: -0.04em; line-height: 1.1; }
.story-note small { color: #72736c; font-size: 8px; letter-spacing: 0.15em; text-transform: uppercase; }

.sun-glyph {
  position: relative;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(9, 11, 10, 0.24);
  border-radius: 50%;
}

.sun-glyph::before,
.sun-glyph::after { position: absolute; background: var(--ink); content: ""; }
.sun-glyph::before { width: 90px; height: 1px; }
.sun-glyph::after { width: 1px; height: 90px; }
.sun-glyph i { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

/* Menu */
.menu-section {
  color: var(--ink);
  background: var(--paper-deep);
}

.menu-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 90px;
  align-items: end;
}

.menu-heading .eyebrow { margin-bottom: 24px; color: #646158; }
.menu-heading > p { margin: 0 0 3px; color: #5f5d55; font-size: 13px; line-height: 1.75; }

.course-tabs {
  display: grid;
  margin-top: 120px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.course-tabs button {
  position: relative;
  display: flex;
  min-height: 82px;
  padding: 0 25px;
  align-items: center;
  gap: 22px;
  border-right: 1px solid var(--line-dark);
  background: transparent;
  color: rgba(9, 11, 10, 0.5);
  font-family: var(--serif);
  font-size: 20px;
  text-align: left;
  transition: background 0.4s, color 0.4s;
}

.course-tabs button:last-child { border-right: 0; }
.course-tabs button span { font-family: var(--sans); font-size: 8px; letter-spacing: 0.13em; }
.course-tabs button::after { position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: var(--ink); content: ""; transform: scaleX(0); transition: transform .4s; }
.course-tabs button.is-active { background: rgba(255, 255, 255, 0.2); color: var(--ink); }
.course-tabs button.is-active::after { transform: scaleX(1); }

.course-panel {
  padding-top: 65px;
  animation: panel-in .65s ease both;
}

@keyframes panel-in { from { opacity: 0; transform: translateY(18px); } }

.course-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 28px);
}

.dish-portrait {
  margin: 0;
  opacity: 0;
  transform: translateY(24px);
  animation: portrait-in .75s var(--delay) cubic-bezier(.22, 1, .36, 1) forwards;
}

@keyframes portrait-in { to { opacity: 1; transform: translateY(0); } }

.dish-portrait__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111410;
  isolation: isolate;
}

.dish-portrait--1 .dish-portrait__frame {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.dish-portrait--2 .dish-portrait__frame {
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
}

.dish-portrait--3 .dish-portrait__frame {
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}

.dish-portrait__frame::before {
  position: absolute;
  z-index: 2;
  inset: 10px;
  border: 1px solid rgba(241, 237, 228, .2);
  content: "";
  pointer-events: none;
}

.dish-portrait__frame::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 8, .02) 45%, rgba(7, 9, 8, .66) 100%);
  content: "";
  pointer-events: none;
}

.dish-portrait__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.04);
  transition: transform 1s cubic-bezier(.22, 1, .36, 1), filter .6s ease;
}

.dish-portrait:hover .dish-portrait__frame img {
  filter: saturate(.96) contrast(1.02);
  transform: scale(1.045);
}

.dish-portrait__number {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 22px;
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border: 1px solid rgba(241, 237, 228, .38);
  border-radius: 50%;
  background: rgba(7, 9, 8, .36);
  color: var(--paper);
  font-size: 7px;
  letter-spacing: .12em;
  backdrop-filter: blur(8px);
}

.dish-portrait__frame > i {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 22px;
  width: 32px;
  height: 1px;
  background: var(--gold-bright);
  transform-origin: right;
  transition: width .45s ease;
}

.dish-portrait:hover .dish-portrait__frame > i { width: 58px; }

.dish-portrait figcaption {
  display: grid;
  min-height: 58px;
  padding: 15px 2px 0;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 15px;
  align-items: start;
}

.dish-portrait figcaption > span {
  font-family: var(--serif);
  font-size: clamp(17px, 1.55vw, 23px);
  letter-spacing: -.02em;
}

.dish-portrait figcaption small {
  padding-top: 5px;
  color: #716e65;
  font-size: 7px;
  letter-spacing: .12em;
  text-align: right;
  text-transform: uppercase;
}

.course-details {
  display: grid;
  padding-top: 72px;
  grid-template-columns: .55fr 1.45fr;
  gap: 9vw;
}

.course-aside > span { font-size: 8px; font-weight: 700; letter-spacing: 0.17em; text-transform: uppercase; }
.course-aside > p { max-width: 210px; margin: 22px 0 42px; color: #66645d; font-size: 12px; line-height: 1.7; }

.outline-button,
.dark-button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 22px;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  border: 1px solid rgba(9, 11, 10, 0.35);
  background: transparent;
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background .35s, color .35s;
}

.outline-button:hover { background: var(--ink); color: var(--paper); }
.outline-button b, .dark-button b { font-weight: 400; }

.course-list article {
  display: grid;
  min-height: 128px;
  padding: 27px 0;
  grid-template-columns: 55px 1fr auto;
  gap: 20px;
  align-items: center;
  border-top: 1px solid var(--line-dark);
  opacity: 0;
  transform: translateY(10px);
  animation: dish-in .55s var(--delay) forwards;
}

@keyframes dish-in { to { opacity: 1; transform: translateY(0); } }
.dish-number { color: rgba(9, 11, 10, 0.45); font-size: 8px; letter-spacing: .12em; }
.course-list h3 { margin: 0 0 8px; font-family: var(--serif); font-size: clamp(24px, 2.3vw, 36px); font-weight: 400; letter-spacing: -.025em; }
.course-list p { margin: 0; color: #605e57; font-size: 11px; line-height: 1.5; }
.course-list small { padding-left: 25px; color: #747168; font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }

/* Experience */
.experience {
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
}

.experience::before {
  position: absolute;
  top: 35%;
  left: 48%;
  width: 900px;
  height: 900px;
  border: 1px solid rgba(198, 154, 89, 0.08);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.experience-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .72fr);
  gap: 9vw;
  align-items: center;
}

.ritual-image { position: relative; margin: 0; }
.ritual-image::before { position: absolute; z-index: 1; inset: 20px; border: 1px solid rgba(255,255,255,.18); content: ""; pointer-events: none; }
.ritual-image img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; filter: saturate(.8) contrast(1.05); }
.image-coordinate { position: absolute; z-index: 2; bottom: 34px; left: 38px; padding: 8px 10px; background: rgba(9,11,10,.66); font-size: 7px; letter-spacing: .18em; }

.experience-copy { position: relative; padding: 40px 0; }
.experience-copy .section-index { margin-bottom: 90px; }
.experience-copy > .eyebrow { margin-bottom: 24px; color: var(--gold-bright); }
.experience-copy > p:not(.eyebrow) { max-width: 440px; margin: 38px 0; color: rgba(241,237,228,.58); font-size: 13px; line-height: 1.8; }
.text-button--light { color: var(--paper); }

.rotating-seal {
  position: absolute;
  right: -30px;
  bottom: -10px;
  display: grid;
  width: 130px;
  height: 130px;
  place-items: center;
}

.rotating-seal svg { position: absolute; width: 100%; height: 100%; overflow: visible; animation: seal-spin 18s linear infinite; }
.rotating-seal text { fill: rgba(227,184,117,.72); font-family: var(--sans); font-size: 8px; letter-spacing: 2.1px; }
.rotating-seal > span { color: var(--gold-bright); font-size: 14px; }
@keyframes seal-spin { to { transform: rotate(360deg); } }

.sequence {
  position: relative;
  display: grid;
  margin-top: clamp(140px, 16vw, 240px);
  grid-template-columns: .62fr 1.38fr;
  gap: 10vw;
}

.sequence-heading .eyebrow { margin-bottom: 23px; color: var(--gold-bright); }
.sequence-heading h3 { margin: 0; font-family: var(--serif); font-size: clamp(55px, 6vw, 88px); font-weight: 400; letter-spacing: -.055em; line-height: .9; }
.sequence-heading em { color: rgba(241,237,228,.55); font-weight: 400; }

.sequence-list article {
  position: relative;
  display: grid;
  min-height: 142px;
  padding: 30px 45px 30px 0;
  grid-template-columns: 55px 180px 1fr;
  gap: 22px;
  align-items: center;
  border-top: 1px solid var(--line-light);
}

.sequence-list article:last-child { border-bottom: 1px solid var(--line-light); }
.sequence-list article > span { color: var(--gold-bright); font-size: 8px; letter-spacing: .14em; }
.sequence-list h4 { margin: 0; font-family: var(--serif); font-size: 28px; font-weight: 400; }
.sequence-list p { margin: 0; color: rgba(241,237,228,.55); font-size: 11px; line-height: 1.65; }
.sequence-list i { position: absolute; right: 0; color: var(--gold-bright); font-style: normal; }

/* Image pause */
.pause-frame { position: relative; height: max(760px, 92svh); overflow: hidden; }
.pause-image, .pause-overlay { position: absolute; inset: 0; }
.pause-image img { width: 100%; height: 115%; object-fit: cover; object-position: center 56%; transform: translateY(calc((var(--scroll-y) - 3200) * .025px)); }
.pause-overlay { background: linear-gradient(90deg, rgba(7,9,8,.86), rgba(7,9,8,.2) 65%), linear-gradient(0deg, rgba(7,9,8,.62), transparent 60%); }
.pause-copy { position: absolute; z-index: 2; bottom: 13%; left: max(48px, calc((100vw - 1320px) / 2)); }
.pause-copy > p { margin: 0 0 15px; color: var(--gold-bright); font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.pause-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(60px, 7.4vw, 116px); font-weight: 400; letter-spacing: -.055em; line-height: .9; }
.pause-copy .circle-action { position: absolute; right: -165px; bottom: -25px; }
.circle-action--cream { background: rgba(241,237,228,.06); }

/* Visit */
.visit {
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 0 0 100vmax var(--paper);
  clip-path: inset(0 -100vmax);
}

.visit-grid { display: grid; grid-template-columns: .76fr 1.24fr; gap: 9vw; align-items: center; }
.visit-copy .eyebrow { margin-bottom: 25px; color: #6e6d65; }
.visit-copy > p:not(.eyebrow) { margin: 40px 0; color: #555750; font-size: 12px; line-height: 1.7; }
.hours-grid { max-width: 480px; border-top: 1px solid var(--line-dark); }
.hours-grid > div { display: flex; padding: 17px 0; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line-dark); font-size: 9px; letter-spacing: .08em; }
.hours-grid span { color: #77776e; }
.hours-grid b { font-weight: 600; }
.visit-actions { display: flex; margin-top: 42px; align-items: center; gap: 36px; }
.dark-button { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.dark-button:hover { background: var(--gold); color: var(--ink); }
.inline-link--dark { margin: 0; }

.abstract-map {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #d3c8b6;
  border: 1px solid rgba(9,11,10,.15);
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: .17;
  background-image: linear-gradient(rgba(9,11,10,.28) 1px, transparent 1px), linear-gradient(90deg, rgba(9,11,10,.28) 1px, transparent 1px);
  background-size: 52px 52px;
  transform: rotate(-8deg) scale(1.25);
}

.map-road { position: absolute; display: block; background: var(--paper); box-shadow: 0 0 0 1px rgba(9,11,10,.09); }
.map-road--one { top: -8%; left: 42%; width: 72px; height: 120%; transform: rotate(16deg); }
.map-road--two { top: 44%; left: -10%; width: 120%; height: 48px; transform: rotate(-9deg); }
.map-road--three { top: 10%; left: 14%; width: 38px; height: 98%; transform: rotate(-40deg); }

.map-marker { position: absolute; top: 45%; left: 55%; display: grid; width: 82px; height: 82px; place-items: center; border-radius: 50% 50% 50% 0; background: var(--ink); color: var(--paper); transform: translate(-50%,-50%) rotate(-45deg); box-shadow: 0 18px 40px rgba(9,11,10,.22); }
.map-marker span { font-family: var(--serif); font-size: 26px; transform: rotate(45deg); }
.map-marker i { position: absolute; right: -65px; width: 72px; height: 1px; background: var(--ink); transform: rotate(45deg); }
.map-label { position: absolute; display: flex; align-items: center; gap: 10px; color: rgba(9,11,10,.6); font-size: 8px; font-weight: 650; letter-spacing: .13em; text-transform: uppercase; }
.map-label i { width: 20px; height: 1px; background: currentColor; }
.map-label--a { top: 22%; left: 12%; }
.map-label--b { right: 8%; bottom: 22%; }
.map-coordinate { position: absolute; right: 28px; bottom: 25px; font-size: 8px; line-height: 1.7; letter-spacing: .15em; }

/* Footer */
.site-footer { padding: 120px 0 32px; background: #070908; color: var(--paper); }
.footer-top { display: grid; padding-bottom: 100px; grid-template-columns: .6fr 1fr auto; gap: 80px; align-items: end; border-bottom: 1px solid var(--line-light); }
.footer-top .brand { align-self: start; }
.footer-top h2 { margin: 0; font-family: var(--serif); font-size: clamp(64px, 7.5vw, 112px); font-weight: 400; letter-spacing: -.055em; line-height: .84; }
.footer-top h2 em { color: var(--gold-bright); font-weight: 400; }
.footer-grid { display: grid; padding: 70px 0 90px; grid-template-columns: repeat(3, .55fr) 1.35fr; gap: 60px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-grid > div > span { margin-bottom: 10px; color: rgba(241,237,228,.4); font-size: 8px; letter-spacing: .17em; text-transform: uppercase; }
.footer-grid a,
.footer-grid > div > button { padding: 0; background: transparent; color: rgba(241,237,228,.76); font-family: var(--serif); font-size: 16px; text-align: left; transition: color .25s; }
.footer-grid a:hover,
.footer-grid > div > button:hover { color: var(--gold-bright); }
.footer-grid .footer-note { padding-left: 60px; border-left: 1px solid var(--line-light); }
.footer-note p { max-width: 310px; margin: 0 0 15px; color: rgba(241,237,228,.55); font-size: 12px; line-height: 1.75; }
.footer-note button { display: flex; width: 100%; padding: 12px 0; justify-content: space-between; border-bottom: 1px solid rgba(241,237,228,.35); background: transparent; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.footer-note button b { font-weight: 400; }
.footer-bottom { display: flex; padding-top: 25px; justify-content: space-between; border-top: 1px solid var(--line-light); color: rgba(241,237,228,.36); font-size: 7px; letter-spacing: .14em; text-transform: uppercase; }
.footer-bottom a { color: rgba(241,237,228,.7); }

/* Menu + booking sheets */
.sheet-backdrop {
  position: fixed;
  z-index: 400;
  inset: 0;
  visibility: hidden;
  background: rgba(4, 5, 4, 0.72);
  opacity: 0;
  backdrop-filter: blur(8px);
  transition: opacity .5s, visibility .5s;
}

.sheet-backdrop.is-open { visibility: visible; opacity: 1; }
.menu-sheet,
.booking-sheet {
  position: fixed;
  z-index: 410;
  top: 0;
  right: 0;
  width: min(720px, 100%);
  height: 100dvh;
  padding: 35px clamp(30px, 5vw, 72px) 55px;
  overflow-y: auto;
  background: var(--paper);
  color: var(--ink);
  transform: translateX(102%);
  transition: transform .7s cubic-bezier(.77,0,.18,1);
}

.menu-sheet.is-open,
.booking-sheet.is-open { transform: translateX(0); }
.sheet-header { display: flex; margin-bottom: 72px; align-items: center; justify-content: space-between; }
.sheet-header button { padding: 10px 0; background: transparent; color: #5e605a; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.menu-sheet > .eyebrow,
.booking-sheet > .eyebrow { margin-bottom: 20px; color: #66675f; }
.menu-sheet > h2,
.booking-sheet > h2,
.booking-success h2 { margin: 0; font-family: var(--serif); font-size: clamp(52px, 7vw, 80px); font-weight: 400; letter-spacing: -.05em; line-height: .92; }
.sheet-intro { max-width: 430px; margin: 28px 0 50px; color: #696a63; font-size: 12px; line-height: 1.7; }
.full-menu-list { border-top: 1px solid var(--line-dark); }
.full-menu-list article { display: grid; min-height: 112px; padding: 14px 0; grid-template-columns: 74px 34px 1fr; gap: 17px; align-items: center; border-bottom: 1px solid var(--line-dark); }
.full-menu-list article > span { color: #828179; font-size: 8px; letter-spacing: .1em; }
.full-menu-thumb { width: 74px; aspect-ratio: 4 / 5; overflow: hidden; clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%); background: #111410; }
.full-menu-thumb img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.04); transition: transform .65s cubic-bezier(.22, 1, .36, 1), filter .4s; }
.full-menu-list article:hover .full-menu-thumb img { filter: saturate(.96); transform: scale(1.06); }
.full-menu-list h3 { margin: 0 0 6px; font-family: var(--serif); font-size: 23px; font-weight: 400; }
.full-menu-list p { margin: 0; color: #6c6d65; font-size: 10px; line-height: 1.5; }
.sheet-footer { display: flex; margin-top: 42px; align-items: center; justify-content: space-between; gap: 25px; }
.sheet-footer p { max-width: 220px; margin: 0; color: #74756d; font-size: 9px; line-height: 1.55; }

.booking-form { margin-top: 46px; }
.booking-form label,
.guest-field { display: block; margin: 0 0 25px; padding: 0; border: 0; }
.booking-form label > span,
.guest-field legend { display: flex; width: 100%; margin-bottom: 9px; justify-content: space-between; color: #64665e; font-size: 8px; font-weight: 650; letter-spacing: .15em; text-transform: uppercase; }
.booking-form label small { color: #99988f; font-size: 7px; }
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(9,11,10,.3);
  outline: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  transition: border-color .25s;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus { border-color: var(--gold); }
.booking-form input::placeholder,
.booking-form textarea::placeholder { color: #9a9991; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.guest-counter { display: flex; width: 150px; height: 48px; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(9,11,10,.3); }
.guest-counter button { width: 36px; height: 36px; background: transparent; font-size: 19px; }
.guest-counter span { font-family: var(--serif); font-size: 19px; font-variant-numeric: tabular-nums; }
.booking-submit { width: 100%; margin-top: 12px; }
.form-note { margin: 14px 0 0; color: #818078; font-size: 8px; text-align: center; }

.booking-success { padding-top: 8vh; text-align: center; }
.success-orbit { display: grid; width: 110px; height: 110px; margin: 0 auto 40px; place-items: center; border: 1px solid rgba(9,11,10,.35); border-radius: 50%; }
.success-orbit span { display: grid; width: 45px; height: 45px; place-items: center; border-radius: 50%; background: var(--gold); }
.booking-success .eyebrow { margin-bottom: 20px; color: #6d6d65; }
.booking-success > p:not(.eyebrow) { max-width: 420px; margin: 30px auto; color: #686a62; font-size: 12px; line-height: 1.7; }
.booking-success strong { display: block; margin: 35px 0; font-family: var(--serif); font-size: 24px; font-weight: 400; letter-spacing: .14em; }

/* Responsive */
@media (max-width: 1100px) {
  .shell { width: min(100% - 56px, 1320px); }
  .site-header { height: 88px; padding: 0 28px; grid-template-columns: 1fr auto; }
  .desktop-nav {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    visibility: hidden;
    padding: 140px 32px 50px;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    justify-content: center;
    background: #080a09;
    opacity: 0;
    transition: opacity .45s, visibility .45s;
  }
  .desktop-nav--open { visibility: visible; opacity: 1; }
  .desktop-nav a { font-family: var(--serif); font-size: clamp(42px, 8vw, 76px); letter-spacing: -.04em; }
  .mobile-book { display: inline-flex; margin-top: 35px; padding: 17px 24px; border: 1px solid var(--gold); background: transparent; color: var(--paper); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
  .site-header .header-book { display: none; }
  .menu-toggle { display: block; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-meta { display: none; }
  .hero-copy { max-width: 900px; }
  .story-grid { gap: 7vw; }
  .story-visuals { grid-template-columns: 1.25fr .75fr; gap: 6vw; }
  .story-image--primary { width: 92%; margin-left: 0; }
  .experience-grid { grid-template-columns: 1fr 1fr; gap: 6vw; }
  .rotating-seal { display: none; }
  .sequence { grid-template-columns: .55fr 1.45fr; gap: 7vw; }
  .sequence-list article { grid-template-columns: 42px 135px 1fr; }
  .visit-grid { gap: 6vw; }
  .abstract-map { min-height: 560px; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid .footer-note { grid-column: 1 / -1; padding: 40px 0 0; border-top: 1px solid var(--line-light); border-left: 0; }
}

@media (max-width: 760px) {
  .shell { width: calc(100% - 36px); }
  .section { padding-block: 92px; }
  .site-header { height: 76px; padding: 0 18px; }
  .brand-word { font-size: 16px; }
  .hero { height: 100svh; min-height: 670px; }
  .hero-media { left: -26%; width: 126%; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,8,6,.88), rgba(5,8,6,.3)), linear-gradient(0deg, rgba(5,8,6,.88), transparent 72%); }
  .hero-orbits { top: 39%; right: -42vw; width: 96vw; }
  .hero-content { padding-top: 120px; padding-bottom: 70px; }
  .hero-eyebrow { margin-bottom: 19px; }
  .hero h1 { font-size: clamp(58px, 18vw, 92px); line-height: .82; }
  .hero-title-indent { margin-left: 28px; }
  .hero h1 .hero-title-soft { margin-top: .28em; font-size: .49em; line-height: 1; }
  .hero-intro-row { margin: 38px 0 0 28px; gap: 24px; align-items: flex-end; }
  .hero-intro-row > p { max-width: 220px; font-size: 11px; line-height: 1.65; }
  .circle-action { width: 88px; height: 88px; flex-basis: 88px; }
  .circle-action b { top: 16px; right: 19px; }
  .scroll-cue { display: none; }
  .rhythm-strip > div { height: 46px; }
  .section-index { margin-bottom: 58px; grid-template-columns: auto minmax(35px, 95px) auto; }
  .story-grid,
  .menu-heading,
  .story-visuals,
  .course-details,
  .experience-grid,
  .sequence,
  .visit-grid { grid-template-columns: 1fr; }
  .story-grid { gap: 45px; }
  .story-heading h2,
  .menu-heading h2,
  .experience-copy h2,
  .visit-copy h2 { font-size: clamp(52px, 15vw, 76px); }
  .story-copy .story-lead { font-size: 20px; }
  .story-visuals { margin-top: 85px; gap: 70px; }
  .story-image--primary { width: 88%; }
  .story-note { margin-left: 13%; }
  .story-note > p { font-size: 34px; }
  .menu-heading { gap: 35px; }
  .menu-heading > p { max-width: 320px; }
  .course-tabs { margin-top: 75px; overflow-x: auto; grid-template-columns: repeat(3, minmax(180px, 1fr)); scrollbar-width: none; }
  .course-tabs::-webkit-scrollbar { display: none; }
  .course-tabs button { min-height: 70px; padding: 0 17px; font-size: 17px; }
  .course-panel { padding-top: 45px; }
  .course-gallery {
    margin-right: -18px;
    padding-right: 18px;
    overflow-x: auto;
    grid-template-columns: none;
    grid-auto-columns: minmax(260px, 78vw);
    grid-auto-flow: column;
    gap: 14px;
    scroll-padding-inline: 0 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .course-gallery::-webkit-scrollbar { display: none; }
  .dish-portrait { scroll-snap-align: start; }
  .dish-portrait figcaption { min-height: 54px; }
  .dish-portrait figcaption > span { font-size: 19px; }
  .course-details { padding-top: 62px; gap: 55px; }
  .course-list article { grid-template-columns: 34px 1fr; }
  .course-list small { display: none; }
  .experience-grid { gap: 70px; }
  .ritual-image { margin-inline: -18px; }
  .ritual-image::before { inset: 12px; }
  .ritual-image img { aspect-ratio: 4 / 5; object-position: 58% center; }
  .experience-copy { padding: 0; }
  .experience-copy .section-index { margin-bottom: 60px; }
  .sequence { margin-top: 125px; gap: 60px; }
  .sequence-list article { min-height: 0; padding: 24px 28px 24px 0; grid-template-columns: 32px 1fr; gap: 14px; }
  .sequence-list article > p { grid-column: 2; }
  .sequence-list h4 { font-size: 25px; }
  .pause-frame { height: 78svh; min-height: 650px; }
  .pause-image img { object-position: 63% center; }
  .pause-copy { right: 18px; bottom: 12%; left: 18px; }
  .pause-copy h2 { font-size: clamp(52px, 14vw, 76px); }
  .pause-copy .circle-action { position: relative; right: auto; bottom: auto; margin: 42px 0 0 auto; }
  .visit-grid { gap: 70px; }
  .visit-actions { flex-direction: column; align-items: flex-start; }
  .abstract-map { min-height: 480px; }
  .map-marker { width: 66px; height: 66px; }
  .footer-top { padding-bottom: 75px; grid-template-columns: 1fr auto; gap: 45px 20px; }
  .footer-top .brand { grid-column: 1 / -1; }
  .footer-top h2 { font-size: clamp(58px, 16vw, 82px); }
  .footer-top .circle-action { width: 82px; height: 82px; flex-basis: 82px; }
  .footer-grid { padding: 60px 0 75px; grid-template-columns: 1fr 1fr; gap: 50px 35px; }
  .footer-grid .footer-note { grid-column: 1 / -1; }
  .footer-bottom { flex-wrap: wrap; gap: 16px; }
  .footer-bottom span:nth-child(2) { display: none; }
  .menu-sheet,
  .booking-sheet { padding: 27px 22px 45px; }
  .sheet-header { margin-bottom: 55px; }
  .field-row { grid-template-columns: 1fr 1fr; gap: 18px; }
  .sheet-footer { flex-direction: column; align-items: stretch; }
}

@media (max-width: 430px) {
  .hero-intro-row > p { max-width: 195px; }
  .circle-action { width: 80px; height: 80px; flex-basis: 80px; }
  .story-image--primary { width: 100%; }
  .story-note { margin-left: 0; }
  .course-gallery { grid-auto-columns: minmax(250px, 82vw); }
  .dish-portrait__number { top: 18px; left: 18px; }
  .full-menu-list article { grid-template-columns: 62px 26px 1fr; gap: 12px; }
  .full-menu-thumb { width: 62px; }
  .full-menu-list h3 { font-size: 19px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .hours-grid > div { flex-direction: column; gap: 7px; }
}

@media (pointer: coarse) {
  .cursor-system { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-media, .pause-image img { transform: none; }
}
