/* ═══════════════════════════════════════════════════════════════════
   THE RESERVE COLLECTIVE CLUB — Investment-Grade Design System v2
   $50,000 – $100,000 Annual Membership · 40 Charter Positions
   A Cowboy, Inc. Entity · Bryan Egan, Founder
═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Cinzel:wght@400;500;600;700;800;900&family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&display=swap');

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

/* ── DESIGN TOKENS ──────────────────────────────────────────────── */
:root {
  /* Core palette — Lodge & Forest */
  --forest:     #050c07;
  --deep:       #07100a;
  --lodge:      #0d1a10;
  --panel:      #121f15;
  --leather:    #1e1208;
  --walnut:     #2a1e0e;
  --border-dk:  #1a2a1c;
  --border:     #243526;
  --border-lt:  #3a4f3c;

  /* Ivory / Cream — Editorial light sections */
  --ivory:      #f5ede0;
  --cream:      #faf4ea;
  --parchment:  #ede3d0;
  --warm-white: #fffcf7;
  --tan:        #c4a882;
  --taupe:      #8a7560;

  /* Accent — Aged Gold */
  --gold:       #c4952a;
  --gold-lt:    #ddb84a;
  --gold-dk:    #8a6518;
  --gold-pale:  #e8d5a0;
  --copper:     #a0714f;

  /* Typography */
  --ff-display: 'Cormorant', serif;
  --ff-ui:      'Cinzel', serif;
  --ff-body:    'EB Garamond', serif;

  /* Spacing scale */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;
  --space-2xl: 12rem;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.65, 0, 0.35, 1);
}

/* ── BASE ───────────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  cursor: none;
}
body {
  background: var(--forest);
  color: var(--ivory);
  font-family: var(--ff-body);
  font-size: 18px;
  line-height: 1.75;
  overflow-x: hidden;
}
body.intro-active { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── CUSTOM CURSOR ──────────────────────────────────────────────── */
.cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s, opacity 0.3s, background 0.3s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(196,149,42,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-out-expo),
              height 0.4s var(--ease-out-expo),
              border-color 0.3s,
              transform 0.12s var(--ease-out-expo);
}
.cursor-ring.hover {
  width: 60px; height: 60px;
  border-color: var(--gold);
}
@media (pointer: coarse) {
  html { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}

/* ── FILM GRAIN OVERLAY ─────────────────────────────────────────── */
.grain {
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  animation: grainShift 0.15s steps(1) infinite;
}
@keyframes grainShift {
  0%   { background-position: 0 0; }
  25%  { background-position: -5% -10%; }
  50%  { background-position: -15% 5%; }
  75%  { background-position: 7% -25%; }
  100% { background-position: 3% 15%; }
}

/* ══════════════════════════════════════════════════════════════════
   CINEMATIC INTRO
══════════════════════════════════════════════════════════════════ */
#cinematic-intro {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: opacity 1.2s var(--ease-in-out), visibility 1.2s;
}
#cinematic-intro.dismissed {
  opacity: 0; visibility: hidden; pointer-events: none;
}

/* Letterbox bars */
.lb-top, .lb-bottom {
  position: absolute; left: 0; right: 0; z-index: 20;
  background: #000;
  transition: height 1.4s var(--ease-out-expo);
}
.lb-top    { top: 0;    height: 14vh; }
.lb-bottom { bottom: 0; height: 14vh; }
.lb-top.open    { height: 0; }
.lb-bottom.open { height: 0; }

/* VIDEO — takes over when mp4 is present */
#intro-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
  opacity: 0;
  transition: opacity 1s ease 0.5s;
}
#intro-video.loaded { opacity: 1; }

