/* ══════════════════════════════════════════════════════════════
   RLX — THE AUTHORITY TABLE™
   Design System v4 — Full Visual Revision
   Dual Environment · Icon-Free · Typography-First · Luxury
   ══════════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  /* Evening Authority */
  --navy-0:        #04050E;
  --navy-1:        #080D22;
  --navy-2:        #0C1230;
  --navy-3:        #12193E;
  --navy-4:        #1A2252;

  /* Gold System */
  --gold:          #C9A84C;
  --gold-lt:       #DDB96A;
  --gold-pale:     #F0DDAG;
  --gold-pale:     #F2E4B0;
  --gold-dim:      rgba(201,168,76,0.16);
  --gold-glow:     rgba(201,168,76,0.10);

  /* Daytime Elevation */
  --ivory:         #FAF8F3;
  --cream:         #F3EEE3;
  --sand:          #E8DFC8;
  --warm-white:    #FFFDF8;
  --charcoal:      #18192E;
  --slate:         #4A4B68;
  --slate-lt:      #7A7B98;

  /* Accent — ONE per section */
  --magenta:       #C8245A;

  /* Typography */
  --serif:         'Playfair Display','Cormorant Garamond',Georgia,serif;
  --sans:          'Inter','Helvetica Neue',Arial,sans-serif;

  /* Layout */
  --max-w:         1280px;
  --sm-w:          860px;
  --xs-w:          680px;
  --pad-x:         clamp(20px,5vw,64px);
  --section-y:     clamp(88px,12vw,160px);

  /* Easing */
  --ease:          cubic-bezier(.25,.46,.45,.94);
  --ease-out:      cubic-bezier(.16,1,.3,1);
  --ease-spring:   cubic-bezier(.34,1.56,.64,1);
}

/* ── RESET ──────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--sans);
  background: var(--navy-0);
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
}
img { display:block; max-width:100%; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
sup.tm    { font-size:.4em; vertical-align:super; letter-spacing:.02em; }
sup.tm-sm { font-size:.34em; vertical-align:super; }
em { font-style:italic; }

/* ── LAYOUT HELPERS ─────────────────────────────────────────── */
.container {
  width:100%; max-width:var(--max-w);
  margin:0 auto; padding:0 var(--pad-x);
}
.container--sm { max-width:var(--sm-w); text-align:center; }
.container--xs { max-width:var(--xs-w); text-align:center; }

