/* ==========================================================================
   BAR CODE — Beverages · Lounge · Venue
   ========================================================================== */

:root {
  --obsidian: #080808;
  --charcoal: #111111;
  --ivory: #F4EFE6;
  --gold: #C9A86A;
  --grey: #9B968D;
  --umber: #17110c;
  --amber: #6b4520;

  --ivory-80: rgba(244, 239, 230, .8);
  --ivory-60: rgba(244, 239, 230, .6);
  --line: rgba(244, 239, 230, .12);
  --line-strong: rgba(244, 239, 230, .22);
  --gold-line: rgba(201, 168, 106, .5);

  --serif: "Bodoni Moda", "Bodoni 72", Didot, "Times New Roman", serif;
  --sans: "Jost", "Futura", "Avenir Next", "Helvetica Neue", Arial, sans-serif;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-io: cubic-bezier(.76, 0, .24, 1);

  --gutter: clamp(20px, 5.2vw, 96px);
  --section-y: clamp(96px, 14vw, 220px);
  --nav-h: 80px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  background: var(--obsidian);
  color-scheme: dark;
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
body {
  margin: 0;
  background: var(--obsidian);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
body.is-locked { overflow: hidden; }
img, video, canvas, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, p, figure, dl, dd, ol { margin: 0; }
ol { padding: 0; list-style: none; }
::selection { background: var(--gold); color: var(--obsidian); }
:focus-visible { outline: 1px solid var(--gold); outline-offset: 4px; }
section[id], main [id] { scroll-margin-top: 72px; }

.skip-link {
  position: fixed; left: 16px; top: 16px; z-index: 400;
  padding: .8rem 1.2rem; background: var(--ivory); color: var(--obsidian);
  font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  transform: translateY(-160%); transition: transform .4s var(--ease-out);
}
.skip-link:focus { transform: none; }

.wrap { width: 100%; max-width: 1680px; margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-y) 0; position: relative; }

/* ---------- Type ---------- */
.kicker {
  display: flex; align-items: center; gap: 1.1em;
  font-family: var(--sans); font-weight: 500;
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold);
}
.kicker__num {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: .95rem; letter-spacing: .02em; color: var(--ivory-60); text-transform: none;
}
.kicker__num::after {
  content: ""; display: inline-block; width: 44px; height: 1px; margin-left: 1.1em;
  background: var(--gold-line); vertical-align: middle;
}
.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.1rem, 8.6vw, 10.5rem);
  line-height: .9;
  letter-spacing: -.012em;
  text-transform: uppercase;
  font-variation-settings: "opsz" 96;
  margin-top: .42em;
}
.display em {
  font-style: italic;
  text-transform: none;
  letter-spacing: -.02em;
  color: var(--ivory);
}
.display b, .moment__title b { font-weight: 400; color: var(--gold); }
.lede {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.35rem, 2.1vw, 2.15rem);
  line-height: 1.35; letter-spacing: -.005em;
  color: var(--ivory);
  font-variation-settings: "opsz" 30;
}
.serif-lede {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.7rem, 2.8vw, 3rem);
  line-height: 1.2; letter-spacing: -.01em;
  font-variation-settings: "opsz" 48;
}
.serif-lede em { font-style: italic; }
.body { color: var(--grey); max-width: 34em; }

