/* ============================================================
   MR WELLINGTON — style.css
   Palette: near-black / warm amber / cream
   Type: Fraunces (display) + Inter (body)
   ============================================================ */

/* === TOKENS === */
:root {
  --color-bg:         #0a0806;
  --color-surface:    #130f0b;
  --color-surface-2:  #1a1410;
  --color-text:       #F5EDD8;
  --color-muted:      #8A7055;
  --color-accent:     #B87828;
  --color-accent-hi:  #D4960A;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --section-tight:  5rem;
  --section-normal: 9rem;
  --section-loose:  13rem;

  --radius:    4px;
  --radius-lg: 14px;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-cinematic: cubic-bezier(0.87, 0, 0.13, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  /* scroll-behavior: smooth removed — fights GSAP ScrollTrigger pin on the
     wellington banner (wheel deltas queue during the native smooth-scroll
     animation, pin progress jumps in chunks, frames blast through). For
     anchor-link smoothness, motion.js handles it via JS. */
  background: var(--color-bg);
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

* { cursor: none !important; }

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

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

/* === CUSTOM CURSOR === */
.cursor {
  position: fixed;
  inset: auto;
  width: 34px;
  height: 34px;
  border: 1.5px solid white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.25s var(--ease-out),
              height 0.25s var(--ease-out),
              opacity 0.2s;
  will-change: transform;
}

.cursor-dot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  will-change: transform;
}

.cursor.is-hovering {
  width: 60px;
  height: 60px;
  opacity: 0.6;
}

.cursor.is-view {
  width: 96px;
  height: 96px;
  border-color: white;
  background: rgba(255, 255, 255, 0.06);
  mix-blend-mode: normal;
}

.cursor-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: white;
  opacity: 0;
  transition: opacity 0.2s var(--ease-out);
}
.cursor.is-view .cursor-label {
  opacity: 1;
}

/* === SCROLL PROGRESS BAR === */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--color-accent);
  z-index: 9998;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(184, 120, 40, 0.55);
  will-change: width;
}

/* === HERO + QUOTE SPLIT REVEAL === */
.word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.12em;
}
.char {
  display: inline-block;
  transform: translateY(105%);
  will-change: transform;
}

.hero-meta {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.55);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1s var(--ease-out) 1.2s, transform 1s var(--ease-out) 1.2s;
}
.hero-meta.revealed {
  opacity: 1;
  transform: translateY(0);
}
.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}
.hero-meta-divider {
  width: 24px;
  height: 1px;
  background: rgba(245, 237, 216, 0.25);
}
.dot-status {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 8px var(--color-accent);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* === MAGNETIC BUTTONS === */
[data-magnetic] {
  display: inline-flex;
  will-change: transform;
  transition: transform 0.4s var(--ease-out);
}

/* === MARQUEE STRIP — the "Wellington blend" === */
.marquee-strip {
  position: relative;
  background: var(--color-bg);
  border-top: 1px solid rgba(245, 237, 216, 0.06);
  border-bottom: 1px solid rgba(245, 237, 216, 0.06);
  padding: 1.5rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 2.25rem;
  will-change: transform;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 3.25rem);
  font-weight: 300;
  letter-spacing: -0.015em;
  color: var(--color-text);
}
.marquee-item { display: inline-block; }
.marquee-item.italic {
  font-style: italic;
  color: var(--color-accent);
}
.marquee-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  font-size: 0;
  background: var(--color-muted);
  border-radius: 50%;
  flex-shrink: 0;
}

/* === DISH CARD 3D TILT === */
.dish-track { perspective: 1200px; }

.dish-card {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease-out);
  will-change: transform;
}
.dish-card[data-tilt]:hover {
  transition: transform 0.1s linear;
}

.dish-card .dish-img-wrap {
  position: relative;
  overflow: hidden;
}

.dish-card .dish-shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 240, 200, 0.18),
    transparent 35%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  mix-blend-mode: screen;
}
.dish-card[data-tilt]:hover .dish-shine { opacity: 1; }

/* === MAÎTRE D' INDEX MENU ============================================== */
.menu-section {
  background: var(--color-bg);
  padding: var(--section-loose) clamp(2rem, 6vw, 7rem) clamp(3.5rem, 6vw, 5.5rem);
  position: relative;
  /* margin-top removed — banner moved below menu, so the 150vh buffer
     became a giant empty gap above the menu. */
  margin-top: 0;
  z-index: 2;
}

.menu-frame {
  max-width: 1640px;
  margin: 0 auto;
}

.menu-frame-head {
  margin-bottom: clamp(3rem, 8vw, 7rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.menu-frame-head .eyebrow { margin-bottom: 0.25rem; }
.menu-frame-note {
  margin-top: 1.25rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

/* === LIST (left) === */
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.menu-course {
  padding: 2rem 0 0.75rem;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(245, 237, 216, 0.08);
}
.menu-course:first-child { border-top: none; padding-top: 0; margin-top: 0; }

.course-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.menu-row {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  transition: opacity 0.45s var(--ease-out);
  cursor: none;
}

/* Hairline divider between rows */
.menu-row + .menu-row {
  border-top: 1px solid rgba(245, 237, 216, 0.05);
}

/* Active dimming logic — when one is active, others fade back */
.menu-list.has-active .menu-row:not(.is-active) { opacity: 0.32; }

/* Knife-stroke underline (the brand kiss) */
.menu-row::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  width: 0;
  background: linear-gradient(to right, var(--color-accent) 0%, var(--color-accent-hi) 60%, transparent 100%);
  transition: width 0.7s var(--ease-cinematic);
  pointer-events: none;
}
.menu-row.is-active::after { width: 100%; }

.menu-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--color-muted);
  font-variant-numeric: tabular-nums;
  align-self: flex-start;
  padding-top: 0.85em;
  transition: color 0.45s var(--ease-out);
}
.menu-row.is-active .menu-num { color: var(--color-accent); }

.menu-row-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.menu-name {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.6vw, 3.25rem);
  font-variation-settings: "wght" 320, "opsz" 144;
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--color-text);
  text-wrap: balance;
  transition: font-variation-settings 0.5s var(--ease-out),
              color 0.5s var(--ease-out),
              transform 0.55s var(--ease-out);
  transform-origin: left center;
}
.menu-row.is-active .menu-name {
  font-variation-settings: "wght" 600, "opsz" 144;
  color: var(--color-accent-hi);
}

.menu-ing {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  max-width: 480px;
  text-transform: lowercase;
}

.menu-row-arrow {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-accent);
  align-self: center;
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  padding-top: 0.1em;
}
.menu-row.is-active .menu-row-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* === STAGE (right) — sticky mega-image === */
.menu-stage {
  position: sticky;
  top: 12vh;
  height: 76vh;
  align-self: start;
}

.menu-stage-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.menu-img-stack {
  position: relative;
  flex: 1;
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.menu-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.7s var(--ease-cinematic),
              transform 1.4s var(--ease-out);
  will-change: opacity, transform;
}
.menu-img.is-active {
  opacity: 1;
  transform: scale(1);
}

/* Inset frame — subtle inner border for editorial polish */
.menu-img-frame {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(245, 237, 216, 0.12);
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: overlay;
}

.menu-stage-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.meta-key { color: var(--color-accent); font-variant-numeric: tabular-nums; min-width: 2ch; }
.meta-divider { width: 28px; height: 1px; background: var(--color-muted); }
.meta-name { color: var(--color-text); transition: opacity 0.5s var(--ease-out); }

