/* ============================================================
   MARÉE — a harbourside tasting room, in five acts
   Dark cinematic world · Playfair Display (Didone) × Manrope
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(224,167,90,.28); color: #fff; }

:root {
  --bg:        #0b0a09;
  --bg-2:      #141110;
  --bg-3:      #1c1714;
  --ink:       #efe7d8;
  --ink-2:     #cabfac;
  --mute:      #9a8f7c;   /* labels — 5.9:1 on bg */
  --line:      rgba(239,231,216,.12);
  --line-2:    rgba(239,231,216,.22);
  --ember:     #e0a75a;   /* warm amber — 8.8:1 on bg */
  --ember-deep:#c88a3c;
  --brass:     #b8925a;
  --brass-hi:  #e7cf9c;
  --wine:      #4a1d20;
  --on-ember:  #160d03;

  --gutter: clamp(20px, 5vw, 88px);
  --maxw: 1240px;
  --r: 3px;

  --rose:      #d98a86;   /* the sweet close — Tokaji-rose, Act V only */
  --rose-deep: #b45f6a;

  /* ember light — warmth + position driven by JS through the acts */
  --glow-x: 50%;
  --glow-y: 42%;
  --glow-warm: 0.5;
  --glow-rose: 0;         /* 0 through the savoury acts → 1 at the curtain */
}

/* ---------- shared type ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
  color: var(--mute); margin: 0 0 22px;
}
.kicker__rule { display: inline-block; width: 30px; height: 1px; background: var(--line-2); }
.kicker--ember { color: var(--ember); }
.kicker--ember .kicker__rule { background: linear-gradient(90deg, transparent, var(--ember-deep)); }

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; margin: 0; }

/* brass-foil emphasis for section headings */
.foil {
  color: var(--brass-hi);
  background: linear-gradient(94deg, var(--brass) 8%, var(--brass-hi) 46%, var(--ember-deep) 92%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .foil { -webkit-text-fill-color: currentColor; color: var(--brass-hi); }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: 15px 26px; border-radius: var(--r);
  font-family: 'Manrope', sans-serif; font-size: 13.5px; font-weight: 600; letter-spacing: .04em;
  border: 1px solid transparent; cursor: pointer; will-change: transform;
  transition: background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.btn--ember {
  background: linear-gradient(180deg, var(--ember) 0%, var(--ember-deep) 100%);
  color: var(--on-ember); box-shadow: 0 10px 34px -14px rgba(224,167,90,.6);
}
.btn--ember:hover { box-shadow: 0 14px 40px -12px rgba(224,167,90,.78); filter: brightness(1.05); }
.btn--ghost { border-color: var(--line-2); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ember); color: var(--ember); }
.btn--block { width: 100%; padding-block: 17px; }
/* press feedback (Emil): only on non-magnetic buttons — the magnetic ones carry a live GSAP
   inline transform, so a CSS transform-transition here would fight it frame-by-frame. */
.btn:not([data-magnetic]) { transition: background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease, transform .16s ease-out; }
.btn:not([data-magnetic]):active { transform: scale(.97); }

/* ---------- skip / focus ---------- */
.skip { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--ember); color: var(--on-ember);
  padding: 10px 16px; border-radius: var(--r); font-weight: 600; font-size: 13px; transition: top .2s ease; }
.skip:focus { top: 12px; }
:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; border-radius: 2px; }
:focus:not(:focus-visible) { outline: none; }

/* ============================================================
   NAV
   ============================================================ */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background .4s ease, backdrop-filter .4s ease, border-color .4s ease; border-bottom: 1px solid transparent; }