/* ---------- Line mask reveals ---------- */
.line { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.line > span { display: block; transform: translate3d(0, 108%, 0); }
.js [data-reveal="lines"].is-in .line > span {
  transform: none;
  transition: transform 1.5s var(--ease-out);
}
[data-reveal="lines"].is-in .line:nth-child(2) > span { transition-delay: .12s; }
[data-reveal="lines"].is-in .line:nth-child(3) > span { transition-delay: .24s; }
.no-js .line > span { transform: none; }

.js [data-reveal]:not([data-reveal="lines"]):not([data-reveal="image"]) {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
}
.js [data-reveal].is-in:not([data-reveal="lines"]):not([data-reveal="image"]) {
  opacity: 1; transform: none;
  transition: opacity 1.4s var(--ease-out), transform 1.4s var(--ease-out);
  transition-delay: calc(var(--d, 0) * .1s);
}
/* Images stay visible even if the reveal observer fails or loads late. */
.js [data-reveal="image"] .frame {
  clip-path: none;
}
.js [data-reveal="image"] .frame img {
  scale: 1;
}

/* ---------- Buttons & links ---------- */
.btn {
  --h: 56px;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .9rem;
  min-height: var(--h);
  padding: 0 2.2rem;
  font-family: var(--sans); font-weight: 500;
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase; line-height: 1;
  color: var(--ivory);
  border: 1px solid var(--gold-line);
  overflow: hidden; isolation: isolate;
  transition: color .7s var(--ease-out), border-color .7s var(--ease-out), transform .6s var(--ease-out);
  white-space: nowrap;
}
.btn::before {
  content: ""; position: absolute; inset: -1px; z-index: -1;
  background: var(--gold);
  transform: scaleY(0); transform-origin: 50% 100%;
  transition: transform .7s var(--ease-out);
}
.btn:hover, .btn:focus-visible { color: var(--obsidian); border-color: var(--gold); }
.btn:hover::before, .btn:focus-visible::before { transform: scaleY(1); }
.btn:active { transform: scale(.985); }
.btn > span, .btn > svg { position: relative; pointer-events: none; }
.btn__icon { width: 15px; height: 15px; flex: none; }
.btn--solid { background: var(--gold); color: var(--obsidian); border-color: var(--gold); }
.btn--solid::before { background: var(--ivory); }
.btn--solid:hover, .btn--solid:focus-visible { border-color: var(--ivory); }
.btn--sm { --h: 44px; padding: 0 1.5rem; }
.btn--lg { --h: 64px; padding: 0 2.8rem; }
.btn--block { width: 100%; }

.link-line {
  display: inline-flex; align-items: center; gap: .9rem;
  font-size: .72rem; font-weight: 500; letter-spacing: .28em; text-transform: uppercase;
  color: var(--ivory); padding: .9rem 0; position: relative;
}
.link-line span { position: relative; }
.link-line span::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: var(--gold-line);
  transform-origin: left; transition: transform .7s var(--ease-out), background-color .7s;
}
.link-line:hover span::after { background: var(--gold); transform: scaleX(1.0); }
.link-line svg { width: 22px; height: 22px; transition: transform .7s var(--ease-out); }
.link-line:hover svg { transform: translateX(6px); }
.link-line--sm { margin-top: .6rem; font-size: .7rem; }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 500;
  display: grid; place-items: center;
  background: var(--obsidian);
  clip-path: inset(0 0 0 0);
  transition: clip-path 1.3s var(--ease-io), visibility 0s linear 1.3s;
  animation: loader-failsafe 0s linear 7s forwards;
}
.is-ready .loader { clip-path: inset(0 0 100% 0); visibility: hidden; }
@keyframes loader-failsafe { to { visibility: hidden; opacity: 0; } }
.loader__inner { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.loader__logo { width: 96px; height: 96px; opacity: 0; animation: loader-logo 1.6s var(--ease-out) .1s forwards; }
@keyframes loader-logo { from { opacity: 0; transform: scale(.94); filter: blur(6px); } to { opacity: 1; transform: none; filter: none; } }
.loader__bar { width: 168px; height: 1px; background: var(--line); position: relative; overflow: hidden; }
.loader__bar span {
  position: absolute; inset: 0; background: var(--gold);
  transform-origin: left; transform: scaleX(var(--p, 0));
  transition: transform .5s var(--ease-out);
}
.loader__label { font-size: .7rem; letter-spacing: .38em; text-transform: uppercase; color: var(--grey); font-variant-numeric: tabular-nums; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 0 var(--gutter);
  border-bottom: 1px solid transparent;
}
.nav::before {
  content: ""; position: absolute; inset: 0 0 -40px 0; pointer-events: none; z-index: -1;
  background: linear-gradient(180deg, rgba(8,8,8,.72), rgba(8,8,8,0));
  transition: opacity .8s var(--ease-out);
}
.nav.is-solid {
  background-color: rgba(8, 8, 8, .94);
  border-bottom-color: var(--line);
}
@supports (backdrop-filter: blur(1px)) {
  .nav.is-solid { background-color: rgba(8, 8, 8, .82); backdrop-filter: blur(14px) saturate(120%); }
}
.nav.is-solid::before { opacity: 0; }
.nav.is-hidden { transform: translateY(-100%); }
.nav { transition: background-color .8s var(--ease-out), border-color .8s var(--ease-out), transform .8s var(--ease-out); }
.nav__logo { justify-self: start; display: block; }
.nav__logo img { width: 56px; height: 56px; transform-origin: 0 50%; transition: transform .8s var(--ease-out); }
.nav.is-solid .nav__logo img { transform: scale(.82); }
.nav__links { display: flex; gap: clamp(22px, 3.2vw, 56px); }
.nav__links a {
  position: relative; padding: .7rem 0;
  font-size: .72rem; font-weight: 400; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ivory-80);
  transition: color .5s var(--ease-out);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: .34em; bottom: .25rem; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .7s var(--ease-out);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--ivory); }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { justify-self: end; }
.nav__toggle { display: none; }

/* ---------- Mobile menu ---------- */
.menu {
  position: fixed; inset: 0; z-index: 95;
  visibility: hidden; pointer-events: none;
  transition: visibility 0s linear 1s;
}
.menu.is-open { visibility: visible; pointer-events: auto; transition: none; }
.menu__bg {
  position: absolute; inset: 0; background: var(--obsidian);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1s var(--ease-io);
}
.menu__bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(90% 60% at 100% 100%, rgba(107, 69, 32, .28), transparent 60%);
}
.menu.is-open .menu__bg { clip-path: inset(0 0 0 0); }
.menu__inner {
  position: relative; height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: calc(var(--nav-h) + 4vh) var(--gutter) calc(28px + env(safe-area-inset-bottom));
}
.menu__links { display: flex; flex-direction: column; }
.menu__links a {
  display: flex; align-items: baseline; gap: 18px;
  padding: 1.2vh 0; border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.menu__num { font-family: var(--serif); font-style: italic; font-size: .95rem; color: var(--gold); min-width: 1.8em; }
.menu__word {
  font-family: var(--serif); font-size: clamp(2.6rem, 11vw, 4.6rem); line-height: 1.02;
  text-transform: uppercase; letter-spacing: -.01em;
  transform: translate3d(0, 110%, 0);
  transition: transform .9s var(--ease-out);
}
.menu__num { opacity: 0; transition: opacity .6s var(--ease-out); }
.menu.is-open .menu__word { transform: none; }
.menu.is-open .menu__num { opacity: 1; }
.menu.is-open .menu__links a:nth-child(1) .menu__word { transition-delay: .35s; }
.menu.is-open .menu__links a:nth-child(2) .menu__word { transition-delay: .42s; }
.menu.is-open .menu__links a:nth-child(3) .menu__word { transition-delay: .49s; }
.menu.is-open .menu__links a:nth-child(4) .menu__word { transition-delay: .56s; }
.menu.is-open .menu__links a:nth-child(5) .menu__word { transition-delay: .63s; }
.menu__foot {
  display: grid; gap: 22px;
  opacity: 0; transform: translateY(18px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.menu.is-open .menu__foot { opacity: 1; transform: none; transition-delay: .7s; transition-duration: 1s; }
.menu__meta { display: flex; justify-content: space-between; gap: 16px; font-size: .8rem; line-height: 1.6; color: var(--grey); }
.menu__meta a { color: var(--ivory); }

/* ---------- HERO ---------- */
.hero { position: relative; height: 720vh; background: var(--obsidian); }
.hero__sticky {
  position: sticky; top: 0;
  height: 100vh; height: 100lvh;
  overflow: hidden;
  --p: 0; --end: 0; --hold: 0;
}
.hero__stage { position: absolute; inset: 0; transform-origin: 50% 20%; }
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__poster { position: absolute; inset: 0; display: none; }
.hero__poster img { width: 100%; height: 100%; object-fit: cover; object-position: 66% 50%; }
.no-js .hero__poster, .hero.is-static .hero__poster { display: block; }

.hero__shade {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(120% 95% at 58% 52%, transparent 45%, rgba(8, 8, 8, .6) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, .5) 0%, transparent 16%, transparent 76%, rgba(8, 8, 8, .9) 100%);
}
.hero__endshade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(8, 8, 8, .9) 0%, rgba(8, 8, 8, .55) 34%, transparent 58%);
  opacity: var(--end);
}