/* === IN-COLUMN CTA: lives under the last dish in the left column === */
.menu-list-col {
  display: flex;
  flex-direction: column;
}
.menu-cta-foot {
  margin-top: clamp(1.75rem, 3vw, 2.75rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 237, 216, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
  position: relative;
  isolation: isolate;
}
.menu-cta-foot::before { display: none; }
.menu-cta-foot .menu-foot-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin: 0;
}
.menu-foot-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* === Responsive: stack on smaller screens === */
@media (max-width: 980px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .menu-stage {
    position: relative;
    top: auto;
    height: 56vh;
    order: -1;
  }
  .menu-name { font-size: clamp(1.35rem, 6vw, 2.25rem); }
  .menu-row { padding: 1.25rem 0; }
  .menu-cta-foot { align-items: center; text-align: center; }
  .menu-cta-foot .pdf-btn { width: auto; }
}

/* === EDITORIAL PULL QUOTE === */
.pull-quote {
  background: var(--color-bg);
  padding: var(--section-loose) 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.pull-quote::before,
.pull-quote::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--color-accent), transparent);
  opacity: 0.6;
}
.pull-quote::before { top: 0; }
.pull-quote::after  { bottom: 0; }

.quote-vignette {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(184, 120, 40, 0.10), transparent 70%),
    radial-gradient(ellipse 100% 80% at 50% 50%, transparent 60%, rgba(0, 0, 0, 0.55) 100%);
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  animation: quoteVignettePulse 8s ease-in-out infinite;
}
@keyframes quoteVignettePulse {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.04); }
}

.quote-bracket {
  position: absolute;
  width: 56px;
  height: 56px;
  border: 1px solid var(--color-accent);
  opacity: 0;
  pointer-events: none;
}
.quote-bracket--tl { top: 6vw; left: 6vw; border-right: 0; border-bottom: 0; }
.quote-bracket--tr { top: 6vw; right: 6vw; border-left: 0; border-bottom: 0; }
.quote-bracket--bl { bottom: 6vw; left: 6vw; border-right: 0; border-top: 0; }
.quote-bracket--br { bottom: 6vw; right: 6vw; border-left: 0; border-top: 0; }

.quote-eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 2.5rem;
}
.quote-eyebrow em {
  font-style: italic;
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 1.05rem;
  margin-left: 0.35rem;
  vertical-align: -2px;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: clamp(7rem, 14vw, 13rem);
  line-height: 0.5;
  color: var(--color-accent);
  opacity: 0.45;
  margin-bottom: 0.5rem;
  font-style: italic;
  display: inline-block;
  transform-origin: 50% 80%;
  will-change: transform;
}

.quote-body {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5.75rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--color-text);
  max-width: 1200px;
  margin: 0 auto 3.25rem;
  text-wrap: balance;
}
.quote-body em {
  font-style: italic;
  color: var(--color-accent);
  font-weight: 400;
}
/* (.word + .char styles defined globally above) */

.quote-attribution {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-muted);
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
}
.quote-attribution .rule {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--color-muted);
  opacity: 0.6;
}

/* === 50/50 SPLIT MODE (used in conjunction with existing .pull-quote rules) === */
.pull-quote--split {
  display: block;
  position: relative;
}

@media (min-width: 768px) {
  .pull-quote--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 80vh;
  }
  .pull-quote--split > .quote-eyebrow,
  .pull-quote--split > .quote-body,
  .pull-quote--split > .quote-attribution { display: none; }

  .pull-quote--split .quote-canvas-col {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 80vh;
  }
  .pull-quote--split .quote-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
  }
  .pull-quote--split .quote-text-col {
    padding: 0 6vw;
    text-align: left;
    align-self: center;
  }
  .pull-quote--split .quote-text-col .quote-body {
    text-align: left;
  }
  .pull-quote--split .quote-rule {
    grid-column: 1 / -1;
    position: absolute;
    left: 50%;
    top: 12vh;
    bottom: 12vh;
    width: 1px;
    background: linear-gradient(to bottom,
      transparent,
      rgba(180, 140, 54, 0.35) 22%,
      rgba(180, 140, 54, 0.35) 78%,
      transparent);
    pointer-events: none;
    z-index: 2;
  }
}

@media (max-width: 767px) {
  .pull-quote--split .quote-canvas-col,
  .pull-quote--split .quote-rule { display: none; }
  .pull-quote--split .quote-text-col {
    padding: 0 8vw;
    text-align: center;
  }
  .pull-quote--split .quote-text-col .quote-body { text-align: center; }
}

/* === MAGNETIC CURSOR === */
.cursor-magnetic {
  position: fixed;
  top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1.5px solid #f4f4f4;
  border-radius: 50%;
  mix-blend-mode: difference;
  pointer-events: none;
  transform: translate(-100px, -100px);
  transition: transform 60ms linear;
  z-index: 9999;
  opacity: 0;
}
.cursor-magnetic.is-active { opacity: 1; }

/* === BANNER IMG: CLIP-PATH WIPE REVEAL === */
.banner-img-wrap {
  clip-path: inset(0 0 0 0);
  will-change: clip-path;
}

/* === TYPE SYSTEM === */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.eyebrow--amber { color: var(--color-accent); }

h1, h2, h3 {
  font-family: var(--font-display);
  text-wrap: balance;
}

.hero-headline {
  font-size: clamp(3rem, 11vw, 10rem);
  font-variation-settings: "wght" 320, "opsz" 144;
  letter-spacing: -0.025em;
  line-height: 0.98;
  color: var(--color-text);
}
.hero-headline em {
  font-style: italic;
  color: var(--color-accent);
}
.hero-headline .char {
  font-variation-settings: "wght" 320, "opsz" 144;
  will-change: transform;
}

/* Hero logo lockup variant */
.hero-headline--logo {
  display: block;
  margin: 0;
  line-height: 0;
}
.hero-logo {
  display: block;
  width: clamp(560px, 94vw, 1700px);
  height: auto;
  filter: drop-shadow(0 14px 50px rgba(0,0,0,0.55));
}
.hero-logo svg {
  display: block;
  width: 100%;
  height: auto;
}
/* All paths render solid white so the SVG can carry any source fills */
.hero-logo svg path {
  fill: #f5edd8 !important;
  /* Initial state for GSAP entry — overridden once animation runs */
  opacity: 0;
  transform: translateY(60px);
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform, opacity;
}

.banner-headline {
  font-family: 'Helvetica Neue', 'Arial Black', Impact, sans-serif;
  font-size: clamp(4rem, 16vw, 16rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.82;
  text-transform: uppercase;
  color: var(--color-text);
  margin: 0;
}

.three-headline {
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.12;
}
.three-headline em {
  font-style: italic;
  color: var(--color-accent);
}

.section-headline {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-top: 0.5rem;
}

.reserve-headline {
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2.25rem 0.9rem 2rem;
  background: var(--color-accent);
  color: var(--color-bg);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background 0.22s var(--ease-out),
              transform 0.22s var(--ease-out);
}
.btn-primary:hover {
  background: var(--color-accent-hi);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2.25rem 0.9rem 2rem;
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 237, 216, 0.28);
  border-radius: var(--radius);
  transition: border-color 0.22s,
              transform 0.22s var(--ease-out);
}
.btn-ghost:hover {
  border-color: rgba(245, 237, 216, 0.7);
  transform: translateY(-2px);
}