.nav.is-stuck { background: rgba(11,10,9,.82); backdrop-filter: blur(14px) saturate(1.1); border-bottom-color: var(--line); }
.nav__inner { max-width: var(--maxw); margin: 0 auto; padding: 18px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav__brand { display: inline-flex; align-items: center; gap: 11px; font-family: 'Playfair Display', serif; font-weight: 600; font-size: 21px; letter-spacing: .16em; color: var(--ink); }
.nav__mark { color: var(--ember); }
.nav__word { padding-top: 2px; }
.nav__links { display: flex; align-items: center; gap: clamp(18px, 2vw, 34px); }
.nav__links > a { font-size: 13.5px; font-weight: 500; letter-spacing: .03em; color: var(--ink-2); transition: color .25s ease; }
.nav__links > a:hover { color: var(--ember); }
.nav__cta { padding: 10px 20px; border: 1px solid var(--line-2); border-radius: var(--r); color: var(--ink) !important; will-change: transform; transition: border-color .3s ease, color .3s ease, background .3s ease; }
.nav__cta:hover { border-color: var(--ember); color: var(--ember) !important; background: rgba(224,167,90,.06); }
.nav__toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; padding: 0 var(--gutter) clamp(48px, 8vh, 96px); isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -3; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.hero__scrim { position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,10,9,.72) 0%, rgba(11,10,9,.28) 30%, rgba(11,10,9,.55) 66%, rgba(11,10,9,.96) 100%),
    linear-gradient(90deg, rgba(11,10,9,.86) 0%, rgba(11,10,9,.3) 52%, transparent 100%);
}
/* bespoke candle-light motif */
.hero__ember { position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background: radial-gradient(38vw 46vh at 22% 62%, rgba(224,167,90,.24), rgba(200,138,60,.08) 42%, transparent 70%);
  mix-blend-mode: screen; animation: flicker 5.5s ease-in-out infinite; }
/* letterbox / vignette frame */
.hero__frame { position: absolute; inset: 0; z-index: -1; pointer-events: none;
  box-shadow: inset 0 0 200px 40px rgba(11,10,9,.7); }
.hero__frame::before, .hero__frame::after { content: ""; position: absolute; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(184,146,90,.4), transparent); }
.hero__frame::before { top: 74px; } .hero__frame::after { bottom: 26px; }
@keyframes flicker { 0%,100% { opacity: 1; } 45% { opacity: .82; } 70% { opacity: .93; } }

.hero__inner { position: relative; max-width: 760px; }
.hero__title { font-size: clamp(46px, 8.4vw, 116px); line-height: .98; letter-spacing: -.015em; margin: 6px 0 0; }
.hero__title span { display: block; }
.hero__title em { font-style: italic; color: var(--ember); }
.hero__lede { max-width: 46ch; margin: 30px 0 0; font-size: clamp(16px, 1.25vw, 19px); color: var(--ink-2); line-height: 1.66; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__seatings { margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 13px; color: var(--mute); letter-spacing: .02em; }
.hero__seatings-k { color: var(--ember); font-weight: 600; letter-spacing: .18em; text-transform: uppercase; font-size: 11px; margin-right: 4px; }

.scrollcue { position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%); z-index: 2; width: 22px; height: 34px; border: 1px solid var(--line-2); border-radius: 12px; }
.scrollcue span { position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; margin-left: -1.5px; border-radius: 2px; background: var(--ember); animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 0%,100% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 72% { opacity: 0; transform: translateY(11px); } }

/* ============================================================
   OVERTURE
   ============================================================ */
.overture { position: relative; text-align: center; padding: clamp(96px, 16vh, 190px) var(--gutter); background: var(--bg-2); overflow: hidden; }
.overture::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60vw 40vh at 50% 40%, rgba(224,167,90,.08), transparent 70%); pointer-events: none; }
.overture::after { content: ""; position: absolute; left: var(--gutter); right: var(--gutter); top: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--line-2), transparent); }
.overture__mark { position: relative; width: clamp(90px, 12vw, 140px); margin: 0 auto 26px; color: var(--brass); opacity: .55; }
.overture__mark svg { width: 100%; height: auto; }
.overture__eyebrow { position: relative; font-size: 11.5px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--ember); margin: 0 0 26px; }
.overture__quote { position: relative; max-width: 20ch; margin: 0 auto; font-family: 'Playfair Display', serif; font-weight: 500; font-size: clamp(30px, 5.4vw, 66px); line-height: 1.12; letter-spacing: -.01em; color: var(--ink); }
.overture__sign { position: relative; margin-top: 34px; font-size: 12px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--mute); }

/* ============================================================
   THE ACTS — pinned cinematic menu
   ============================================================ */
.acts { position: relative; padding: clamp(90px, 14vh, 170px) 0 clamp(60px, 9vh, 110px); background: var(--bg); }
.acts__head { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); text-align: center; }
.acts__title { font-size: clamp(34px, 5.6vw, 76px); line-height: 1.02; letter-spacing: -.012em; }
.acts__title em { font-style: italic; }
.acts__note { margin: 16px auto 0; max-width: 42ch; color: var(--mute); font-size: clamp(15px, 1.1vw, 17px); }