/* Opening card */
.hero__opening {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: grid; gap: 22px; justify-items: center;
  pointer-events: none;
}
.hero__opening-line {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2rem, 4.2vw, 4.4rem); line-height: 1.1; letter-spacing: -.01em;
  font-variation-settings: "opsz" 72;
}
.hero__opening-line em { font-style: italic; color: var(--ivory-80); }
.hero__opening .kicker { justify-content: center; }
.js .hero__opening > * { opacity: 0; transform: translateY(18px); }
.is-ready .hero__opening > * { opacity: 1; transform: none; transition: opacity 1.6s var(--ease-out) .5s, transform 1.6s var(--ease-out) .5s; }
.is-ready .hero__opening > :nth-child(2) { transition-delay: .75s; }

/* Whispers */
.hero__whisper {
  position: absolute; top: 50%;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2.8rem); line-height: 1.2; letter-spacing: -.01em;
  color: var(--ivory);
  opacity: 0; pointer-events: none;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .6);
  will-change: opacity, transform;
}
.hero__whisper--l { left: var(--gutter); }
.hero__whisper--r { left: var(--gutter); }

/* End content */
.hero__content {
  position: absolute; left: var(--gutter); top: 50%;
  transform: translateY(-46%);
  width: min(46vw, 700px);
  pointer-events: none;
}
.hero.is-end .hero__content { pointer-events: auto; }
.hero__content > * {
  opacity: 0; transform: translate3d(0, 34px, 0);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.hero.is-end .hero__content > * { opacity: 1; transform: none; transition-duration: 1.6s; }
.hero.is-end .hero__content > :nth-child(2) { transition-delay: .1s; }
.hero.is-end .hero__content > :nth-child(3) { transition-delay: .22s; }
.hero.is-end .hero__content > :nth-child(4) { transition-delay: .34s; }
.hero.is-end .hero__content > :nth-child(5) { transition-delay: .46s; }
.hero__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(3.6rem, 8vw, 10rem); line-height: .86;
  letter-spacing: .02em; text-transform: uppercase;
  font-variation-settings: "opsz" 96;
  margin: .32em 0 .28em -.04em;
  white-space: nowrap;
}
.hero__headline {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.25rem, 2.1vw, 2.3rem); line-height: 1.22;
  letter-spacing: .08em; text-transform: uppercase;
  font-variation-settings: "opsz" 36;
}
.hero__support { margin-top: 1.4rem; color: var(--ivory-80); max-width: 30em; font-size: 1rem; }
.hero__ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 34px; margin-top: 2.4rem; }