/* ── ENVIRONMENT CLASSES ────────────────────────────────────── */
.eve-auth          { background:var(--navy-2); color:#fff; }
.eve-auth--deep    { background:var(--navy-1); }
.eve-auth--light   { background:var(--navy-3); }
.eve-auth--medium  { background:var(--navy-4); }
.day-elev          { background:var(--ivory);  color:var(--charcoal); }

/* ── TYPOGRAPHY SYSTEM ──────────────────────────────────────── */
/* Eyebrow */
.eyebrow {
  font-family: var(--sans);
  font-size: clamp(.56rem,1vw,.66rem);
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  display: inline-block;
  padding-bottom: .55rem;
  border-bottom: 1px solid transparent;
  margin-bottom: 1.4rem;
}
.eyebrow.gold  { color:var(--gold); border-color:rgba(201,168,76,.25); }
.eyebrow.dark  { color:var(--charcoal); border-color:rgba(24,25,46,.16); }

/* Dividers */
.gold-rule {
  width: 52px; height: 1px;
  background: linear-gradient(90deg,transparent,var(--gold),transparent);
  margin: 1.5rem auto;
}
.gold-rule--left { margin-left:0; }

.dark-rule {
  width: 44px; height: 1px;
  background: linear-gradient(90deg,transparent,var(--charcoal),transparent);
  margin: 1rem auto 2.8rem;
}

/* Color helpers */
.gold-word  { color:var(--gold); }
.gold-em    { color:var(--gold-lt); font-style:italic; }
.magenta    { color:var(--magenta); }
.magenta-em { color:var(--magenta); font-style:normal; font-weight:600; }

/* ── GOLD FRAME ─────────────────────────────────────────────── */
.gold-frame {
  position:absolute; inset:30px;
  pointer-events:none; z-index:8;
}
.gold-frame--hero { inset:40px; }

.gf-t,.gf-b { position:absolute; height:1px; left:5%; right:5%; opacity:0; animation:frameIn 2s 1.2s var(--ease) forwards; }
.gf-l,.gf-r { position:absolute; width:1px;  top:5%; bottom:5%; opacity:0; animation:frameIn 2s 1.4s var(--ease) forwards; }

.gf-t { top:0;    background:linear-gradient(90deg,transparent,rgba(201,168,76,.55) 50%,transparent); }
.gf-b { bottom:0; background:linear-gradient(90deg,transparent,rgba(201,168,76,.55) 50%,transparent); }
.gf-l { left:0;   background:linear-gradient(180deg,transparent,rgba(201,168,76,.55) 50%,transparent); }
.gf-r { right:0;  background:linear-gradient(180deg,transparent,rgba(201,168,76,.55) 50%,transparent); }

@keyframes frameIn {
  from { opacity:0; }
  to   { opacity:1; }
}

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
[data-reveal] {
  opacity:0;
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
[data-reveal="fade-up"]    { transform:translateY(42px); }
[data-reveal="fade-left"]  { transform:translateX(-42px); }
[data-reveal="fade-right"] { transform:translateX(42px); }
[data-reveal].revealed     { opacity:1; transform:none; }

/* ── SECTION VIGNETTE ───────────────────────────────────────── */
.section__vignette {
  position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(ellipse 80% 80% at 50% 50%,transparent 40%,rgba(8,13,34,.65) 100%);
}

/* ── BUTTONS ── No icons, rounded, luxury ───────────────────── */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  font-family:var(--sans);
  font-size:.74rem; font-weight:600;
  letter-spacing:.22em; text-transform:uppercase;
  padding:1.1rem 2.9rem;
  border:none; cursor:pointer;
  position:relative; overflow:hidden;
  transition:all .4s var(--ease);
  border-radius:3px;
}

/* Gold primary */
.btn--gold {
  background:linear-gradient(115deg,#8a6520 0%,var(--gold) 30%,var(--gold-lt) 50%,var(--gold) 70%,#8a6520 100%);
  background-size:240% 100%;
  background-position:0% center;
  color:var(--navy-0);
  font-weight:700;
  box-shadow:0 4px 28px rgba(201,168,76,.22), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn--gold::before {
  content:'';
  position:absolute; top:0; left:-120%; bottom:0; width:55%;
  background:linear-gradient(105deg,transparent 25%,rgba(255,255,255,.22) 50%,transparent 75%);
  transition:left .6s var(--ease);
}
.btn--gold:hover {
  background-position:100% center;
  transform:translateY(-4px);
  box-shadow:0 20px 60px rgba(201,168,76,.5), 0 6px 16px rgba(201,168,76,.28);
}
.btn--gold:hover::before { left:150%; }
.btn--gold:active { transform:translateY(-1px); box-shadow:0 6px 22px rgba(201,168,76,.28); }

/* Outline */
.btn--outline {
  background:transparent;
  border:1px solid rgba(201,168,76,.45);
  color:var(--gold-pale);
  letter-spacing:.2em;
}
.btn--outline:hover {
  background:rgba(201,168,76,.07);
  border-color:var(--gold);
  color:var(--gold-lt);
  transform:translateY(-3px);
}

.btn--large { padding:1.35rem 3.8rem; font-size:.78rem; }
.btn--sm    { padding:.78rem 2.1rem; font-size:.68rem; }

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  padding:1.7rem 0;
  transition:background .5s var(--ease), padding .5s var(--ease), border .5s;
}
.nav.scrolled {
  background:rgba(4,5,14,.97);
  backdrop-filter:blur(28px) saturate(1.2);
  padding:1.05rem 0;
  border-bottom:1px solid rgba(201,168,76,.1);
}
.nav__inner {
  max-width:var(--max-w); margin:0 auto;
  padding:0 var(--pad-x);
  display:flex; align-items:center; justify-content:space-between; gap:2rem;
}
.nav__logo { display:flex; align-items:center; gap:.65rem; }
.nav__logo-rlx {
  font-family:var(--serif); font-size:1.6rem; font-weight:700;
  color:var(--gold); letter-spacing:.1em;
}
.nav__logo-pipe { color:var(--gold); opacity:.25; font-weight:100; }
.nav__logo-sub {
  font-size:.58rem; font-weight:400;
  letter-spacing:.24em; text-transform:uppercase;
  color:rgba(255,255,255,.38);
}
.nav__links { display:flex; align-items:center; gap:2.2rem; }
.nav__link {
  font-size:.66rem; font-weight:500; letter-spacing:.15em;
  text-transform:uppercase; color:rgba(255,255,255,.58);
  position:relative; transition:color .28s;
}
.nav__link::after {
  content:''; position:absolute; bottom:-4px; left:0; right:0; height:1px;
  background:var(--gold); transform:scaleX(0); transform-origin:left;
  transition:transform .32s var(--ease);
}
.nav__link:hover { color:var(--gold-lt); }
.nav__link:hover::after { transform:scaleX(1); }
.nav__cta {
  font-size:.66rem; font-weight:600; letter-spacing:.17em;
  text-transform:uppercase; color:var(--gold);
  border:1px solid rgba(201,168,76,.45);
  padding:.6rem 1.5rem; border-radius:2px;
  transition:all .32s var(--ease);
}
.nav__cta:hover { background:var(--gold); color:var(--navy-0); border-color:var(--gold); }
.nav__hamburger {
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; padding:5px;
}
.nav__hamburger span {
  display:block; width:24px; height:1.5px;
  background:var(--gold); transition:all .32s;
}
.nav__mobile {
  display:none; flex-direction:column;
  padding:1.2rem var(--pad-x) 1.8rem;
  background:rgba(4,5,14,.99);
  border-top:1px solid rgba(201,168,76,.1);
}
.nav__mobile.open { display:flex; }
.nav__mobile-link {
  font-size:.76rem; font-weight:500; letter-spacing:.15em;
  text-transform:uppercase; color:rgba(255,255,255,.65);
  padding:.8rem 0; border-bottom:1px solid rgba(255,255,255,.04);
  transition:color .2s;
}
.nav__mobile-link:hover { color:var(--gold-lt); }
.nav__mobile-cta {
  margin-top:1.2rem; display:inline-block; text-align:center;
  font-size:.7rem; font-weight:600; letter-spacing:.18em;
  text-transform:uppercase; color:var(--gold);
  border:1px solid var(--gold); padding:.8rem 1.6rem;
  transition:all .3s;
}
.nav__mobile-cta:hover { background:var(--gold); color:var(--navy-0); }

/* ════════════════════════════════════════
   §1 HERO — Evening Authority
════════════════════════════════════════ */
.hero {
  position:relative; min-height:100vh;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.hero__bg { position:absolute; inset:0; z-index:0; }
/* Hero video background */
.hero__bg-video {
  position:absolute; inset:0; z-index:1;
  width:100%; height:100%;
  object-fit:cover; object-position:center;
  filter:saturate(.7) brightness(.38) contrast(1.08);
}
/* Static fallback image — sits behind video */
.hero__bg-img {
  position:absolute; inset:0; z-index:0;
  background-size:cover; background-position:center 42%;
  transform:scale(1.02);
  filter:saturate(.62) brightness(.36) contrast(1.1);
}
/* Fallback photo is always visible underneath.
   JS adds .video-playing to <section> once autoplay succeeds → hides photo.
   JS adds .video-failed  to <section> if autoplay blocked  → hides video. */
.hero.video-playing  .hero__bg-img   { opacity:0; }
.hero.video-failed   .hero__bg-video { display:none; }
/* Default: show photo until we know video works */
.hero__bg-img { opacity:1; }

/* Dual vignette overlay — sits above video and image */
.hero__overlay {
  position:absolute; inset:0; z-index:2;
  background:
    linear-gradient(180deg, rgba(4,5,14,.88) 0%, rgba(4,5,14,.22) 38%, rgba(4,5,14,.22) 62%, rgba(4,5,14,.92) 100%),
    linear-gradient(90deg,  rgba(4,5,14,.72) 0%, transparent 28%, transparent 72%, rgba(4,5,14,.72) 100%);
}

/* Candlelight glow */
.hero__glow {
  position:absolute; inset:0; z-index:3;
  background:
    radial-gradient(ellipse 52% 42% at 50% 64%, rgba(255,200,85,.14) 0%, rgba(201,168,76,.07) 42%, transparent 68%),
    radial-gradient(ellipse 70% 28% at 50% 0%,  rgba(201,168,76,.05) 0%, transparent 55%);
  animation:glowPulse 8s ease-in-out infinite alternate;
}
@keyframes glowPulse {
  from { opacity:.75; }
  to   { opacity:1.15; }
}

/* Particles — above video (z:2+) */
.particles { position:absolute; inset:0; pointer-events:none; z-index:5; overflow:hidden; }
.particle {
  position:absolute; border-radius:50%; opacity:0;
  animation:floatUp var(--dur,10s) var(--delay,0s) ease-in-out infinite;
}
.particle:nth-child(3n)   { background:var(--gold); }
.particle:nth-child(3n+1) { background:rgba(255,215,105,.75); filter:blur(1px); }
.particle:nth-child(3n+2) { background:rgba(201,168,76,.5); filter:blur(.5px); }
@keyframes floatUp {
  0%   { opacity:0;    transform:translateY(0)      scale(1);   }
  20%  { opacity:.48;  transform:translateY(-20px)  scale(1.08); }
  70%  { opacity:.2;   transform:translateY(-90px)  scale(.82); }
  100% { opacity:0;    transform:translateY(-155px) scale(.35); }
}

/* Hero content */
.hero__content {
  position:relative; z-index:10;
  text-align:center;
  padding:8rem var(--pad-x) 6rem;
  max-width:900px;
}
.hero__eyebrow {
  font-family:var(--sans);
  font-size:clamp(.54rem,1vw,.66rem);
  font-weight:600; letter-spacing:.4em;
  text-transform:uppercase; color:var(--gold);
  display:inline-block;
  padding-bottom:.55rem;
  border-bottom:1px solid rgba(201,168,76,.24);
  margin-bottom:2.4rem;
  animation:fadeInDown .8s .4s both;
}
.hero__title {
  font-family:var(--serif);
  font-size:clamp(3.4rem,10vw,7.8rem);
  font-weight:500; line-height:.98;
  color:#fff; letter-spacing:.01em;
  text-shadow:0 2px 0 rgba(0,0,0,.6), 0 8px 40px rgba(201,168,76,.18), 0 30px 90px rgba(201,168,76,.06);
  margin-bottom:.2rem;
}
.hero__title em { color:var(--gold-lt); font-style:italic; }

/* Decorative rule — no icons */
.hero__rule {
  display:flex; align-items:center; justify-content:center;
  gap:1.4rem; margin:2.4rem auto;
}
.hero__rule span {
  display:block; width:88px; height:1px;
  background:linear-gradient(90deg,transparent,var(--gold));
}
.hero__rule span:last-child { background:linear-gradient(90deg,var(--gold),transparent); }
.hero__rule-diamond {
  display:block; width:6px; height:6px;
  background:var(--gold);
  transform:rotate(45deg);
  animation:diamondPulse 3.5s ease-in-out infinite;
  flex-shrink:0;
}
@keyframes diamondPulse {
  0%,100%{ opacity:.6; transform:rotate(45deg) scale(1); }
  50%    { opacity:1;  transform:rotate(45deg) scale(1.5); filter:drop-shadow(0 0 5px rgba(201,168,76,.7)); }
}

.hero__sub {
  font-family:var(--serif);
  font-size:clamp(1.1rem,2.6vw,1.7rem);
  font-weight:300; font-style:italic;
  color:var(--gold-pale); letter-spacing:.04em;
  margin-bottom:1.8rem; opacity:.88;
  text-shadow:0 2px 24px rgba(0,0,0,.5);
}
.hero__body {
  font-size:clamp(.82rem,1.4vw,.96rem);
  font-weight:300; letter-spacing:.06em;
  color:rgba(255,255,255,.58); line-height:2;
  margin-bottom:3.2rem;
}
.hero__body-light { opacity:.6; }
.hero__actions {
  display:flex; align-items:center; justify-content:center;
  gap:1.3rem; flex-wrap:wrap; margin-bottom:2rem;
}
.hero__micros {
  display:flex; align-items:center; justify-content:center;
  gap:.9rem; flex-wrap:wrap;
}
.hero__micro-item {
  font-family:var(--sans);
  font-size:.6rem; font-weight:500;
  letter-spacing:.2em; text-transform:uppercase;
  color:rgba(255,255,255,.28);
}
.hero__micro-sep { color:rgba(201,168,76,.35); font-size:.65rem; }

/* Scroll cue */
.scroll-cue {
  position:absolute; bottom:2.8rem; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:.6rem;
  z-index:10; animation:fadeInUp 1s 2.5s both;
}
.scroll-cue span { font-size:.56rem; letter-spacing:.24em; text-transform:uppercase; color:rgba(255,255,255,.28); }
.scroll-cue__line {
  width:1px; height:46px;
  background:linear-gradient(180deg,var(--gold),transparent);
  animation:scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100%{ opacity:.28; transform:scaleY(1); }
  50%    { opacity:.8;  transform:scaleY(1.2); }
}

/* ════════════════════════════════════════
   §2 CATEGORY CLAIM
   Marble texture, strong hierarchy
════════════════════════════════════════ */
.cat-claim {
  position:relative;
  padding:var(--section-y) 0;
  overflow:hidden;
}

/* Marble background texture (CSS-only) */
/* Real photo background behind the category claim section */
.cat-claim__bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center 30%;
  filter:brightness(.12) saturate(.6) blur(1px);
  transform:scale(1.04);
}

.cat-claim__marble {
  position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(ellipse 90% 60% at 50% 50%, rgba(201,168,76,.05) 0%, transparent 65%),
    radial-gradient(ellipse 140% 30% at 20% 80%, rgba(201,168,76,.03) 0%, transparent 50%),
    radial-gradient(ellipse 140% 30% at 80% 20%, rgba(201,168,76,.03) 0%, transparent 50%),
    repeating-linear-gradient(
      125deg,
      transparent 0px, transparent 38px,
      rgba(201,168,76,.015) 38px, rgba(201,168,76,.015) 39px,
      transparent 39px, transparent 82px,
      rgba(201,168,76,.01) 82px, rgba(201,168,76,.01) 83px
    );
}

.cat-claim__inner { position:relative; z-index:2; }

.cat-claim__pre {
  font-family:var(--serif);
  font-size:clamp(1.1rem,2.2vw,1.55rem);
  font-weight:300; color:rgba(255,255,255,.52);
  line-height:1.9; margin-bottom:2.2rem;
  letter-spacing:.04em;
}

/* Thin divider with center dot — replaces circle */
.cat-claim__divider {
  display:flex; align-items:center; justify-content:center;
  gap:.8rem; margin:2rem auto;
}
.cat-claim__divider-line {
  display:block; width:60px; height:1px;
  background:linear-gradient(90deg,transparent,rgba(201,168,76,.4));
}
.cat-claim__divider-line:last-child { background:linear-gradient(90deg,rgba(201,168,76,.4),transparent); }
.cat-claim__divider-dot {
  display:block; width:5px; height:5px;
  border-radius:50%; background:var(--gold);
  box-shadow:0 0 8px rgba(201,168,76,.6);
}

/* RIE Identity block — strong type hierarchy */
.cat-claim__identity {
  display:flex; flex-direction:column;
  align-items:center; gap:.5rem;
  margin:2.5rem 0;
}
.cat-claim__this {
  font-family:var(--sans);
  font-size:clamp(.56rem,1vw,.66rem); font-weight:700;
  letter-spacing:.5em; text-transform:uppercase;
  color:rgba(255,255,255,.35);
}
.cat-claim__rie {
  font-family:var(--serif);
  font-size:clamp(2rem,5vw,3.8rem);
  font-weight:700; color:#fff;
  letter-spacing:.02em; line-height:1.1;
  text-shadow:0 4px 40px rgba(201,168,76,.14);
}
.cat-claim__exp {
  font-family:'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size:clamp(1.8rem,4.5vw,3.4rem);
  font-weight:300; font-style:italic;
  color:var(--gold-lt);
  letter-spacing:.06em; line-height:1.2;
}

.cat-claim__lines {
  margin-top:2rem;
}
.cat-claim__lines p {
  font-family:var(--serif);
  font-size:clamp(1rem,2vw,1.35rem);
  font-weight:300; font-style:italic;
  color:rgba(255,255,255,.58); line-height:2;
}

.cat-claim__sub {
  margin-top:2.5rem;
  font-family:var(--sans);
  font-size:clamp(.72rem,1.3vw,.84rem);
  font-weight:300; letter-spacing:.08em;
  color:rgba(255,255,255,.32); line-height:2;
}

/* ════════════════════════════════════════
   §3 PROBLEM — Daytime Elevation
   Single centered block, tight, emotional
════════════════════════════════════════ */
.problem {
  padding:var(--section-y) 0;
}
.problem .eyebrow.dark {
  font-size:clamp(.62rem,1.1vw,.72rem);
}
.problem__block {
  display:flex; flex-direction:column;
  align-items:center;
  gap:0;
  margin:0 auto 3rem;
  max-width:540px;
}
.problem__line {
  font-family:var(--serif);
  font-size:clamp(1.1rem,2.2vw,1.45rem);
  font-weight:400; color:var(--charcoal);
  line-height:1.55; text-align:center;
  padding:1.35rem 0;
  border-bottom:1px solid rgba(24,25,46,.08);
  width:100%;
}
.problem__line:last-child { border-bottom:none; }
.problem__line em {
  color:var(--slate); font-style:italic; font-weight:300;
  display:block; font-size:.9em;
  margin-top:.2rem;
}

/* Contrast block */
.problem__contrast {
  background:var(--charcoal);
  padding:3rem 2.5rem;
  text-align:center;
}
.problem__contrast p {
  font-family:var(--serif);
  font-size:clamp(1.3rem,2.8vw,2rem);
  font-weight:400; color:#fff;
  line-height:2.1;
}
.exists  { color:rgba(255,255,255,.38); font-style:italic; }
.missing { color:var(--magenta); font-weight:600; }

/* ════════════════════════════════════════
   §4 THE SHIFT
   Full-bleed dark image, centered overlay
════════════════════════════════════════ */
.shift {
  position:relative; min-height:76vh;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.shift__bg { position:absolute; inset:0; }
.shift__bg-img {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  filter:brightness(.28) saturate(.55);
}
.shift__overlay {
  position:absolute; inset:0;
  background:
    linear-gradient(180deg,rgba(4,5,14,.9) 0%,rgba(8,13,34,.55) 50%,rgba(4,5,14,.9) 100%),
    linear-gradient(90deg,rgba(4,5,14,.55) 0%,transparent 35%,transparent 65%,rgba(4,5,14,.55) 100%);
}
.shift__content {
  position:relative; z-index:5;
  padding:var(--section-y) var(--pad-x);
}
.shift__stack { margin-top:1.8rem; display:flex; flex-direction:column; gap:1.4rem; }
.shift__line { font-family:var(--serif); line-height:1.25; }
.shift__line--muted {
  font-size:clamp(.92rem,1.7vw,1.15rem);
  font-weight:300; color:rgba(255,255,255,.36);
  letter-spacing:.14em;
}
.shift__line--gold {
  font-size:clamp(1.05rem,2.1vw,1.4rem);
  font-weight:400; color:var(--gold-lt);
  font-style:italic; letter-spacing:.07em;
}
.shift__line--large {
  font-size:clamp(2.6rem,6.5vw,5.4rem);
  font-weight:500; color:#fff;
  text-shadow:0 4px 48px rgba(201,168,76,.2);
}
.shift__line--large em { color:var(--gold-lt); font-style:italic; }
.shift__anchor {
  position:absolute; bottom:0; left:0; right:0;
  background:rgba(201,168,76,.05);
  border-top:1px solid rgba(201,168,76,.12);
  padding:.75rem var(--pad-x);
  font-size:.58rem; font-weight:600;
  letter-spacing:.38em; text-transform:uppercase;
  color:rgba(201,168,76,.42); text-align:center;
}

/* ════════════════════════════════════════
   §5 AUTHORITY TABLE
   Intimate, gold frame, glow, large serif
════════════════════════════════════════ */
.authority { padding:var(--section-y) 0; position:relative; overflow:hidden; }
.authority__bg-texture {
  position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(201,168,76,.04) 0%, transparent 60%);
}
.authority__inner {
  display:grid; grid-template-columns:1fr 1fr;
  gap:clamp(3rem,7vw,8rem); align-items:center;
  position:relative; z-index:2;
}
.authority__text { padding-right:.5rem; }
.authority__title {
  font-family:var(--serif);
  font-size:clamp(2.6rem,5.5vw,4.2rem);
  font-weight:500; line-height:1.05;
  color:#fff; margin:1.8rem 0 .6rem;
  text-shadow:0 4px 32px rgba(201,168,76,.1);
}
.authority__title em { color:var(--gold-lt); font-style:italic; }
.authority__intro {
  font-family:var(--serif);
  font-size:clamp(1rem,1.9vw,1.25rem);
  font-weight:300; font-style:italic;
  color:var(--gold-pale); opacity:.75;
  margin-bottom:2.2rem; letter-spacing:.04em;
}
.authority__list { display:flex; flex-direction:column; gap:0; margin-bottom:2.5rem; }
.authority__item {
  display:flex; flex-direction:column;
  padding:1.4rem 0;
  border-bottom:1px solid rgba(201,168,76,.09);
}
.authority__item:first-child { border-top:1px solid rgba(201,168,76,.09); }
.authority__label {
  font-family:var(--serif);
  font-size:clamp(1.05rem,1.9vw,1.35rem);
  font-weight:400; color:#fff;
  margin-bottom:.3rem;
}
.authority__desc {
  font-size:.8rem; font-weight:300;
  color:rgba(255,255,255,.45); letter-spacing:.04em;
}
.authority__close {
  font-family:var(--serif);
  font-size:clamp(.98rem,1.7vw,1.18rem);
  font-style:italic; font-weight:300;
  color:var(--gold-pale); opacity:.8;
}

/* Authority image — gold frame + blur + glow */
.authority__img-wrap { position:relative; }
.authority__img-blur {
  width:100%; height:540px;
  background-size:cover; background-position:center 25%;
  /* Bar/glassware setup: warm the cool tones, add warmth contrast */
  filter:brightness(.8) saturate(1.05) contrast(1.06);
  border-radius:1px;
}
.authority__img-overlay {
  position:absolute; inset:0;
  background:
    linear-gradient(180deg,rgba(8,13,34,.25) 0%,transparent 40%,rgba(8,13,34,.18) 100%),
    radial-gradient(ellipse 80% 80% at 50% 50%,transparent 50%,rgba(8,13,34,.2) 100%);
}
/* Gold frame on image */
.authority__gold-frame { position:absolute; inset:-14px; pointer-events:none; z-index:3; }
.agf-t,.agf-b { position:absolute; height:1px; left:8%; right:8%; }
.agf-l,.agf-r { position:absolute; width:1px;  top:8%; bottom:8%; }
.agf-t { top:0;    background:linear-gradient(90deg,transparent,rgba(201,168,76,.55) 50%,transparent); opacity:0; animation:frameIn 1.5s .8s var(--ease) forwards; }
.agf-b { bottom:0; background:linear-gradient(90deg,transparent,rgba(201,168,76,.55) 50%,transparent); opacity:0; animation:frameIn 1.5s 1s var(--ease) forwards; }
.agf-l { left:0;   background:linear-gradient(180deg,transparent,rgba(201,168,76,.55) 50%,transparent); opacity:0; animation:frameIn 1.5s .9s var(--ease) forwards; }
.agf-r { right:0;  background:linear-gradient(180deg,transparent,rgba(201,168,76,.55) 50%,transparent); opacity:0; animation:frameIn 1.5s 1.1s var(--ease) forwards; }

/* Warm glow behind image */
.authority__img-glow {
  position:absolute; bottom:-20px; left:50%;
  transform:translateX(-50%);
  width:80%; height:60px;
  background:radial-gradient(ellipse 100% 100%,rgba(201,168,76,.18) 0%,transparent 70%);
  filter:blur(18px); pointer-events:none;
}
.authority__img-tag {
  position:absolute; bottom:1.5rem; left:1.5rem; z-index:4;
  font-family:var(--sans); font-size:.58rem; font-weight:700;
  letter-spacing:.28em; text-transform:uppercase;
  color:var(--gold);
  padding:.38rem .9rem;
  background:rgba(4,5,14,.72);
  border:1px solid rgba(201,168,76,.28);
  backdrop-filter:blur(8px);
}

/* ════════════════════════════════════════
   §6 THE EXPERIENCE FEEL
   Full-bleed blurred bg, soft glow, large quote
════════════════════════════════════════ */
.exp-feel {
  position:relative;
  padding:var(--section-y) 0 0;
  overflow:hidden;
}
.exp-feel__bg {
  position:absolute; inset:0; z-index:0;
  background-size:cover; background-position:center top;
  /* Group energy photo: warm indoor lighting, slight blur for drama */
  filter:brightness(.28) saturate(.7) blur(4px);
  transform:scale(1.06);
}
.exp-feel__overlay {
  position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(180deg,rgba(4,5,14,.78) 0%,rgba(8,13,34,.55) 50%,rgba(4,5,14,.82) 100%),
    linear-gradient(90deg,rgba(4,5,14,.45) 0%,transparent 30%,transparent 70%,rgba(4,5,14,.45) 100%);
}
.exp-feel__glow {
  position:absolute; inset:0; z-index:2; pointer-events:none;
  background:radial-gradient(ellipse 60% 50% at 50% 55%,rgba(255,200,85,.1) 0%,rgba(201,168,76,.04) 45%,transparent 70%);
}
.exp-feel__body {
  position:relative; z-index:5;
  padding-bottom:var(--section-y);
}

.exp-feel__flow {
  display:flex; flex-direction:column;
  gap:0;
  margin:2.8rem 0 0; max-width:540px;
  margin-left:auto; margin-right:auto;
}
.exp-feel__beat {
  font-family:var(--serif);
  font-size:clamp(1.05rem,2.1vw,1.38rem);
  font-weight:300; color:rgba(255,255,255,.75);
  line-height:1.6; text-align:center;
  padding:1.4rem 0;
  border-bottom:1px solid rgba(201,168,76,.1);
}
.exp-feel__beat:last-child { border-bottom:none; }

/* Large centered quote */
.exp-feel__big-quote {
  margin-top:3.5rem; text-align:center;
  padding:3.5rem 2rem 3rem;
  border-top:1px solid rgba(201,168,76,.15);
  position:relative;
}
.exp-feel__big-quotemark {
  font-family:var(--serif);
  font-size:7rem; line-height:.8;
  color:rgba(201,168,76,.22); font-style:italic;
  position:absolute; top:.5rem; left:50%; transform:translateX(-50%);
  pointer-events:none;
}
.exp-feel__quote-text {
  font-family:var(--serif);
  font-size:clamp(1.5rem,3.2vw,2.4rem);
  font-weight:300; line-height:1.5;
  color:rgba(255,255,255,.88);
  position:relative; z-index:2;
}
.exp-feel__quote-text em { color:var(--gold-lt); font-style:italic; }

/* ════════════════════════════════════════
   §7 HOW IT WORKS
   No icons — typography-driven journey
════════════════════════════════════════ */
.how-it-works { padding:var(--section-y) 0; text-align:center; }
.how-intro {
  font-family:var(--serif);
  font-size:clamp(1rem,2vw,1.35rem);
  font-style:italic; font-weight:300;
  color:rgba(255,255,255,.48); margin-bottom:4.5rem;
  letter-spacing:.05em;
}

.journey {
  position:relative; display:flex;
  align-items:flex-start; justify-content:center;
  flex-wrap:wrap; gap:0;
}
.journey__track {
  position:absolute; top:42px; left:8%; right:8%;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(201,168,76,.25) 20%,rgba(201,168,76,.25) 80%,transparent);
}
.journey__step {
  flex:1; min-width:130px; max-width:200px;
  display:flex; flex-direction:column;
  align-items:center; gap:1rem;
  padding:0 .75rem;
  position:relative;
}
/* Typographic node — no icon, number inside circle */
.journey__node {
  width:84px; height:84px; border-radius:50%;
  background:radial-gradient(circle,rgba(201,168,76,.1),rgba(201,168,76,.03));
  border:1px solid rgba(201,168,76,.28);
  display:flex; align-items:center; justify-content:center;
  z-index:2;
  transition:all .45s var(--ease);
  animation:nodeIdle 5s ease-in-out infinite;
}
.journey__node-num {
  font-family:var(--serif);
  font-size:1.4rem; font-weight:400;
  color:var(--gold); letter-spacing:.04em;
}
@keyframes nodeIdle {
  0%,100%{ box-shadow:0 0 0 rgba(201,168,76,0); }
  50%    { box-shadow:0 0 22px rgba(201,168,76,.12); }
}
.journey__step:hover .journey__node {
  background:radial-gradient(circle,rgba(201,168,76,.22),rgba(201,168,76,.06));
  border-color:var(--gold);
  transform:scale(1.12);
  box-shadow:0 0 36px rgba(201,168,76,.28);
}
.journey__label {
  font-family:var(--serif);
  font-size:clamp(.88rem,1.5vw,1rem);
  font-weight:300; color:rgba(255,255,255,.62);
  text-align:center; line-height:1.65;
}
.journey__label em { color:var(--gold-lt); font-style:italic; }

/* ════════════════════════════════════════
   §8 THE MOMENT
   Full-bleed, minimal text, high emotion
════════════════════════════════════════ */
.moment {
  position:relative; min-height:82vh;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.moment__bg { position:absolute; inset:0; }
.moment__bg-img {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  filter:brightness(.28) blur(3px) saturate(.6);
  transform:scale(1.05);
}
.moment__overlay {
  position:absolute; inset:0;
  background:
    linear-gradient(180deg,rgba(4,5,14,.78) 0%,rgba(8,13,34,.42) 50%,rgba(4,5,14,.88) 100%);
}
.moment__content {
  position:relative; z-index:5;
  padding:var(--section-y) var(--pad-x);
}
.moment__title {
  font-family:var(--serif);
  font-size:clamp(2.8rem,7.5vw,6rem);
  font-weight:500; line-height:1.1; color:#fff;
  text-shadow:0 6px 50px rgba(0,0,0,.5);
  margin-bottom:2rem;
}
.moment__title em { color:var(--gold-lt); font-style:italic; }
.moment__body {
  font-family:var(--serif);
  font-size:clamp(1.05rem,2.1vw,1.45rem);
  font-weight:300; font-style:italic;
  color:rgba(255,255,255,.72); margin-bottom:1.2rem;
}
.moment__cue {
  font-family:var(--sans); font-size:clamp(.7rem,1.2vw,.84rem);
  font-weight:600; letter-spacing:.24em; text-transform:uppercase;
  color:var(--gold); margin-top:1.5rem;
}
.moment__cue em { font-style:normal; color:var(--gold-lt); }

/* ════════════════════════════════════════
   §8b EMOTIONAL INTERRUPT
   Daytime Elevation — stark, quiet, no ornament.
   Pure typography, maximum psychological weight.
════════════════════════════════════════ */
/* ── Interrupt: self-animating keyframes (no scroll-reveal dependency) ── */
@keyframes intPause  { from { opacity:0; transform:translateY(14px); } to { opacity:.72; transform:none; } }
@keyframes intQ1     { from { opacity:0; transform:translateY(18px); } to { opacity:1;   transform:none; } }
@keyframes intQ2     { from { opacity:0; transform:translateY(18px); } to { opacity:.75; transform:none; } }
@keyframes intBreath { from { opacity:0; }                             to { opacity:1;   } }
@keyframes intSetup  { from { opacity:0; transform:translateY(14px); } to { opacity:.6;  transform:none; } }
@keyframes intPayoff { from { opacity:0; transform:translateY(28px) scale(.96); } to { opacity:1; transform:none; } }

.interrupt {
  padding: clamp(100px, 15vw, 172px) var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg,
    var(--sand) 0%,
    var(--cream) 30%,
    var(--ivory) 60%,
    var(--cream) 100%
  );
}

/* Top + bottom fades — blend with dark sections above/below */
.interrupt::before,
.interrupt::after {
  content: ''; position: absolute; left: 0; right: 0;
  height: 140px; pointer-events: none; z-index: 1;
}
.interrupt::before { top: 0;    background: linear-gradient(180deg, rgba(14,21,53,.22) 0%, transparent 100%); }
.interrupt::after  { bottom: 0; background: linear-gradient(0deg,   rgba(14,21,53,.22) 0%, transparent 100%); }

.interrupt__glow {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 50%,
      rgba(201,168,76,.06) 0%, transparent 65%),
    radial-gradient(ellipse 100% 40% at 50% 100%,
      rgba(232,223,200,.5) 0%, transparent 60%);
}

