/* =================================================================
   SUNDOWN — Rooftop Cocktail Bar
   Design system + sections. Warm golden-hour up top,
   deepening into twilight toward the footer.
   ================================================================= */

/* ----------------------------- Tokens ---------------------------- */
:root {
  /* Warm */
  --gold:  #F2B04C;
  --amber: #F0944B;
  --coral: #E8654E;
  --peach: #FCD9A8;
  --rose:  #C96A6A;

  /* Twilight */
  --plum:   #3A2348;
  --indigo: #211633;
  --night:  #140E20;
  --night-deep: #0C0814;

  /* Neutrals */
  --cream: #F7EFE3;
  --sand:  #ECE0CC;
  --char:  #191322;

  /* Text */
  --text:  #F4ECDF;
  --muted: rgba(244, 236, 223, 0.66);
  --text-dark:  #241A26;
  --muted-dark: rgba(36, 26, 38, 0.62);

  /* Type */
  --font-display: "Prata", "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --section-pad: clamp(4.5rem, 10vw, 9rem);
  --radius: 18px;

  /* Cocktail accent (overwritten by JS) */
  --drink: #F2B04C;
  --drink-light: #FCD9A8;
  --drink-soft: rgba(242, 176, 76, 0.18);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------------------------- Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--night);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* Lenis smooth scroll */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

.skip-link {
  position: fixed; top: 0; left: 50%; transform: translate(-50%, -120%);
  background: var(--gold); color: var(--char); padding: 0.6rem 1.2rem;
  border-radius: 0 0 12px 12px; font-weight: 600; z-index: 200; transition: transform 0.3s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

/* --------------------------- Utilities --------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.eyebrow {
  font-size: 0.78rem; letter-spacing: 0.32em; text-transform: uppercase;
  font-weight: 500; color: var(--coral);
}
.eyebrow--light { color: var(--gold); }

.section-head { max-width: 720px; margin-inline: auto; text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--left { text-align: left; margin-inline: 0; }
.section-head__title {
  font-family: var(--font-display); font-weight: 500; font-optical-sizing: auto;
  font-size: clamp(2.4rem, 5.2vw, 4.2rem); line-height: 1.02; letter-spacing: -0.01em;
  margin-top: 0.6rem;
}
.section-head__sub { color: var(--muted); margin-top: 1.1rem; font-size: 1.05rem; }

/* Buttons */
.btn {
  --btn-bg: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  padding: 0.95em 1.8em; border-radius: 999px; font-weight: 500; font-size: 0.95rem;
  letter-spacing: 0.01em; line-height: 1; white-space: nowrap;
  transition: transform 0.4s var(--ease), background 0.3s, color 0.3s, box-shadow 0.4s var(--ease);
  will-change: transform;
}
.btn--solid {
  background: linear-gradient(135deg, var(--gold), var(--coral)); color: #2a160e;
  box-shadow: 0 10px 30px -12px rgba(232, 101, 78, 0.7);
}
.btn--solid:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -14px rgba(232, 101, 78, 0.85); }
.btn--ghost { border: 1px solid rgba(244, 236, 223, 0.35); color: var(--text); }
.btn--ghost:hover { background: rgba(244, 236, 223, 0.08); border-color: rgba(244, 236, 223, 0.6); }
.btn--outline { border: 1px solid currentColor; }
.btn--outline:hover { transform: translateY(-3px); }
.btn--block { width: 100%; }

.link-underline {
  display: inline-flex; align-items: center; gap: 0.5em; font-weight: 500;
  color: var(--gold); position: relative; padding-bottom: 3px; width: fit-content;
}
.link-underline::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); }
.link-underline span { transition: transform 0.4s var(--ease); }
.link-underline:hover span { transform: translateX(5px); }

/* Scroll reveal */
[data-reveal] { opacity: 0; transform: translateY(34px); }
[data-reveal].is-in { opacity: 1; transform: none; transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }

/* ============================ HEADER ============================ */
/* Minimal transparent header: just the wordmark (fades on scroll) + the hamburger. */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
}
.site-header__inner {
  max-width: var(--container); margin-inline: auto; padding: clamp(1rem, 2.4vw, 1.6rem) var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}

.brand { display: inline-flex; align-items: center; }
.brand__logo { height: clamp(28px, 3.2vw, 38px); width: auto; display: block; }
/* Dark wordmark over the light hero top; swap to the cream one once the header
   goes dark (.is-stuck), so it stays crisp on both. */
.brand__logo--dark { filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.18)); }
.brand__logo--light { display: none; }
.site-header.is-stuck .brand__logo--dark { display: none; }
.site-header.is-stuck .brand__logo--light { display: block; }

.nav__list { display: flex; gap: clamp(1.2rem, 2.4vw, 2.4rem); }
.nav__link { position: relative; font-size: 0.95rem; color: rgba(255, 255, 255, 0.82); text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); padding: 0.3rem 0; transition: color 0.3s; }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { transform: scaleX(1); }
.site-header__cta { padding: 0.7em 1.4em; }

.nav-toggle { display: flex; width: 44px; height: 44px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.35)); }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.35s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 95; background: linear-gradient(160deg, var(--indigo), var(--night-deep));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; visibility: hidden; transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__nav { display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }
.mobile-menu__nav a { font-family: var(--font-display); font-size: clamp(1.8rem, 8vw, 2.6rem); opacity: 0; transform: translateY(20px); }
.mobile-menu.is-open .mobile-menu__nav a { opacity: 1; transform: none; transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(3) { transition-delay: 0.20s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(4) { transition-delay: 0.26s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(5) { transition-delay: 0.32s; }
.mobile-menu__nav .btn { font-family: var(--font-sans); font-size: 1rem; margin-top: 0.8rem; }
.mobile-menu__foot { color: var(--muted); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ============================= HERO ============================= */
.hero {
  position: relative; height: 100vh; height: 100svh; min-height: 620px;
  overflow: hidden; isolation: isolate;
  background: var(--night);
}
.hero__sky {
  position: absolute; inset: 0; z-index: -3;
  background:
    /* Original daytime sky (revert): radial-gradient(120% 90% at 50% 12%, #FFE6B0 0%, #FBC169 18%, #F2944B 38%, #D9614C 60%, #8E3F55 82%, #4A2A53 100%); */
    radial-gradient(120% 92% at 50% 12%, #FFF3D2 0%, #F7D278 20%, #F0B049 38%, #E4873A 52%, #CF5E2A 64%, #9C4250 78%, #5A3A64 89%, #3C3260 100%);
}
.hero__sky::after {
  content: ""; position: absolute; inset: 0; opacity: var(--night-mix, 0);
  background:
    radial-gradient(120% 95% at 50% 64%, #6B3B6E 0%, #3C2455 30%, #211734 60%, #140E20 100%);
}
.hero__stars {
  position: absolute; inset: 0; z-index: -2; opacity: var(--star, 0); pointer-events: none;
}
/* Individual star dots (generated in JS) — each twinkles on its own cycle. */
.star {
  position: absolute; border-radius: 50%;
  background: #fff; box-shadow: 0 0 4px 0.5px rgba(255, 246, 224, 0.65);
  opacity: var(--tw-min, 0.3);
  animation: twinkle var(--tw-dur, 3s) ease-in-out var(--tw-delay, 0s) infinite;
  will-change: opacity, transform;
}
@keyframes twinkle {
  0%, 100% { opacity: var(--tw-min, 0.3); transform: scale(0.85); }
  50%      { opacity: var(--tw-max, 1); transform: scale(1.15); }
}
/* Shooting stars — occasional streaks that fall from the top toward the left.
   translate() sits before rotate() so the travel is in world space (down-left)
   while the streak keeps a constant tilt; visible only briefly each cycle. */
.shoot {
  position: absolute; width: clamp(90px, 12vw, 160px); height: 2px;
  background: linear-gradient(to left, transparent, rgba(255, 247, 224, 0.95));
  border-radius: 2px; opacity: 0;
  filter: drop-shadow(0 0 4px rgba(255, 247, 224, 0.55));
  animation: shoot var(--sh-dur, 8s) ease-in var(--sh-delay, 0s) infinite;
  will-change: transform, opacity;
}
@keyframes shoot {
  0%   { opacity: 0; transform: translate(0, 0) rotate(-28deg); }
  4%   { opacity: 1; }
  16%  { opacity: 0; transform: translate(-62vw, 33vw) rotate(-28deg); }
  100% { opacity: 0; transform: translate(-62vw, 33vw) rotate(-28deg); }
}
@media (prefers-reduced-motion: reduce) {
  .star { animation: none; opacity: var(--tw-min, 0.5); }
  .shoot { display: none; }
}

/* Sun */
.hero__sun-layer { position: absolute; inset: 0; z-index: 1; }
.sun {
  position: absolute; left: 50%; top: 30%;
  width: 44vmin; height: 44vmin; color: var(--gold);
  transform: translate(-50%, -50%);
}
.sun__disc {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, #FFF7DE 0%, #FFE6A6 26%, #FBC169 52%, #F2944B 74%, #E8654E 100%);
  box-shadow: 0 0 70px 10px rgba(251, 193, 105, 0.55), inset 0 0 50px rgba(255, 247, 222, 0.5);
}
.sun__halo {
  position: absolute; left: 50%; top: 50%; width: 230%; height: 230%; transform: translate(-50%, -50%);
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(255, 222, 150, 0.45) 0%, rgba(251, 170, 90, 0.18) 38%, transparent 66%);
}
/* Skyline */
.hero__skyline {
  position: absolute; left: 0; right: 0; bottom: 0; width: 100%; aspect-ratio: 1584 / 373;
  z-index: -1; pointer-events: none;
}
/* Wide/fullscreen viewports swap to a wider skyline crop (see the <picture> tags) so
   it renders ~1/3 shorter with no distortion. Narrow/half-screen keeps the taller look.
   The breakpoint here must match the <source media> condition. */
@media (min-aspect-ratio: 13/10) {
  .hero__skyline { aspect-ratio: 2376 / 373; }
}
.hero__skyline-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center bottom; display: block;
}
.hero__skyline [data-skyline-on] { opacity: 0; } /* the lit skyline starts off */

/* Waterfront: its own section BELOW the hero (revealed after the sunset). The skyline's
   reflection sits at the top, water below; boats drift slowly in the direction they point. */
.waterfront {
  position: relative; width: 100%; overflow: hidden; line-height: 0;
  background: #140E20; /* night — matches the hero bottom and fills the water's wavy transparent edge */
}
.waterfront__img { display: block; width: 100%; height: auto; }
.boat { position: absolute; will-change: transform, opacity; animation: sail var(--dur, 50s) linear infinite; }
.boat img { display: block; width: 100%; height: auto; animation: bob 6.5s ease-in-out infinite; }
.boat--yacht { left: 42%; bottom: 40%; width: clamp(90px, 10vw, 180px); --dx: 130px; --dy: -84px; --dur: 54s; }
.boat--right { right: 14%; bottom: 50%; width: clamp(26px, 2.7vw, 50px);  --dx: -104px; --dy: -72px; --dur: 62s; }
.boat--left  { left: 11%; bottom: 50%; width: clamp(38px, 4vw, 74px); --dx: 92px;  --dy: -22px;  --dur: 68s; }
@keyframes sail {
  0%   { transform: translate(0, 0); opacity: 0; }
  7%   { opacity: 1; }
  93%  { opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)); opacity: 0; }
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-0.7deg); }
  50%      { transform: translateY(-3px) rotate(0.7deg); }
}
@media (prefers-reduced-motion: reduce) {
  .boat { animation: none; opacity: 1; }
  .boat img { animation: none; }
}