.btn-amber {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2.25rem 0.9rem 2rem;
  background: transparent;
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius);
  transition: background 0.22s var(--ease-out),
              color 0.22s,
              transform 0.22s var(--ease-out);
}
.btn-amber:hover {
  background: var(--color-accent);
  color: var(--color-bg);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.1rem 2.75rem 1.1rem 2.5rem;
  font-size: 0.9375rem;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 3rem;
  transition: background 0.5s var(--ease-out),
              padding 0.4s var(--ease-out),
              backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(10, 8, 6, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.1rem 3rem;
  border-bottom: 1px solid rgba(245, 237, 216, 0.05);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-svg,
.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--color-text); }

.nav-cta {
  color: var(--color-accent);
  border: 1px solid rgba(184, 120, 40, 0.5);
  padding: 0.5rem 1.25rem 0.5rem 1.125rem;
  border-radius: var(--radius);
  transition: background 0.22s, color 0.22s, border-color 0.22s;
}
.nav-cta:hover {
  background: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
}

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform-origin: center center;
  will-change: transform;
  /* Make the food pop when revealed under the dim kitchen cover */
  filter: saturate(1.28) contrast(1.09) brightness(1.09);
}

/* Veil canvas — kitchen scene painted on top, knife erases to reveal food */
.hero-veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  /* Real kitchen photo already dim/atmospheric — no extra filter needed */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(10, 8, 6, 0.20) 0%,
    rgba(10, 8, 6, 0.05) 30%,
    rgba(10, 8, 6, 0.55) 70%,
    rgba(10, 8, 6, 0.95) 100%
  );
}

/* hero-content + scroll-indicator z-indexes set in their main rules */

/* Knife cursor — hero only (the actual logo knife) */
.knife-cursor {
  position: fixed;
  top: 0;
  left: 0;
  /* Scales with viewport: ~96px on phones, up to 160px on wide desktops.
     Height tracks the 160:29 aspect ratio of the source PNG. */
  width: clamp(88px, 9.5vw, 160px);
  height: calc(clamp(88px, 9.5vw, 160px) * 29 / 160);
  pointer-events: none;
  z-index: 9997;
  transform-origin: 0px 4px; /* tip of blade (top-left of png) */
  transform: translate(-9999px, -9999px);
  filter: drop-shadow(0 0 16px rgba(212, 150, 10, 0.42))
          drop-shadow(0 5px 10px rgba(0, 0, 0, 0.6));
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
  will-change: transform;
}
.knife-cursor img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.knife-cursor.is-active { opacity: 1; }
.knife-cursor svg { width: 100%; height: 100%; display: block; }

/* When in hero, hide the global ring/dot cursor */
body.hero-active .cursor,
body.hero-active .cursor-dot { opacity: 0 !important; }

/* Chef's mark on click */
.chef-mark {
  position: fixed;
  top: 0;
  left: 0;
  width: 92px;
  height: 3px;
  background: linear-gradient(to right, transparent, white 25%, white 75%, transparent);
  border-radius: 2px;
  pointer-events: none;
  z-index: 9996;
  transform-origin: center;
  filter: drop-shadow(0 0 6px rgba(212, 150, 10, 0.5));
  will-change: transform, opacity;
}

/* Mobile / no-hover: hide custom cursor entirely, restore native pointer */
@media (hover: none), (pointer: coarse) {
  .knife-cursor,
  .cursor,
  .cursor-dot,
  .cursor-magnetic { display: none !important; }
  *, *::before, *::after { cursor: auto !important; }
  a, button, [role="button"], input[type="submit"] { cursor: pointer !important; }
}

/* Reduced motion: knife is static cursor swap, no auto-arc choreography */
@media (prefers-reduced-motion: reduce) {
  .hero-veil { display: none; }
  .knife-cursor { transition: none; }
}

.hero-content {
  position: relative;
  z-index: 5;          /* above veil (2) + overlay (3) so text + CTAs read clean */
  max-width: 1400px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content .eyebrow { margin-bottom: 1.25rem; }
.hero-headline { margin-bottom: 2.75rem; }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.75rem;
  right: 3rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}

.scroll-indicator span {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  45%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  46%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* === WELLINGTON BANNER — scroll-driven frame scrub === */
.wellington-banner {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
}

.scrub-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(10,8,6,0.35) 0%, rgba(10,8,6,0.7) 70%, rgba(10,8,6,0.85) 100%);
}

.banner-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
  max-width: 1400px;
  width: 100%;
  text-align: center;
}

.banner-content .eyebrow { margin-bottom: 1.25rem; }
.banner-headline { margin-bottom: 1.75rem; }

.banner-body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(245, 237, 216, 0.7);
  margin-bottom: 2.75rem;
  max-width: 460px;
}

/* === THREE.JS canvas (now nested inside .wellington-banner — see above) === */
/* Standalone .three-scene section removed; legacy three-label / three-hint dropped. */

/* === MENU SECTION (legacy header — section padding now defined above) === */
.menu-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 3rem;
  margin-bottom: 3.5rem;
}

.menu-header .eyebrow { margin-bottom: 0.5rem; }

/* Editorial ghost CTA — refined, restrained, matches the rest of the site */
.pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.85);
  background: transparent;
  border: 1px solid rgba(245, 237, 216, 0.22);
  border-radius: 0;
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: color 0.35s var(--ease-out),
              border-color 0.35s var(--ease-out),
              background 0.35s var(--ease-out);
}
.pdf-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.55s var(--ease-cinematic);
  z-index: -1;
}
.pdf-btn:hover {
  color: var(--color-bg);
  border-color: var(--color-accent);
  background: transparent;
}
.pdf-btn:hover::before {
  transform: scaleX(1);
}
.pdf-btn .pdf-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  letter-spacing: 0;
  transition: transform 0.4s var(--ease-out);
}
.pdf-btn:hover .pdf-btn-arrow {
  transform: translateX(6px);
}

.dish-track {
  display: flex;
  gap: 1.5rem;
  padding: 0.5rem 3rem 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.dish-track::-webkit-scrollbar { display: none; }

.dish-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out);
  border: 1px solid rgba(245, 237, 216, 0.04);
}
.dish-card:hover { transform: translateY(-8px); }

.dish-img-wrap {
  height: 260px;
  overflow: hidden;
}

.dish-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.dish-card:hover .dish-img { transform: scale(1.05); }

.dish-info {
  padding: 1.375rem 1.5rem 1.625rem;
}

.dish-info h3 {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 0.375rem;
  color: var(--color-text);
}

.dish-info p {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-muted);
}

/* === EXPERIENCE === */
.experience {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-bg);
  isolation: isolate;
}

/* Background image, dimmed, slightly zoomed for parallax feel */
.exp-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.exp-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.08);
  filter: brightness(0.42) saturate(1.1) contrast(1.05);
  will-change: transform;
}
.exp-bg-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(10,8,6,0) 30%, rgba(10,8,6,0.55) 70%, rgba(10,8,6,0.92) 100%),
    linear-gradient(180deg, rgba(10,8,6,0.45) 0%, rgba(10,8,6,0) 25%, rgba(10,8,6,0) 75%, rgba(10,8,6,0.6) 100%);
}
.exp-bg-grain {
  position: absolute;
  inset: 0;
  background-image: url('assets/noise.png');
  background-size: 200px;
  opacity: 0.15;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Corner markers — editorial title card */
.exp-marker {
  position: absolute;
  z-index: 3;
  font-family: var(--font-body);
  font-size: 0.625rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.55);
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
}
.exp-marker em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-accent);
  font-size: 1.05rem;
  letter-spacing: 0;
}
.exp-marker--tl { top: 2.25rem; left: 2.25rem; }
.exp-marker--tr { top: 2.25rem; right: 2.25rem; }
.exp-marker--bl { bottom: 2.25rem; left: 2.25rem; }
.exp-marker--br { bottom: 2.25rem; right: 2.25rem; }