.interrupt__inner {
  position: relative; z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 0;
}

/* LINE 1: "Pause for a second." — tiny all-caps command */
.interrupt__pause {
  font-family: var(--sans);
  font-size: clamp(.62rem, 1.8vw, .74rem);
  font-weight: 700;
  letter-spacing: .46em;
  text-transform: uppercase;
  color: var(--slate);
  padding-bottom: .85rem;
  border-bottom: 1px solid rgba(75,77,106,.2);
  width: fit-content;
  margin-bottom: clamp(3rem, 7vw, 5rem);
  /* Self-animate in */
  animation: intPause .9s .2s cubic-bezier(.25,.46,.45,.94) both;
}

/* LINES 2+3: Reflection question */
.interrupt__question {
  display: flex; flex-direction: column;
  gap: clamp(.5rem, 2vw, .9rem);
  margin-bottom: clamp(3rem, 7vw, 5rem);
}
.interrupt__question p:first-child {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 5.5vw, 2.4rem);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.25;
  animation: intQ1 1s .55s cubic-bezier(.25,.46,.45,.94) both;
}
/* "Did anything change after you left?" — softer, italic, hangs */
.interrupt__sub-q {
  font-family: var(--serif) !important;
  font-size: clamp(1.15rem, 4.2vw, 1.75rem) !important;
  font-weight: 300 !important;
  font-style: italic !important;
  color: var(--slate) !important;
  line-height: 1.35 !important;
  animation: intQ2 1s .85s cubic-bezier(.25,.46,.45,.94) both;
}