/* HUD */
.hero__hud {
  position: absolute; left: var(--gutter); bottom: calc(34px + (100lvh - 100svh));
  display: flex; align-items: center; gap: 12px;
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; color: var(--ivory-80);
  font-variant-numeric: tabular-nums;
  transition: opacity .6s var(--ease-out);
}
@supports not (height: 100lvh) { .hero__hud { bottom: 34px; } }
.hud__num { font-family: var(--serif); font-style: italic; font-size: 1.05rem; letter-spacing: 0; color: var(--gold); }
.hud__total { color: var(--grey); letter-spacing: .12em; }
.hud__rule { width: 40px; height: 1px; background: var(--gold-line); }
.hud__name { display: inline-block; min-width: 12ch; }
.hud__name.is-swap { animation: hud-swap .8s var(--ease-out); }
@keyframes hud-swap { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.hero.is-end .hero__hud { opacity: 0; }

.hero__rail {
  position: absolute; right: var(--gutter); top: 50%; transform: translateY(-50%);
  width: 1px; height: 32vh; background: var(--line);
  transition: opacity .6s var(--ease-out);
}
.hero.is-end .hero__rail { opacity: 0; }
.hero__rail-fill {
  position: absolute; inset: 0; background: var(--gold);
  transform-origin: top; transform: scaleY(var(--p));
}
.hero__cue {
  position: absolute; left: 50%; bottom: calc(30px + (100lvh - 100svh)); transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  font-size: .7rem; letter-spacing: .36em; text-transform: uppercase; color: var(--ivory-80);
  transition: opacity .8s var(--ease-out);
}
@supports not (height: 100lvh) { .hero__cue { bottom: 30px; } }
.hero__cue i { width: 1px; height: 46px; background: var(--line); position: relative; overflow: hidden; }
.hero__cue i::after {
  content: ""; position: absolute; inset: 0; background: var(--gold);
  animation: cue 2.4s var(--ease-io) infinite;
}
@keyframes cue { 0% { transform: translateY(-100%); } 60%, 100% { transform: translateY(100%); } }
.hero.is-scrolled .hero__cue { opacity: 0; }

.hero.is-static { height: 100vh; height: 100svh; }
.hero.is-static .hero__opening,
.hero.is-static .hero__whisper,
.hero.is-static .hero__hud,
.hero.is-static .hero__rail,
.hero.is-static .hero__cue,
.hero.is-static .hero__canvas { display: none; }
.hero.is-static .hero__endshade { opacity: 1; }
.no-js .hero { height: 100vh; }
.no-js .hero__content > * { opacity: 1; transform: none; }
.no-js .hero__content { pointer-events: auto; }
.no-js .hero__opening, .no-js .hero__whisper, .no-js .hero__hud, .no-js .hero__cue, .no-js .hero__rail { display: none; }

/* ---------- EXPERIENCE ---------- */
.experience {
  background: var(--obsidian);
  padding-bottom: clamp(38.4px, 5.6vw, 88px);
}
.experience::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 50% at 85% 20%, rgba(107, 69, 32, .16), transparent 70%);
}
.experience__title { max-width: none; }
.experience__body {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 0 clamp(16px, 2vw, 32px);
  margin-top: clamp(48px, 7vw, 110px);
}
.experience__body .lede { grid-column: 6 / 12; }
.pillars {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.4vw, 40px);
  margin-top: clamp(80px, 10vw, 160px);
}
.pillars li { border-top: 1px solid var(--line-strong); padding-top: 26px; }
.pillars__num { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1rem; }
.pillars h3 {
  margin-top: 30px;
  font-family: var(--serif); font-weight: 400; font-size: clamp(1.6rem, 2.2vw, 2.3rem);
  text-transform: uppercase; letter-spacing: .04em; line-height: 1;
}
.pillars p { margin-top: 16px; color: var(--grey); font-size: .98rem; max-width: 22em; }

/* ---------- Figures / frames ---------- */
.frame { position: relative; overflow: hidden; background: var(--umber); }
.frame img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.8) contrast(1.04) brightness(.92);
  transition: filter 1.2s var(--ease-out);
}
[data-parallax] { position: relative; top: -8%; height: 116% !important; will-change: transform; }
.frame-fig figcaption {
  display: flex; align-items: baseline; gap: 14px;
  margin-top: 16px;
  font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; color: var(--ivory-80);
}
.frame-fig figcaption span {
  font-family: var(--serif); font-style: italic; font-size: .9rem; letter-spacing: 0;
  color: var(--gold); text-transform: none;
}

/* ---------- ATMOSPHERE ---------- */
.atmos {
  background: linear-gradient(180deg, var(--obsidian), var(--charcoal) 60%, var(--obsidian));
  padding-top: clamp(38.4px, 5.6vw, 88px);
}
.section-head { margin-bottom: clamp(64px, 9vw, 140px); }
.section-head--split { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; }
.section-head__aside { max-width: 26em; padding-bottom: .6em; }
.atmos__grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  column-gap: clamp(16px, 2vw, 32px); row-gap: clamp(56px, 8vw, 128px);
}
.atmos__a { grid-column: 1 / 9; grid-row: 1; }
.atmos__a .frame { aspect-ratio: 16 / 11; }
.atmos__b { grid-column: 10 / 13; grid-row: 1 / 3; margin-top: 34%; }
.atmos__b .frame { aspect-ratio: 9 / 15; }
.atmos__text { grid-column: 2 / 8; grid-row: 2; align-self: center; display: grid; gap: 28px; }
.atmos__c { grid-column: 5 / 11; grid-row: 3; }
.atmos__c .frame { aspect-ratio: 16 / 9; }