/* CSS Scene Simulation — cinematic when no video loaded */
.cinematic-scenes {
  position: absolute; inset: 0; z-index: 1;
}
.scene {
  position: absolute; inset: 0;
  opacity: 0;
  animation: sceneFade 24s ease-in-out infinite;
  transform-origin: center center;
}
.scene-1 {
  background:
    radial-gradient(ellipse at 25% 35%, rgba(10,40,15,0.95) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 65%, rgba(5,20,8,0.9) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(15,30,12,0.8) 0%, transparent 70%),
    linear-gradient(160deg, #020b03 0%, #061208 50%, #030a05 100%);
  animation-delay: 0s;
  animation-name: sceneFade1;
}
.scene-2 {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(40,20,5,0.85) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 70%, rgba(25,10,3,0.9) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 80%, rgba(30,15,5,0.7) 0%, transparent 45%),
    linear-gradient(140deg, #0e0804 0%, #1a0e05 40%, #0a0603 100%);
  animation-delay: 8s;
  animation-name: sceneFade2;
}
.scene-3 {
  background:
    radial-gradient(ellipse at 40% 25%, rgba(8,30,10,0.9) 0%, transparent 60%),
    radial-gradient(ellipse at 65% 75%, rgba(5,18,7,0.85) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 40%, rgba(12,25,8,0.75) 0%, transparent 55%),
    linear-gradient(170deg, #030906 0%, #081508 50%, #040c05 100%);
  animation-delay: 16s;
  animation-name: sceneFade3;
}
@keyframes sceneFade1 {
  0%   { opacity: 0; transform: scale(1.08); }
  8%   { opacity: 1; }
  25%  { opacity: 1; transform: scale(1); }
  33%  { opacity: 0; transform: scale(0.97); }
  100% { opacity: 0; }
}
@keyframes sceneFade2 {
  0%   { opacity: 0; }
  8%   { opacity: 0; }
  16%  { opacity: 1; transform: scale(1.06); }
  33%  { opacity: 1; transform: scale(1); }
  41%  { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes sceneFade3 {
  0%   { opacity: 0; }
  66%  { opacity: 0; }
  74%  { opacity: 1; transform: scale(1.05); }
  92%  { opacity: 1; transform: scale(1); }
  100% { opacity: 0; }
}

/* Vignette */
.intro-vignette {
  position: absolute; inset: 0; z-index: 5;
  background: radial-gradient(ellipse at center,
    transparent 30%,
    rgba(0,0,0,0.5) 70%,
    rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}

/* Horizontal scan line — cinematic effect */
.intro-scanline {
  position: absolute; inset: 0; z-index: 6;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.015) 2px,
    rgba(0,0,0,0.015) 4px
  );
}

/* Content overlay */
.intro-overlay {
  position: relative; z-index: 10;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  padding: 2rem;
}
.intro-entity {
  font-family: var(--ff-ui);
  font-size: 0.55rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
  opacity: 0;
  animation: introFadeUp 1s var(--ease-out-expo) 0.8s forwards;
}
.intro-wordmark {
  font-family: var(--ff-ui);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--ivory);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: introFadeUp 1.2s var(--ease-out-expo) 1.2s forwards;
  text-shadow: 0 0 80px rgba(196,149,42,0.15);
}
.intro-full-name {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  color: var(--tan);
  letter-spacing: 0.12em;
  margin-bottom: 3rem;
  opacity: 0;
  animation: introFadeUp 1s var(--ease-out-expo) 1.6s forwards;
}
.intro-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 3rem;
  opacity: 0;
  animation: introFadeUp 0.8s ease 2s forwards;
}
.intro-scarcity {
  font-family: var(--ff-ui);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: introFadeUp 0.8s ease 2.2s forwards;
  line-height: 2;
}
.intro-scarcity strong {
  display: block;
  font-size: 1.8rem;
  font-family: var(--ff-display);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.05em;
  color: var(--ivory);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.intro-buttons {
  display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center;
  opacity: 0;
  animation: introFadeUp 0.8s ease 2.6s forwards;
}
.btn-velvet {
  font-family: var(--ff-ui);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  padding: 1.1rem 3.5rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-velvet::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out-expo);
}
.btn-velvet:hover::before { transform: translateX(0); }
.btn-velvet span { position: relative; z-index: 1; }
.btn-velvet:hover span { color: var(--forest); }
.btn-velvet:hover { color: var(--forest); }
.btn-skip-intro {
  font-family: var(--ff-ui);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(196,168,120,0.4);
  background: none; border: none; cursor: pointer;
  padding: 1rem;
  transition: color 0.2s;
  align-self: center;
}
.btn-skip-intro:hover { color: var(--tan); }

/* Sound control on intro */
#intro-sound {
  position: absolute; bottom: 2rem; right: 2rem; z-index: 20;
  font-family: var(--ff-ui); font-size: 0.55rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(196,168,120,0.5);
  background: none; border: 1px solid rgba(196,168,120,0.2);
  padding: 0.5rem 1rem; cursor: pointer; transition: all 0.2s;
}
#intro-sound:hover, #intro-sound.on { color: var(--gold); border-color: var(--gold); }