/* Outlined echo word behind the headline */
.exp-echo {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(10rem, 28vw, 28rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(180, 140, 54, 0.28);
  text-stroke: 1px rgba(180, 140, 54, 0.28);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

/* Headline */
.exp-headline {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0 2rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.5vw, 7rem);
  font-variation-settings: "wght" 320, "opsz" 144;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--color-text);
}
.exp-headline em {
  font-style: italic;
  color: var(--color-accent);
}

/* Thin gold rule under headline */
.exp-rule {
  position: absolute;
  z-index: 2;
  bottom: calc(50% - clamp(7rem, 11vw, 14rem));
  left: 50%;
  width: clamp(48px, 6vw, 96px);
  height: 1px;
  background: var(--color-accent);
  transform: translateX(-50%);
  opacity: 0.7;
}

@media (max-width: 720px) {
  .exp-marker { font-size: 0.55rem; letter-spacing: 0.24em; }
  .exp-marker--tl, .exp-marker--tr { top: 1.25rem; }
  .exp-marker--tl, .exp-marker--bl { left: 1.25rem; }
  .exp-marker--tr, .exp-marker--br { right: 1.25rem; }
  .exp-marker--bl, .exp-marker--br { bottom: 1.25rem; }
  .exp-marker--tr em, .exp-marker--bl em, .exp-marker--br em { font-size: 0.9rem; }
  .exp-echo { font-size: clamp(7rem, 38vw, 14rem); }
}

.exp-chapter {
  position: absolute;
  top: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.625rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-muted);
  z-index: 5;
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
}
.exp-chapter em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-accent);
  font-size: 1.1rem;
  letter-spacing: 0;
}

.exp-image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.exp-image-mask {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(100% 0 0 0);
  will-change: clip-path;
}
@media (max-width: 1100px) {
  .exp-image-wrap { min-height: 60vh; }
}

.exp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.18);
  will-change: transform;
  filter: saturate(1.05) contrast(1.02);
}

.exp-img-meta {
  position: absolute;
  left: 1.75rem;
  bottom: 1.5rem;
  z-index: 2;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-text);
  opacity: 0.78;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.exp-content {
  padding: var(--section-normal) 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-surface);
  position: relative;
}
.exp-content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, var(--color-accent) 50%, transparent);
  opacity: 0.4;
}

.exp-content .eyebrow { margin-bottom: 0.625rem; }
.exp-content .section-headline { margin-bottom: 2rem; }

.exp-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(245, 237, 216, 0.7);
  margin-bottom: 2.5rem;
  max-width: 460px;
}

.exp-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 2.75rem;
  border-top: 1px solid rgba(245, 237, 216, 0.08);
}

.exp-details li {
  font-size: 0.95rem;
  color: rgba(245, 237, 216, 0.62);
  padding: 1rem 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: baseline;
  gap: 1rem;
  border-bottom: 1px solid rgba(245, 237, 216, 0.08);
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease-out);
}
.exp-details li::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}
.exp-details li:hover { color: var(--color-text); }
.exp-details li:hover::after { transform: scaleX(1); }

.exp-detail-num {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  font-variant-numeric: tabular-nums;
}
.exp-detail-text { line-height: 1.5; }

/* Arrow button motif used in experience + reserve */
.btn-arrow {
  gap: 0.85rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.btn-arrow .btn-arrow-icon {
  width: 18px;
  height: 18px;
  transform: translateX(0);
  transition: transform 0.4s var(--ease-out);
}
.btn-arrow:hover .btn-arrow-icon { transform: translateX(6px); }

/* === RESERVE === */
.reserve {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-bg);
  isolation: isolate;
}

/* Background image, dimmed cinematic */
.reserve-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.reserve-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.1);
  filter: brightness(0.4) saturate(1.1) contrast(1.05);
  animation: reserveKenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}
.reserve-bg-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(10,8,6,0) 25%, rgba(10,8,6,0.55) 70%, rgba(10,8,6,0.92) 100%),
    linear-gradient(180deg, rgba(10,8,6,0.45) 0%, rgba(10,8,6,0) 25%, rgba(10,8,6,0) 75%, rgba(10,8,6,0.6) 100%);
}
.reserve-bg-grain {
  position: absolute;
  inset: 0;
  background-image: url('assets/noise.png');
  background-size: 200px;
  opacity: 0.15;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Corner markers */
.reserve-marker {
  position: absolute;
  z-index: 3;
  font-family: var(--font-body);
  font-size: 0.625rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.55);
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
}
.reserve-marker em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-accent);
  font-size: 1.05rem;
  letter-spacing: 0;
}
.reserve-marker--tl { top: 2.25rem; left: 2.25rem; }
.reserve-marker--br { bottom: 2.25rem; right: 2.25rem; }

/* Stroked echo word behind */
.reserve-echo {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(10rem, 30vw, 30rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(180, 140, 54, 0.25);
  text-stroke: 1px rgba(180, 140, 54, 0.25);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

/* Centered stage */
.reserve-stage {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
  max-width: 1200px;
}

/* Live status pulse */
.reserve-status {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.625rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.75);
  margin: 0 0 1.75rem;
}
.reserve-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent-hi, var(--color-accent));
  box-shadow: 0 0 12px var(--color-accent-hi, var(--color-accent));
  animation: reserveDotPulse 2s ease-in-out infinite;
}
@keyframes reserveDotPulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

@keyframes reserveKenBurns {
  0%   { transform: scale(1.1)  translate(0, 0); }
  100% { transform: scale(1.18) translate(-2%, -2%); }
}

@media (max-width: 720px) {
  .reserve-marker { font-size: 0.55rem; letter-spacing: 0.24em; }
  .reserve-marker--tl { top: 1.25rem; left: 1.25rem; }
  .reserve-marker--br { bottom: 1.25rem; right: 1.25rem; }
  .reserve-marker em { font-size: 0.9rem; }
  .reserve-echo { font-size: clamp(7rem, 38vw, 14rem); }
}

.reserve-inner {
  padding: var(--section-normal) 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-surface-2);
  position: relative;
  z-index: 1;
}

.reserve-inner .eyebrow {
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
}
.reserve-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent-hi);
  box-shadow: 0 0 10px var(--color-accent-hi);
  animation: reserveDotPulse 2s ease-in-out infinite;
}
@keyframes reserveDotPulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

.reserve-headline { margin-bottom: 1.75rem; }
.reserve-headline em { font-style: italic; color: var(--color-accent); }
.reserve-headline .word {
  display: inline-block;
  overflow: hidden;
}

.reserve-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(245, 237, 216, 0.65);
  margin-bottom: 2.75rem;
  max-width: 420px;
}

.reserve-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.reserve-phone {
  gap: 0.75rem;
  align-items: center;
}
.reserve-phone-icon {
  font-size: 1.05rem;
  color: var(--color-accent);
  transition: transform 0.5s var(--ease-out);
  display: inline-block;
}
.reserve-phone:hover .reserve-phone-icon {
  transform: rotate(-15deg) scale(1.15);
}
.reserve-phone-num { font-variant-numeric: tabular-nums; }

