/* ─────────────────────────────────────────────────────
   Poker Show — premium dark-luxury landing
   Type:  Cormorant Garamond (display) · Manrope (body) · JetBrains Mono (micro)
   Color: warm near-black + wine + gold + bronze
   ───────────────────────────────────────────────────── */

:root {
  /* base */
  --bg:        #0a0908;
  --bg-2:      #100d0a;
  --surface:   #14110d;
  --surface-2: #1c1815;
  --surface-3: #241e19;
  --line:      rgba(201, 163, 91, 0.14);
  --line-soft: rgba(201, 163, 91, 0.08);
  --line-strong: rgba(201, 163, 91, 0.32);

  /* foreground */
  --fg:        #f3ece0;
  --fg-2:      #d8cfbf;
  --fg-3:      #9a9080;
  --muted:     #6f675b;

  /* accents */
  --wine:      #6e1f24;
  --wine-2:    #8a2a30;
  --wine-deep: #4a1418;
  --gold:      #c9a35b;
  --gold-2:    #e0bf80;
  --bronze:    #8a6a3e;

  /* type */
  --f-display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --f-body:    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* metrics */
  --maxw:    1240px;
  --pad-x:   clamp(20px, 4.5vw, 80px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--wine); color: var(--fg); }

/* page-wide vignette */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(201,163,91,0.06), transparent 60%),
    radial-gradient(80% 60% at 50% 100%, rgba(110,31,36,0.07), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* subtle paper grain */
body::after {
  content: "";
  position: fixed; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    radial-gradient(rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 1px 2px;
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

/* ─────────────── NAV ─────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px var(--pad-x);
  background: linear-gradient(to bottom, rgba(10,9,8,0.92), rgba(10,9,8,0.72));
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  border-bottom: 1px solid var(--line-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.brand-mark { display: inline-flex; }
.brand-word { color: var(--fg); }
.brand-dot { color: var(--gold); margin: 0 2px; font-weight: 600; }

/* ── Nav mini hole cards (player's pocket) ── */
.nav-hand {
  display: flex;
  align-items: center;
  margin-left: 6px;
  padding-left: 14px;
  border-left: 1px solid var(--line-soft);
  height: 44px;
  opacity: 0;
  transform: translate(40px, -10px) scale(0.5);
  transform-origin: left center;
  transition: opacity 500ms ease 220ms,
              transform 700ms cubic-bezier(.2,.7,.3,1) 220ms;
  pointer-events: none;
}
body.scrolled .nav-hand {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
.nav-hand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 30px;
  height: 42px;
  padding: 4px 0 0;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background:
    radial-gradient(circle at 30% 20%, rgba(201,163,91,0.12), transparent 60%),
    linear-gradient(160deg, #1c1814 0%, #14110d 100%);
  box-shadow: 0 6px 16px -6px rgba(0,0,0,0.7),
              inset 0 1px 0 rgba(201,163,91,0.12);
  font-family: var(--f-display);
  line-height: 1;
}
.nav-hand-card:nth-child(1) {
  transform: rotate(-8deg);
  margin-right: -6px;
  z-index: 1;
}
.nav-hand-card:nth-child(2) {
  transform: rotate(8deg);
  z-index: 2;
}
.nh-rank {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nh-suit {
  font-size: 9px;
  margin-top: 2px;
  color: var(--fg-2);
}
.nh-suit.pc-wine { color: var(--wine-2); }

.nav-links {
  margin-left: auto;
  display: flex;
  gap: 28px;
  font-family: var(--f-body);
  font-size: 13.5px;
  letter-spacing: 0.02em;
  color: var(--fg-2);
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 160ms;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 220ms ease, left 220ms ease;
}
.nav-links a:hover { color: var(--fg); }
.nav-links a:hover::after { width: 100%; left: 0; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--gold-2);
  background: rgba(201,163,91,0.04);
  transition: background 200ms, color 200ms, border-color 200ms;
}
.nav-cta:hover {
  background: var(--gold);
  color: #1a1410;
  border-color: var(--gold);
}
.nav-cta-arrow { transition: transform 200ms; }
.nav-cta:hover .nav-cta-arrow { transform: translateX(3px); }

/* ─────────────── BUTTONS ─────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 180ms cubic-bezier(.2,.7,.3,1), background 220ms, color 220ms, border-color 220ms, box-shadow 220ms;
}
.btn-arrow { display: inline-block; transition: transform 220ms cubic-bezier(.2,.7,.3,1); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-primary {
  background: linear-gradient(180deg, var(--gold-2) 0%, var(--gold) 60%, var(--bronze) 100%);
  color: #1a1410;
  box-shadow: 0 12px 40px -16px rgba(201,163,91,0.55), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 50px -16px rgba(201,163,91,0.75), inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(201,163,91,0.06);
}

.btn-card {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--fg);
  align-self: flex-start;
}
.btn-card:hover {
  background: var(--gold);
  color: #1a1410;
  border-color: var(--gold);
}

/* ─────────────── HERO ─────────────── */

.hero {
  position: relative;
  min-height: 92vh;
  padding: clamp(60px, 9vh, 120px) var(--pad-x) clamp(60px, 8vh, 100px);
  overflow: hidden;
  isolation: isolate;
}

.hero-spotlight {
  position: absolute;
  inset: -20% -10% 0 -10%;
  background:
    radial-gradient(45% 55% at 50% 35%, rgba(201,163,91,0.18) 0%, rgba(201,163,91,0.04) 35%, transparent 60%),
    radial-gradient(35% 45% at 75% 70%, rgba(110,31,36,0.22) 0%, transparent 60%),
    radial-gradient(40% 45% at 20% 75%, rgba(110,31,36,0.12) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.hero-grain { display: none; } /* handled by body::after */

.hero-inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.015);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--fg-3);
  text-transform: uppercase;
}
.suit {
  color: var(--gold);
  font-size: 12px;
}
.suit-wine { color: var(--wine-2); }
.eyebrow-text { margin-left: 6px; }

.hero-title {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(72px, 14vw, 220px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--fg);
}
.hero-title-row {
  display: block;
}
.hero-title-row em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(90deg, var(--gold-2) 0%, var(--gold) 35%, var(--bronze) 75%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-title-row--alt {
  padding-left: clamp(40px, 8vw, 120px);
}

.hero-sub {
  margin: 32px 0 24px;
  font-family: var(--f-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 300;
  font-style: italic;
  color: var(--fg-2);
  letter-spacing: 0.005em;
}

.hero-lede {
  max-width: 640px;
  margin: 0 0 44px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-2);
}
.lede-mark {
  color: var(--gold-2);
  font-weight: 500;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 72px;
}

.hero-meta {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0;
  padding-top: 36px;
  border-top: 1px solid var(--line-soft);
  max-width: 920px;
}
.meta-cell {
  flex: 1 1 0;
  min-width: 130px;
  padding: 4px 24px 4px 0;
}
.meta-cell:not(:first-child) { padding-left: 24px; }
.meta-sep {
  width: 1px;
  background: var(--line-soft);
  align-self: stretch;
}
.meta-k {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  color: var(--gold-2);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.meta-v {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
  line-height: 1.5;
}

/* ─────────────── GLOBAL STAGE (fixed viewport scene) ─────────────── */

.hero-bg-suits {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bg-suit {
  position: absolute;
  font-family: var(--f-display);
  color: var(--fg);
  opacity: 0.03;
  line-height: 1;
  will-change: transform;
  user-select: none;
}
.bg-suit--1 { top: -4%;  left: -2%;  font-size: 480px; }
.bg-suit--2 { top: 38%;  right: 4%;  font-size: 280px; color: var(--wine-2); opacity: 0.05; }
.bg-suit--3 { bottom: 4%; left: 18%; font-size: 360px; }
.bg-suit--4 { top: 12%;  right: 28%; font-size: 200px; color: var(--wine-2); opacity: 0.04; }
.bg-suit--5 { bottom: -8%; right: -4%; font-size: 520px; }

/* Card variables (2× previous board size) */
:root {
  --cw: 184px;   /* card width */
  --ch: 258px;   /* card height (2.5:3.5 ratio) */
  --cgap: 16px;
  --hole-w: 200px;
  --hole-h: 280px;
}

.stage-scene {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  /* slight upward scroll parallax */
  --sy: 0px;
}

.stage-inner {
  position: absolute;
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%) translateY(var(--sy));
  width: min(1100px, 94vw);
  height: clamp(380px, 56vh, 560px);
  will-change: transform;
}

/* Universal flip card */
.s-card {
  position: absolute;
  width: var(--cw);
  height: var(--ch);
  perspective: 1200px;
  --x: -600px;
  --y: 240px;
  --rot: -28deg;
  --flip: 180deg;  /* face-down */
  --opacity: 0;
  --z: 1;
  transform: translate3d(var(--x), var(--y), 0) rotate(var(--rot));
  opacity: var(--opacity);
  z-index: var(--z);
  transition:
    transform 760ms cubic-bezier(.35,.05,.2,1),
    opacity 380ms ease;
}
.cf-inner {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform: rotateY(var(--flip));
  transition: transform 780ms cubic-bezier(.55,.05,.25,1);
}
.cf-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  box-shadow:
    0 36px 70px -20px rgba(0,0,0,0.8),
    inset 0 1px 0 rgba(201,163,91,0.15);
  padding: 14px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: linear-gradient(160deg, #1c1814 0%, #14110d 100%);
}
.cf-back {
  transform: rotateY(180deg);
  background:
    radial-gradient(circle at 30% 30%, rgba(201,163,91,0.22), transparent 50%),
    linear-gradient(160deg, var(--wine-deep) 0%, #1a0a0c 100%);
  display: block;
  padding: 10px;
  border-color: rgba(201,163,91,0.5);
}
.cf-back-pattern {
  width: 100%; height: 100%;
  border: 1px solid rgba(201,163,91,0.55);
  border-radius: 8px;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(201,163,91,0.2) 0px,
      rgba(201,163,91,0.2) 1.5px,
      transparent 1.5px,
      transparent 10px),
    repeating-linear-gradient(-45deg,
      rgba(201,163,91,0.2) 0px,
      rgba(201,163,91,0.2) 1.5px,
      transparent 1.5px,
      transparent 10px);
  position: relative;
}
.cf-back-pattern::after {
  content: "♠";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-display);
  font-size: 64px;
  color: var(--gold-2);
  opacity: 0.9;
  text-shadow: 0 4px 18px rgba(201,163,91,0.55);
}

/* Card face content */
.pc-corner {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  font-family: var(--f-display);
  color: var(--fg);
}
.pc-corner.pc-br { transform: rotate(180deg); justify-self: end; }
.pc-rank { font-size: 30px; font-weight: 500; line-height: 1; letter-spacing: -0.02em; }
.pc-suit { font-size: 20px; margin-top: 3px; color: var(--fg-2); line-height: 1; }
.pc-wine { color: var(--wine-2) !important; }
.pc-center { display: flex; align-items: center; justify-content: center; min-height: 0; overflow: hidden; }
.pc-big { font-size: 96px; line-height: 1; color: var(--fg-2); opacity: 0.78; }

/* Safety: clip any overflow inside card faces */
.cf-face { overflow: hidden; }

/* ── Hole cards — positioned in viewport, level with "Poker Show" title ── */
.stage-hole {
  position: absolute;             /* relative to .stage-scene (full viewport) */
  top: clamp(110px, 22vh, 240px); /* aligned roughly with hero title */
  right: clamp(40px, 6vw, 120px);
  width: calc(var(--hole-w) * 1.5);
  height: var(--hole-h);
  transition: opacity 600ms cubic-bezier(.4,.1,.25,1),
              transform 700ms cubic-bezier(.4,.1,.25,1);
}
/* When user scrolls past hero: big stage hole cards fly toward nav top-left
   (translate up-left + shrink + fade), nav-hand fades in to complete illusion */
body.scrolled .stage-hole {
  opacity: 0;
  transform: translate(-66vw, -14vh) scale(0.18);
  transform-origin: top right;
  pointer-events: none;
}
.s-hole {
  width: var(--hole-w);
  height: var(--hole-h);
  top: 0;
}
.s-hole--1 { right: 80px; }
.s-hole--2 { right: 0; }

/* ── Board row ── */
.stage-board {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(var(--cw) * 5 + var(--cgap) * 4);
  height: var(--ch);
}
.s-board { top: 0; }
.s-board--1 { left: 0; }
.s-board--2 { left: calc((var(--cw) + var(--cgap)) * 1); }
.s-board--3 { left: calc((var(--cw) + var(--cgap)) * 2); }
.s-board--4 { left: calc((var(--cw) + var(--cgap)) * 3); }
.s-board--5 { left: calc((var(--cw) + var(--cgap)) * 4); }

/* ── Burn pile — left of board ── */
.stage-burn {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: calc((var(--cw) * 5 + var(--cgap) * 4) / -2 - var(--cw) - 32px);
  width: var(--cw);
  height: var(--ch);
}
.s-burn { top: 0; left: 0; }
.stage-burn-label {
  position: absolute;
  bottom: -26px;
  left: 0;
  width: var(--cw);
  text-align: center;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  transition: opacity 400ms ease;
}
.stage-scene.s-burn1 .stage-burn-label { opacity: 1; }

/* ── Stage labels (flop / turn / river) ── */
.stage-labels {
  position: absolute;
  bottom: calc(var(--ch) + 14px);
  left: 50%;
  transform: translateX(-50%);
  width: calc(var(--cw) * 5 + var(--cgap) * 4);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--cgap);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.stage-label {
  text-align: center;
  opacity: 0;
  transition: color 400ms, opacity 400ms;
}
.stage-label--flop { grid-column: 1 / 4; }
.stage-label--turn { grid-column: 4 / 5; }
.stage-label--river { grid-column: 5 / 6; }
.stage-scene.s-flop3   .stage-label--flop  { color: var(--gold-2); opacity: 1; }
.stage-scene.s-turn-up .stage-label--turn  { color: var(--gold-2); opacity: 1; }
.stage-scene.s-river-up .stage-label--river { color: var(--gold-2); opacity: 1; }

/* ── Hand callout — below board ── */
.stage-callout {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transition: opacity 600ms ease 200ms;
}
.stage-scene.s-river-up .stage-callout {
  opacity: 1;
  transition-delay: 900ms;
}
.stage-callout-line { width: 40px; height: 1px; background: var(--gold); }
.stage-callout-text {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-2);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* ─────── STATE MACHINE ─────────────────────────────────────────────
   Classes added cumulatively on .stage-scene:
     s-hole-in, s-hole-up,
     s-burn1, s-flop-stack, s-flop1, s-flop2, s-flop3,
     s-burn2, s-turn-in, s-turn-up,
     s-burn3, s-river-in, s-river-up
─────────────────────────────────────────────────────────────────── */

/* Hole cards — fly in from off-screen right */
.s-hole { --x: 400px; --y: -100px; --rot: 25deg; }
.stage-scene.s-hole-in .s-hole--1 { --x: 0; --y: 0; --rot: -10deg; --opacity: 1; --z: 4; }
.stage-scene.s-hole-in .s-hole--2 { --x: 0; --y: 0; --rot: 8deg;  --opacity: 1; --z: 5; }
.stage-scene.s-hole-up .s-hole    { --flip: 0deg; }

/* Burn cards — fly in from bottom-left, stack offset */
.s-burn { --x: -500px; --y: 280px; --rot: -28deg; }
.stage-scene.s-burn1 .s-burn--1 { --x: 0px;  --y: 0px;   --rot: -6deg; --opacity: 1; --z: 1; }
.stage-scene.s-burn2 .s-burn--2 { --x: 16px; --y: -10px; --rot: 5deg;  --opacity: 1; --z: 2; }
.stage-scene.s-burn3 .s-burn--3 { --x: 8px;  --y: -22px; --rot: -2deg; --opacity: 1; --z: 3; }

/* Board cards — flop stacks face-down at slot 1, then spreads */
.s-board { --x: -600px; --y: 260px; --rot: -22deg; --flip: 180deg; }

/* s-flop-stack: 3 flop cards arrive stacked at slot 1 (face-down) */
.stage-scene.s-flop-stack .s-board--1 { --x: 0; --y: -2px; --rot: -3deg; --opacity: 1; --z: 1; }
.stage-scene.s-flop-stack .s-board--2 {
  --x: calc((var(--cw) + var(--cgap)) * -1 + 4px);
  --y: 0; --rot: 2deg; --opacity: 1; --z: 2;
}
.stage-scene.s-flop-stack .s-board--3 {
  --x: calc((var(--cw) + var(--cgap)) * -2 + 8px);
  --y: 2px; --rot: -1deg; --opacity: 1; --z: 3;
}

/* Flop spread — cards slide to their own slots & flip face-up */
.stage-scene.s-flop1 .s-board--1 { --x: 0; --y: 0; --rot: 0deg; --opacity: 1; --flip: 0deg; --z: 1; }
.stage-scene.s-flop2 .s-board--2 { --x: 0; --y: 0; --rot: 0deg; --opacity: 1; --flip: 0deg; --z: 1; }
.stage-scene.s-flop3 .s-board--3 { --x: 0; --y: 0; --rot: 0deg; --opacity: 1; --flip: 0deg; --z: 1; }

/* Turn — slot 4 */
.stage-scene.s-turn-in .s-board--4,
.stage-scene.s-turn-up .s-board--4 { --x: 0; --y: 0; --rot: 0deg; --opacity: 1; --z: 1; }
.stage-scene.s-turn-up .s-board--4 { --flip: 0deg; }

/* River — slot 5 */
.stage-scene.s-river-in .s-board--5,
.stage-scene.s-river-up .s-board--5 { --x: 0; --y: 0; --rot: 0deg; --opacity: 1; --z: 1; }
.stage-scene.s-river-up .s-board--5 { --flip: 0deg; }

/* ── Sections sit above the stage but transparent so it shows through ── */
.section { z-index: 3; }
.hero    { z-index: 3; }
.nav     { z-index: 50; }
.footer  { z-index: 3; }

/* Push body grain below stage so cards stay above texture */
body::after { z-index: 0 !important; }

/* Make sections that have solid card surfaces stay readable —
   keep their backgrounds; the stage is a global ambient layer */

/* ── Responsive: scale cards down on narrower viewports ── */
@media (max-width: 1200px) {
  :root { --cw: 140px; --ch: 196px; --cgap: 12px; --hole-w: 156px; --hole-h: 218px; }
  .pc-rank { font-size: 22px; }
  .pc-suit { font-size: 14px; margin-top: 2px; }
  .pc-big  { font-size: 70px; }
  .cf-back-pattern::after { font-size: 48px; }
  .stage-callout-text { font-size: 18px; }
}
@media (max-width: 900px) {
  .stage-scene { display: none; }
  .hero-bg-suits .bg-suit { font-size: 280px !important; opacity: 0.025 !important; }
  .bg-suit--2, .bg-suit--4 { display: none; }
}

/* Legacy element cleanup (old DOM nodes that may remain elsewhere) */
.hero-cards, .hero-table, .hole-cards, .hole, .chip-stack,
.hero-scene, .burn-pile, .board-row, .board-cards, .board-label-row,
.hand-callout { display: none !important; }

/* scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 3;
}
.scroll-cue-line {
  display: block;
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold) 70%, transparent);
  animation: pulseLine 2.4s ease-in-out infinite;
}
@keyframes pulseLine {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 1; }
}

/* ─────────────── SECTIONS ─────────────── */

.section {
  position: relative;
  padding: clamp(80px, 12vh, 140px) var(--pad-x);
  max-width: var(--maxw);
  margin: 0 auto;
  z-index: 2;
}

.section-head {
  margin-bottom: clamp(48px, 6vh, 72px);
  max-width: 760px;
}
.section-index {
  display: inline-block;
  margin-bottom: 22px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-title {
  margin: 0;
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-2);
}
.section-kicker {
  margin: 22px 0 0;
  font-size: 17px;
  color: var(--fg-3);
  max-width: 600px;
}

/* ─────────────── ABOUT ─────────────── */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.big-quote {
  margin: 0;
  font-family: var(--f-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: var(--fg);
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.about-points { display: grid; gap: 36px; }
.point {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-soft);
}
.point:last-child { border-bottom: 0; padding-bottom: 0; }
.point-num {
  font-family: var(--f-display);
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-2);
  line-height: 1;
  padding-top: 4px;
}
.point-body h3 {
  margin: 0 0 8px;
  font-family: var(--f-body);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: var(--fg);
}
.point-body p {
  margin: 0;
  color: var(--fg-3);
  font-size: 15.5px;
  line-height: 1.65;
}

/* ─────────────── FORMATS ─────────────── */

.format-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.format-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: clamp(36px, 4vw, 56px);
  background:
    radial-gradient(120% 60% at 0% 0%, rgba(201,163,91,0.07), transparent 50%),
    linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 320ms cubic-bezier(.2,.7,.3,1), border-color 320ms, box-shadow 320ms;
}
.format-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 40px 80px -32px rgba(0,0,0,0.6);
}
.format-card--wine {
  background:
    radial-gradient(80% 50% at 0% 0%, rgba(110,31,36,0.25), transparent 55%),
    linear-gradient(160deg, #1a1311 0%, var(--surface) 100%);
}

.fc-stamp {
  position: absolute;
  top: 28px; right: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}
.fc-stamp span:first-child {
  font-family: var(--f-display);
  font-size: 16px;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold-2);
}

.fc-suit {
  position: absolute;
  bottom: -40px; right: -20px;
  font-family: var(--f-display);
  font-size: 320px;
  line-height: 1;
  color: var(--fg);
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}
.format-card--wine .fc-suit { color: var(--wine-2); opacity: 0.08; }

.fc-head { position: relative; z-index: 1; }
.fc-overline {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.fc-title {
  margin: 0 0 10px;
  font-family: var(--f-display);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.fc-tag {
  margin: 0;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--fg-3);
  text-transform: lowercase;
}

.fc-desc {
  position: relative; z-index: 1;
  margin: 0;
  color: var(--fg-2);
  font-size: 16px;
  line-height: 1.65;
  text-wrap: pretty;
}

.fc-quote {
  position: relative; z-index: 1;
  margin: 0;
  padding: 22px 24px;
  font-family: var(--f-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: var(--gold-2);
  line-height: 1.35;
  border-left: 1px solid var(--gold);
  background: rgba(201,163,91,0.04);
  text-wrap: pretty;
}
.format-card--wine .fc-quote { color: #e8c2c2; border-left-color: var(--wine-2); background: rgba(110,31,36,0.12); }

.fc-meta {
  position: relative; z-index: 1;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}
.fc-meta-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 14px;
}
.fc-meta-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fc-meta-list li {
  font-size: 13px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--fg-2);
  background: rgba(255,255,255,0.015);
}

/* ─────────────── WHY ─────────────── */

.why-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-soft);
}
.why-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-soft);
}
.why-item:nth-child(odd)  { padding-right: 48px; border-right: 1px solid var(--line-soft); }
.why-item:nth-child(even) { padding-left: 48px; }
.why-num {
  font-family: var(--f-display);
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-2);
  line-height: 1;
}
.why-item p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-2);
  text-wrap: pretty;
}