/* ---------- DRINKS ---------- */
.drinks { position: relative; background: var(--obsidian); padding: var(--section-y) 0; }
.drinks__track { padding: 0 var(--gutter); }
.drinks__intro { max-width: 520px; }
.drinks__intro .body { margin-top: 36px; }
.drinks__list {
  margin-top: 28px;
  font-family: var(--serif); font-size: clamp(1.1rem, 1.5vw, 1.4rem); letter-spacing: .04em; text-transform: uppercase;
}
.drinks__list i { font-style: normal; color: var(--gold); padding: 0 .3em; }
.drinks__hint {
  display: flex; align-items: center; gap: 12px; margin-top: 44px;
  font-size: .7rem; letter-spacing: .32em; text-transform: uppercase; color: var(--grey);
}
.drinks__hint svg { width: 22px; height: 22px; animation: nudge 2.4s var(--ease-io) infinite; }
@keyframes nudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(8px); } }
.drinks__hint-desk { display: none; }
.drinks__rail {
  display: flex; gap: 16px;
  margin: 56px calc(var(--gutter) * -1) 0;
  padding: 0 var(--gutter) 8px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.drinks__rail::-webkit-scrollbar { display: none; }
.drink { flex: 0 0 78vw; scroll-snap-align: start; scroll-margin-left: var(--gutter); }
.drink .frame { aspect-ratio: 4 / 5; }
.drink figcaption {
  display: flex; align-items: baseline; justify-content: space-between;
  border-top: 1px solid var(--line-strong); margin-top: 18px; padding-top: 14px;
}
.drink__no { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: .95rem; }
.drink__name { font-family: var(--serif); font-size: clamp(1.4rem, 2vw, 2rem); text-transform: uppercase; letter-spacing: .04em; line-height: 1; }
.drinks__outro {
  flex: 0 0 78vw; scroll-snap-align: start;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 32px;
  padding: 0 4vw;
}
.drinks__progress { display: none; }

@media (min-width: 1024px) {
  .drinks.is-pinned { padding: 0; }
  .drinks.is-pinned .drinks__pin {
    position: sticky; top: 0; height: 100vh; overflow: hidden;
    display: flex; align-items: center;
  }
  .drinks.is-pinned .drinks__track {
    display: flex; align-items: center; gap: 7vw;
    will-change: transform;
  }
  .drinks.is-pinned .drinks__intro { flex: 0 0 min(40vw, 620px); }
  .drinks.is-pinned .drinks__intro .display { font-size: clamp(3.4rem, 6.6vw, 8rem); }
  .drinks.is-pinned .drinks__rail {
    margin: 0; padding: 0; overflow: visible;
    align-items: center; gap: 5vw;
  }
  .drinks.is-pinned .drink { flex: none; width: auto; }
  .drinks.is-pinned .drink .frame { height: 66vh; width: auto; aspect-ratio: 4 / 5; }
  .drinks.is-pinned .drink--low { margin-top: 18vh; }
  .drinks.is-pinned .drink--low .frame { height: 56vh; aspect-ratio: 2 / 3; }
  .drinks.is-pinned .drinks__outro { flex: 0 0 32vw; padding: 0 6vw 0 2vw; }
  .drinks.is-pinned .drinks__hint-desk { display: inline; }
  .drinks.is-pinned .drinks__hint-touch { display: none; }
  .drinks.is-pinned .drinks__progress {
    display: block; position: absolute; left: var(--gutter); right: var(--gutter); bottom: 5vh;
    height: 1px; background: var(--line);
  }
  .drinks.is-pinned .drinks__progress span {
    position: absolute; inset: 0; background: var(--gold); transform-origin: left; transform: scaleX(var(--dp, 0));
  }
}

/* ---------- FOOD ---------- */
.food { background: linear-gradient(180deg, var(--obsidian), var(--umber) 45%, var(--obsidian)); }
.food__hero { position: relative; margin: 0 0 clamp(72px, 10vw, 160px); }
.food__hero .frame { aspect-ratio: 21 / 9; }
.food__hero .frame img { filter: saturate(.92) contrast(1.05) brightness(.9); }
.food__hero-cap {
  position: absolute; left: var(--gutter); bottom: clamp(20px, 3vw, 48px);
  display: grid; gap: 10px;
}
.food__hero-name {
  font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 5.6rem); line-height: .9;
  text-transform: uppercase; letter-spacing: -.005em;
  text-shadow: 0 4px 40px rgba(0, 0, 0, .55);
}
.food__hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(0deg, rgba(8, 8, 8, .7), transparent 45%);
}
.food__hero-cap { z-index: 1; }
.food__grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  column-gap: clamp(16px, 2vw, 32px); row-gap: clamp(56px, 7vw, 110px);
}
.food__grid .frame img { filter: saturate(.92) contrast(1.04) brightness(.92); }
.food__a { grid-column: 1 / 8; }
.food__a .frame { aspect-ratio: 4 / 3; }
.food__b { grid-column: 9 / 13; margin-top: 30%; }
.food__b .frame { aspect-ratio: 3 / 4; }
.food__index { grid-column: 1 / 5; align-self: center; display: grid; gap: 48px; }
.food__list { margin-top: 16px; font-family: var(--serif); font-size: clamp(1.7rem, 2.6vw, 2.8rem); line-height: 1.2; text-transform: uppercase; letter-spacing: .01em; }
.food__list--sm { font-size: clamp(1.15rem, 1.5vw, 1.45rem); line-height: 1.6; letter-spacing: 0; text-transform: none; color: var(--ivory-80); }
.food__c { grid-column: 5 / 8; }
.food__c .frame { aspect-ratio: 2 / 3; }
.food__d { grid-column: 9 / 12; margin-top: -24%; }
.food__d .frame { aspect-ratio: 3 / 4; }

/* ---------- MOMENT ---------- */
.moment {
  position: relative; overflow: hidden;
  min-height: 115vh; min-height: 115svh;
  display: flex; align-items: flex-end;
  padding: 0 var(--gutter) clamp(64px, 10vw, 150px);
}
.moment__media { position: absolute; inset: 0; overflow: hidden; }
.moment__media img {
  width: 100%; object-fit: cover;
  filter: saturate(.78) contrast(1.06) brightness(.72);
}
.moment__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, var(--obsidian) 0%, rgba(8, 8, 8, .2) 22%, rgba(8, 8, 8, .25) 55%, rgba(8, 8, 8, .92) 100%),
    radial-gradient(80% 60% at 50% 50%, transparent 40%, rgba(8, 8, 8, .5) 100%);
}
.moment__title {
  position: relative;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(3rem, 9.4vw, 11.5rem); line-height: .92; letter-spacing: -.015em;
  text-transform: uppercase;
  font-variation-settings: "opsz" 96;
}
.moment__title .line:nth-child(2) { padding-left: 12vw; }
.moment__title .line:nth-child(3) { padding-left: 24vw; }
.moment__title em { font-style: italic; text-transform: none; }