/* Scroll cue */
.intro-scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 20; text-align: center;
  opacity: 0; animation: introFadeUp 0.8s ease 3.2s forwards;
}
.scroll-cue-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto 0.6rem;
  animation: scrollPulse 2s ease-in-out 3.5s infinite;
}
.scroll-cue-text {
  font-family: var(--ff-ui); font-size: 0.45rem;
  letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold-dk);
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.7); }
}

@keyframes introFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════════════
   MAIN NAVIGATION
══════════════════════════════════════════════════════════════════ */
#site-nav {
  position: sticky; top: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  height: 68px;
  background: rgba(5,12,7,0.92);
  backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(196,149,42,0.12);
  transition: border-color 0.3s;
}
#site-nav.scrolled { border-color: rgba(196,149,42,0.2); }

.nav-brand { display: flex; align-items: center; gap: 1rem; }
.nav-crest {
  width: 36px; height: 36px;
  border: 1px solid rgba(196,149,42,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.nav-crest:hover { border-color: var(--gold); }
.nav-crest span {
  font-family: var(--ff-ui); font-size: 0.55rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.05em;
}
.nav-wordmark {
  font-family: var(--ff-ui); font-size: 0.7rem;
  letter-spacing: 0.18em; color: var(--ivory);
}
.nav-wordmark small {
  display: block; font-size: 0.5rem; letter-spacing: 0.25em;
  color: rgba(196,149,42,0.5); margin-top: 0.1rem;
}
.nav-links {
  display: flex; align-items: center; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-family: var(--ff-ui); font-size: 0.58rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(196,168,120,0.7);
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s var(--ease-out-expo);
}
.nav-links a:hover, .nav-links a.active { color: var(--ivory); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-apply {
  font-family: var(--ff-ui); font-size: 0.58rem; letter-spacing: 0.28em;
  text-transform: uppercase; padding: 0.6rem 1.8rem;
  border: 1px solid var(--gold); color: var(--gold);
  transition: all 0.3s var(--ease-out-expo); cursor: pointer;
  background: transparent; display: inline-block;
  position: relative; overflow: hidden;
}
.nav-apply::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: translateX(-100%);
  transition: transform 0.35s var(--ease-out-expo);
}
.nav-apply:hover::before { transform: translateX(0); }
.nav-apply span { position: relative; z-index: 1; }
.nav-apply:hover span { color: var(--forest); }
.nav-apply:hover { color: var(--forest); }
.nav-hamburger {
  display: none; background: none; border: none;
  color: var(--ivory); cursor: pointer; font-size: 1.2rem; padding: 0.5rem;
}
#mobile-menu {
  display: none; background: rgba(5,12,7,0.98);
  border-bottom: 1px solid var(--border-dk); padding: 2rem 2rem;
}
#mobile-menu.open { display: block; }
#mobile-menu a {
  display: block; font-family: var(--ff-ui); font-size: 0.65rem;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--tan);
  padding: 1rem 0; border-bottom: 1px solid var(--border-dk);
  transition: color 0.2s;
}
#mobile-menu a:hover { color: var(--gold); }
#mobile-menu a:last-child { border-bottom: none; }

/* ══════════════════════════════════════════════════════════════════
   SOUND TOGGLE (persistent)
══════════════════════════════════════════════════════════════════ */
#sound-toggle {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  font-family: var(--ff-ui); font-size: 0.5rem; letter-spacing: 0.25em;
  text-transform: uppercase; background: rgba(5,12,7,0.85);
  border: 1px solid var(--border-lt); color: var(--taupe);
  padding: 0.5rem 0.9rem; cursor: pointer; transition: all 0.2s;
  backdrop-filter: blur(10px);
}
#sound-toggle:hover, #sound-toggle.on { color: var(--gold); border-color: var(--gold); }