/* Breath divider */
.interrupt__breath {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem;
  margin-bottom: clamp(3rem, 7vw, 5rem);
  animation: intBreath .8s 1.2s ease both;
}
.interrupt__breath-line {
  display: block; height: 1px; width: 48px;
  background: linear-gradient(90deg, transparent, rgba(75,77,106,.22));
}
.interrupt__breath-line:last-child {
  background: linear-gradient(90deg, rgba(75,77,106,.22), transparent);
}
.interrupt__breath-dot {
  display: block; width: 5px; height: 5px; border-radius: 50%;
  background: var(--slate); opacity: .32;
}

/* LINES 4+5: Pivot — desire */
.interrupt__pivot {
  display: flex; flex-direction: column;
  gap: clamp(.3rem, 1.5vw, .6rem);
}
.interrupt__pivot-setup {
  font-family: var(--serif);
  font-size: clamp(1rem, 3.8vw, 1.55rem);
  font-weight: 300;
  color: var(--slate);
  letter-spacing: .02em;
  line-height: 1.4;
  animation: intSetup .9s 1.45s cubic-bezier(.25,.46,.45,.94) both;
}
/* THE moment — 3× larger than setup line, bold, charcoal */
.interrupt__pivot-payoff {
  font-family: var(--serif);
  font-size: clamp(3rem, 13vw, 6rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.0;
  letter-spacing: -.025em;
  text-shadow: 0 3px 30px rgba(24,25,44,.12);
  animation: intPayoff 1.1s 1.75s cubic-bezier(.16,1,.3,1) both;
}
.interrupt__pivot-payoff em {
  font-style: italic;
  font-weight: 700;
  color: var(--magenta);
  text-shadow: 0 2px 36px rgba(212,48,122,.2);
}

/* ════════════════════════════════════════
   §9 WHY THIS WORKS
   No icons — pure typographic cards
════════════════════════════════════════ */
.why { padding:var(--section-y) 0; text-align:center; }
.why__grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:2.2rem; margin:4rem 0;
}
.why__card {
  padding:3rem 2.2rem;
  border:1px solid rgba(201,168,76,.14);
  background:rgba(255,255,255,.018);
  position:relative; overflow:hidden;
  transition:all .45s var(--ease);
}
.why__card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:1px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  transform:scaleX(0); transition:transform .45s var(--ease);
}
.why__card::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:1px;
  background:linear-gradient(90deg,transparent,rgba(201,168,76,.2),transparent);
  opacity:0; transition:opacity .45s var(--ease);
}
.why__card:hover {
  background:rgba(201,168,76,.04);
  border-color:rgba(201,168,76,.32);
  transform:translateY(-8px);
  box-shadow:0 26px 70px rgba(201,168,76,.08);
}
.why__card:hover::before { transform:scaleX(1); }
.why__card:hover::after  { opacity:1; }
.why__card-num {
  font-family:var(--serif);
  font-size:clamp(2.5rem,4vw,3.5rem);
  font-weight:300; color:rgba(201,168,76,.14);
  line-height:1; margin-bottom:1.5rem;
  letter-spacing:-.02em;
}
.why__card h3 {
  font-family:var(--serif);
  font-size:clamp(1.1rem,1.9vw,1.35rem);
  font-weight:500; color:#fff;
  margin-bottom:1rem; line-height:1.25;
}
.why__card h3 em { color:var(--gold-lt); font-style:italic; }
.why__card p {
  font-size:.84rem; font-weight:300;
  line-height:1.85; color:rgba(255,255,255,.5);
}