/* --- the stage --- */
.stage { position: relative; margin-top: clamp(40px, 6vh, 80px); }
.stage__light { display: none; }
.stage__rail { display: none; }

/* acts as a readable stacked list (default / no-JS / reduced motion) */
.stage__acts { list-style: none; margin: 0; padding: 0; }
.act { position: relative; max-width: var(--maxw); margin: 0 auto; padding: clamp(48px, 8vh, 96px) var(--gutter);
  display: grid; grid-template-columns: 1.02fr 1fr; gap: clamp(28px, 5vw, 76px); align-items: center; }
.act + .act { border-top: 1px solid var(--line); }
.stage:not(.is-cinematic) .act:nth-child(even) .act__media { order: 2; }
.act__num { position: absolute; top: clamp(20px, 4vh, 44px); left: var(--gutter);
  font-family: 'Playfair Display', serif; font-style: italic; font-weight: 600;
  font-size: clamp(46px, 7vw, 104px); line-height: 1; letter-spacing: -.02em;
  color: var(--brass-hi);
  background: linear-gradient(180deg, var(--brass-hi), var(--brass) 55%, var(--ember-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  opacity: .5; pointer-events: none; }
.act__ghost { display: none; }
.act__media { position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line);
  box-shadow: 0 40px 90px -50px rgba(0,0,0,.9); aspect-ratio: 4/3.4; }
.act__media img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.act__copy { position: relative; padding-top: clamp(30px, 5vh, 56px); }
.act__stage { font-size: 11px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--ember); margin: 0 0 14px; }
.act__name { font-size: clamp(26px, 3.4vw, 44px); line-height: 1.08; letter-spacing: -.01em; color: var(--ink); }
.act__desc { margin: 16px 0 0; max-width: 40ch; color: var(--ink-2); font-size: clamp(15px, 1.1vw, 17px); }
.act__pair { margin: 22px 0 0; padding-top: 16px; border-top: 1px solid var(--line); font-family: 'Playfair Display', serif; font-style: italic; font-size: 18px; color: var(--brass-hi); }
.act__pair span { display: block; font-family: 'Manrope', sans-serif; font-style: normal; font-size: 10.5px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--mute); margin-bottom: 5px; }

.acts__foot { max-width: var(--maxw); margin: clamp(40px, 6vh, 72px) auto 0; padding: 0 var(--gutter); text-align: center; font-size: 13px; color: var(--mute); letter-spacing: .02em; }
.acts__foot span { color: var(--ember); font-weight: 600; }

/* ---- CINEMATIC MODE (JS adds .is-cinematic once pinned) ---- */
.stage.is-cinematic { height: 100svh; overflow: hidden; }
.stage.is-cinematic .stage__light { display: block; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(34vw 44vh at var(--glow-x) var(--glow-y),
    rgba(224,167,90, calc(.10 + .30 * var(--glow-warm))),
    rgba(200,138,60, calc(.03 + .10 * var(--glow-warm))) 44%, transparent 72%);
  mix-blend-mode: screen; animation: flicker 6s ease-in-out infinite; }
/* the sweet close — a rose wash fades in over the amber only at the curtain (Act V) */
.stage.is-cinematic .stage__light::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(38vw 48vh at var(--glow-x) var(--glow-y),
    rgba(228,120,150, calc(.32 * var(--glow-rose))),
    rgba(176,74,116, calc(.14 * var(--glow-rose))) 46%, transparent 74%);
  mix-blend-mode: screen; }
.stage.is-cinematic .stage__acts { position: absolute; inset: 0; z-index: 1; }
.stage.is-cinematic .act { position: absolute; inset: 0; margin: 0 auto; height: 100%;
  padding: clamp(88px, 13vh, 150px) var(--gutter) clamp(56px, 9vh, 96px);
  border-top: 0; opacity: 0; visibility: hidden; will-change: opacity, transform; }