/* ---------- GALLERY ---------- */
.gallery { background: var(--obsidian); }
.gallery__filters { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  min-height: 44px; padding: 0 1.1rem;
  font-size: .72rem; font-weight: 500; letter-spacing: .24em; text-transform: uppercase;
  color: var(--grey); border: 1px solid var(--line);
  transition: color .5s var(--ease-out), border-color .5s var(--ease-out), background-color .5s;
}
.chip:hover { color: var(--ivory); border-color: var(--line-strong); }
.chip.is-active { color: var(--obsidian); background: var(--ivory); border-color: var(--ivory); }
.gallery__grid { columns: 3; column-gap: clamp(12px, 1.6vw, 26px); }
.g-item {
  position: relative; display: block; width: 100%;
  margin: 0 0 clamp(12px, 1.6vw, 26px);
  break-inside: avoid; overflow: hidden;
  background: var(--umber);
  text-align: left;
}
.g-item img {
  width: 100%; height: auto;
  filter: saturate(.78) contrast(1.04) brightness(.86);
  transition: transform 1.4s var(--ease-out), filter 1.2s var(--ease-out);
}
.g-item::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(0deg, rgba(8, 8, 8, .75), transparent 50%);
  opacity: 0; transition: opacity .8s var(--ease-out);
}
.g-item__cap {
  position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 1;
  display: grid; gap: 4px;
  font-family: var(--serif); font-size: clamp(1rem, 1.3vw, 1.3rem); line-height: 1.35;
  opacity: 0; transform: translateY(12px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.g-item__cap span { font-family: var(--sans); font-size: .7rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); }
.g-item:hover img, .g-item:focus-visible img { transform: scale(1.045); filter: saturate(.95) contrast(1.04) brightness(.95); }
.g-item:hover::after, .g-item:focus-visible::after { opacity: 1; }
.g-item:hover .g-item__cap, .g-item:focus-visible .g-item__cap { opacity: 1; transform: none; }
.g-item.is-hidden { display: none; }
.g-item.is-entering { animation: g-in 1s var(--ease-out) both; }
@keyframes g-in { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* Lightbox */
.lightbox {
  width: 100vw; height: 100vh; max-width: none; max-height: none;
  margin: 0; padding: 0; border: 0;
  background: rgba(8, 8, 8, .97); color: var(--ivory);
}
.lightbox::backdrop { background: rgba(8, 8, 8, .9); }
.lightbox[open] { display: grid; place-items: center; animation: lb-in .6s var(--ease-out); }
@keyframes lb-in { from { opacity: 0; } to { opacity: 1; } }
.lightbox__fig { display: grid; gap: 18px; justify-items: center; padding: 72px 88px; }
.lightbox__media img { max-width: min(88vw, 1500px); max-height: 76vh; width: auto; height: auto; object-fit: contain; animation: lb-img .8s var(--ease-out); }
@keyframes lb-img { from { opacity: 0; transform: scale(.98); } to { opacity: 1; transform: none; } }
.lightbox__cap { font-family: var(--serif); font-size: 1.1rem; letter-spacing: .04em; }
.lightbox__btn {
  position: absolute; width: 56px; height: 56px; display: grid; place-items: center;
  border: 1px solid var(--line); transition: border-color .4s, color .4s;
}
.lightbox__btn:hover { border-color: var(--gold); color: var(--gold); }
.lightbox__btn svg { width: 22px; height: 22px; }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%) scaleX(-1); }
.lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__count { position: absolute; left: 24px; bottom: 22px; font-size: .7rem; letter-spacing: .3em; color: var(--grey); }

/* ---------- VISIT ---------- */
.visit { background: linear-gradient(180deg, var(--obsidian), var(--charcoal)); }
.visit__grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  column-gap: clamp(16px, 2vw, 32px); row-gap: clamp(56px, 7vw, 110px);
}
.visit__media { grid-column: 1 / 6; grid-row: 1 / 3; }
.visit__media .frame { aspect-ratio: 3 / 4.6; position: sticky; top: 110px; }
.visit__info { grid-column: 7 / 13; }
.visit__list {
  margin-top: clamp(48px, 6vw, 88px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(20px, 3vw, 48px);
}
.visit__list > div { border-top: 1px solid var(--line-strong); padding: 22px 0 30px; }
.visit__list dt { font-size: .7rem; font-weight: 500; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.visit__list dd { margin-top: 12px; font-family: var(--serif); font-size: clamp(1.1rem, 1.35vw, 1.35rem); line-height: 1.45; color: var(--ivory); }
.visit__list dd a:not(.link-line) { border-bottom: 1px solid var(--gold-line); transition: border-color .4s, color .4s; }
.visit__list dd a:not(.link-line):hover { color: var(--gold); border-color: var(--gold); }
.visit__list dd .link-line { display: flex; width: max-content; font-family: var(--sans); }
.visit__cta { margin-top: clamp(32px, 4vw, 56px); }
.visit__map { grid-column: 7 / 13; position: relative; aspect-ratio: 16 / 9; border: 1px solid var(--line); overflow: hidden; background: var(--charcoal); }
.visit__map iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
  filter: none;
}

/* ---------- FINALE ---------- */
.finale {
  position: relative; overflow: hidden;
  min-height: 100vh; min-height: 100svh;
  display: grid; place-items: center;
  padding: var(--section-y) var(--gutter);
  text-align: center;
}
.finale__media { position: absolute; inset: 0; }
.finale__video { width: 100%; height: 100%; object-fit: cover; opacity: .5; filter: saturate(.85) brightness(.8); }
.finale__shade {
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 70% at 50% 50%, rgba(8, 8, 8, .55), rgba(8, 8, 8, .92) 100%),
    linear-gradient(180deg, var(--obsidian) 0%, transparent 25%, transparent 75%, var(--obsidian) 100%);
}
.finale__inner { position: relative; display: grid; justify-items: center; gap: 30px; }
.finale__logo { width: clamp(132px, 14vw, 200px); height: auto; }
.finale__title { margin-top: .1em; }
.finale__support { color: var(--ivory-80); font-size: 1.05rem; letter-spacing: .02em; margin-bottom: 8px; }