/* ══════════════════════════════════════════════════════════════════
   HERO — POST INTRO
══════════════════════════════════════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  position: relative;
  padding: 8rem 2rem 6rem;
  background: var(--forest);
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(196,149,42,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(10,40,15,0.4) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 70%, rgba(5,20,8,0.5) 0%, transparent 45%);
}
.hero-price-statement {
  font-family: var(--ff-ui);
  font-size: clamp(0.55rem, 1vw, 0.65rem);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  opacity: 0; animation: sectionFade 0.8s ease 0.1s forwards;
}
.hero-h1 {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: 0.95;
  color: var(--ivory);
  margin-bottom: 1.5rem;
  opacity: 0; animation: sectionFade 1s ease 0.2s forwards;
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-h1 .line-indent { margin-left: 5vw; }
.hero-subhead {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: var(--tan);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto 4rem;
  opacity: 0; animation: sectionFade 0.8s ease 0.4s forwards;
}
.hero-scarcity-bar {
  display: flex; align-items: center; gap: 3rem; flex-wrap: wrap;
  justify-content: center;
  padding: 2rem 3rem;
  border: 1px solid rgba(196,149,42,0.2);
  margin-bottom: 3rem;
  opacity: 0; animation: sectionFade 0.8s ease 0.6s forwards;
}
.scarcity-item { text-align: center; }
.scarcity-num {
  font-family: var(--ff-display); font-size: 2.5rem; font-weight: 300;
  color: var(--gold); line-height: 1; display: block;
}
.scarcity-lbl {
  font-family: var(--ff-ui); font-size: 0.5rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--taupe); display: block; margin-top: 0.3rem;
}
.scarcity-divider {
  width: 1px; height: 40px; background: var(--border-lt);
}
.hero-ctas {
  display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: sectionFade 0.8s ease 0.8s forwards;
}

/* Scroll reveal */
@keyframes sectionFade {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo); }
.reveal-left.in { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo); }
.reveal-right.in { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════════ */
.btn-primary {
  font-family: var(--ff-ui); font-size: 0.6rem; letter-spacing: 0.4em;
  text-transform: uppercase; padding: 1.1rem 3rem;
  background: var(--gold); color: var(--forest); font-weight: 700;
  border: 1px solid var(--gold); cursor: pointer; display: inline-block;
  transition: all 0.3s var(--ease-out-expo);
}
.btn-primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.btn-outline {
  font-family: var(--ff-ui); font-size: 0.6rem; letter-spacing: 0.4em;
  text-transform: uppercase; padding: 1.1rem 3rem;
  background: transparent; color: var(--ivory);
  border: 1px solid rgba(196,168,120,0.3); cursor: pointer; display: inline-block;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost {
  font-family: var(--ff-ui); font-size: 0.58rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); display: inline-flex;
  align-items: center; gap: 0.75rem; transition: gap 0.3s;
}
.btn-ghost::after { content: '→'; }
.btn-ghost:hover { gap: 1.25rem; color: var(--gold-lt); }

/* dark bg link */
.link-cream {
  font-family: var(--ff-ui); font-size: 0.55rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--tan); border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.link-cream:hover { color: var(--ivory); border-color: var(--ivory); }

/* ══════════════════════════════════════════════════════════════════
   SECTIONS — DARK
══════════════════════════════════════════════════════════════════ */
.section-dark {
  padding: var(--space-xl) 3rem;
  background: var(--forest);
  position: relative;
}
.section-lodge {
  padding: var(--space-xl) 3rem;
  background: var(--lodge);
  position: relative;
}
.section-panel {
  padding: var(--space-xl) 3rem;
  background: var(--panel);
  position: relative;
}
.section-leather {
  padding: var(--space-xl) 3rem;
  background: var(--leather);
  position: relative;
}

/* ══════════════════════════════════════════════════════════════════
   SECTIONS — LIGHT (editorial ivory)
══════════════════════════════════════════════════════════════════ */
.section-ivory {
  padding: var(--space-xl) 3rem;
  background: var(--cream);
  color: var(--leather);
}
.section-ivory .section-label { color: var(--gold-dk); }
.section-ivory .section-title { color: var(--leather); }
.section-ivory .section-lead { color: var(--taupe); }
.section-ivory p { color: #3a2c1a; }
.section-ivory .rule { border-color: rgba(42,30,14,0.15); }
.section-parchment {
  padding: var(--space-xl) 3rem;
  background: var(--parchment);
  color: var(--leather);
}

/* ══════════════════════════════════════════════════════════════════
   SECTION COMPONENTS
══════════════════════════════════════════════════════════════════ */
.inner { max-width: 1200px; margin: 0 auto; }
.inner-narrow { max-width: 820px; margin: 0 auto; }
.inner-wide { max-width: 1440px; margin: 0 auto; }

.section-label {
  font-family: var(--ff-ui);
  font-size: 0.55rem; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem; display: block;
}
.section-title {
  font-family: var(--ff-display); font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.05; color: var(--ivory); margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title strong { font-weight: 600; }
.section-lead {
  font-family: var(--ff-body); font-size: 1.1rem;
  color: var(--tan); font-weight: 400; max-width: 600px;
  line-height: 1.8; margin-bottom: 3rem;
}
.rule { border: none; border-top: 1px solid var(--border); margin: 3rem 0; }

/* Two column */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.two-col.align-start { align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }

/* ── PULLQUOTE ───────────────────────────────────────────────────── */
.pullquote {
  border-left: 2px solid var(--gold);
  padding: 1.5rem 0 1.5rem 2.5rem;
  margin: 3rem 0;
}
.pullquote p {
  font-family: var(--ff-display); font-style: italic; font-weight: 300;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem); line-height: 1.4;
  color: var(--ivory); margin-bottom: 0.75rem;
}
.pullquote cite {
  font-family: var(--ff-ui); font-size: 0.55rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold-dk); font-style: normal;
}
.section-ivory .pullquote p { color: var(--leather); }

/* ── BIG QUOTE ───────────────────────────────────────────────────── */
.big-quote {
  font-family: var(--ff-display); font-style: italic; font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 5rem); line-height: 1.1;
  color: var(--ivory); text-align: center; max-width: 1000px;
  margin: 0 auto; padding: var(--space-xl) var(--space-md);
}
.big-quote em { color: var(--gold); }