.why__close { margin-top:1rem; }
.why__close p {
  font-family:var(--serif);
  font-size:clamp(1rem,1.9vw,1.3rem);
  font-style:italic; color:rgba(255,255,255,.5);
  line-height:2;
}
.why__close-bold {
  font-size:clamp(1.25rem,2.3vw,1.7rem) !important;
  color:rgba(255,255,255,.82) !important;
}

/* ════════════════════════════════════════
   §9b WHAT MEMBERSHIP UNLOCKS
   Evening Authority deep — no icons, pure type
════════════════════════════════════════ */
.unlocks {
  padding: var(--section-y) 0;
  position: relative; overflow: hidden;
  text-align: center;
}

/* Subtle grain texture layer */
.unlocks__texture {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 100% 55% at 50% 0%,   rgba(201,168,76,.04) 0%, transparent 60%),
    radial-gradient(ellipse 100% 55% at 50% 100%, rgba(201,168,76,.03) 0%, transparent 60%),
    repeating-linear-gradient(
      115deg,
      transparent 0px, transparent 52px,
      rgba(201,168,76,.012) 52px, rgba(201,168,76,.012) 53px
    );
}

.unlocks__title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 400; line-height: 1.15;
  color: #fff; margin-bottom: 1.2rem;
  letter-spacing: .01em;
}
.unlocks__title em {
  color: var(--gold-lt); font-style: italic; font-weight: 300;
}

.unlocks__intro {
  font-family: var(--serif);
  font-size: clamp(.95rem, 1.8vw, 1.2rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,.42);
  line-height: 1.9; margin-bottom: clamp(3.5rem, 6vw, 5.5rem);
  letter-spacing: .03em;
}

/* ── List of five unlocks ── */
.unlocks__list {
  display: flex; flex-direction: column;
  gap: 0;
  text-align: left;
  max-width: 740px;
  margin: 0 auto;
}

.unlocks__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: .6rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(201,168,76,.1);
  transition: border-color .35s;
}
.unlocks__item:first-child { border-top: 1px solid rgba(201,168,76,.1); }
.unlocks__item:hover { border-bottom-color: rgba(201,168,76,.28); }

.unlocks__item-head {
  display: flex; align-items: baseline; gap: 1.6rem;
}

/* Roman numeral — small, gold, serif */
.unlocks__item-num {
  font-family: var(--serif);
  font-size: clamp(.72rem, 1.2vw, .86rem);
  font-weight: 400; letter-spacing: .12em;
  color: var(--gold); opacity: .65;
  flex-shrink: 0; width: 1.4rem; text-align: center;
  position: relative; top: -.05em;
}

.unlocks__item-title {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 500; color: #fff;
  letter-spacing: .01em; line-height: 1.2;
}

.unlocks__item-desc {
  font-family: var(--sans);
  font-size: clamp(.76rem, 1.3vw, .88rem);
  font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,.42);
  padding-left: calc(1.4rem + 1.6rem); /* align with title */
  letter-spacing: .03em;
}

/* Item V — Relationship Capital — slightly elevated treatment */
.unlocks__item--featured .unlocks__item-title {
  color: var(--gold-lt);
}
.unlocks__item--featured .unlocks__item-num {
  opacity: 1;
}
.unlocks__item--featured .unlocks__item-desc {
  color: rgba(255,255,255,.58);
}

/* ════════════════════════════════════════
   §9c WHAT HAPPENS AFTER THE ROOM
   Dark → lighter gradient, mysterious, premium
   Language: private layer / continuation / relationship capital
════════════════════════════════════════ */
.after-room {
  padding: var(--section-y) 0;
  position: relative; overflow: hidden;
  text-align: center;
  /* Gradient lightens slightly from the deep navy above */
  background: linear-gradient(
    180deg,
    var(--navy-2) 0%,
    var(--navy-1) 60%,
    #111829 100%
  );
}

/* Central warm glow — like a candle in a dark room */
.after-room__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 600px; border-radius: 50%;
  background: radial-gradient(
    ellipse 60% 55% at 50% 50%,
    rgba(201,168,76,.07) 0%,
    rgba(201,168,76,.025) 45%,
    transparent 72%
  );
  pointer-events: none;
  animation: afterGlow 9s ease-in-out infinite alternate;
}
@keyframes afterGlow {
  0%   { opacity: .7; transform: translate(-50%,-50%) scale(1);    }
  100% { opacity: 1;  transform: translate(-50%,-50%) scale(1.12); }
}

.after-room__inner {
  position: relative; z-index: 2;
}

.after-room__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.9rem);
  font-weight: 400; line-height: 1.2;
  color: #fff; margin-bottom: 1.6rem;
}
.after-room__title em {
  color: var(--gold-lt); font-style: italic; font-weight: 300;
}

.after-room__lead {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,.42);
  line-height: 1.9; letter-spacing: .03em;
  margin-bottom: 3rem;
}

/* Ornamental divider */
.after-room__divider {
  display: flex; align-items: center; justify-content: center;
  gap: 1.2rem; margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
.after-room__divider span:not(.after-room__divider-mark) {
  display: block; height: 1px; width: 72px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.3));
}
.after-room__divider span:last-child {
  background: linear-gradient(90deg, rgba(201,168,76,.3), transparent);
}
.after-room__divider-mark {
  font-family: var(--serif); font-size: .9rem;
  color: var(--gold); opacity: .5;
}

/* ── Three layers ── */
.after-room__layers {
  display: flex; flex-direction: column; gap: 0;
  max-width: 620px; margin: 0 auto;
  text-align: left;
}

.after-room__layer {
  padding: 2.4rem 0;
  border-bottom: 1px solid rgba(201,168,76,.08);
  transition: border-color .35s;
}
.after-room__layer:first-child { border-top: 1px solid rgba(201,168,76,.08); }
.after-room__layer:hover { border-bottom-color: rgba(201,168,76,.22); }

/* Kicker — the label above each block */
.after-room__layer-kicker {
  font-family: var(--sans);
  font-size: clamp(.58rem, 1vw, .68rem);
  font-weight: 700; letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--gold); opacity: .75;
  margin-bottom: .9rem;
}

.after-room__layer-body {
  font-family: var(--serif);
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,.58);
  letter-spacing: .02em;
}

/* Closing statement */
.after-room__close {
  margin-top: clamp(3rem, 5vw, 4.5rem);
  display: flex; flex-direction: column; gap: .5rem;
}
.after-room__close p:first-child {
  font-family: var(--serif);
  font-size: clamp(.95rem, 1.8vw, 1.2rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,.38);
  letter-spacing: .04em;
}
.after-room__close-bold {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-weight: 500; color: #fff;
  letter-spacing: .01em;
}
.after-room__close-bold em {
  color: var(--gold-lt); font-style: italic; font-weight: 300;
}