/* ---------- FOOTER ---------- */
.footer { border-top: 1px solid var(--line); padding: 34px var(--gutter) calc(30px + env(safe-area-inset-bottom)); background: var(--obsidian); }
.footer__row { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer__logo img { width: 44px; height: 44px; }
.footer__meta { font-size: .85rem; letter-spacing: .02em; color: var(--grey); }
.footer__links { display: flex; gap: 28px; }
.footer__links a {
  font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; color: var(--ivory-80);
  padding: .6rem 0; transition: color .4s;
}
.footer__links a:hover { color: var(--gold); }
.footer__legal { margin-top: 26px; font-size: .72rem; color: rgba(155, 150, 141, .8); letter-spacing: .02em; }

/* ---------- Mobile reserve bar ---------- */
.m-reserve { display: none; }

/* ---------- Cursor ---------- */
.cursor { display: none; }
.has-cursor, .has-cursor a, .has-cursor button { cursor: none; }
.has-cursor .cursor { display: block; }
.cursor__dot, .cursor__ring {
  position: fixed; left: 0; top: 0; z-index: 600; pointer-events: none;
  will-change: transform;
}
.cursor__dot { width: 6px; height: 6px; margin: -3px 0 0 -3px; border-radius: 50%; background: var(--ivory); transition: opacity .3s, background-color .4s; }
.cursor__ring { width: 64px; height: 64px; margin: -32px 0 0 -32px; }
.cursor__ring i {
  display: block; width: 100%; height: 100%; border-radius: 50%;
  border: 1px solid rgba(201, 168, 106, .55);
  transform: scale(.5);
  transition: transform .6s var(--ease-out), background-color .6s var(--ease-out), border-color .6s var(--ease-out), opacity .4s;
}
.cursor.is-hover .cursor__ring i { transform: scale(1); background: rgba(201, 168, 106, .08); border-color: var(--gold); }
.cursor.is-hover .cursor__dot { background: var(--gold); }
.cursor.is-hidden .cursor__dot, .cursor.is-hidden .cursor__ring i { opacity: 0; }
.cursor.is-down .cursor__ring i { transform: scale(.42); }


/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1180px) {
  .nav__links { gap: 22px; }
  .pillars { grid-template-columns: repeat(2, 1fr); row-gap: 56px; }
}

@media (max-width: 899px) {
  :root { --nav-h: 72px; }
  .nav { grid-template-columns: 1fr auto; }
  .nav__links, .nav__cta { display: none; }
  .nav__logo img { width: 48px; height: 48px; }
  .nav__toggle {
    display: flex; align-items: center; gap: 14px;
    min-height: 44px; padding: 0 2px 0 12px;
    font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; font-weight: 500;
  }
  .nav__toggle-lines { position: relative; width: 26px; height: 10px; }
  .nav__toggle-lines i {
    position: absolute; left: 0; right: 0; height: 1px; background: var(--ivory);
    transition: transform .7s var(--ease-io), top .7s var(--ease-io);
  }
  .nav__toggle-lines i:first-child { top: 0; }
  .nav__toggle-lines i:last-child { top: 9px; }
  .nav__toggle[aria-expanded="true"] .nav__toggle-lines i:first-child { top: 4.5px; transform: rotate(35deg); }
  .nav__toggle[aria-expanded="true"] .nav__toggle-lines i:last-child { top: 4.5px; transform: rotate(-35deg); }
  .menu-open .nav { background: transparent; border-bottom-color: transparent; backdrop-filter: none; }
  .menu-open .nav::before { opacity: 0; }

  /* Hero — dedicated portrait composition */
  .hero { height: 560vh; }
  /* phones: --stage-lift / --stage-shrink are solved in main.js (layoutPhone) */
  .hero__stage {
    transform: translate3d(0, calc(var(--hold) * var(--stage-lift, -11%)), 0) scale(calc(1 - var(--hold) * var(--stage-shrink, .3)));
    will-change: transform;
  }
  .hero__stage::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    box-shadow: inset 0 0 calc(var(--hold) * 90px) calc(var(--hold) * 60px) var(--obsidian);
  }
  .hero__endshade { background: linear-gradient(0deg, rgba(8, 8, 8, .96) 0%, rgba(8, 8, 8, .8) 30%, transparent 55%); }
  .hero__content {
    left: var(--gutter); right: var(--gutter); top: auto; width: auto;
    bottom: calc(40px + (100lvh - 100svh));
    transform: none;
  }
  .hero__title { font-size: clamp(3rem, 15vw, 5.2rem); margin-top: .22em; }
  .hero__headline { font-size: clamp(1.1rem, 5.2vw, 1.5rem); letter-spacing: .04em; line-height: 1.25; }
  .hero__support { font-size: .95rem; margin-top: 1rem; }
  .hero__ctas { margin-top: 1.6rem; gap: 6px 26px; }
  .hero__ctas .btn { width: 100%; }
  .hero__whisper { top: auto; bottom: calc(96px + (100lvh - 100svh)); font-size: 1.7rem; }
  .hero__rail { height: 22vh; right: 14px; }
  .hero__hud { bottom: calc(26px + (100lvh - 100svh)); }
  .hero__cue { display: none; }
  .hero__opening { width: calc(100% - 2 * var(--gutter)); top: 44%; }

  .experience__body .lede { grid-column: 1 / -1; }
  .pillars { grid-template-columns: 1fr; gap: 0; margin-top: 72px; }
  .pillars li { display: grid; grid-template-columns: 44px 1fr; column-gap: 12px; padding: 24px 0 28px; }
  .pillars h3 { margin-top: 0; grid-column: 2; }
  .pillars p { grid-column: 2; margin-top: 10px; }
  .pillars__num { grid-row: 1 / 3; padding-top: .2em; }

  .atmos__grid { row-gap: 56px; }
  .atmos__a { grid-column: 1 / -1; }
  .atmos__a .frame { aspect-ratio: 4 / 3.4; }
  .atmos__b { grid-column: 4 / -1; grid-row: auto; margin-top: 0; }
  .atmos__text { grid-column: 1 / -1; grid-row: auto; }
  .atmos__c { grid-column: 1 / 11; grid-row: auto; }

  .food__hero .frame { aspect-ratio: 4 / 3.6; }
  .food__grid { row-gap: 48px; }
  .food__a { grid-column: 1 / -1; }
  .food__b { grid-column: 3 / -1; margin-top: 0; }
  .food__index { grid-column: 1 / -1; }
  .food__c { grid-column: 1 / 8; }
  .food__d { grid-column: 4 / -1; margin-top: 0; }

  .moment { min-height: 88vh; min-height: 88svh; }
  .moment__media img { height: 116% !important; }
  .moment__title .line:nth-child(2) { padding-left: 8vw; }
  .moment__title .line:nth-child(3) { padding-left: 16vw; }

  .gallery__grid { columns: 2; }
  .g-item__cap { opacity: 1; transform: none; left: 12px; right: 12px; bottom: 10px; font-size: .92rem; }
  .g-item::after { opacity: .9; }
  .lightbox__fig { padding: 72px 16px 96px; }
  .lightbox__prev, .lightbox__next { top: auto; bottom: 16px; transform: none; }
  .lightbox__prev { left: auto; right: 84px; transform: scaleX(-1); }
  .lightbox__next { right: 16px; }

  .visit__media { grid-column: 1 / -1; grid-row: auto; }
  .visit__media .frame { aspect-ratio: 4 / 4.4; position: relative; top: 0; }
  .visit__info, .visit__map { grid-column: 1 / -1; }
  .visit__list { grid-template-columns: 1fr; }
  .visit__map { aspect-ratio: 4 / 3; }

  .footer__row { flex-direction: column; align-items: flex-start; }
  .footer { padding-bottom: calc(100px + env(safe-area-inset-bottom)); }

  .m-reserve {
    position: fixed; left: 16px; right: 16px; z-index: 90;
    bottom: calc(14px + env(safe-area-inset-bottom));
    display: flex;
    transform: translateY(calc(100% + 30px));
    transition: transform .9s var(--ease-out);
  }
  .m-reserve.is-visible { transform: none; }
  .menu-open .m-reserve { transform: translateY(calc(100% + 30px)); }
}