/* ── STAT CELLS ──────────────────────────────────────────────────── */
.stat-bar {
  background: var(--walnut); border-top: 1px solid var(--border-dk);
  border-bottom: 1px solid var(--border-dk);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-bar.three { grid-template-columns: repeat(3, 1fr); }
.stat-bar.five  { grid-template-columns: repeat(5, 1fr); }
.stat-cell {
  padding: 3rem 1.5rem; text-align: center;
  border-right: 1px solid var(--border-dk);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: var(--ff-display); font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--gold); line-height: 1; display: block;
}
.stat-lbl {
  font-family: var(--ff-ui); font-size: 0.5rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--taupe); display: block; margin-top: 0.5rem;
}

/* ── TICKER ──────────────────────────────────────────────────────── */
.ticker-wrap {
  background: var(--walnut); border-top: 1px solid var(--border-dk);
  border-bottom: 1px solid var(--border-dk);
  padding: 0.8rem 0; overflow: hidden; white-space: nowrap;
}
.ticker-track { display: inline-block; animation: ticker 55s linear infinite; }
.ticker-track span {
  font-family: var(--ff-ui); font-size: 0.55rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--taupe); padding: 0 3rem;
}
.ticker-track span.accent { color: var(--gold); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── BREADCRUMB ──────────────────────────────────────────────────── */
.breadcrumb {
  background: var(--deep); border-bottom: 1px solid var(--border-dk);
  padding: 0.75rem 3rem; font-family: var(--ff-ui); font-size: 0.5rem;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--taupe);
}
.breadcrumb a { color: var(--taupe); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 0.75rem; color: var(--border-lt); }

/* ── PAGE HERO ───────────────────────────────────────────────────── */
.page-hero {
  min-height: 75vh; display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  padding: 4rem 3rem 5rem;
  position: relative; overflow: hidden;
  background: var(--forest);
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.page-hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(10,40,15,0.8) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(30,15,5,0.6) 0%, transparent 45%);
}
.page-hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.35; z-index: 1;
}
.page-hero-vignette {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to right, rgba(5,12,7,0.92) 0%, rgba(5,12,7,0.6) 60%, rgba(5,12,7,0.3) 100%);
}
.page-hero-content { position: relative; z-index: 10; max-width: 750px; }
.page-hero-label {
  font-family: var(--ff-ui); font-size: 0.55rem; letter-spacing: 0.45em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; display: block;
  opacity: 0; animation: sectionFade 0.8s ease 0.2s forwards;
}
.page-hero h1 {
  font-family: var(--ff-display); font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 6rem); line-height: 1.0;
  color: var(--ivory); margin-bottom: 1.5rem;
  opacity: 0; animation: sectionFade 0.9s ease 0.35s forwards;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p {
  font-size: 1.05rem; color: var(--tan); font-weight: 400; max-width: 560px;
  line-height: 1.8; margin-bottom: 2.5rem;
  opacity: 0; animation: sectionFade 0.8s ease 0.55s forwards;
}
.page-hero-actions {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  opacity: 0; animation: sectionFade 0.8s ease 0.7s forwards;
}