.reserve-email {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-bottom: 2.5rem;
}
.reserve-email a {
  color: var(--color-accent);
  transition: opacity 0.2s;
  position: relative;
}
.reserve-email a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.reserve-email a:hover { opacity: 0.85; }
.reserve-email a:hover::after { transform: scaleX(1); }

.reserve-pills {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.reserve-pills li {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(245, 237, 216, 0.1);
  border-radius: 100px;
  transition: border-color 0.3s, color 0.3s;
}
.reserve-pills li:hover {
  border-color: var(--color-accent);
  color: var(--color-text);
}

.reserve-img-wrap {
  position: relative;
  overflow: hidden;
}

.reserve-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  min-height: 500px;
  transform: scale(1.1);
  will-change: transform;
  animation: reserveKenBurns 22s ease-in-out infinite alternate;
}
@keyframes reserveKenBurns {
  0%   { transform: scale(1.1)  translate(0, 0); }
  100% { transform: scale(1.18) translate(-2%, -2%); }
}

.reserve-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 8, 6, 0.5) 0%,
    transparent 35%,
    transparent 65%,
    rgba(10, 8, 6, 0.4) 100%
  );
}

.reserve-img-frame {
  position: absolute;
  inset: 1.75rem;
  border: 1px solid rgba(245, 237, 216, 0.18);
  pointer-events: none;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reserve-img-frame.in {
  opacity: 1;
  transform: scale(1);
}

.reserve-img-caption {
  position: absolute;
  right: 2.25rem;
  bottom: 2rem;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 0.625rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-text);
  opacity: 0.78;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

/* === FOOTER === */
.footer {
  background: var(--color-bg);
  border-top: 1px solid rgba(245, 237, 216, 0.06);
  padding: 0 0 2.25rem;
  position: relative;
  overflow: hidden;
}

/* Marquee strip at top of footer */
.footer-marquee {
  border-bottom: 1px solid rgba(245, 237, 216, 0.06);
  border-top: 1px solid rgba(245, 237, 216, 0.06);
  padding: 1.25rem 0;
  margin-bottom: 5rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
          mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.footer-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 2.25rem;
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.7);
  will-change: transform;
}
.footer-marquee-track .dot {
  color: var(--color-accent);
  font-size: 0.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  margin: 0 3rem 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(245, 237, 216, 0.06);
  position: relative;
  z-index: 2;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo,
.footer-logo-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  opacity: 0.95;
  display: block;
  animation: footerLogoBreathe 6s ease-in-out infinite;
  transform-origin: center;
}
@keyframes footerLogoBreathe {
  0%, 100% { transform: scale(1);    opacity: 0.95; }
  50%      { transform: scale(1.05); opacity: 1; }
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.35;
  color: var(--color-muted);
}
.footer-tagline em {
  font-style: italic;
  color: var(--color-accent);
  opacity: 0.95;
}

.footer-status {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.footer-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5fbf6f;
  box-shadow: 0 0 8px rgba(95, 191, 111, 0.7);
  animation: reserveDotPulse 2.4s ease-in-out infinite;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
}
.footer-col-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-accent);
  font-size: 1rem;
  letter-spacing: 0;
  font-weight: 400;
}

.footer-col a,
.footer-col p,
.footer-col span {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(245, 237, 216, 0.55);
  transition: color 0.3s var(--ease-out), transform 0.4s var(--ease-out);
}
.footer-link {
  position: relative;
  display: inline-block;
  width: fit-content;
  padding-bottom: 2px;
}
.footer-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.footer-link:hover {
  color: var(--color-text);
  transform: translateX(6px);
}
.footer-link:hover::after { transform: scaleX(1); }

.footer-byo {
  color: var(--color-accent) !important;
  opacity: 0.85;
  font-style: italic;
}

/* Giant ambient wordmark */
.footer-wordmark {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 19rem);
  font-weight: 300;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 237, 216, 0.08);
          text-stroke: 1px rgba(245, 237, 216, 0.08);
  text-align: center;
  padding: 1rem 1rem 0;
  margin-bottom: 1.5rem;
  user-select: none;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  overflow: hidden;
}
.footer-wordmark .ital {
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(184, 120, 40, 0.25);
          text-stroke: 1px rgba(184, 120, 40, 0.25);
}
.footer-wordmark-amp {
  display: inline-block;
  font-style: italic;
  color: rgba(184, 120, 40, 0.4);
  -webkit-text-stroke: 0;
  margin: 0 0.4em;
  vertical-align: 0.2em;
  font-size: 0.7em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.32);
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

.footer-bottom a.footer-legal {
  color: rgba(245, 237, 216, 0.55);
  border-bottom: 1px solid rgba(184, 120, 40, 0.35);
  padding-bottom: 1px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.footer-bottom a.footer-legal:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

.footer-totop {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text);
  padding: 0.6rem 1rem;
  border: 1px solid rgba(245, 237, 216, 0.12);
  border-radius: 100px;
  transition: border-color 0.3s, color 0.3s, transform 0.4s var(--ease-out);
  font-size: 0.625rem;
  letter-spacing: 0.22em;
}
.footer-totop svg {
  width: 12px;
  height: 12px;
  transition: transform 0.4s var(--ease-out);
}
.footer-totop:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}
.footer-totop:hover svg { transform: translateY(-3px); }

/* === SCROLL REVEAL === */
.js-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.js-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  .hero-img,
  .exp-img { transform: none !important; }
  .scroll-line { animation: none; opacity: 0.5; }
  .js-reveal { opacity: 1; transform: none; transition: none; }
  .dish-card { transition: none; }
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .experience,
  .reserve { grid-template-columns: 1fr; }

  .reserve-img-wrap { order: -1; }
  .reserve-img { min-height: 340px; }

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

@media (max-width: 768px) {
  :root {
    --section-tight:  3rem;
    --section-normal: 5.5rem;
    --section-loose:  8rem;
  }

  .nav { padding: 1.25rem 1.5rem; }
  .nav.scrolled { padding: 0.875rem 1.5rem; }
  .nav-wordmark { display: none; }
  .nav-links { gap: 1.25rem; }
  .logo-svg { width: 34px; height: 34px; }

  .hero { padding: 0 1.5rem 5.5rem; }
  .scroll-indicator { display: none; }

  .banner-content { padding: 0 1.5rem; }

  .three-label { left: 1.5rem; }

  .menu-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; padding: 0 1.5rem; }
  .dish-track { padding: 0.5rem 1.5rem 2rem; gap: 1rem; }
  .dish-card { flex: 0 0 260px; }

  .exp-content,
  .reserve-inner { padding: var(--section-tight) 1.5rem; }
  .exp-chapter { top: 1.25rem; }
  .quote-bracket { width: 36px; height: 36px; }
  .quote-bracket--tl, .quote-bracket--tr { top: 1.25rem; }
  .quote-bracket--bl, .quote-bracket--br { bottom: 1.25rem; }
  .quote-bracket--tl, .quote-bracket--bl { left: 1.25rem; }
  .quote-bracket--tr, .quote-bracket--br { right: 1.25rem; }
  .reserve-img-frame { inset: 1rem; }
  .reserve-img-caption { right: 1.25rem; bottom: 1.25rem; }
  .exp-img-meta { left: 1.25rem; bottom: 1rem; font-size: 0.85rem; }

  .footer-top { padding: 0 1.5rem 3rem; margin: 0 0 3rem; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; padding: 0 1.5rem; }
  .footer-marquee { margin-bottom: 3rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .reserve-actions { flex-direction: column; }
  .footer-cols { grid-template-columns: 1fr; }
}