.stage.is-cinematic .act.is-active { opacity: 1; visibility: visible; }
.stage.is-cinematic .act + .act { border-top: 0; }
.stage.is-cinematic .act__media { opacity: 1 !important; aspect-ratio: auto; height: 100%; max-height: min(60vh, 520px); align-self: center; }
.stage.is-cinematic .act__media img { transform: none; }
/* the small top-left folio is dropped in cinema — the lit rail and the oversized ghost drop-figure carry the numeral */
.stage.is-cinematic .act__num { display: none; }
.stage.is-cinematic .act__copy { position: relative; z-index: 2; padding-top: 0; will-change: transform; }
/* oversized ghost numeral fills the lower-right void; clipped by the stage frame, fades with its act */
.stage.is-cinematic .act__ghost { display: block; position: absolute; z-index: 0; pointer-events: none; user-select: none;
  right: clamp(-24px, -1.5vw, -8px); bottom: clamp(-72px, -8vh, -36px);
  font-family: 'Playfair Display', serif; font-style: italic; font-weight: 700;
  font-size: clamp(210px, 34vw, 470px); line-height: .72; letter-spacing: -.045em;
  color: var(--brass-hi);
  background: linear-gradient(176deg, var(--brass-hi), var(--brass) 48%, var(--ember-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; opacity: .10; }
.stage.is-cinematic .act[data-rose] .act__ghost {
  background: linear-gradient(176deg, #e7c7c0, var(--rose) 50%, var(--rose-deep)); -webkit-text-fill-color: transparent; }

/* --- the programme rail: a spine with roman ticks, the current act lit ember --- */
.stage.is-cinematic .stage__rail { display: block; position: absolute; right: clamp(14px, 2.6vw, 42px); top: 50%; transform: translateY(-50%);
  z-index: 3; width: 42px; height: min(54vh, 440px); pointer-events: none; }
.stage.is-cinematic .stage__spine { position: absolute; right: 3px; top: 3px; bottom: 3px; width: 2px; background: var(--line); border-radius: 2px; }
.stage.is-cinematic .stage__fill { position: absolute; right: 3px; top: 3px; width: 2px; height: 0%;
  background: linear-gradient(180deg, var(--brass-hi), var(--ember-deep)); border-radius: 2px; box-shadow: 0 0 10px rgba(224,167,90,.55); }
.stage.is-cinematic .stage__ticks { list-style: none; margin: 0; padding: 0; position: absolute; inset: 0 15px 0 0;
  display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end; }
.stage.is-cinematic .stage__tick b { display: block; font-family: 'Playfair Display', serif; font-style: italic; font-weight: 600;
  font-size: 14px; line-height: 1; color: var(--mute); opacity: .45;
  transition: color .45s ease, opacity .45s ease, transform .45s ease; transform-origin: right center; }
.stage.is-cinematic .stage__tick.is-past b { opacity: .7; color: var(--brass); }
.stage.is-cinematic .stage__tick.is-lit b { opacity: 1; color: var(--ember); transform: scale(1.42); text-shadow: 0 0 14px rgba(224,167,90,.6); }
.stage.is-cinematic .stage__count { position: absolute; right: 0; bottom: -28px; white-space: nowrap;
  font-size: 9.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--mute); }

/* ============================================================
   TIDE THREAD — the wave motif carried through at a whisper
   ============================================================ */
.tide-thread { position: absolute; z-index: 0; pointer-events: none; color: var(--brass); opacity: .055;
  width: clamp(190px, 26vw, 400px); height: auto; }
.tide-thread path { vector-effect: non-scaling-stroke; }
.tide-thread--room { right: 3%; bottom: 6%; }
.tide-thread--cellar { left: 1%; bottom: 7%; opacity: .045; }
.tide-thread--reserve { right: 3%; top: 9%; opacity: .05; }

/* ============================================================
   THE ROOM
   ============================================================ */
.room { position: relative; display: grid; grid-template-columns: 1.55fr 1fr; align-items: stretch; background: var(--bg-2); border-top: 1px solid var(--line); }
.room__media { position: relative; min-height: 74vh; overflow: hidden; }
.room__media img { width: 100%; height: 100%; object-fit: cover; }
.room__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,10,9,.5) 0%, transparent 30%, transparent 70%, rgba(20,17,16,.94) 100%); }
.room__copy { position: relative; z-index: 1; padding: clamp(64px, 10vh, 130px) var(--gutter); display: flex; flex-direction: column; justify-content: center; }
.room__copy::before { content: ""; position: absolute; left: 0; top: 12%; bottom: 12%; width: 1px; background: linear-gradient(180deg, transparent, var(--brass), transparent); opacity: .5; }
.room__title { font-size: clamp(30px, 4.4vw, 60px); line-height: 1.04; letter-spacing: -.012em; }
.room__title em { font-style: italic; }
.room__lede { margin: 22px 0 0; max-width: 44ch; color: var(--ink-2); }
.room__stats { display: grid; grid-template-columns: repeat(3, auto); gap: clamp(24px, 4vw, 54px); margin: clamp(34px, 5vh, 54px) 0 0; }
.room__stats dt { font-family: 'Playfair Display', serif; font-size: clamp(34px, 4vw, 52px); font-weight: 600; color: var(--brass-hi);
  background: linear-gradient(180deg, var(--brass-hi), var(--brass)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.room__stats dd { margin: 8px 0 0; font-size: 12.5px; color: var(--mute); max-width: 14ch; line-height: 1.4; }

/* ============================================================
   THE CELLAR / PAIRING
   ============================================================ */
.cellar { position: relative; display: grid; grid-template-columns: 1fr .68fr; gap: clamp(40px, 6vw, 88px); align-items: center;
  max-width: 1080px; margin: 0 auto; padding: clamp(84px, 13vh, 156px) var(--gutter); overflow: hidden; }
.cellar::before { content: ""; position: absolute; left: -10%; top: 20%; width: 50vw; height: 50vh;
  background: radial-gradient(closest-side, rgba(74,29,32,.5), transparent 70%); pointer-events: none; filter: blur(10px); }
.cellar__copy { position: relative; z-index: 1; }
.cellar__media { z-index: 1; }
.cellar__title { font-size: clamp(30px, 4.6vw, 62px); line-height: 1.03; letter-spacing: -.012em; }
.cellar__title em { font-style: italic; }
.cellar__lede { margin: 22px 0 0; max-width: 46ch; color: var(--ink-2); }
/* the cellar bill — a wine list staged like the theatre programme (drop-marks echo the five acts) */
.cellarbill { list-style: none; margin: clamp(28px, 4vh, 46px) 0 0; padding: 0; }
.cellarbill__row { display: grid; grid-template-columns: clamp(64px, 7vw, 88px) 1fr auto;
  gap: clamp(14px, 2.4vw, 30px); align-items: baseline; padding: clamp(15px, 2.4vh, 22px) 0; border-top: 1px solid var(--line); }
.cellarbill__row:last-child { border-bottom: 1px solid var(--line); }
.cellarbill__marks { display: flex; flex-wrap: wrap; gap: 5px; align-items: center; padding-top: 7px; }
.drop { width: 8px; height: 8px; border-radius: 50% 50% 50% 0; transform: rotate(45deg);
  background: linear-gradient(150deg, var(--brass-hi), var(--brass)); box-shadow: 0 0 8px rgba(224,167,90,.28); }
.drop--empty { background: transparent; border: 1px solid var(--brass); box-shadow: none; }
.cellarbill__what h3 { font-family: 'Playfair Display', serif; font-weight: 600; color: var(--ink);
  font-size: clamp(18px, 2vw, 25px); line-height: 1.12; letter-spacing: -.005em; }
.cellarbill__what p { margin: 6px 0 0; max-width: 42ch; color: var(--ink-2); font-size: clamp(13.5px, 1vw, 15px); }
.cellarbill__price { align-self: center; font-family: 'Playfair Display', serif; color: var(--brass-hi);
  font-size: clamp(14px, 1.3vw, 18px); letter-spacing: .01em; white-space: nowrap; }
.cellar__media { position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line);
  box-shadow: 0 50px 100px -50px rgba(0,0,0,.9); aspect-ratio: 4/5; }
.cellar__media img { width: 100%; height: 100%; object-fit: cover; }
/* engraved editorial inner frame */
.cellar__media::after { content: ""; position: absolute; inset: 11px; border: 1px solid rgba(231,207,156,.22); border-radius: 2px; pointer-events: none; z-index: 1; }

/* ============================================================
   THE EVENING — running order (playbill)
   ============================================================ */
.evening { position: relative; background: var(--bg-2); border-top: 1px solid var(--line); padding: clamp(90px, 14vh, 170px) var(--gutter); overflow: hidden; }
.evening::before { content: ""; position: absolute; inset: 0; background: radial-gradient(48vw 40vh at 78% 30%, rgba(224,167,90,.06), transparent 68%); pointer-events: none; }

/* --- the playbill (a printed theatre bill) --- */
.playbill { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; overflow: hidden;
  background: linear-gradient(180deg, rgba(28,23,20,.62), rgba(20,17,16,.42));
  border: 1px solid var(--line-2); border-radius: 4px;
  padding: clamp(38px, 5vw, 68px) clamp(24px, 4vw, 62px) clamp(30px, 4vw, 52px);
  box-shadow: 0 60px 120px -60px rgba(0,0,0,.92); }
.playbill__tide { position: absolute; left: 0; right: 0; top: 15px; width: 56%; height: 22px; margin: 0 auto; color: var(--brass); opacity: .13; }
.playbill__head { position: relative; text-align: center; padding-bottom: clamp(24px, 3.6vh, 42px); margin-bottom: clamp(18px, 3vh, 32px); border-bottom: 1px solid var(--line); }
.playbill__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .36em; text-transform: uppercase; color: var(--ember); margin: 0 0 16px; }
.playbill__title { font-size: clamp(32px, 5vw, 60px); line-height: 1.03; letter-spacing: -.01em; color: var(--ink); }
.playbill__title em { font-style: italic; color: var(--brass-hi); }
.playbill__sub { margin: 15px auto 0; max-width: 48ch; font-size: clamp(13px, 1vw, 15px); color: var(--mute); letter-spacing: .01em; }
.playbill__flour { position: absolute; left: 50%; bottom: -10px; transform: translateX(-50%); width: 30px; height: 20px; line-height: 20px; text-align: center; background: var(--bg-2); color: var(--brass); font-size: 12px; }
.playbill__bill { list-style: none; margin: 0; padding: 0; }
.playbill__act { display: grid; grid-template-columns: clamp(84px, 11vw, 122px) 1fr auto; gap: clamp(16px, 3vw, 40px); align-items: baseline;
  padding: clamp(20px, 3vh, 32px) 0; border-top: 1px solid var(--line); }