/* ── CHAPTER CARDS ───────────────────────────────────────────────── */
.chapter-card {
  position: relative; overflow: hidden;
  min-height: 400px; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 2.5rem;
  background: var(--lodge);
  border: 1px solid var(--border-dk);
  transition: border-color 0.3s;
  cursor: pointer;
}
.chapter-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,12,7,0.97) 0%, rgba(5,12,7,0.5) 50%, transparent 100%);
  z-index: 1;
}
.chapter-card:hover { border-color: rgba(196,149,42,0.3); }
.chapter-card-scene {
  position: absolute; inset: 0;
  transition: transform 0.6s var(--ease-out-expo);
}
.chapter-card:hover .chapter-card-scene { transform: scale(1.04); }
.chapter-card-content { position: relative; z-index: 2; }
.chapter-badge {
  font-family: var(--ff-ui); font-size: 0.5rem; letter-spacing: 0.3em;
  text-transform: uppercase; padding: 0.3rem 0.8rem; display: inline-block;
  margin-bottom: 1rem; border: 1px solid var(--gold); color: var(--gold);
}
.chapter-badge.future { border-color: var(--border-lt); color: var(--taupe); }
.chapter-card h3 {
  font-family: var(--ff-display); font-weight: 300;
  font-size: 2.2rem; color: var(--ivory); line-height: 1; margin-bottom: 0.4rem;
}
.chapter-card .chapter-type {
  font-family: var(--ff-ui); font-size: 0.5rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold-dk); margin-bottom: 1rem;
}
.chapter-card p {
  font-size: 0.9rem; color: var(--tan); font-weight: 400; line-height: 1.6;
  margin-bottom: 1.5rem;
}
.chapter-card-arrow {
  font-family: var(--ff-ui); font-size: 0.55rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold-dk);
  transition: color 0.2s, letter-spacing 0.3s;
}
.chapter-card:hover .chapter-card-arrow { color: var(--gold); letter-spacing: 0.35em; }

/* ── FEATURE ITEMS ───────────────────────────────────────────────── */
.feature-list { display: flex; flex-direction: column; gap: 3rem; }
.feature-item {}
.feature-icon { font-size: 1.6rem; margin-bottom: 0.8rem; display: block; }
.feature-item h3 {
  font-family: var(--ff-display); font-weight: 400;
  font-size: 1.3rem; color: var(--ivory); margin-bottom: 0.5rem;
}
.feature-item p { font-size: 0.95rem; color: var(--tan); font-weight: 400; line-height: 1.75; }
.section-ivory .feature-item h3 { color: var(--leather); }
.section-ivory .feature-item p { color: var(--taupe); }

/* ── FOUNDER CARD ────────────────────────────────────────────────── */
.founder-layout { display: grid; grid-template-columns: 400px 1fr; gap: 6rem; align-items: start; }
.founder-image {
  position: relative;
  aspect-ratio: 3/4; background: var(--walnut);
  border: 1px solid var(--border);
}
.founder-image-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--panel) 0%, var(--walnut) 100%);
}
.founder-image-placeholder {
  font-family: var(--ff-display); font-style: italic; font-size: 0.9rem;
  color: var(--border-lt); text-align: center; padding: 2rem;
  line-height: 1.6;
}
.founder-image-frame {
  position: absolute; inset: 12px;
  border: 1px solid rgba(196,149,42,0.12); pointer-events: none;
}
.founder-image img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.founder-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem 1.5rem;
  background: linear-gradient(to top, rgba(5,12,7,0.9), transparent);
  font-family: var(--ff-ui); font-size: 0.5rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
}
.founder-credentials {
  display: flex; flex-direction: column; gap: 1.5rem; margin: 2.5rem 0;
}
.credential {
  display: flex; align-items: flex-start; gap: 1rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-dk);
}
.credential:last-child { border-bottom: none; }
.credential-mark {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1px solid var(--border-lt); display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-ui); font-size: 0.55rem; color: var(--gold);
}
.credential-text h4 {
  font-family: var(--ff-ui); font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ivory); margin-bottom: 0.25rem;
}
.credential-text p { font-size: 0.9rem; color: var(--taupe); line-height: 1.6; font-weight: 400; }