/* ════════════════════════════════════════
   §10 DUAL ENVIRONMENT
   Split screen, day / night
════════════════════════════════════════ */
.dual-env { position:relative; }
.dual-env__label {
  text-align:center;
  padding:clamp(56px,8vw,100px) var(--pad-x) 2.5rem;
  background:var(--navy-0);
}
.dual-env__intro {
  font-family:var(--serif);
  font-size:clamp(.9rem,1.6vw,1.1rem);
  font-weight:300; font-style:italic;
  color:rgba(255,255,255,.38); margin-top:.6rem;
  letter-spacing:.04em;
}
.dual-env__split {
  display:grid; grid-template-columns:1fr 1fr;
  min-height:72vh;
}
.dual-panel {
  position:relative; overflow:hidden;
  min-height:480px;
  display:flex; align-items:flex-end;
  cursor:pointer;
  transition:filter .5s var(--ease);
}
.dual-panel__bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  filter:brightness(.5) saturate(.75);
  transition:transform .9s var(--ease), filter .7s;
}
.dual-panel:hover .dual-panel__bg {
  transform:scale(1.06);
  filter:brightness(.62) saturate(.9);
}
.dual-panel__overlay { position:absolute; inset:0; }
.dual-panel__overlay--day {
  background:linear-gradient(180deg,rgba(250,248,243,.04) 0%,rgba(255,250,230,.22) 55%,rgba(235,224,195,.72) 100%);
}
.dual-panel__overlay--night {
  background:linear-gradient(180deg,rgba(4,5,14,.05) 0%,rgba(8,13,34,.28) 55%,rgba(4,5,14,.92) 100%);
}
/* Night panel uses mannequin sculpture — center on the sculptural figure */
.dual-panel--night .dual-panel__bg {
  background-position:center 15%;
}
.dual-panel__content {
  position:relative; z-index:2;
  padding:3.2rem 3rem; width:100%;
}
.dual-panel__badge {
  display:inline-block;
  font-family:var(--sans); font-size:.6rem; font-weight:700;
  letter-spacing:.24em; text-transform:uppercase;
  padding:.4rem 1.1rem; margin-bottom:1.2rem; border-radius:2px;
}
.dual-panel__badge--day  { background:rgba(250,248,243,.9); color:var(--charcoal); border:1px solid rgba(24,25,46,.12); }
.dual-panel__badge--night{ background:rgba(201,168,76,.1);  color:var(--gold);     border:1px solid rgba(201,168,76,.28); }
.dual-panel h3 {
  font-family:var(--serif);
  font-size:clamp(1.6rem,3vw,2.4rem);
  font-weight:500; line-height:1.2; margin-bottom:1.4rem;
}
.dual-panel--day  h3 { color:var(--charcoal); }
.dual-panel--night h3 { color:#fff; }
.dual-panel__words {
  display:flex; flex-wrap:wrap; gap:.5rem; margin-bottom:1.4rem;
}
.dual-panel__words span {
  font-size:.6rem; font-weight:600; letter-spacing:.2em;
  text-transform:uppercase; padding:.32rem .9rem;
  border-radius:1px;
}
.dual-panel--day  .dual-panel__words span { color:var(--charcoal); border:1px solid rgba(24,25,46,.18); }
.dual-panel--night .dual-panel__words span { color:var(--gold); border:1px solid rgba(201,168,76,.26); }
.dual-panel__desc {
  font-size:.82rem; font-weight:300; letter-spacing:.06em; line-height:1.8;
}
.dual-panel--day  .dual-panel__desc { color:var(--slate); }
.dual-panel--night .dual-panel__desc { color:rgba(255,255,255,.58); }

.dual-env__footer {
  text-align:center;
  padding:clamp(48px,7vw,80px) var(--pad-x);
  background:var(--navy-0);
  border-top:1px solid rgba(201,168,76,.08);
}
.dual-env__footer-line1 {
  font-family:var(--sans); font-size:.66rem; font-weight:600;
  letter-spacing:.34em; text-transform:uppercase;
  color:var(--gold); margin-bottom:.7rem;
}
.dual-env__footer-line2 {
  font-family:var(--serif); font-size:clamp(1rem,2vw,1.4rem);
  font-style:italic; font-weight:300;
  color:rgba(255,255,255,.38); letter-spacing:.06em;
}

/* ════════════════════════════════════════
   §11 SOCIAL PROOF
   Elegant — no icons, just elegant type
════════════════════════════════════════ */
/* ── Social Proof – real event photo strip ── */
.social-proof { padding:0 0 var(--section-y); text-align:center; }
.proof__hero-img {
  width:100%; height:340px;
  background-size:cover; background-position:center 30%;
  position:relative; overflow:hidden;
  /* Group energy photo: warm the tones, preserve candid authenticity */
  filter:brightness(.72) saturate(.9) contrast(1.08);
  margin-bottom:var(--section-y);
}
.proof__hero-overlay {
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(9,16,42,.65) 0%, rgba(9,16,42,.2) 35%, rgba(9,16,42,.2) 65%, rgba(9,16,42,.85) 100%);
}
.proof__hero-caption {
  position:absolute; bottom:2rem; left:50%; transform:translateX(-50%);
  font-family:var(--sans); font-size:.62rem; font-weight:500;
  letter-spacing:.28em; text-transform:uppercase;
  color:rgba(255,255,255,.52); white-space:nowrap;
}
.proof__grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:2.2rem; margin-top:3.5rem;
}
.proof__card {
  padding:2.8rem 2.2rem;
  border:1px solid rgba(201,168,76,.12);
  background:rgba(255,255,255,.015);
  text-align:left;
  display:flex; flex-direction:column; gap:1.8rem;
  transition:all .42s var(--ease);
  position:relative;
}
.proof__card--featured {
  border-color:rgba(201,168,76,.3);
  background:rgba(201,168,76,.04);
}
.proof__card--featured::before {
  content:''; position:absolute;
  top:0; left:0; right:0; height:1px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
}
.proof__card:hover {
  border-color:rgba(201,168,76,.3);
  transform:translateY(-6px);
  box-shadow:0 22px 55px rgba(201,168,76,.07);
}

/* Typographic quotemark — large, no icon */
.proof__mark {
  font-family:var(--serif); font-size:4rem;
  color:rgba(201,168,76,.2); line-height:.6;
  font-style:italic;
}
.proof__text {
  font-family:var(--serif);
  font-size:clamp(1.05rem,1.8vw,1.22rem);
  font-weight:400; line-height:1.7;
  color:rgba(255,255,255,.78); flex:1;
}
.proof__attr { display:flex; align-items:center; gap:.9rem; }
.proof__initials {
  width:38px; height:38px; border-radius:50%; flex-shrink:0;
  background:rgba(201,168,76,.1); border:1px solid rgba(201,168,76,.22);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--serif); font-size:.82rem; font-weight:500;
  color:var(--gold);
}
.proof__name {
  font-size:.7rem; font-weight:600; letter-spacing:.08em;
  color:rgba(255,255,255,.58);
}
.proof__role {
  font-size:.62rem; font-weight:300; letter-spacing:.06em;
  color:var(--gold); opacity:.65; margin-top:.18rem;
}
.proof__footnote {
  margin-top:2.5rem;
  font-size:.58rem; font-weight:400; letter-spacing:.14em;
  text-transform:uppercase; color:rgba(255,255,255,.18);
  font-style:italic;
}

/* ════════════════════════════════════════
   §12 WHO IT'S FOR
   Aspirational, exclusive, ivory bg
════════════════════════════════════════ */
.who { padding:var(--section-y) 0; }
.who__list {
  display:flex; flex-direction:column; gap:0;
  margin:0 auto 3.5rem; max-width:640px;
}
.who__item {
  display:flex; align-items:flex-start; gap:1.6rem;
  font-family:var(--serif);
  font-size:clamp(1.05rem,2vw,1.3rem);
  color:var(--charcoal); padding:1.6rem 1.8rem;
  border-bottom:1px solid rgba(24,25,46,.07);
  background:transparent;
  transition:all .35s var(--ease);
}
.who__item:first-child { border-top:1px solid rgba(24,25,46,.07); }
.who__item:hover {
  background:rgba(201,168,76,.04);
  padding-left:2.2rem;
}
.who__marker {
  font-family:var(--serif); font-size:1.4rem;
  color:var(--gold); line-height:1.4;
  flex-shrink:0; font-weight:300;
}
.who__item strong { color:var(--charcoal); font-weight:700; }
.who__close {
  font-family:var(--serif);
  font-size:clamp(1rem,2vw,1.25rem);
  font-style:italic; color:var(--slate);
  letter-spacing:.04em; text-align:center; max-width:540px;
  margin:0 auto;
}

/* ════════════════════════════════════════
   §13 MEMBERSHIP
   Access aligned, not open. Luxury pillars.
════════════════════════════════════════ */
.membership {
  padding:var(--section-y) 0;
  position:relative; overflow:hidden;
  text-align:center;
}
.membership__texture {
  position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%,rgba(201,168,76,.07) 0%,transparent 65%),
    repeating-linear-gradient(0deg,transparent,transparent 56px,rgba(201,168,76,.02) 56px,rgba(201,168,76,.02) 57px),
    repeating-linear-gradient(90deg,transparent,transparent 88px,rgba(201,168,76,.015) 88px,rgba(201,168,76,.015) 89px);
}
.membership__title {
  font-family:var(--serif);
  font-size:clamp(1.9rem,4.2vw,3.4rem);
  font-weight:400; line-height:1.28;
  color:rgba(255,255,255,.85);
  margin-bottom:3.5rem;
}
.membership__title em { color:var(--gold-lt); font-style:italic; }

.membership__pillars {
  display:flex; align-items:stretch; justify-content:center;
  gap:0; flex-wrap:wrap; margin:0 auto 3.5rem; max-width:860px;
}
.membership__pillar {
  flex:1; min-width:200px;
  display:flex; flex-direction:column;
  align-items:center; gap:.8rem;
  padding:2.8rem 2rem;
  border:1px solid rgba(201,168,76,.14);
  background:rgba(255,255,255,.02);
  transition:all .4s var(--ease);
}
.membership__pillar:hover {
  background:rgba(201,168,76,.04);
  border-color:rgba(201,168,76,.3);
  transform:translateY(-6px);
  box-shadow:0 22px 60px rgba(201,168,76,.07);
}
.membership__pillar-sep {
  width:1px; background:rgba(201,168,76,.15);
  align-self:stretch; flex-shrink:0;
}
.membership__pillar-num {
  font-family:var(--serif);
  font-size:clamp(.9rem,1.6vw,1.1rem);
  font-weight:300; color:rgba(201,168,76,.4);
  letter-spacing:.2em; margin-bottom:.2rem;
}
.membership__pillar-label {
  font-family:var(--serif);
  font-size:clamp(1.2rem,2vw,1.5rem);
  font-weight:500; color:#fff;
  letter-spacing:.04em;
}
.membership__pillar-desc {
  font-size:.78rem; font-weight:300;
  color:rgba(255,255,255,.42); letter-spacing:.04em;
  line-height:1.8; max-width:220px;
}

/* ════════════════════════════════════════
   §14 THE SYSTEM
   Typography-only flow, gold connectors
════════════════════════════════════════ */
.system { position:relative; padding:var(--section-y) 0; }
.system__title {
  font-family:var(--serif);
  font-size:clamp(1.7rem,3.8vw,3rem);
  font-weight:400; line-height:1.28;
  color:rgba(255,255,255,.82); margin-bottom:4rem;
}
.system__title em { color:var(--gold-lt); font-style:italic; }

.system__flow {
  display:flex; align-items:center; justify-content:center;
  flex-wrap:wrap; gap:0; margin-bottom:3.5rem;
}
.system__node {
  display:flex; flex-direction:column; align-items:center;
  flex:1; min-width:100px; max-width:160px;
}
.system__node-inner {
  padding:1.5rem 1.2rem; text-align:center;
  border:1px solid rgba(201,168,76,.18);
  background:rgba(201,168,76,.04);
  width:100%;
  transition:all .38s var(--ease);
}
.system__node:hover .system__node-inner {
  background:rgba(201,168,76,.09);
  border-color:rgba(201,168,76,.38);
  transform:translateY(-5px);
  box-shadow:0 14px 40px rgba(201,168,76,.1);
}
.system__node-label {
  font-family:var(--serif);
  font-size:clamp(.92rem,1.6vw,1.1rem);
  font-weight:500; color:#fff; margin-bottom:.25rem;
}
.system__node-sub {
  font-size:.6rem; font-weight:400;
  letter-spacing:.15em; text-transform:uppercase;
  color:rgba(201,168,76,.55);
}