/* === MOBILE OPTIMISATIONS — homepage + Menu section ============== */
@media (max-width: 768px) {
  /* Mobile inherits the desktop pin + scrub. Keep the 200vh buffer so the
     pinned banner has room to scroll through and the menu pull-up works. */
  .menu-section {
    padding: var(--section-normal) 1.5rem var(--section-tight);
  }

  .menu-frame-head {
    margin-bottom: 2.25rem;
    gap: 0.35rem;
  }
  .menu-frame-note { font-size: 0.625rem; letter-spacing: 0.14em; }

  /* Stage: sits above the list AND sticks below the nav so the photo is
     always visible while the user scrolls through the dish list. */
  .menu-grid { gap: 1.5rem; }
  .menu-stage {
    position: sticky;
    top: 64px;
    height: 38vh;
    min-height: 240px;
    z-index: 3;
    order: -1;
    background: var(--color-bg);
    padding-bottom: 0.75rem;
  }
  .menu-img-frame { inset: 10px; }
  .menu-stage-meta { font-size: 0.625rem; gap: 0.6rem; }
  .meta-divider { width: 18px; }

  /* Rows: tap-target friendly + tighter rhythm */
  .menu-row {
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    padding: 1rem 0;
    min-height: 56px;
  }
  .menu-row-arrow { display: none; }
  .menu-num { padding-top: 0.55em; font-size: 0.625rem; }
  .menu-name { font-size: clamp(1.4rem, 6.4vw, 2rem); }
  .menu-ing { font-size: 0.65rem; letter-spacing: 0.04em; line-height: 1.5; }
  .menu-course { padding: 1.25rem 0 0.5rem; margin-top: 0.75rem; }
  .course-label { font-size: 0.625rem; letter-spacing: 0.22em; }

  .menu-cta-foot {
    align-items: stretch;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
  .menu-cta-foot .btn-amber { width: 100%; min-width: 0; justify-content: center; }
  .menu-cta-foot .pdf-btn { width: auto; }
  .menu-cta-foot::before { display: none; }

  /* Wellington banner: keep 100vh so the pin holds a full viewport, but
     anchor content to the top (with breathing room for the nav + marquee
     above) so the title doesn't sit dead-centre. */
  .wellington-banner.pin-top {
    align-items: flex-start;
    padding-top: 12vh;
  }
  .banner-content { padding: 0 1.5rem; }
  .banner-headline { font-size: clamp(2.5rem, 11vw, 4.25rem); }
  .banner-body { font-size: 0.95rem; margin-bottom: 1.75rem; }

  /* Marquee: tighten height for less vertical waste */
  .marquee-strip { height: auto; padding: 1.25rem 0; }

  /* Pull-quote breathing room */
  .pull-quote { padding: var(--section-normal) 1.5rem; }

  /* Hero: ensure CTAs are actual tap targets */
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { min-height: 52px; }
}

@media (max-width: 480px) {
  .menu-section { padding: var(--section-tight) 1.25rem; }
  .menu-stage { height: 32vh; min-height: 220px; }
  .menu-name { font-size: 1.4rem; }
  .menu-row { gap: 0.7rem; }
}

/* ============================================================================
   LOADER — Studio-lit ignition (first-load only)
   ============================================================================ */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: #000; overflow: hidden; isolation: isolate;
  pointer-events: none;
}
.loader.is-done { animation: ldSheetOut 0.9s var(--ease-cinematic) forwards; }
@keyframes ldSheetOut {
  0%   { opacity: 1; filter: none; }
  100% { opacity: 0; filter: blur(2px); visibility: hidden; }
}

.ld-backdrop { position: absolute; inset: 0; background: radial-gradient(ellipse 140% 100% at 50% 60%, #0c0a08 0%, #000 80%); }

.ld-key {
  position: absolute; left: -10%; top: -30%; width: 90%; height: 140%;
  background: radial-gradient(ellipse at 30% 30%, rgba(255,200,140,.18) 0%, rgba(212,150,10,.06) 25%, transparent 55%);
  filter: blur(40px); opacity: 0; pointer-events: none; mix-blend-mode: screen;
  animation: ldKey 3.4s var(--ease-out) forwards;
}
.ld-rim {
  position: absolute; right: -10%; bottom: -30%; width: 80%; height: 120%;
  background: radial-gradient(ellipse at 70% 70%, rgba(180,200,230,.06) 0%, rgba(140,160,200,.03) 30%, transparent 60%);
  filter: blur(50px); opacity: 0; pointer-events: none; mix-blend-mode: screen;
  animation: ldRim 3.4s var(--ease-out) forwards;
}
.ld-fill {
  position: absolute; left: 0; right: 0; bottom: 0; height: 50%;
  background: radial-gradient(ellipse at 50% 100%, rgba(184,120,40,.1) 0%, transparent 60%);
  opacity: 0; pointer-events: none; mix-blend-mode: screen;
  animation: ldFill 3.4s var(--ease-out) 0.2s forwards;
}

.ld-bloom-3 {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%) scale(0);
  width: 140vmin; height: 140vmin; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,160,60,.16) 0%, rgba(184,90,20,.08) 30%, transparent 60%);
  filter: blur(20px); opacity: 0; pointer-events: none; mix-blend-mode: screen;
  animation: ldBloom3 3.4s var(--ease-cinematic) forwards;
}
.ld-bloom-2 {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%) scale(0);
  width: 70vmin; height: 70vmin; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,200,120,.45) 0%, rgba(212,150,10,.18) 30%, transparent 60%);
  filter: blur(12px); opacity: 0; pointer-events: none; mix-blend-mode: screen;
  animation: ldBloom2 3.4s var(--ease-cinematic) forwards;
}
.ld-bloom-1 {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%) scale(0);
  width: 30vmin; height: 30vmin; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,240,200,.85) 0%, rgba(255,180,80,.4) 30%, transparent 70%);
  filter: blur(6px); opacity: 0; pointer-events: none; mix-blend-mode: screen;
  animation: ldBloom1 3.4s var(--ease-cinematic) forwards;
}

.ld-spark {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%) scale(0);
  width: 6px; height: 6px; border-radius: 50%; background: #fff;
  box-shadow: 0 0 14px 4px rgba(255,240,210,1), 0 0 36px 10px rgba(255,200,130,.85);
  opacity: 0; mix-blend-mode: screen;
  animation: ldSpark 3.4s var(--ease-cinematic) forwards;
}

.ld-flare {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%) scaleX(0);
  width: 120vmax; height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,200,120,0) 20%, rgba(255,220,160,.7) 50%, rgba(255,200,120,0) 80%, transparent 100%);
  filter: blur(1px); opacity: 0; pointer-events: none; mix-blend-mode: screen; transform-origin: center;
  animation: ldFlare 3.4s var(--ease-cinematic) forwards;
}