/* ── USE OF PROCEEDS ─────────────────────────────────────────────── */
.proceeds-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 3rem; }
.proceed-cell {
  background: var(--panel); padding: 3rem 2rem; text-align: center;
  border-top: 3px solid var(--border-dk); position: relative; overflow: hidden;
  transition: border-color 0.3s;
}
.proceed-cell:hover { border-color: var(--gold); }
.proceed-pct {
  font-family: var(--ff-display); font-weight: 300; font-size: 4rem;
  color: var(--gold); line-height: 1; display: block; margin-bottom: 0.5rem;
}
.proceed-title {
  font-family: var(--ff-ui); font-size: 0.6rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--ivory); margin-bottom: 0.75rem;
}
.proceed-desc { font-size: 0.88rem; color: var(--taupe); line-height: 1.65; font-weight: 400; }

/* ── TIER CARDS ──────────────────────────────────────────────────── */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 3rem; }
.tier-card {
  background: var(--panel); padding: 3rem 2.5rem;
  border-top: 2px solid var(--border-dk); transition: border-color 0.3s;
}
.tier-card:hover { border-color: rgba(196,149,42,0.3); }
.tier-card.featured { background: var(--lodge); border-color: var(--gold); }
.tier-badge {
  font-family: var(--ff-ui); font-size: 0.5rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block;
}
.tier-name {
  font-family: var(--ff-display); font-weight: 300; font-size: 1.8rem;
  color: var(--ivory); margin-bottom: 0.25rem; line-height: 1;
}
.tier-price {
  font-family: var(--ff-display); font-style: italic; font-size: 1.1rem;
  color: var(--gold); margin-bottom: 0.25rem;
}
.tier-period {
  font-family: var(--ff-ui); font-size: 0.5rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--taupe); margin-bottom: 2.5rem; display: block;
}
.tier-features { list-style: none; margin-bottom: 2.5rem; }
.tier-features li {
  font-family: var(--ff-body); font-size: 0.93rem; color: var(--tan);
  padding: 0.65rem 0; border-bottom: 1px solid var(--border-dk);
  display: flex; align-items: flex-start; gap: 0.75rem; line-height: 1.5;
}
.tier-features li:last-child { border-bottom: none; }
.tier-features li::before { content: '✦'; color: var(--gold); font-size: 0.55rem; margin-top: 0.35rem; flex-shrink: 0; }

/* ── APPLICATION FORM ────────────────────────────────────────────── */
.application-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-label {
  font-family: var(--ff-ui); font-size: 0.52rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--taupe); display: block; margin-bottom: 0.4rem;
}
.form-input {
  width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--border-lt);
  border-bottom: 1px solid rgba(196,149,42,0.3);
  padding: 0.9rem 1rem; color: var(--ivory);
  font-family: var(--ff-body); font-size: 1rem; outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-input:focus { border-bottom-color: var(--gold); background: rgba(255,255,255,0.05); }
.form-input::placeholder { color: var(--taupe); opacity: 0.5; }
select.form-input option { background: var(--lodge); color: var(--ivory); }
textarea.form-input { resize: vertical; min-height: 100px; }
.form-disclaimer {
  font-family: var(--ff-ui); font-size: 0.5rem; letter-spacing: 0.12em;
  color: var(--taupe); line-height: 1.7; opacity: 0.7;
}

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq-list { margin-top: 2rem; }
.faq-item { border-bottom: 1px solid var(--border-dk); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.75rem 0; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  font-family: var(--ff-display); font-size: 1.2rem; font-weight: 400;
  color: var(--ivory); transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon { font-size: 1rem; color: var(--gold-dk); flex-shrink: 0; transition: transform 0.35s; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease-out-expo); }
.faq-a.open { max-height: 500px; }
.faq-a p { font-size: 0.97rem; color: var(--tan); font-weight: 400; line-height: 1.8; padding-bottom: 1.75rem; }