/* ─────────────── OCCASIONS ─────────────── */

.occ-grid {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.occ-grid li {
  background: var(--bg);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 24px;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.15;
  letter-spacing: -0.005em;
  transition: background 220ms, color 220ms;
  min-height: 110px;
}
.occ-grid li:hover {
  background: var(--surface);
  color: var(--gold-2);
}
.occ-suit {
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--gold);
}
.occ-grid li:nth-child(2n) .occ-suit { color: var(--wine-2); }

/* ─────────────── FLOW ─────────────── */

.flow-steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 0;
}
.flow-step {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  padding: 40px 0;
  border-top: 1px solid var(--line-soft);
  align-items: start;
}
.flow-step:last-child { border-bottom: 1px solid var(--line-soft); }
.flow-step-k {
  display: flex;
  align-items: center;
  gap: 16px;
}
.flow-k-num {
  font-family: var(--f-display);
  font-size: clamp(54px, 6vw, 80px);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  background: linear-gradient(180deg, var(--gold-2) 0%, var(--bronze) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.flow-k-dot {
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,163,91,0.12);
}
.flow-step-body h3 {
  margin: 6px 0 8px;
  font-family: var(--f-display);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.flow-step-body p {
  margin: 0;
  max-width: 560px;
  color: var(--fg-3);
  font-size: 16px;
  line-height: 1.65;
  text-wrap: pretty;
}

/* ─────────────── HOST ─────────────── */

.host {
  background:
    radial-gradient(60% 80% at 100% 50%, rgba(110,31,36,0.10), transparent 60%);
}
.host-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.host-portrait {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 460px;
}
.hp-frame {
  position: relative;
  width: 100%; height: 100%;
  border: 1px solid var(--line-strong);
  padding: 14px;
  background: var(--surface);
}
.hp-frame::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--line-soft);
  pointer-events: none;
}
.hp-img {
  width: 100%; height: 100%;
  position: relative;
  background: linear-gradient(160deg, #1a1612, #100d0a);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hp-img-stripes {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(201,163,91,0.06) 0px,
    rgba(201,163,91,0.06) 1px,
    transparent 1px,
    transparent 14px
  );
}
.hp-img-label {
  position: relative;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 14px;
  border: 1px solid var(--line);
  background: rgba(10,9,8,0.6);
}
.hp-seal {
  position: absolute;
  bottom: -32px; right: -32px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--gold-2), var(--bronze));
  display: flex; align-items: center; justify-content: center;
  color: #1a1410;
  font-family: var(--f-display);
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0.05em;
  box-shadow: 0 20px 50px -16px rgba(201,163,91,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
  text-transform: lowercase;
  transform: rotate(-8deg);
}
.hp-seal-inner { text-align: center; line-height: 1.1; }
.hp-seal-mid { font-size: 10px; opacity: 0.6; }