.ld-title {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-display); font-weight: 300; font-size: clamp(2rem, 5.4vw, 4.4rem);
  letter-spacing: 0.34em; color: #F5EDD8; text-transform: uppercase;
  display: flex; gap: 0; white-space: nowrap;
  text-shadow:
    -1px 0 0 rgba(180,200,230,.08),
    1px 0 0 rgba(255,200,120,.12),
    0 0 40px rgba(212,150,10,.22),
    0 0 80px rgba(255,160,60,.1);
}
.ld-title em { font-style: italic; color: var(--color-accent-hi); font-weight: 400; }
.ld-title span { display: inline-block; opacity: 0; transform: translateY(14px) scale(.94); filter: blur(6px); animation: ldLetter 1.1s var(--ease-out) forwards; }
.ld-title span:nth-child(1)  { animation-delay: 1.05s; }
.ld-title span:nth-child(2)  { animation-delay: 1.13s; }
.ld-title span:nth-child(3)  { animation-delay: 1.21s; }
.ld-title span:nth-child(4)  { animation-delay: 1.32s; }
.ld-title span:nth-child(5)  { animation-delay: 1.4s;  }
.ld-title span:nth-child(6)  { animation-delay: 1.48s; }
.ld-title span:nth-child(7)  { animation-delay: 1.56s; }
.ld-title span:nth-child(8)  { animation-delay: 1.64s; }
.ld-title span:nth-child(9)  { animation-delay: 1.72s; }
.ld-title span:nth-child(10) { animation-delay: 1.8s;  }
.ld-title span:nth-child(11) { animation-delay: 1.88s; }
.ld-title span:nth-child(12) { animation-delay: 1.96s; }
.ld-title span:nth-child(13) { animation-delay: 2.04s; }

.ld-marker {
  position: absolute; font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem; letter-spacing: 0.32em; color: rgba(245,237,216,.28);
  text-transform: uppercase; opacity: 0;
  animation: ldMarker 3.4s ease forwards;
}
.ld-marker.tl { top: 1.5rem; left: 1.5rem; animation-delay: 0.5s; }
.ld-marker.tr { top: 1.5rem; right: 1.5rem; animation-delay: 0.55s; }
.ld-marker.bl { bottom: 1.5rem; left: 1.5rem; animation-delay: 0.6s; }
.ld-marker.br { bottom: 1.5rem; right: 1.5rem; animation-delay: 0.65s; }

.ld-progress-wrap {
  position: absolute; left: 50%; bottom: 9%; transform: translateX(-50%);
  width: 240px; display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  opacity: 0; animation: ldProgFade 3.4s ease forwards;
}
.ld-progress-meta {
  display: flex; justify-content: space-between; width: 100%;
  font-family: 'JetBrains Mono', monospace; font-size: 0.55rem;
  letter-spacing: 0.32em; color: var(--color-muted); text-transform: uppercase;
}
.ld-progress-meta b { color: var(--color-accent-hi); font-weight: 500; font-variant-numeric: tabular-nums; }
.ld-progress-track {
  width: 100%; height: 1px; background: rgba(245,237,216,.1);
  position: relative; overflow: hidden;
}
.ld-progress-fill {
  position: absolute; inset: 0 100% 0 0;
  background: linear-gradient(90deg, rgba(212,150,10,.4), var(--color-accent-hi));
  box-shadow: 0 0 12px rgba(212,150,10,.6);
  animation: ldProgFill 1.6s var(--ease-cinematic) 0.7s forwards;
}

.ld-mote {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,220,170,.5); box-shadow: 0 0 6px 2px rgba(255,200,140,.3);
  opacity: 0; pointer-events: none;
  animation: ldMote 4s ease-out forwards;
}
.ld-mote:nth-child(10) { left: 38%; top: 60%; animation-delay: 0.6s; }
.ld-mote:nth-child(11) { left: 55%; top: 65%; width: 2px; height: 2px; animation-delay: 0.85s; }
.ld-mote:nth-child(12) { left: 48%; top: 70%; width: 4px; height: 4px; animation-delay: 0.7s; }
.ld-mote:nth-child(13) { left: 62%; top: 55%; animation-delay: 1.0s; }
.ld-mote:nth-child(14) { left: 42%; top: 48%; width: 2px; height: 2px; animation-delay: 1.15s; }
.ld-mote:nth-child(15) { left: 58%; top: 42%; width: 3px; height: 3px; animation-delay: 1.3s; }

.ld-grain {
  position: absolute; inset: -50%; width: 200%; height: 200%;
  pointer-events: none; opacity: 0.045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}
.ld-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,.5) 100%);
  pointer-events: none;
}

@keyframes ldKey  { 0% {opacity: 0;} 12% {opacity: .85;} 65% {opacity: 1;} 100% {opacity: .85;} }
@keyframes ldRim  { 0% {opacity: 0;} 18% {opacity: .65;} 65% {opacity: .8;} 100% {opacity: .6;} }
@keyframes ldFill { 0% {opacity: 0;} 30% {opacity: .7;} 80% {opacity: .85;} 100% {opacity: .7;} }
@keyframes ldSpark {
  0%   {opacity: 0; transform: translate(-50%,-50%) scale(0);}
  8%   {opacity: 1; transform: translate(-50%,-50%) scale(1.6);}
  14%  {opacity: 1; transform: translate(-50%,-50%) scale(1);}
  25%  {opacity: .6; transform: translate(-50%,-50%) scale(.8);}
  50%  {opacity: 0; transform: translate(-50%,-50%) scale(.6);}
  100% {opacity: 0;}
}
@keyframes ldBloom1 {
  0% {opacity: 0; transform: translate(-50%,-50%) scale(0);}
  10% {opacity: 1; transform: translate(-50%,-50%) scale(1.2);}
  30% {opacity: .85; transform: translate(-50%,-50%) scale(1);}
  65% {opacity: .5; transform: translate(-50%,-50%) scale(1.05);}
  100% {opacity: .3; transform: translate(-50%,-50%) scale(1.1);}
}
@keyframes ldBloom2 {
  0% {opacity: 0; transform: translate(-50%,-50%) scale(0);}
  14% {opacity: .7; transform: translate(-50%,-50%) scale(.5);}
  35% {opacity: .85; transform: translate(-50%,-50%) scale(1);}
  65% {opacity: .5; transform: translate(-50%,-50%) scale(1.1);}
  100% {opacity: .3; transform: translate(-50%,-50%) scale(1.15);}
}
@keyframes ldBloom3 {
  0% {opacity: 0; transform: translate(-50%,-50%) scale(0);}
  20% {opacity: .4; transform: translate(-50%,-50%) scale(.4);}
  45% {opacity: .85; transform: translate(-50%,-50%) scale(1);}
  70% {opacity: .6; transform: translate(-50%,-50%) scale(1.1);}
  100% {opacity: .4; transform: translate(-50%,-50%) scale(1.2);}
}
@keyframes ldFlare {
  0%, 8%   {opacity: 0; transform: translate(-50%,-50%) scaleX(0);}
  14%      {opacity: 1; transform: translate(-50%,-50%) scaleX(1);}
  22%      {opacity: .85; transform: translate(-50%,-50%) scaleX(1);}
  45%      {opacity: 0; transform: translate(-50%,-50%) scaleX(1);}
  100%     {opacity: 0;}
}
@keyframes ldLetter {
  0%   {opacity: 0; transform: translateY(14px) scale(.94); filter: blur(6px);}
  60%  {opacity: 1; transform: translateY(0) scale(1); filter: blur(0);}
  100% {opacity: 1; transform: translateY(0) scale(1); filter: blur(0);}
}
@keyframes ldMarker { 0% {opacity: 0;} 25% {opacity: .7;} 80% {opacity: .7;} 100% {opacity: 0;} }
@keyframes ldProgFade { 0% {opacity: 0;} 20% {opacity: 1;} 78% {opacity: 1;} 100% {opacity: 0;} }
@keyframes ldProgFill { 0% {inset: 0 100% 0 0;} 100% {inset: 0 0 0 0;} }
@keyframes ldMote { 0% {opacity: 0; transform: translateY(0) translateX(0);} 20% {opacity: .8;} 100% {opacity: 0; transform: translateY(-220px) translateX(40px);} }