/* ── CTA BAND ────────────────────────────────────────────────────── */
.cta-band {
  padding: 8rem 3rem;
  background: var(--walnut);
  text-align: center;
  border-top: 1px solid var(--border-dk);
  border-bottom: 1px solid var(--border-dk);
}
.cta-band .section-title { text-align: center; max-width: 800px; margin: 0 auto 1rem; }
.cta-band .section-lead { text-align: center; max-width: 560px; margin: 0 auto 3rem; }
.cta-actions { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

/* ── LEGAL ───────────────────────────────────────────────────────── */
.legal-body { max-width: 760px; }
.legal-body h2 {
  font-family: var(--ff-display); font-weight: 400; font-size: 1.5rem;
  color: var(--ivory); margin: 3.5rem 0 1rem;
  border-top: 1px solid var(--border-dk); padding-top: 2.5rem;
}
.legal-body h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal-body p { font-size: 0.97rem; color: var(--tan); line-height: 1.85; margin-bottom: 1rem; font-weight: 400; }
.legal-body ul { margin: 0.5rem 0 1rem 1.5rem; }
.legal-body ul li { font-size: 0.97rem; color: var(--tan); line-height: 1.85; margin-bottom: 0.5rem; font-weight: 400; }
.legal-body a { color: var(--gold-dk); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.legal-body a:hover { border-color: var(--gold-dk); }

/* ── FOOTER ──────────────────────────────────────────────────────── */
footer {
  background: var(--deep);
  border-top: 1px solid var(--border-dk);
  padding: 5rem 3rem 3rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.75rem; }
.footer-crest {
  width: 48px; height: 48px; border: 1px solid rgba(196,149,42,0.3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.footer-crest span { font-family: var(--ff-ui); font-size: 0.6rem; font-weight: 700; color: var(--gold); }
.footer-brand-name { font-family: var(--ff-ui); font-size: 0.85rem; letter-spacing: 0.15em; color: var(--ivory); }
.footer-brand-name small { display: block; font-size: 0.5rem; letter-spacing: 0.25em; color: var(--taupe); margin-top: 0.15rem; }
.footer-tagline {
  font-family: var(--ff-display); font-style: italic; font-size: 1.05rem;
  color: var(--taupe); margin-bottom: 3.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 3rem; padding-top: 3rem; border-top: 1px solid var(--border-dk); margin-bottom: 3rem;
}
.footer-col h4 {
  font-family: var(--ff-ui); font-size: 0.52rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem;
}
.footer-col p, .footer-col a {
  font-family: var(--ff-body); font-size: 0.9rem; color: var(--taupe);
  display: block; margin-bottom: 0.5rem; line-height: 1.7; font-weight: 400;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--tan); }
.footer-bottom {
  padding-top: 2rem; border-top: 1px solid var(--border-dk);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p {
  font-family: var(--ff-ui); font-size: 0.48rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--taupe);
}
.footer-bottom-links { display: flex; gap: 2.5rem; }
.footer-bottom-links a {
  font-family: var(--ff-ui); font-size: 0.48rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--taupe); transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .founder-layout { grid-template-columns: 300px 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links, .nav-apply { display: none; }
  .nav-hamburger { display: block; }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .three-col { grid-template-columns: 1fr; }
  .four-col { grid-template-columns: 1fr 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .proceeds-grid { grid-template-columns: 1fr 1fr; }
  .stat-bar, .stat-bar.three, .stat-bar.five { grid-template-columns: 1fr 1fr; }
  .founder-layout { grid-template-columns: 1fr; }
  .founder-image { max-width: 320px; }
  .section-dark, .section-lodge, .section-panel, .section-leather,
  .section-ivory, .section-parchment { padding: var(--space-lg) 1.5rem; }
  .page-hero { min-height: 60vh; padding: 3rem 1.5rem 4rem; }
  .breadcrumb { padding: 0.75rem 1.5rem; }
  #site-nav { padding: 0 1.5rem; }
  .hero-section { padding: 6rem 1.5rem 4rem; }
  .hero-scarcity-bar { gap: 1.5rem; padding: 1.5rem 2rem; }
  .cta-band { padding: 5rem 1.5rem; }
  footer { padding: 4rem 1.5rem 2rem; }
}
@media (max-width: 600px) {
  .four-col { grid-template-columns: 1fr; }
  .proceeds-grid { grid-template-columns: 1fr; }
  .stat-bar { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .chapter-card { min-height: 300px; }
  .big-quote { font-size: clamp(1.8rem, 6vw, 3rem); padding: var(--space-lg) var(--space-sm); }
}