.host-copy { max-width: 560px; }
.host-lede {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 300;
  font-style: italic;
  color: var(--fg);
  line-height: 1.3;
  margin: 24px 0 24px;
  text-wrap: pretty;
}
.host-text {
  margin: 0 0 36px;
  color: var(--fg-3);
  font-size: 17px;
  line-height: 1.7;
  text-wrap: pretty;
}
.host-sign {
  display: flex;
  align-items: center;
  gap: 18px;
}
.host-sign-line {
  width: 56px; height: 1px;
  background: var(--gold);
}
.host-sign-text {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
}

/* ─────────────── HOST CREDS ─────────────── */

.host-creds {
  list-style: none;
  margin: 0 0 36px;
  padding: 28px 0 0;
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 32px;
}
.host-creds li {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.hc-k {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 24px;
  font-weight: 400;
  color: var(--gold-2);
  letter-spacing: -0.01em;
  line-height: 1;
  min-width: 88px;
}
.hc-v {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  line-height: 1.4;
}

/* ─────────────── CRAFT ─────────────── */

.craft {
  text-align: center;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(201,163,91,0.06), transparent 55%);
}
.craft-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.015);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--fg-3);
  text-transform: uppercase;
}
.craft-eyebrow-text { margin-left: 6px; }

.craft-title {
  margin: 0 auto 24px;
  max-width: 920px;
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-wrap: balance;
}
.craft-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-2);
}
.craft-sub {
  margin: 0 auto 64px;
  max-width: 700px;
  font-size: 17px;
  color: var(--fg-3);
  line-height: 1.65;
  text-wrap: pretty;
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  text-align: left;
}
.craft-tile {
  background: var(--bg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 220ms;
}
.craft-tile:hover { background: var(--surface); }
.craft-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 4px;
}
.craft-tile h3 {
  margin: 0;
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--fg);
}
.craft-tile p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fg-3);
  text-wrap: pretty;
}