/*
 * Phones use the dedicated 9:16 hero sequence. Those source frames are
 * mastered on RGB(0,0,0), while the global site background is #080808.
 * Because the sequence is intentionally drawn smaller than the viewport,
 * mixing those two black levels exposes the exact image rectangle.
 *
 * Keep the complete phone hero stack on true black instead of trying to hide
 * the rectangle with a narrow edge gradient. This also keeps the background
 * correct while .hero__stage is translated/scaled during the hold phase.
 */
@media (max-width: 600px) {
  .hero,
  .hero__sticky,
  .hero__stage,
  .hero__canvas {
    background: #000;
  }

  .hero__stage::after {
    box-shadow:
      inset 0 0 calc(var(--hold) * 90px)
      calc(var(--hold) * 60px) #000;
  }

  /* Mobile hero copy needs to read as typography, not microscopic HUD text. */
  .hero__opening-line {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
    line-height: 1.06;
  }

  .hero__opening .kicker {
    font-size: .78rem;
    letter-spacing: .22em;
  }

  .hero__whisper {
    max-width: calc(100% - (2 * var(--gutter)));
    font-size: clamp(2rem, 8.5vw, 2.5rem);
    line-height: 1.08;
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .92);
  }

  .hero__hud {
    gap: 10px;
    font-size: .78rem;
    letter-spacing: .22em;
    color: rgba(244, 239, 230, .92);
  }
  .hud__num { font-size: 1.18rem; }
  .hud__name { min-width: 10ch; color: rgba(244, 239, 230, .92); }

  .hero__headline { font-size: clamp(1.25rem, 5.8vw, 1.6rem); }
  .hero__support { font-size: 1rem; line-height: 1.55; }
  .hero__ctas .btn,
  .hero__ctas .link-line { font-size: .76rem; }
}

@media (max-width: 520px) {
  .display { font-size: clamp(2.7rem, 13.4vw, 4.2rem); }
  .kicker { font-size: .7rem; letter-spacing: .26em; }
  .kicker__num::after { width: 28px; }
  .gallery__grid { column-gap: 10px; }
  .g-item { margin-bottom: 10px; }
  .chip { padding: 0 .8rem; font-size: .7rem; letter-spacing: .18em; }
  .menu__meta { flex-direction: column; }
}

/* Short landscape screens */
@media (min-width: 900px) and (max-height: 700px) {
  .hero__title { font-size: clamp(3rem, 7vw, 7rem); }
  .hero__ctas { margin-top: 1.6rem; }
}

/* ==========================================================================
   Reduced motion — a composed, still cinematic experience
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .js [data-reveal]:not([data-reveal="lines"]):not([data-reveal="image"]) { opacity: 1; transform: none; }
  .js .line > span { transform: none; }
  .js [data-reveal="image"] .frame { clip-path: none; }
  .js [data-reveal="image"] .frame img { scale: 1; }
  [data-parallax] { transform: none !important; }
  .js [data-reveal].is-in:not([data-reveal="lines"]):not([data-reveal="image"]) { transition: opacity .8s ease; }
  .hero__content > * { transition: opacity 1.2s ease !important; transform: none !important; }
  .hero__stage { transform: none !important; }
  .menu__word, .menu__foot { transition-duration: .2s !important; transition-delay: 0s !important; }
  .loader { transition: opacity .6s ease, visibility 0s linear .6s; clip-path: none !important; }
  .is-ready .loader { opacity: 0; }
}