/* Lock body scroll while loader is up */
body.is-loading { overflow: hidden; }
body.is-loading .nav { opacity: 0; }
body.is-loading .scroll-progress { opacity: 0; }
.nav { transition: opacity 0.6s var(--ease-out); }


/* ============ FILM SECTION (portrait reel + ambient backdrop) ============ */
.film {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 6rem 0;
  overflow: hidden;
  background: #050403;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

/* Ambient blurred backdrop — same source video, heavy blur + dim */
.film-bg {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  object-fit: cover;
  filter: blur(48px) brightness(0.5) saturate(1.15);
  transform: scale(1.18);
  z-index: 0;
  pointer-events: none;
}
.film-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0) 30%, rgba(5,4,3,0.55) 75%, rgba(5,4,3,0.92) 100%),
    linear-gradient(180deg, rgba(5,4,3,0.55) 0%, rgba(5,4,3,0) 18%, rgba(5,4,3,0) 82%, rgba(5,4,3,0.7) 100%);
  pointer-events: none;
}
.film-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url('assets/noise.png');
  background-size: 220px;
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Editorial corner chrome */
.film-marker {
  position: absolute;
  z-index: 5;
  font-family: var(--font-body);
  font-size: 0.625rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.6);
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
}
.film-marker em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-accent);
  font-size: 1.05rem;
  letter-spacing: 0;
}
.film-marker--tl { top: 2.25rem; left: 2.25rem; }
.film-marker--tr { top: 2.25rem; right: 2.25rem; }
.film-marker--bl { bottom: 2.25rem; left: 2.25rem; }
.film-marker--br { bottom: 2.25rem; right: 2.25rem; }

/* Centered stage */
.film-stage {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* The portrait frame — 9:16 phone ratio, capped to viewport height. Button so the whole surface toggles sound. */
.film-frame {
  appearance: none;
  border: 0;
  padding: 0;
  position: relative;
  aspect-ratio: 9 / 16;
  height: min(82vh, 880px);
  max-width: 92vw;
  background: #000;
  border-radius: 2px;
  box-shadow:
    0 1px 0 rgba(245, 237, 216, 0.08) inset,
    0 60px 120px -20px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(180, 140, 54, 0.18);
  overflow: hidden;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
.film-frame:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}
.film-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Subtle gold inner frame line */
.film-frame-rule {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(245, 237, 216, 0.08);
  pointer-events: none;
}

/* Floating sound pill overlaid on the video, bottom-center */
.film-sound-pill {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1rem;
  background: rgba(10, 8, 6, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 237, 216, 0.22);
  color: rgba(245, 237, 216, 0.92);
  font-family: var(--font-body);
  font-size: 0.625rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  pointer-events: none; /* clicks fall through to the .film-frame button */
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.film-frame:hover .film-sound-pill {
  background: rgba(10, 8, 6, 0.7);
  border-color: var(--color-accent);
}
.film-sound-icon { width: 14px; height: 14px; }
.film-sound-pill .film-sound-icon--on { display: none; }
.film-frame.is-on .film-sound-pill .film-sound-icon--off { display: none; }
.film-frame.is-on .film-sound-pill .film-sound-icon--on { display: block; }

@media (max-width: 720px) {
  .film { padding: 4rem 0; }
  .film-frame { height: 78vh; }
  .film-marker { font-size: 0.55rem; letter-spacing: 0.24em; }
  .film-marker--tl, .film-marker--tr { top: 1.25rem; }
  .film-marker--tl, .film-marker--bl { left: 1.25rem; }
  .film-marker--tr, .film-marker--br { right: 1.25rem; }
  .film-marker--bl, .film-marker--br { bottom: 1.25rem; }
  .film-marker em { font-size: 0.9rem; }
}

/* ─────────────────────────────────────────────────────────────────────────
   HOURS SECTION — prominent opening times, anchored from nav
   ───────────────────────────────────────────────────────────────────── */
.hours {
  background: var(--color-bg, #0a0806);
  color: var(--color-fg, #f5edd8);
  padding: clamp(4rem, 9vw, 7rem) 1.5rem;
  border-top: 1px solid rgba(245, 237, 216, 0.06);
  border-bottom: 1px solid rgba(245, 237, 216, 0.06);
  position: relative;
  z-index: 2;
}
.hours-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.hours-eyebrow {
  display: inline-block;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-accent, #b48c36);
  margin-bottom: 1.75rem;
}
.hours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hours-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: baseline;
  gap: 1.5rem;
  font-family: var(--font-display, "Fraunces", serif);
  font-weight: 300;
  font-size: clamp(1.5rem, 3.6vw, 2.4rem);
  line-height: 1.15;
  padding: 0.6rem 0;
}
.hours-row + .hours-row { border-top: 1px solid rgba(245, 237, 216, 0.07); }
.hours-row::before {
  content: "";
  grid-column: 2;
  width: 2.5rem;
  height: 1px;
  background: rgba(245, 237, 216, 0.18);
  align-self: center;
}
.hours-days {
  text-align: right;
  letter-spacing: -0.01em;
}
.hours-time {
  text-align: left;
  font-style: italic;
  color: var(--color-accent, #b48c36);
}
.hours-row--closed .hours-time {
  color: rgba(245, 237, 216, 0.45);
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85em;
}
.hours-note {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.45);
  margin-top: 1.5rem;
}

@media (max-width: 640px) {
  .hours { padding: 3rem 1.25rem; }
  .hours-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    text-align: center;
    padding: 0.85rem 0;
  }
  .hours-row::before { display: none; }
  .hours-days, .hours-time { text-align: center; }
  .hours-eyebrow { font-size: 0.62rem; letter-spacing: 0.28em; }
}

/* ─────────────────────────────────────────────────────────────────────────
   FOOTER LOGO — hover brightens, echoing the nav rollover behavior
   ───────────────────────────────────────────────────────────────────── */
.footer-brand {
  cursor: pointer;
  transition: filter 320ms ease;
}
.footer-logo-img {
  transition: filter 320ms ease, opacity 320ms ease, transform 320ms ease;
}
.footer-brand:hover .footer-logo-img,
.footer:hover .footer-logo-img {
  opacity: 1;
  filter: brightness(1.25) drop-shadow(0 0 18px rgba(180, 140, 54, 0.35));
}

/* ─────────────────────────────────────────────────────────────────────────
   MOBILE NAV — make the new 3-link nav legible on phones
   ───────────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .nav { padding: 0.85rem 1rem; }
  .nav-links { gap: 0.9rem; }
  .nav-link {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }
  .nav-cta {
    padding: 0.45rem 0.85rem;
  }
}
@media (max-width: 380px) {
  .nav-links { gap: 0.65rem; }
  .nav-link { font-size: 0.66rem; letter-spacing: 0.1em; }
}

/* ─────────────────────────────────────────────────────────────────────────
   SECTION BREAKER — gold rule that draws right→left on scroll
   ───────────────────────────────────────────────────────────────────── */
.rule-breaker {
  background: var(--color-bg, #0a0806);
  padding: clamp(3rem, 7vw, 5rem) 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.rule-breaker-line {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(180, 140, 54, 0) 0%,
    rgba(180, 140, 54, 0.85) 18%,
    var(--color-accent, #b48c36) 50%,
    rgba(180, 140, 54, 0.85) 82%,
    rgba(180, 140, 54, 0) 100%
  );
  transform-origin: right center;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .rule-breaker-line { transform: scaleX(1) !important; }
}