@media (max-width: 1100px) {
  .craft-grid { grid-template-columns: repeat(2, 1fr); }
  .host-creds { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .craft-grid { grid-template-columns: 1fr; }
}

/* ─────────────── INCLUDED ─────────────── */

.inc-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 64px;
}
.inc-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  color: var(--fg);
  letter-spacing: -0.005em;
}
.inc-check {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--f-body);
  font-size: 13px;
  flex-shrink: 0;
}

/* ─────────────── FAQ ─────────────── */

.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  transition: background 200ms;
}
.faq-item[open] { background: rgba(201,163,91,0.025); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 8px;
  cursor: pointer;
  list-style: none;
  font-family: var(--f-display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 400;
  color: var(--fg);
  letter-spacing: -0.005em;
  transition: color 200ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-2); }

.faq-icon {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: var(--gold);
  transition: transform 280ms cubic-bezier(.4,0,.2,1);
}
.faq-icon::before {
  width: 16px; height: 1px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 1px; height: 16px;
  transform: translate(-50%, -50%);
}
.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-a {
  padding: 0 8px 32px 8px;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-3);
  text-wrap: pretty;
}

/* ─────────────── CTA ─────────────── */

.cta {
  padding-bottom: clamp(80px, 12vh, 140px);
}
.cta-card {
  position: relative;
  padding: clamp(48px, 6vw, 88px);
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(201,163,91,0.10), transparent 60%),
    radial-gradient(80% 100% at 50% 100%, rgba(110,31,36,0.15), transparent 65%),
    linear-gradient(160deg, var(--surface-2) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line-strong);
  overflow: hidden;
  isolation: isolate;
}
.cta-spotlight {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 50% 30%, rgba(201,163,91,0.08), transparent 50%);
  pointer-events: none;
}
.cta-corners span {
  position: absolute;
  width: 26px; height: 26px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.cta-corners span:nth-child(1) { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.cta-corners span:nth-child(2) { top: 14px; right: 14px; border-left: 0; border-bottom: 0; }
.cta-corners span:nth-child(3) { bottom: 14px; left: 14px; border-right: 0; border-top: 0; }
.cta-corners span:nth-child(4) { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }

.cta-eyebrow {
  position: relative;
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 24px;
}
.cta-eyebrow .suit { font-size: 14px; }

.cta-title {
  position: relative;
  margin: 0 0 18px;
  text-align: center;
  font-family: var(--f-display);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-wrap: balance;
}
.cta-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-2);
}