/* Glass + hand (cut-out PNG) */
.hero__glass-layer {
  position: absolute; left: 0; right: 0; bottom: clamp(-12px, 0.5vh, 6px); z-index: 2;
  display: flex; justify-content: flex-end; align-items: flex-end; pointer-events: none;
}
.hero__glass {
  width: clamp(440px, 64vw, 820px); height: auto;
  filter: drop-shadow(0 26px 46px rgba(20, 10, 30, 0.45));
  transform: translateX(4%); /* push the cropped sleeve past the right edge so the cut isn't visible */
}

/* Hero copy */
.hero__content { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 0 var(--gutter); z-index: 2; pointer-events: none; }
.hero__intro { max-width: 760px; transform: translateY(-6vh); }
.hero__title {
  font-family: var(--font-display); font-weight: 400; font-optical-sizing: auto;
  font-size: clamp(2.8rem, 8.5vw, 7rem); line-height: 0.98; letter-spacing: -0.015em;
  margin: 0.4rem 0 0; color: #fff; text-shadow: 0 4px 40px rgba(60, 20, 30, 0.35);
}
.hero__title em { font-style: italic; color: #FFE6B0; }
.hero__sub { margin-top: 1.4rem; font-size: clamp(1rem, 1.4vw, 1.18rem); color: rgba(255, 248, 236, 0.82); max-width: 30ch; margin-inline: auto; }

.hero__defs { position: absolute; width: 0; height: 0; overflow: hidden; pointer-events: none; }
.hero__outro {
  position: absolute; inset: 0; z-index: 3;
  display: flex; justify-content: center; align-items: flex-start;
  opacity: 0; pointer-events: none; padding: 0 var(--gutter);
  /* Full-height so the logo's glow has opaque mask room all around it. Invisible
     horizon at ~52-57vh: content is visible above it, clipped below — so the logo
     vanishes bottom-first as it sinks past. The logo is placed at ~30vh via GSAP y. */
  -webkit-mask-image: linear-gradient(to bottom, #000 0, #000 52%, transparent 57%);
          mask-image: linear-gradient(to bottom, #000 0, #000 52%, transparent 57%);
}
.hero__outro-logo {
  width: min(88vw, 731px); height: auto; display: block; transform-origin: 50% 100%;
  /* Two warm glow shadows (alpha driven by --glow) bloom on pop-in, then fade as it sets. */
  filter: url(#sunset-heat) brightness(var(--lb, 1))
    drop-shadow(0 0 12px rgba(255, 226, 178, var(--glow, 0)))
    drop-shadow(0 0 34px rgba(255, 198, 130, var(--glow, 0)))
    drop-shadow(0 6px 30px rgba(0, 0, 0, 0.45));
}

.hero__cue {
  position: absolute; left: 50%; bottom: 1.8rem; transform: translateX(-50%); z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255, 248, 236, 0.8); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
}
.hero__cue svg { animation: cue 2s var(--ease) infinite; }
@keyframes cue { 0%, 100% { transform: translateY(0); opacity: 0.5; } 50% { transform: translateY(6px); opacity: 1; } }

/* ============================= ABOUT ============================= */
.about {
  background: linear-gradient(180deg, var(--night) 0%, #1B1230 60%, #1B1230 100%);
  padding: calc(var(--section-pad) + 2rem) 0 var(--section-pad);
}
.about__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: end; }
.about__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 4.4vw, 3.6rem); line-height: 1.04; letter-spacing: -0.01em; margin-top: 1rem; }
.about__body p { color: var(--muted); margin-bottom: 1.1rem; max-width: 52ch; }
.about__body .link-underline { margin-top: 0.6rem; }

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  margin-top: clamp(3rem, 7vw, 5.5rem); padding-top: clamp(2.2rem, 4vw, 3rem);
  border-top: 1px solid rgba(244, 236, 223, 0.12);
}
.stat { display: flex; flex-direction: column; gap: 0.4rem; }
.stat__num { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1; color: var(--gold); }
.stat__label { font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

/* ============================ MARQUEE ============================ */
.marquee {
  background: linear-gradient(90deg, var(--amber), var(--gold), var(--coral));
  color: #2a160e; overflow: hidden; padding: 1.1rem 0; border-block: 1px solid rgba(0, 0, 0, 0.08);
}
.marquee__track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 500; letter-spacing: 0.01em; white-space: nowrap; padding-right: 0; }
.marquee__track i { font-style: normal; opacity: 0.6; margin: 0 0.3em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================== COCKTAILS =========================== */
/* Registered so the gradient colours can interpolate (smooth, not instant) */
@property --sec-bg { syntax: "<color>"; inherits: true; initial-value: #1B1230; }
@property --sec-bg2 { syntax: "<color>"; inherits: true; initial-value: #120C20; }
.cocktails {
  position: relative; padding: clamp(1.5rem, 3vw, 2.75rem) 0 var(--section-pad); overflow: hidden;
  color: var(--ink, var(--text));
  background: radial-gradient(140% 110% at 50% 30%, var(--sec-bg) 0%, var(--sec-bg2) 100%);
  transition: --sec-bg 0.9s var(--ease), --sec-bg2 0.9s var(--ease), color 0.9s var(--ease);
}
.cocktails .eyebrow { color: var(--accent-ink, var(--gold)); transition: color 0.85s var(--ease); }
.cocktails .section-head__title { color: var(--ink, var(--text)); transition: color 0.85s var(--ease); }
.cocktails .section-head__sub { color: var(--ink-soft, var(--muted)); transition: color 0.85s var(--ease); }
.cocktails .section-head { margin-bottom: clamp(0.4rem, 1.2vw, 1rem); max-width: 660px; }
.cocktails .section-head__title { font-size: clamp(1.8rem, 3.2vw, 2.8rem); }
/* Rotating wheel carousel */
.wheel {
  position: relative; margin: clamp(0.25rem, 1vw, 0.75rem) auto 0; width: 100%;
  height: clamp(480px, 44vw, 720px);
  --r: clamp(720px, 76vw, 1320px);     /* big, gentle, wide arc */
  --cardw: clamp(225px, 20vw, 380px);
  --cardh: clamp(280px, 25vw, 470px);  /* ~4:5 to match the photos */
  --cy: calc(var(--cardh) * 0.53 + 8px); /* keyed to card height so the top never clips */
  --step: 30deg;                        /* angle between cards */
  --cap: calc(var(--cy) + var(--cardh) * 0.56 + 14px); /* caption sits just below the centre card */
  touch-action: pan-y;
}
.wheel__stage { position: absolute; inset: 0; overflow: hidden; }
.wheel__glow {
  position: absolute; left: 50%; top: var(--cy); transform: translate(-50%, -50%);
  width: 760px; height: 760px; max-width: 120%; border-radius: 50%;
  background: radial-gradient(circle, var(--drink) 0%, transparent 60%);
  opacity: 0.45; filter: blur(46px); transition: background 0.8s var(--ease); pointer-events: none;
}
.wheel__ring { position: absolute; left: 50%; top: calc(var(--cy) + var(--r)); width: 0; height: 0; }

.dcard {
  position: absolute; left: 0; top: 0; width: var(--cardw); height: var(--cardh);
  margin-left: calc(var(--cardw) / -2); margin-top: calc(var(--cardh) / -2);
  transform: rotate(calc(var(--off, 0) * var(--step))) translateY(calc(var(--r) * -1));
  transform-origin: 50% 50%; cursor: pointer;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.55s var(--ease);
  will-change: transform;
}
.dcard.snap { transition: none; }
.dcard[data-hidden] { opacity: 0; pointer-events: none; }
.dcard__media {
  width: 100%; height: 100%; border-radius: 28px; overflow: hidden;
  box-shadow: 0 24px 60px -22px rgba(0, 0, 0, 0.7); outline: 1px solid rgba(255, 255, 255, 0.06);
  transform: scale(0.88); filter: brightness(0.66) saturate(0.95) blur(4.5px);
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease), box-shadow 0.7s var(--ease);
}
.dcard__media img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: inherit; }
.dcard.is-active { cursor: default; }
.dcard.is-active .dcard__media {
  transform: scale(1.06); filter: brightness(1) saturate(1) blur(0);
  box-shadow: 0 40px 100px -28px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.wheel__caption {
  position: absolute; left: 0; right: 0; top: var(--cap); z-index: 14;
  text-align: center; padding: 0 var(--gutter); pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.wheel__caption.is-swapping { opacity: 0; transform: translateY(8px); }
.wheel__caption .cmeta__star { margin-bottom: 0.3rem; }
.wheel__caption .cmeta__desc { max-width: 40ch; margin: 0.55rem auto 0; }
.wheel__caption .cmeta__spec { margin: 0.85rem auto 0; padding-top: 0.85rem; gap: clamp(1.1rem, 3vw, 2.2rem); max-width: 30rem; }

.wheel__axis {
  position: absolute; left: 0; right: 0; top: var(--cy); height: 1px; z-index: 1;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--ink, #F4ECDF) 22%, transparent) 16%, color-mix(in srgb, var(--ink, #F4ECDF) 22%, transparent) 84%, transparent);
}
.wheel__arrow {
  position: absolute; top: var(--cy); transform: translateY(-50%); z-index: 20;
  width: clamp(50px, 6.5vw, 72px); height: clamp(50px, 6.5vw, 72px); border-radius: 50%;
  display: grid; place-items: center; color: var(--ink, var(--cream));
  background: color-mix(in srgb, var(--ink, #F4ECDF) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--ink, #F4ECDF) 26%, transparent);
  backdrop-filter: blur(16px) saturate(180%); -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 10px 28px -8px rgba(0, 0, 0, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.5), inset 0 -3px 8px rgba(0, 0, 0, 0.1);
  transition: background 0.4s var(--ease), border-color 0.4s, color 0.4s, transform 0.3s var(--ease), box-shadow 0.4s var(--ease);
}
.wheel__arrow:hover { background: var(--drink); border-color: transparent; color: #20140e; transform: translateY(-50%) scale(1.08); box-shadow: 0 14px 34px -8px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.45); }
.wheel__arrow:active { transform: translateY(-50%) scale(0.96); }
.wheel__arrow--prev { left: clamp(6px, 4vw, 70px); }
.wheel__arrow--next { right: clamp(6px, 4vw, 70px); }

.cmeta { text-align: center; max-width: 46ch; margin: clamp(0.5rem, 1.5vw, 1.4rem) auto 0; transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.cmeta.is-swapping { opacity: 0; transform: translateY(10px); }
.cmeta__time { font-variant-numeric: tabular-nums; color: var(--accent-ink, var(--drink-light)); letter-spacing: 0.2em; font-size: 0.85rem; }
.cmeta__name { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.04; margin: 0.3rem 0 0.4rem; color: var(--ink, var(--text)); }
.cmeta__star { color: var(--accent-ink, var(--gold)); font-size: 0.8rem; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.cmeta__desc { color: var(--ink-soft, var(--muted)); margin-bottom: 1.3rem; }
.cmeta__spec { display: flex; gap: clamp(1.2rem, 4vw, 2.8rem); justify-content: center; flex-wrap: wrap; border-top: 1px solid color-mix(in srgb, var(--ink, #F4ECDF) 16%, transparent); padding-top: 1.1rem; }
.cmeta__spec > div { text-align: center; }
.cmeta__spec dt { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft, var(--muted)); margin-bottom: 0.25rem; }
.cmeta__spec dd { font-size: 0.95rem; color: var(--ink, var(--text)); }


/* =========================== DIRECTORY =========================== */
.directory { background: var(--night-deep); padding: clamp(2rem, 5vw, 4rem) 0; }
.directory__list { border-top: 1px solid rgba(244, 236, 223, 0.1); }
.directory__item { border-bottom: 1px solid rgba(244, 236, 223, 0.1); }
.directory__item a {
  position: relative; display: flex; align-items: center; gap: 1.5rem;
  padding: clamp(1.4rem, 3.5vw, 2.6rem) var(--gutter); max-width: var(--container); margin-inline: auto;
  overflow: hidden;
}
.directory__item a::before {
  content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--coral), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease); z-index: 0; opacity: 0.14;
}
.directory__item a:hover::before { transform: scaleX(1); }
.directory__index { position: relative; z-index: 1; font-size: 0.85rem; letter-spacing: 0.1em; color: var(--gold); }
.directory__word {
  position: relative; z-index: 1; font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2rem, 7vw, 5rem); line-height: 1; flex: 1;
  transition: transform 0.5s var(--ease), color 0.4s;
}
.directory__item a:hover .directory__word { transform: translateX(18px); color: #fff; }
.directory__more {
  position: relative; z-index: 1; color: var(--gold); font-size: 0.95rem; white-space: nowrap;
  opacity: 0; transform: translateX(-12px); transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.directory__item a:hover .directory__more { opacity: 1; transform: none; }

/* =========================== EXPERIENCE =========================== */
.experience { background: #1B1230; color: var(--text); padding: var(--section-pad) 0; }
.experience .eyebrow { color: var(--coral); }
.experience__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.experience__media { position: relative; border-radius: var(--radius); overflow: hidden; }
.experience__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; transform: scale(1.02); transition: transform 1.2s var(--ease); filter: brightness(0.7); }
.experience__media:hover img { transform: scale(1.06); }
.experience__badge {
  position: absolute; left: 1rem; bottom: 1rem; background: rgba(20, 14, 32, 0.7); backdrop-filter: blur(8px);
  color: var(--cream); padding: 0.5rem 1rem; border-radius: 999px; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
}
.experience__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 4.6vw, 3.6rem); line-height: 1.04; margin: 0.8rem 0 1.2rem; letter-spacing: -0.01em; }
.experience__text p { color: var(--muted); max-width: 48ch; }
.feature-list { margin: 1.6rem 0; display: grid; gap: 0.8rem; }
.feature-list li { position: relative; padding-left: 1.8rem; color: var(--text); }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em; width: 12px; height: 12px; border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, var(--gold), var(--coral));
}
.experience__text .btn { color: var(--text); margin-top: 0.6rem; }

/* ============================= QUOTE ============================= */
.quote { position: relative; min-height: 70vh; display: grid; align-items: center; overflow: hidden; }
.quote__media { position: absolute; inset: 0; }
.quote__media img { width: 100%; height: 100%; object-fit: cover; }
.quote__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20, 14, 32, 0.55), rgba(20, 14, 32, 0.78)); }
.quote__text { position: relative; text-align: center; padding-block: clamp(4rem, 10vw, 8rem); }
.quote__text p { font-family: var(--font-display); font-weight: 300; font-size: clamp(1.6rem, 4vw, 3.2rem); line-height: 1.22; letter-spacing: -0.01em; max-width: 20ch; margin-inline: auto; }
.quote__text em { color: var(--gold); font-style: italic; }
.quote__text cite { display: block; margin-top: 1.5rem; font-style: normal; font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

/* ============================= EVENTS ============================= */
.events { background: linear-gradient(180deg, #160E26, #1B1230); padding: var(--section-pad) 0; }
.events__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 2.5rem); }
.event-card {
  display: flex; flex-direction: column; border-radius: var(--radius); overflow: hidden;
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.5s var(--ease);
}
.event-card:hover { transform: translateY(-6px); border-color: rgba(242, 176, 76, 0.4); box-shadow: 0 30px 60px -40px rgba(0, 0, 0, 0.9); }
.event-card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.event-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.event-card:hover .event-card__media img { transform: scale(1.05); }
.event-card__body { padding: clamp(1.4rem, 3vw, 2.2rem); display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.event-card__kicker { font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--coral); }
.event-card__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.05; }
.event-card__date { color: var(--gold); font-weight: 500; letter-spacing: 0.04em; }
.event-card__body p:not(.event-card__kicker):not(.event-card__date) { color: var(--muted); }
.event-card__body .link-underline { margin-top: auto; padding-top: 0.8rem; }
.event-card--feature { border-color: rgba(242, 176, 76, 0.28); }

/* ============================ RESERVE ============================ */
.reserve { background: var(--sand); color: var(--text-dark); padding: var(--section-pad) 0; }
.reserve .eyebrow { color: var(--coral); }
.reserve__grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.reserve__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.02; margin: 0.7rem 0 1.1rem; letter-spacing: -0.01em; }
.reserve__intro p { color: var(--muted-dark); max-width: 42ch; }
.reserve__info { margin-top: 1.8rem; display: grid; gap: 0.8rem; }
.reserve__info li { display: flex; gap: 0.8rem; align-items: baseline; padding-bottom: 0.8rem; border-bottom: 1px solid rgba(36, 26, 38, 0.12); }
.reserve__info span { min-width: 5.5em; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--coral); }