.playbill__act:first-child { border-top: 0; }
.playbill__time { font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(30px, 4.4vw, 52px); line-height: .9; letter-spacing: -.01em;
  color: var(--brass-hi); background: linear-gradient(180deg, var(--brass-hi), var(--brass)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.playbill__time i { font-style: normal; opacity: .38; margin: 0 .01em; }
.playbill__what h3 { font-family: 'Playfair Display', serif; font-size: clamp(19px, 2.2vw, 27px); font-weight: 600; color: var(--ink); line-height: 1.14; }
.playbill__what p { margin: 8px 0 0; max-width: 44ch; color: var(--ink-2); font-size: clamp(14px, 1.05vw, 15.5px); }
.playbill__mark { align-self: center; font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--ember);
  border: 1px solid var(--line-2); border-radius: 2px; padding: 6px 11px; white-space: nowrap; }
.playbill__foot { margin: clamp(22px, 3.4vh, 38px) 0 0; padding-top: clamp(20px, 3vh, 30px); border-top: 1px solid var(--line);
  text-align: center; font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(14px, 1.2vw, 17px); color: var(--brass-hi); }

/* ============================================================
   RESERVE
   ============================================================ */
.reserve { position: relative; background: var(--bg); border-top: 1px solid var(--line);
  padding: clamp(90px, 14vh, 170px) var(--gutter); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 6vw, 100px); align-items: start; max-width: var(--maxw); margin: 0 auto; }