.cta-sub {
  position: relative;
  margin: 0 auto 48px;
  max-width: 620px;
  text-align: center;
  font-size: 17px;
  color: var(--fg-3);
  line-height: 1.6;
  text-wrap: pretty;
}

.cta-form {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.field input, .field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--fg);
  font-family: var(--f-body);
  font-size: 15px;
  transition: border-color 200ms, background 200ms;
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(0,0,0,0.4);
}

.fmt-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.fmt-pill {
  padding: 10px 16px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--fg-2);
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 180ms, border-color 180ms, color 180ms;
}
.fmt-pill:hover { border-color: var(--line-strong); color: var(--fg); }
.fmt-pill.is-on {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1410;
}

.btn-submit {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 8px;
}

.cta-fineprint {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.form-success {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--gold);
  background: rgba(201,163,91,0.06);
  color: var(--fg);
  font-size: 14.5px;
  line-height: 1.55;
}
.form-success[hidden] { display: none !important; }
.fs-mark {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: #1a1410;
  display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
  font-weight: 600;
}

/* ─────────────── FOOTER ─────────────── */

.footer {
  position: relative;
  padding: 48px var(--pad-x) 32px;
  border-top: 1px solid var(--line-soft);
  z-index: 2;
}
.footer-row {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 40px;
}
.footer-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.footer-contact {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: var(--fg-2);
}
.footer-contact a { transition: color 180ms; }
.footer-contact a:hover { color: var(--gold-2); }
.footer-sep { color: var(--muted); }
.footer-fine {
  max-width: var(--maxw);
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--muted);
}