.reserve__form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; background: var(--cream); padding: clamp(1.5rem, 4vw, 2.6rem); border-radius: var(--radius); box-shadow: 0 30px 70px -50px rgba(60, 30, 20, 0.6); }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-dark); }
.field input, .field select, .field textarea {
  background: #fff; border: 1px solid rgba(36, 26, 38, 0.18); border-radius: 10px; padding: 0.8rem 0.9rem;
  color: var(--text-dark); transition: border-color 0.3s, box-shadow 0.3s; width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(36, 26, 38, 0.4); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px rgba(232, 101, 78, 0.16); }
.field input:user-invalid, .field select:user-invalid { border-color: var(--coral); }
.reserve__form .btn { grid-column: 1 / -1; }
.reserve__success { grid-column: 1 / -1; color: #2f6b3a; background: rgba(72, 160, 90, 0.12); border: 1px solid rgba(72, 160, 90, 0.3); padding: 0.9rem 1rem; border-radius: 10px; font-size: 0.92rem; }

/* ============================= FOOTER ============================= */
.site-footer { background: var(--night-deep); padding: clamp(3.5rem, 7vw, 6rem) 0 2rem; }
.site-footer__top { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(2.5rem, 6vw, 5rem); padding-bottom: 3rem; border-bottom: 1px solid rgba(244, 236, 223, 0.1); }
.site-footer__logo { width: clamp(170px, 18vw, 230px); height: auto; display: block; margin-bottom: 1rem; }
.site-footer__line { color: var(--muted); }
.site-footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.foot-col h3 { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-weight: 600; }
.foot-col p, .foot-col a { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }
.foot-col a:hover { color: var(--text); }
.social { display: grid; gap: 0.4rem; }
.news { display: flex; gap: 0.5rem; margin-top: 0.8rem; }
.news input { flex: 1; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 999px; padding: 0.6rem 1rem; color: var(--text); min-width: 0; }
.news input:focus { outline: none; border-color: var(--gold); }
.news .btn { padding: 0.6rem 1.1rem; }
.news__note { color: var(--gold); margin-top: 0.6rem; font-size: 0.88rem; }
.site-footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding-top: 1.6rem; }
.site-footer__bottom p { color: var(--muted); font-size: 0.82rem; }
.legal { display: flex; gap: 1.4rem; }
.legal a { color: var(--muted); font-size: 0.82rem; }
.legal a:hover { color: var(--text); }

/* =========================== RESPONSIVE =========================== */
@media (max-width: 960px) {
  .nav, .site-header__cta { display: none; }
  .nav-toggle { display: flex; }
  .about__grid { grid-template-columns: 1fr; align-items: start; }
  .wheel {
    height: clamp(490px, 112vw, 640px);
    --r: clamp(560px, 150vw, 820px); --step: 33deg;
    --cardw: clamp(230px, 60vw, 320px); --cardh: clamp(290px, 75vw, 400px);
  }
  .experience__grid, .events__grid, .reserve__grid, .site-footer__top, .about__grid { grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
  .site-footer__cols { grid-template-columns: 1fr 1fr; }
  .reserve__form { grid-template-columns: 1fr; }
  .field--full, .reserve__form .btn, .reserve__success { grid-column: 1; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__intro { transform: translateY(-3vh); }
}

/* ====================== REDUCED MOTION ====================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .marquee__track { animation: none; }
}