.system__connector {
  display:flex; align-items:center;
  flex-shrink:0; padding:0 .3rem;
}
.system__connector-line {
  display:block; height:1px; width:0;
  background:linear-gradient(90deg,transparent,rgba(201,168,76,.5));
  transition:width .6s var(--ease);
}
.system__connector-line.animated { width:32px; }
.system__connector-arrow {
  color:rgba(201,168,76,.5);
  font-size:.82rem; flex-shrink:0;
  transition:transform .3s var(--ease);
}

.system__close p {
  font-family:var(--serif);
  font-size:clamp(1.05rem,1.9vw,1.3rem);
  font-style:italic; color:rgba(255,255,255,.48);
  line-height:2;
}
.system__close-bold {
  font-size:clamp(1.45rem,2.6vw,1.9rem) !important;
  color:rgba(255,255,255,.82) !important;
}

/* ════════════════════════════════════════
   §15 INVITATION
   Dark centered, full-bleed, emotional
════════════════════════════════════════ */
.invitation {
  position:relative; min-height:88vh;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.invitation__bg { position:absolute; inset:0; }
.invitation__bg-img {
  position:absolute; inset:0;
  background-size:cover; background-position:center 35%;
  /* Rooftop signs photo — let the editorial imagery breathe */
  filter:brightness(.38) saturate(.72);
  transform:scale(1.04);
  transition:transform 18s ease-out;
}
.invitation__bg-img.loaded { transform:scale(1); }
.invitation__overlay {
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(4,5,14,.78) 0%, rgba(4,5,14,.42) 40%, rgba(4,5,14,.55) 70%, rgba(4,5,14,.88) 100%),
    linear-gradient(90deg, rgba(4,5,14,.5) 0%, transparent 30%, transparent 70%, rgba(4,5,14,.5) 100%);
}
.invitation__content {
  position:relative; z-index:5;
  padding:var(--section-y) var(--pad-x);
}

/* Typographic seal — no icon */
.invitation__seal {
  width:72px; height:72px; border-radius:50%;
  background:radial-gradient(circle,rgba(201,168,76,.18),rgba(201,168,76,.04));
  border:1px solid rgba(201,168,76,.35);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 2.5rem;
  animation:sealFloat 5.5s ease-in-out infinite, sealGlow 3.5s ease-in-out infinite;
}
.invitation__seal-inner {
  font-family:var(--serif); font-size:1.5rem;
  color:var(--gold); font-style:normal;
}
@keyframes sealFloat { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-8px); } }
@keyframes sealGlow  { 0%,100%{ box-shadow:0 0 20px rgba(201,168,76,.18); } 50%{ box-shadow:0 0 50px rgba(201,168,76,.42); } }

.invitation__title {
  font-family:var(--serif);
  font-size:clamp(2.2rem,5.5vw,4.2rem);
  font-weight:400; line-height:1.2;
  color:#fff; margin-bottom:1.8rem;
  text-shadow:0 4px 36px rgba(0,0,0,.5);
}
.invitation__title em { color:var(--gold-lt); font-style:italic; }
.invitation__body {
  font-family:var(--serif);
  font-size:clamp(1rem,2vw,1.35rem);
  font-style:italic; font-weight:300;
  color:rgba(255,255,255,.58); margin-bottom:2.5rem;
}
.invitation__lines { display:flex; flex-direction:column; gap:.6rem; }
.invitation__lines p {
  font-family:var(--sans); font-size:clamp(.76rem,1.3vw,.9rem);
  font-weight:300; letter-spacing:.18em;
  color:var(--gold-pale); opacity:.68;
}

/* ════════════════════════════════════════
   §16 FINAL CTA
   Dark deep, assigned seat, gold CTA
════════════════════════════════════════ */
.final-cta {
  padding:var(--section-y) 0;
  position:relative; overflow:hidden;
  text-align:center;
}
.final-cta__glow {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:700px; height:700px; border-radius:50%;
  background:radial-gradient(circle,rgba(201,168,76,.08) 0%,transparent 68%);
  pointer-events:none;
  animation:ctaGlow 6s ease-in-out infinite alternate;
}
@keyframes ctaGlow {
  from{ opacity:.5; transform:translate(-50%,-50%) scale(1); }
  to  { opacity:1;  transform:translate(-50%,-50%) scale(1.2); }
}
.final-cta__content { position:relative; z-index:2; }
.final-cta__headline {
  font-family:var(--serif);
  font-size:clamp(1.6rem,3.8vw,3rem);
  font-weight:400; line-height:1.38;
  color:rgba(255,255,255,.85); margin-bottom:1.2rem;
}
.final-cta__headline em { color:var(--gold-lt); font-style:italic; }
.final-cta__sub {
  font-family:var(--serif);
  font-size:clamp(1rem,1.9vw,1.25rem);
  font-weight:300; font-style:italic;
  color:rgba(255,255,255,.42);
  margin-bottom:3.5rem; letter-spacing:.04em;
}

/* Form */
.seat-form {
  max-width:660px; margin:0 auto;
  text-align:left;
}
.seat-form__row {
  display:grid; grid-template-columns:1fr 1fr;
  gap:1.2rem; margin-bottom:1.2rem;
}
.seat-form__field {
  display:flex; flex-direction:column; gap:.52rem;
  margin-bottom:1.2rem;
}
.seat-form__field:last-of-type { margin-bottom:0; }
.seat-form__field label {
  font-size:.62rem; font-weight:600;
  letter-spacing:.22em; text-transform:uppercase;
  color:var(--gold);
}
.seat-form__field input,
.seat-form__field textarea {
  font-family:var(--sans); font-size:.9rem; font-weight:300;
  color:#fff;
  background:rgba(255,255,255,.038);
  border:1px solid rgba(201,168,76,.16);
  padding:1rem 1.3rem;
  outline:none; resize:vertical;
  transition:all .32s var(--ease);
  border-radius:2px;
}
.seat-form__field input::placeholder,
.seat-form__field textarea::placeholder { color:rgba(255,255,255,.2); }
.seat-form__field input:focus,
.seat-form__field textarea:focus {
  border-color:rgba(201,168,76,.7);
  background:rgba(201,168,76,.04);
  box-shadow:0 0 0 3px rgba(201,168,76,.07);
}
.seat-form__field input.error { border-color:var(--magenta); }
.seat-form__submit {
  display:flex; justify-content:center;
  margin-top:2.2rem;
}

/* What's next */
.next-steps {
  margin:4rem auto 0; max-width:540px;
  text-align:left;
}
.next-steps__label {
  font-size:.6rem; font-weight:600;
  letter-spacing:.28em; text-transform:uppercase;
  color:var(--gold); opacity:.62;
  margin-bottom:1.4rem; text-align:center;
}
.next-steps__list { display:flex; flex-direction:column; gap:.85rem; }
.next-step {
  display:flex; align-items:center; gap:1.1rem;
  font-size:.84rem; font-weight:300;
  color:rgba(255,255,255,.55); letter-spacing:.04em;
}
.next-step__n {
  width:28px; height:28px; border-radius:50%; flex-shrink:0;
  background:rgba(201,168,76,.1); border:1px solid rgba(201,168,76,.22);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--serif); font-size:.78rem; font-weight:500; color:var(--gold);
}

/* Scarcity */
.final-cta__scarcity {
  margin:3rem auto 0; max-width:380px;
  padding:1.6rem 2rem;
  border:1px solid rgba(201,168,76,.14);
  background:rgba(201,168,76,.035);
  text-align:center;
}
.final-cta__scarcity-main {
  font-family:var(--serif);
  font-size:clamp(1rem,1.8vw,1.2rem);
  font-weight:400; color:rgba(255,255,255,.75);
  margin-bottom:.35rem;
}
.final-cta__scarcity-sub {
  font-size:.68rem; font-weight:400;
  letter-spacing:.14em; text-transform:uppercase;
  color:rgba(255,255,255,.28);
}

/* Success */
.seat-form__success { padding:4rem 2rem; }
.success-mark {
  font-family:var(--serif); font-size:3.5rem;
  color:var(--gold); margin-bottom:1.5rem;
  animation:successPop .55s var(--ease-out) both;
}
@keyframes successPop { from{ transform:scale(0) rotate(-20deg); opacity:0; } to{ transform:scale(1) rotate(0); opacity:1; } }
.seat-form__success h3 {
  font-family:var(--serif); font-size:2.2rem; font-weight:400;
  color:#fff; margin-bottom:1rem;
}
.seat-form__success p {
  font-family:var(--serif); font-size:1.15rem;
  font-style:italic; color:rgba(255,255,255,.5);
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background:var(--navy-0);
  border-top:1px solid rgba(201,168,76,.08);
  padding:3.5rem 0;
}
.footer__inner {
  display:flex; flex-direction:column; align-items:center; gap:1.8rem; text-align:center;
}
.footer__brand { display:flex; flex-direction:column; align-items:center; gap:.35rem; }
.footer__rlx {
  font-family:var(--serif); font-size:2rem; font-weight:700;
  color:var(--gold); letter-spacing:.12em;
}
.footer__tagline {
  font-size:.58rem; font-weight:400;
  letter-spacing:.26em; text-transform:uppercase;
  color:rgba(255,255,255,.25);
}
.footer__links { display:flex; gap:2.2rem; flex-wrap:wrap; justify-content:center; }
.footer__links a {
  font-size:.66rem; font-weight:500; letter-spacing:.15em;
  text-transform:uppercase; color:rgba(255,255,255,.3);
  transition:color .28s;
}
.footer__links a:hover { color:var(--gold); }
.footer__copy { font-size:.6rem; color:rgba(255,255,255,.15); letter-spacing:.06em; }

/* ════════════════════════════════════════
   §10b FOOD EXPERIENCE
   Real event food photography
════════════════════════════════════════ */
.food-exp { padding:var(--section-y) 0; text-align:center; }
.food-exp__intro {
  font-family:var(--serif);
  font-size:clamp(1rem,2vw,1.4rem);
  font-weight:300; font-style:italic;
  color:rgba(255,255,255,.55);
  margin-bottom:4rem; letter-spacing:.04em;
  line-height:1.7;
}
.food-exp__intro em { color:var(--gold-lt); }