/* ─────────────── REVEAL ANIMATIONS ─────────────── */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms cubic-bezier(.2,.7,.3,1), transform 700ms cubic-bezier(.2,.7,.3,1);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ─────────────── RESPONSIVE ─────────────── */

@media (max-width: 1100px) {
  .nav-links { display: none; }
  .hero-cards { display: none; }
  .hero-title-row--alt { padding-left: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .host-grid { grid-template-columns: 1fr; }
  .host-portrait { max-width: 380px; margin: 0 auto; }
  .format-cards { grid-template-columns: 1fr; }
  .occ-grid { grid-template-columns: repeat(2, 1fr); }
  .occ-grid li { font-size: 18px; min-height: 90px; padding: 22px 18px; }
  .flow-step { grid-template-columns: 100px 1fr; gap: 24px; }
  .inc-list { grid-template-columns: 1fr; gap: 0; }
  .why-list { grid-template-columns: 1fr; }
  .why-item { padding: 24px 0 !important; border-right: 0 !important; padding-left: 0 !important; padding-right: 0 !important; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero { min-height: auto; }
  .hero-title-row--alt { padding-left: 24px; }
  .hero-meta { gap: 4px 0; }
  .meta-cell { flex-basis: 50%; padding: 12px 16px 12px 0 !important; min-width: 0; }
  .meta-sep { display: none; }
  .nav { padding: 14px var(--pad-x); }
  .nav-cta span:first-child { display: inline; }
  .scroll-cue { display: none; }
  .occ-grid { grid-template-columns: 1fr; }
  .cta-form { grid-template-columns: 1fr; }
  .flow-step { grid-template-columns: 1fr; gap: 6px; }
  .footer-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-contact { margin-left: 0; }
  .btn { padding: 14px 22px; font-size: 13px; }
}