.reserve__ember { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(40vw 44vh at 18% 30%, rgba(224,167,90,.14), transparent 66%); mix-blend-mode: screen; }
.reserve__intro, .reserve__form { position: relative; z-index: 1; }
.reserve__title { font-size: clamp(32px, 4.6vw, 62px); line-height: 1.02; letter-spacing: -.012em; }
.reserve__title em { font-style: italic; }
.reserve__lede { margin: 22px 0 0; max-width: 42ch; color: var(--ink-2); }
.reserve__facts { list-style: none; margin: clamp(30px, 4vh, 46px) 0 0; padding: 0; }
.reserve__facts li { padding: 14px 0; border-top: 1px solid var(--line); font-size: 15px; color: var(--ink-2); }
.reserve__facts li:last-child { border-bottom: 1px solid var(--line); }
.reserve__facts span { display: inline-block; min-width: 130px; font-size: 10.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--ember); }

.reserve__form { background: linear-gradient(180deg, rgba(28,23,20,.7), rgba(20,17,16,.55)); border: 1px solid var(--line);
  border-radius: 6px; padding: clamp(26px, 3vw, 40px); backdrop-filter: blur(6px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-2); transition: color .25s ease; }
.field__opt { color: var(--mute); font-weight: 500; letter-spacing: .08em; }
.field input, .field select, .field textarea {
  font-family: 'Manrope', sans-serif; font-size: 15px; color: var(--ink);
  background: rgba(11,10,9,.5); border: 1px solid var(--line-2); border-radius: var(--r); padding: 13px 14px; width: 100%;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease; }