.food-exp__grid {
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:2px;
  height:480px;
}
.food-exp__item {
  position:relative; overflow:hidden;
  cursor:pointer;
}
.food-exp__item--featured { grid-row:span 1; }
.food-exp__img {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  filter:brightness(.82) saturate(.9);
  transition:transform .8s var(--ease), filter .6s var(--ease);
  transform:scale(1.02);
}
.food-exp__item:hover .food-exp__img {
  transform:scale(1.06);
  filter:brightness(.95) saturate(1.05);
}
.food-exp__caption {
  position:absolute; bottom:0; left:0; right:0; z-index:3;
  padding:1.6rem 1.8rem;
  background:linear-gradient(0deg,rgba(4,5,14,.92) 0%,transparent 100%);
  transform:translateY(8px); opacity:0;
  transition:all .4s var(--ease);
}
.food-exp__item:hover .food-exp__caption {
  transform:translateY(0); opacity:1;
}
.food-exp__label {
  font-family:var(--sans);
  font-size:.6rem; font-weight:700;
  letter-spacing:.26em; text-transform:uppercase;
  color:var(--gold); margin-bottom:.4rem;
}
.food-exp__desc {
  font-family:var(--serif);
  font-size:.9rem; font-weight:300;
  color:rgba(255,255,255,.75); line-height:1.5;
  font-style:italic;
}
/* Thin gold border on hover */
.food-exp__item::after {
  content:''; position:absolute; inset:0; z-index:2;
  border:1px solid transparent;
  transition:border-color .4s var(--ease);
  pointer-events:none;
}
.food-exp__item:hover::after { border-color:rgba(201,168,76,.28); }

/* Full-width hospitality bar strip below food grid */
.food-exp__bar-strip {
  position:relative; height:220px; overflow:hidden; margin-top:2px;
}
.food-exp__bar-img {
  position:absolute; inset:0;
  background-size:cover; background-position:center 35%;
  filter:brightness(.72) saturate(.95);
  transition:transform .9s var(--ease);
}
.food-exp__bar-strip:hover .food-exp__bar-img { transform:scale(1.04); }
.food-exp__bar-overlay {
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(4,5,14,.7) 0%, rgba(4,5,14,.2) 40%, rgba(4,5,14,.2) 60%, rgba(4,5,14,.7) 100%),
    linear-gradient(180deg, rgba(4,5,14,.45) 0%, transparent 40%, rgba(4,5,14,.55) 100%);
}
.food-exp__bar-text {
  position:absolute; bottom:2rem; left:50%; transform:translateX(-50%);
  text-align:center; white-space:nowrap; z-index:2;
}
.food-exp__bar-label {
  font-family:var(--sans); font-size:.6rem; font-weight:700;
  letter-spacing:.3em; text-transform:uppercase;
  color:var(--gold); margin-bottom:.3rem;
}
.food-exp__bar-desc {
  font-family:var(--serif);
  font-size:.92rem; font-weight:300; font-style:italic;
  color:rgba(255,255,255,.62); line-height:1.5;
}

/* ════════════════════════════════════════
   §14b REEL SECTION
   Real event video embed
════════════════════════════════════════ */
.reel-section { padding:var(--section-y) 0; text-align:center; }
.reel-section__title {
  font-family:var(--serif);
  font-size:clamp(2rem,4.5vw,3.5rem);
  font-weight:400; line-height:1.2;
  color:#fff; margin-bottom:1rem;
}
.reel-section__title em { color:var(--gold-lt); font-style:italic; }
.reel-section__sub {
  font-family:var(--serif);
  font-size:clamp(.95rem,1.8vw,1.2rem);
  font-weight:300; font-style:italic;
  color:rgba(255,255,255,.42);
  margin-bottom:3.5rem; letter-spacing:.04em;
}
.reel-section__video-wrap {
  position:relative; max-width:860px; margin:0 auto;
  border-radius:2px; overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(201,168,76,.12);
}
.reel-section__video {
  display:block; width:100%; height:auto;
  border-radius:2px;
  background:var(--navy-1);
  aspect-ratio:16/9;
}
/* Gold frame on reel */
.reel-section__frame {
  position:absolute; inset:-10px; pointer-events:none; z-index:4;
}
.rf-t,.rf-b { position:absolute; height:1px; left:8%; right:8%; }
.rf-l,.rf-r { position:absolute; width:1px; top:8%; bottom:8%; }
.rf-t { top:0; background:linear-gradient(90deg,transparent,rgba(201,168,76,.45) 50%,transparent); }
.rf-b { bottom:0; background:linear-gradient(90deg,transparent,rgba(201,168,76,.45) 50%,transparent); }
.rf-l { left:0; background:linear-gradient(180deg,transparent,rgba(201,168,76,.45) 50%,transparent); }
.rf-r { right:0; background:linear-gradient(180deg,transparent,rgba(201,168,76,.45) 50%,transparent); }

/* Custom play button overlay — mobile-first, hides once playing */
.reel-play-btn {
  position:absolute; inset:0; z-index:5;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:1.2rem;
  background:rgba(5,6,15,.38);
  border:none; cursor:pointer;
  transition:background .3s;
  -webkit-tap-highlight-color:transparent;
}
.reel-play-btn:hover { background:rgba(5,6,15,.22); }
.reel-play-btn__circle {
  width:72px; height:72px; border-radius:50%;
  background:rgba(201,168,76,.15);
  border:2px solid rgba(201,168,76,.7);
  display:flex; align-items:center; justify-content:center;
  transition:transform .25s, background .25s, box-shadow .25s;
  box-shadow:0 0 0 0 rgba(201,168,76,.3);
}
.reel-play-btn:hover .reel-play-btn__circle,
.reel-play-btn:active .reel-play-btn__circle {
  transform:scale(1.1);
  background:rgba(201,168,76,.28);
  box-shadow:0 0 0 12px rgba(201,168,76,.08);
}
.reel-play-btn__triangle {
  display:block;
  width:0; height:0;
  margin-left:5px; /* optical centre */
  border-top:13px solid transparent;
  border-bottom:13px solid transparent;
  border-left:22px solid var(--gold);
}
.reel-play-btn__label {
  font-family:var(--sans); font-size:.62rem; font-weight:600;
  letter-spacing:.28em; text-transform:uppercase;
  color:rgba(255,255,255,.65);
}
/* Once video is playing, hide the custom button */
.reel-section__video-wrap.playing .reel-play-btn { display:none; }

.reel-section__note {
  margin-top:1.8rem;
  font-size:.58rem; font-weight:600;
  letter-spacing:.28em; text-transform:uppercase;
  color:rgba(255,255,255,.2);
}

/* ════════════════════════════════════════
   SHARED KEYFRAMES
════════════════════════════════════════ */
@keyframes fadeInUp   { from{ opacity:0; transform:translateY(22px); } to{ opacity:1; transform:translateY(0); } }
@keyframes fadeInDown { from{ opacity:0; transform:translateY(-16px); } to{ opacity:1; transform:translateY(0); } }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media(max-width:1100px){
  .why__grid { grid-template-columns:1fr 1fr; }
  .why__grid .why__card:last-child { grid-column:span 2; max-width:420px; margin:0 auto; width:100%; }
  .proof__grid { grid-template-columns:1fr 1fr; }
  .proof__grid .proof__card:last-child { grid-column:span 2; max-width:480px; margin:0 auto; width:100%; }
}
@media(max-width:960px){
  .authority__inner { grid-template-columns:1fr; gap:3.5rem; }
  .authority__text { padding-right:0; text-align:center; }
  .authority__list { max-width:540px; margin:0 auto; }
  .authority__item { align-items:center; }
  .gold-rule--left { margin-left:auto; }
  .nav__links { display:none; }
  .nav__hamburger { display:flex; }
}
@media(max-width:768px){
  /* Unlocks: collapse padding on desc to full width */
  .unlocks__item-desc { padding-left:0; margin-top:.4rem; }
  .unlocks__list { max-width:100%; }
  /* After-room: full width layers */
  .after-room__layers { max-width:100%; }
  .after-room__glow { width:500px; height:400px; }
  .food-exp__grid { grid-template-columns:1fr; height:auto; }
  .food-exp__item { height:240px; }
  .food-exp__caption { transform:translateY(0); opacity:1; }
  .dual-env__split { grid-template-columns:1fr; }
  .dual-panel { min-height:340px; }
  .why__grid { grid-template-columns:1fr; }
  .why__grid .why__card:last-child { grid-column:auto; max-width:none; }
  .proof__grid { grid-template-columns:1fr; }
  .proof__grid .proof__card:last-child { grid-column:auto; max-width:none; }
  .seat-form__row { grid-template-columns:1fr; }
  .journey__track { display:none; }
  .journey { gap:2.5rem; }
  .membership__pillars { flex-direction:column; align-items:stretch; }
  .membership__pillar-sep { width:auto; height:1px; }
  .system__flow { flex-direction:column; align-items:center; gap:1rem; }
  .system__connector { transform:rotate(90deg); }
  .hero__actions { flex-direction:column; align-items:center; }
  .authority__img-blur { height:380px; }
}
@media(max-width:520px){
  .unlocks__item-head { gap:1rem; }
  .unlocks__item-desc { padding-left:0; }
  .after-room__close-bold { font-size:clamp(1.3rem, 7vw, 2rem); }
  .interrupt__inner { max-width:100%; }
  .interrupt { padding: 80px var(--pad-x) 90px; }
  /* Mobile: clamp values already handle sizing via vw — just ensure payoff stays huge */
  .interrupt__pivot-payoff { font-size: clamp(2.8rem, 14vw, 4rem); letter-spacing:-.02em; }
  .hero__title { font-size:clamp(3rem,15vw,5rem); }
  .gold-frame { inset:14px; }
  .gold-frame--hero { inset:20px; }
  .hero__micros { flex-direction:column; gap:.5rem; padding-bottom:0; }
  .hero__micro-sep { display:none; }
  /* Hide scroll cue on mobile — touch devices don't need it and it causes overlap */
  .scroll-cue { display:none; }
  .exp-feel__big-quotemark { font-size:5rem; }
  .exp-feel__quote-text { font-size:clamp(1.25rem,5vw,1.8rem); }
}

/* ════════════════════════════════════════
   SCROLLBAR · SELECTION
════════════════════════════════════════ */
::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-track { background:var(--navy-0); }
::-webkit-scrollbar-thumb { background:rgba(201,168,76,.28); border-radius:3px; }
::-webkit-scrollbar-thumb:hover { background:var(--gold); }
::selection { background:rgba(201,168,76,.2); color:var(--gold-pale); }