.field textarea { resize: vertical; min-height: 84px; }
.field input::placeholder, .field textarea::placeholder { color: #968c7c; opacity: 1; }
/* the field lights like a candle catching it — ember border, a soft glow ring, and the label warms */
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ember); background: rgba(11,10,9,.72);
  box-shadow: 0 0 0 3px rgba(224,167,90,.16), 0 10px 26px -16px rgba(224,167,90,.55); }
.field:focus-within label { color: var(--ember); }
/* date input — make the native picker legible on the dark field */
.field input[type=date] { color-scheme: dark; }
.field input[type=date]::-webkit-datetime-edit { color: var(--ink-2); }
.field input[type=date]::-webkit-datetime-edit-fields-wrapper { color: var(--ink-2); }
.field input[type=date]:not(:focus):in-range::-webkit-datetime-edit { color: var(--mute); }
.field input[type=date]::-webkit-calendar-picker-indicator { filter: invert(.72) sepia(.5) saturate(3) hue-rotate(-8deg); cursor: pointer; opacity: .8; }
.field input[type=date]::-webkit-calendar-picker-indicator:hover { opacity: 1; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23b8925a' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 34px; }
.reserve__form .btn { grid-column: 1 / -1; margin-top: 4px; }
/* a confirmed request reads like a stamped reservation stub */
.reserve__ok { grid-column: 1 / -1; font-size: 14px; color: var(--ember); line-height: 1.55; margin: 4px 0 0;
  padding: 13px 16px; border-left: 2px solid var(--ember); background: rgba(224,167,90,.06); border-radius: 0 var(--r) var(--r) 0; }
.reserve__alt { grid-column: 1 / -1; font-size: 13px; color: var(--mute); margin: 4px 0 0; }
.reserve__alt a { color: var(--brass-hi); border-bottom: 1px solid var(--brass); padding-bottom: 1px; }
.reserve__alt a:hover { color: var(--ember); }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { background: var(--bg-2); border-top: 1px solid var(--line); padding: clamp(56px, 8vh, 92px) var(--gutter) 34px; }
.foot__top { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.2fr 2fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.foot__word { font-size: 24px; letter-spacing: .16em; color: var(--ink); }
.foot__brand .nav__mark { color: var(--ember); }
.foot__tag { margin: 16px 0 0; font-family: 'Playfair Display', serif; font-style: italic; font-size: 19px; color: var(--brass-hi); }
.foot__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.foot__col h4 { font-family: 'Manrope', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--mute); margin: 0 0 16px; }
.foot__col a { display: block; font-size: 14px; color: var(--ink-2); padding: 5px 0; transition: color .2s ease; }
.foot__col a:hover { color: var(--ember); }
.foot__base { max-width: var(--maxw); margin: clamp(40px, 6vh, 64px) auto 0; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 12.5px; color: var(--mute); }
.foot__weebie a { color: var(--ink); border-bottom: 1px solid var(--ember); padding-bottom: 1px; font-weight: 600; }
.foot__weebie a:hover { color: var(--ember); }

/* ============================================================
   REVEAL SYSTEM (gsap-ready gated · visible by default)
   ============================================================ */
.gsap-ready .reveal { opacity: 0; }
.gsap-ready .reveal-img { opacity: 0; }
.gsap-ready .reveal-img img { transform: scale(1.06); }
.gsap-ready .reveal-line > span { display: block; overflow: hidden; }
/* GSAP owns this transform end-to-end (yPercent). No CSS translate here — a CSS px
   transform gets read into GSAP's y channel and left behind when only yPercent animates,
   which pins the headline off-screen. Hidden pre-reveal is set synchronously in JS before first paint. */
.gsap-ready .reveal-line > span > * { display: block; will-change: transform; }
.rw { display: inline-block; overflow: hidden; padding-block: .08em .18em; margin-block: -.08em -.18em; vertical-align: top; }
.rw__i { display: inline-block; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal, .reveal-img, .reveal-words, .reveal-line { opacity: 1 !important; }
  .reveal-img img { transform: none !important; }
  .reveal-line > span > * { transform: none !important; }
  .rw__i { transform: none !important; }
  .hero__ember, .stage.is-cinematic .stage__light { animation: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .room { grid-template-columns: 1fr; }
  .room__media { min-height: 48vh; }
  .room__scrim { background: linear-gradient(180deg, transparent 40%, rgba(20,17,16,.94) 100%); }
  .room__copy::before { display: none; }
  .cellar { grid-template-columns: 1fr; gap: clamp(34px, 5vh, 60px); }
  .cellar__media { order: -1; max-width: 460px; }
  .reserve { grid-template-columns: 1fr; gap: clamp(36px, 5vh, 60px); }
  .act { grid-template-columns: 1fr; gap: clamp(22px, 4vh, 40px); }
  .act:nth-child(even) .act__media { order: 0; }
  .act__media { aspect-ratio: 16/10; }
  .act__num { position: static; opacity: .6; margin-bottom: 6px; font-size: clamp(44px, 12vw, 72px); }
  /* cinematic mode disabled below tablet — read as a list */
}

@media (max-width: 760px) {
  .nav__inner { padding: 15px var(--gutter); }
  .nav__links { position: fixed; inset: 0 0 auto 0; flex-direction: column; align-items: flex-start; gap: 4px;
    padding: 92px var(--gutter) 34px; background: rgba(11,10,9,.97); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line); transform: translateY(-101%); transition: transform .5s cubic-bezier(.2,.8,.2,1); visibility: hidden; }
  .nav.is-open .nav__links { transform: translateY(0); visibility: visible; }
  .nav__links > a { font-family: 'Playfair Display', serif; font-size: 27px; color: var(--ink); padding: 9px 0; }
  .nav__links > a:hover { color: var(--ember); }
  .nav__cta { margin-top: 14px; padding: 15px 24px; font-family: 'Manrope', sans-serif; font-size: 14px; }
  .nav__toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 6px; width: 44px; height: 44px;
    background: none; border: 1px solid var(--line-2); border-radius: var(--r); cursor: pointer; z-index: 101; }
  .nav__toggle span { display: block; width: 18px; height: 1.5px; background: var(--ink); margin: 0 auto; transition: transform .3s ease, opacity .3s ease; }
  .nav.is-open .nav__toggle span:first-child { transform: translateY(3.75px) rotate(45deg); }
  .nav.is-open .nav__toggle span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

  .reserve__form { grid-template-columns: 1fr; }
  .room__stats { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .foot__top { grid-template-columns: 1fr; gap: 40px; }
  .foot__cols { gap: 22px; }
  .foot__col a { padding: 10px 0; }              /* roomier touch target on mobile */
  /* the playbill folds: time above, cue below, mark tucks under its own act */
  .playbill { padding: clamp(22px, 6vw, 30px) clamp(18px, 5vw, 26px); }
  .playbill__act { grid-template-columns: auto 1fr; gap: 6px clamp(16px, 5vw, 26px); }
  .playbill__time { grid-row: span 2; align-self: start; }
  .playbill__mark { grid-column: 2; justify-self: start; margin-top: 4px; }
  .cellarbill__row { grid-template-columns: 1fr auto; gap: 8px 16px; }
  .cellarbill__marks { grid-column: 1 / -1; padding-top: 0; }
  .cellarbill__price { align-self: baseline; }
}

@media (max-width: 440px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  /* keep 3 stats on one row — a 2-col grid orphans the third */
  .room__stats { grid-template-columns: repeat(3, 1fr); gap: 16px 12px; }
  .room__stats dt { font-size: clamp(30px, 9vw, 40px); }
  .room__stats dd { font-size: 11.5px; }
  /* stack the 3 footer link columns single-file — 2-col orphans the third */
  .foot__cols { grid-template-columns: 1fr; gap: 26px; }
  .foot__base { flex-direction: column; }
}
