/* ============================================================
   GSP Public Site - Concept V2 "The Honest Path"
   Award-page treatment: navy/gold, Barlow Condensed display,
   Instrument Serif italic accents, GSAP scroll story, WebGL globe.
   ============================================================ */

:root {
  --navy-950: #060D1A;
  --navy-900: #0A1628;
  --navy-800: #0F2038;
  --navy-700: #16294A;
  --ink: #0C1524;
  --mut: #5C6572;
  --mut-l: #93A0B4;      /* muted on dark */
  --gold: #F9A825;
  --gold-deep: #B97B12;
  --gold-soft: #FDF3DF;
  --paper: #F6F3EC;
  --paper-2: #EFEBE0;
  --card: #FFFFFF;
  --line-d: rgba(255,255,255,.12);
  --line-l: #E4DFD3;
  --max: 1200px;
  --r: 14px;
  --r-lg: 22px;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --ease: cubic-bezier(.22,.9,.26,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font-body);
  background: var(--navy-950);
  color: #EAF0F8;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: var(--navy-950); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.wrap-n { max-width: 880px; margin: 0 auto; padding: 0 24px; }

/* Reveal primitives - hidden only when JS is present */
html.js .rv { opacity: 0; transform: translateY(28px); }
html.js .rv-hero { opacity: 0; transform: translateY(18px); }
html.js.motion-off .rv, html.js.motion-off .rv-hero { opacity: 1; transform: none; }

/* ── Type ─────────────────────────────────────────────────── */
.kicker {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold);
}
.serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; text-transform: none; letter-spacing: 0; }
.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .96;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin: 14px 0 18px;
}
.h2 .serif { color: var(--gold); font-size: .96em; }
.lead { font-size: clamp(16px, 1.6vw, 19px); line-height: 1.7; max-width: 640px; }

.sec-head { padding: 0 0 42px; }
.sec-head .lead { color: inherit; opacity: .82; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 15px; line-height: 1;
  padding: 15px 26px; border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  will-change: transform;
  white-space: nowrap;
}
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-sm { padding: 11px 20px; font-size: 14px; }
.btn-gold { background: var(--gold); color: var(--navy-950); }
.btn-gold:hover { box-shadow: 0 0 0 4px rgba(249,168,37,.22), 0 14px 34px -12px rgba(249,168,37,.55); transform: translateY(-1px); }
.btn-navy { background: var(--navy-900); color: #fff; }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-1px); }
.btn-ghost { border-color: rgba(255,255,255,.35); color: #fff; background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost-dark { border-color: rgba(10,22,40,.3); color: var(--navy-900); background: transparent; }
.btn-ghost-dark:hover { border-color: var(--gold-deep); color: var(--gold-deep); }

.alt-link { display: inline-block; margin-top: 12px; font-size: 14px; font-weight: 500; color: inherit; opacity: .65; border-bottom: 1px solid currentColor; padding-bottom: 1px; transition: opacity .2s; }
.alt-link:hover { opacity: 1; }

/* ── Loader ───────────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0; z-index: 400;
  background: var(--navy-950);
  display: flex; align-items: center; justify-content: center;
}
html:not(.js) .loader, .loader.done { display: none; }
.loader-in { text-align: center; }
.loader-logo { width: 64px; margin: 0 auto 16px; opacity: 0; }
.loader-word { font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: .34em; color: #fff; opacity: 0; }
.loader-line { width: 180px; height: 2px; background: rgba(255,255,255,.12); margin: 18px auto 0; overflow: hidden; border-radius: 2px; }
.loader-line span { display: block; height: 100%; width: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; }

/* ── Grain / cursor / progress ────────────────────────────── */
/* Film-grain overlay removed: a position:fixed + mix-blend-mode layer renders
   as a dark wash over scrolling content on iOS Safari. Not worth the artifact. */
.grain { display: none !important; }
.cursor-orb {
  position: fixed; z-index: 260; top: 0; left: 0;
  width: 26px; height: 26px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,168,37,.85), rgba(249,168,37,0) 70%);
  pointer-events: none; mix-blend-mode: screen;
  transform: translate(-100px, -100px);
  opacity: 0; transition: opacity .3s;
}
@media (hover: none) { .cursor-orb { display: none; } }
.progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 320; background: transparent; }
.progress span { display: block; height: 100%; width: 100%; background: linear-gradient(90deg, var(--gold-deep), var(--gold)); transform: scaleX(0); transform-origin: left; }

/* ── Nav ──────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  transition: background .35s, box-shadow .35s, backdrop-filter .35s;
}
.nav.solid { background: rgba(6,13,26,.82); backdrop-filter: blur(14px); box-shadow: 0 1px 0 rgba(255,255,255,.07); }
.nav-in { max-width: 1320px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; gap: 30px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { width: 40px; height: 40px; object-fit: contain; }
.nav-logo span { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: .08em; line-height: 1.02; color: #fff; display: flex; flex-direction: column; }
.nav-logo span em { font-style: normal; color: var(--gold); }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.78); transition: color .2s; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 1.5px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease); }
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-cta .signin { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.78); }
.nav-cta .signin:hover { color: #fff; }
.nav-burger { display: none; background: none; border: 0; width: 40px; height: 40px; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 7px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: #fff; transition: transform .3s, opacity .3s; }
.nav-burger[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
.mnav { display: none; }
@media (max-width: 940px) {
  .nav-links, .nav-cta .signin { display: none; }
  .nav-cta { margin-left: auto; }
  .nav-burger { display: flex; }
  .mnav { display: flex; flex-direction: column; gap: 4px; padding: 12px 24px 22px; background: rgba(6,13,26,.96); backdrop-filter: blur(14px); transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; }
  .mnav.open { opacity: 1; transform: none; pointer-events: auto; }
  .mnav a { padding: 12px 0; font-size: 17px; font-weight: 500; color: rgba(255,255,255,.85); border-bottom: 1px solid rgba(255,255,255,.07); }
  .mnav a.btn { border: 0; margin-top: 14px; justify-content: center; }
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  background: radial-gradient(120% 90% at 70% 10%, var(--navy-800) 0%, var(--navy-950) 62%);
  padding: 120px 0 0;
}
.hero-glow { position: absolute; right: -12%; top: 4%; width: 62vw; height: 62vw; max-width: 980px; max-height: 980px; background: radial-gradient(circle, rgba(249,168,37,.14), rgba(249,168,37,0) 62%); pointer-events: none; }
.hero-globe { position: absolute; right: -16%; top: 50%; transform: translateY(-50%); width: min(66vw, 980px); aspect-ratio: 1; pointer-events: none; }
.hero-globe canvas { width: 100%; height: 100%; display: block; }
.hero-in { position: relative; z-index: 2; max-width: 1320px; margin: 0 auto; padding: 0 24px; width: 100%; }
.hero-h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(46px, 8.2vw, 112px);
  line-height: .94; text-transform: uppercase; letter-spacing: .005em;
  margin: 18px 0 26px; color: #fff;
}
.hero-h1 .line { display: block; overflow: hidden; }
.hero-h1 .line-in { display: block; }
.hero-h1 .serif { color: var(--gold); font-size: .97em; }
.hero-h1 .dot { color: var(--gold); }
.hero-lead { max-width: 560px; font-size: clamp(16px, 1.7vw, 19px); color: var(--mut-l); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin: 34px 0 22px; }
.hero-intl { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--mut-l); border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 3px; transition: color .2s, border-color .2s; }
.hero-intl:hover { color: var(--gold); border-color: var(--gold); }
.hero-intl svg { width: 15px; height: 15px; }
.hero-globenote { position: absolute; right: 28px; bottom: 96px; z-index: 2; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.hero-scrollcue { position: absolute; left: 26px; bottom: 96px; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.45); writing-mode: vertical-rl; }
.hero-scrollcue span { display: block; width: 1.5px; height: 44px; background: linear-gradient(var(--gold), transparent); animation: cue 2s ease-in-out infinite; }
@keyframes cue { 0%,100% { transform: scaleY(.4); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

/* Stat marquee */
.mq { position: relative; z-index: 2; margin-top: auto; border-top: 1px solid var(--line-d); border-bottom: 1px solid var(--line-d); padding: 18px 0; overflow: hidden; background: rgba(6,13,26,.5); backdrop-filter: blur(6px); }
.mq-track { display: flex; align-items: center; gap: 48px; width: max-content; animation: mq 36s linear infinite; }
.mq-track span { font-size: 14px; letter-spacing: .06em; text-transform: uppercase; color: var(--mut-l); white-space: nowrap; }
.mq-track b { color: var(--gold); font-weight: 700; margin-right: 6px; }
.mq-track i { width: 5px; height: 5px; border-radius: 50%; background: var(--gold-deep); flex: none; }
@keyframes mq { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .mq-track { animation: none; } .hero-scrollcue span { animation: none; } }

@media (max-width: 900px) {
  .hero { padding-top: 96px; }
  .hero-globe { right: 50%; transform: translate(50%,-58%); width: 130vw; opacity: .4; }
  .hero-globenote, .hero-scrollcue { display: none; }
}

/* ── Manifesto ───────────────────────────────────────────── */
.manifesto { background: var(--navy-950); padding: clamp(110px, 16vh, 190px) 0; }
.mfst {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(28px, 4.2vw, 52px); line-height: 1.18;
  text-transform: none; color: #fff;
}
.mfst .w { opacity: .13; display: inline-block; }
html.motion-off .mfst .w { opacity: 1; }
.mfst-tag { margin-top: 34px; font-size: 13px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }

/* ── The Path ─────────────────────────────────────────────── */
.path { background: var(--paper); color: var(--ink); padding: clamp(90px, 12vh, 150px) 0; }
.path .kicker { color: var(--gold-deep); }
.path .lead { color: var(--mut); }
.path .h2 .serif { color: var(--gold-deep); }
.path-body { position: relative; display: flex; gap: 0; padding-left: 30px; }
.path-line { position: absolute; left: 0; top: 0; width: 60px; height: 100%; color: var(--gold); }
#pathTrace { stroke-dasharray: 1200; stroke-dashoffset: 1200; }
html.motion-off #pathTrace { stroke-dashoffset: 0; }
.stations { list-style: none; flex: 1; display: flex; flex-direction: column; gap: clamp(48px, 8vh, 96px); padding-left: 66px; }
.station { position: relative; max-width: 640px; }
.st-num {
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  color: var(--navy-950); background: var(--gold);
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px var(--paper), 0 0 0 9.5px rgba(185,123,18,.35);
  position: absolute; left: -94px; top: -2px;
}
.station h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 3vw, 36px); text-transform: uppercase; line-height: 1; color: var(--navy-900); margin-bottom: 10px; padding-top: 12px; }
.station p { color: var(--mut); font-size: 16px; max-width: 520px; }
@media (max-width: 700px) {
  .path-body { padding-left: 22px; }
  .path-line { left: -8px; }
  .stations { padding-left: 46px; }
  .st-num { width: 44px; height: 44px; font-size: 16px; left: -68px; top: 0; }
  .station h3 { padding-top: 6px; }
}

/* ── Programs ─────────────────────────────────────────────── */
.programs { background: var(--paper-2); color: var(--ink); padding: clamp(90px, 12vh, 150px) 0; }
.programs .kicker { color: var(--gold-deep); }
.programs .lead { color: var(--mut); }
.programs .h2 .serif { color: var(--gold-deep); }
.offers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.offer {
  position: relative; background: var(--card); border-radius: var(--r-lg);
  padding: 34px 30px 30px; border: 1px solid var(--line-l);
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.offer:hover { transform: translateY(-6px); border-color: rgba(249,168,37,.55); box-shadow: 0 30px 60px -30px rgba(10,22,40,.35); }
.offer-feat { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.offer-feat .desc, .offer-feat ul { color: var(--mut-l); }
.flag { position: absolute; top: -13px; left: 26px; background: var(--gold); color: var(--navy-950); font-size: 12px; font-weight: 700; letter-spacing: .04em; padding: 5px 13px; border-radius: 999px; }
.tag { display: inline-block; align-self: flex-start; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); background: var(--gold-soft); padding: 5px 12px; border-radius: 999px; margin-bottom: 18px; }
.offer-feat .tag { background: rgba(249,168,37,.14); color: var(--gold); }
.offer h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(34px, 3.4vw, 46px); line-height: .95; text-transform: uppercase; margin-bottom: 14px; }
.offer .desc { font-size: 15px; color: var(--mut); margin-bottom: 18px; }
.offer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; color: var(--mut); font-size: 14.5px; }
.offer ul li { padding-left: 26px; position: relative; }
.offer ul li::before { content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 8px; border-left: 2.5px solid var(--gold); border-bottom: 2.5px solid var(--gold); transform: rotate(-45deg); }
.offer-cta { margin-top: auto; display: flex; flex-direction: column; align-items: flex-start; }
@media (max-width: 940px) { .offers { grid-template-columns: 1fr; max-width: 560px; } .offer { padding: 30px 24px 26px; } }

/* ── Players gallery ──────────────────────────────────────── */
.gallery { background: var(--navy-950); position: relative; }
.gallery-pin { padding: clamp(90px, 12vh, 140px) 0 70px; overflow: hidden; }
.gallery-head { max-width: 1320px; margin: 0 auto 46px; padding: 0 24px; }
.gallery-track { display: flex; gap: 26px; padding: 0 24px; width: max-content; }
.gcard { position: relative; width: min(74vw, 360px); flex: none; border-radius: var(--r-lg); overflow: hidden; background: var(--navy-800); }
.gcard img { width: 100%; height: 470px; object-fit: cover; object-position: top center; transition: transform .6s var(--ease); }
.gcard:hover img { transform: scale(1.045); }
.gcard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 46%, rgba(6,13,26,.92)); pointer-events: none; }
.gcard figcaption { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 2; display: flex; flex-direction: column; gap: 3px; }
.gcard figcaption b { font-family: var(--font-display); font-weight: 700; font-size: 30px; text-transform: uppercase; line-height: 1; color: #fff; }
.gcard figcaption span { font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.gv { position: absolute; top: 16px; right: 16px; z-index: 2; font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(249,168,37,.55); background: rgba(6,13,26,.55); backdrop-filter: blur(4px); padding: 5px 10px; border-radius: 999px; }
.gcard-next { display: flex; align-items: center; justify-content: center; text-align: center; height: 470px; border: 1.5px dashed rgba(249,168,37,.45); background: transparent; }
.gcard-next::after { display: none; }
.gnext-kicker { display: block; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--mut-l); margin-bottom: 12px; }
.gcard-next p { font-family: var(--font-display); font-weight: 700; font-size: 40px; line-height: .95; text-transform: uppercase; color: #fff; margin-bottom: 24px; }
.gcard-next .serif { color: var(--gold); }
.gallery-note { max-width: 1320px; margin: 40px auto 0; padding: 0 24px; font-size: 13.5px; color: var(--mut-l); }
.gallery-note a { color: var(--gold); border-bottom: 1px solid currentColor; }
@media (max-width: 899px) {
  .gallery-track { width: auto; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; -webkit-overflow-scrolling: touch; }
  .gcard { scroll-snap-align: center; }
}

/* ── Staff ────────────────────────────────────────────────── */
.staff-sec { background: var(--paper); color: var(--ink); padding: clamp(90px, 12vh, 150px) 0; }
.staff-sec .kicker { color: var(--gold-deep); }
.staff-sec .lead { color: var(--mut); }
.staff-sec .h2 .serif { color: var(--gold-deep); }
.staff { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 20px; margin-bottom: 26px; }
.scard { background: var(--card); border: 1px solid var(--line-l); border-radius: var(--r-lg); padding: 26px; display: flex; gap: 18px; align-items: flex-start; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.scard:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -26px rgba(10,22,40,.3); }
.scard img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; object-position: top; flex: none; border: 3px solid var(--gold); }
.scard b { font-family: var(--font-display); font-size: 24px; font-weight: 700; text-transform: uppercase; line-height: 1; display: block; color: var(--navy-900); }
.scard .role { display: block; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); margin: 5px 0 8px; }
.scard p { font-size: 14.5px; color: var(--mut); }
.sicon { width: 60px; height: 60px; border-radius: 50%; background: var(--gold-soft); color: var(--gold-deep); display: flex; align-items: center; justify-content: center; flex: none; }
.sicon svg { width: 28px; height: 28px; }
.staff-bar { display: flex; align-items: center; justify-content: space-between; gap: 26px; background: var(--card); border: 1px solid var(--line-l); border-radius: var(--r-lg); padding: 24px 28px; }
.staff-bar p { font-size: 15px; color: var(--mut); max-width: 640px; }
@media (max-width: 940px) { .staff { grid-template-columns: 1fr; } .staff-bar { flex-direction: column; align-items: flex-start; } }

/* ── Drew ─────────────────────────────────────────────────── */
.drew { background: var(--navy-900); position: relative; overflow: hidden; padding: clamp(90px, 12vh, 160px) 0; }
.drew::before { content: ""; position: absolute; left: -10%; bottom: -30%; width: 55vw; height: 55vw; background: radial-gradient(circle, rgba(249,168,37,.1), transparent 65%); pointer-events: none; }
.drew-in { max-width: var(--max); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 4fr 8fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.drew-photo { position: relative; }
.drew-photo img { border-radius: var(--r-lg); width: 100%; height: min(52vh, 470px); object-fit: cover; object-position: top; }
.drew-photo::after { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 2px solid rgba(249,168,37,.4); border-radius: var(--r-lg); pointer-events: none; }
.drew-photo figcaption { position: absolute; left: 18px; bottom: 16px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.75); background: rgba(6,13,26,.6); backdrop-filter: blur(6px); padding: 7px 12px; border-radius: 999px; }
.drew-copy .lead { color: var(--mut-l); font-size: 16.5px; }
.drew-hook { color: var(--mut-l); font-size: 16.5px; line-height: 1.7; max-width: 620px; }

/* Click-to-expand founder detail — minimal by default, more on request */
.drew-toggle {
  display: inline-flex; align-items: center; gap: 11px;
  margin: 22px 0 4px;
  background: transparent; border: 1.5px solid rgba(255,255,255,.24);
  color: #fff; font: inherit; font-weight: 600; font-size: 14px;
  padding: 12px 22px; border-radius: 999px; cursor: pointer;
  transition: border-color .25s, color .25s;
}
.drew-toggle:hover { border-color: var(--gold); color: var(--gold); }
.drew-toggle i { position: relative; width: 12px; height: 12px; flex: none; }
.drew-toggle i::before, .drew-toggle i::after { content: ""; position: absolute; background: currentColor; transition: transform .3s var(--ease); }
.drew-toggle i::before { left: 0; top: 5px; width: 12px; height: 2px; }
.drew-toggle i::after { left: 5px; top: 0; width: 2px; height: 12px; }
.drew-toggle[aria-expanded="true"] i::after { transform: scaleY(0); }
.drew-more { overflow: hidden; }
html.js .drew-more { max-height: 0; opacity: 0; transition: max-height .5s var(--ease), opacity .4s ease; }
html.js .drew-more.open { opacity: 1; }
.drew-more-in { padding-top: 16px; }
.drew-creds { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 0; }
.cred { font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(249,168,37,.4); padding: 7px 14px; border-radius: 999px; }
.stance { font-family: var(--font-serif); font-style: italic; font-size: clamp(19px, 2vw, 24px); line-height: 1.5; color: #fff; border-left: 3px solid var(--gold); padding-left: 20px; margin-bottom: 30px; }
@media (max-width: 940px) { .drew-in { grid-template-columns: 1fr; } .drew-photo img { height: 420px; } }

/* ── Sign-up sheet ───────────────────────────────────────── */
.signup { background: var(--paper); color: var(--ink); padding: clamp(90px, 12vh, 150px) 0; }
.signup .kicker { color: var(--gold-deep); }
.signup .h2 .serif { color: var(--gold-deep); }
.signup .lead { color: var(--mut); }
.signup-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.signup-points { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.signup-points li { padding-left: 30px; position: relative; font-size: 15.5px; color: var(--mut); font-weight: 500; }
.signup-points li::before { content: ""; position: absolute; left: 0; top: 7px; width: 15px; height: 8px; border-left: 2.5px solid var(--gold-deep); border-bottom: 2.5px solid var(--gold-deep); transform: rotate(-45deg); }
.sheet-card { background: var(--card); border: 1px solid var(--line-l); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 40px); box-shadow: 0 30px 80px -40px rgba(10,22,40,.25); }
.hp { position: absolute; left: -9999px; }
.sheet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.sheet label, .sheet-notes { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy-900); }
.sheet label input, .sheet label select, .sheet label textarea { margin-top: 7px; }
.opt { color: var(--mut); font-weight: 400; }
.sheet input, .sheet select, .sheet textarea {
  font: inherit; font-size: 15px; color: var(--ink);
  border: 1.5px solid var(--line-l); border-radius: 10px;
  padding: 12px 14px; background: #FDFCF9; width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.sheet input:focus, .sheet select:focus, .sheet textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(249,168,37,.18); }
.sheet-wants { border: 0; margin: 20px 0 14px; }
.sheet-wants legend { font-size: 13.5px; font-weight: 600; color: var(--navy-900); margin-bottom: 10px; }
.sheet-wants { display: block; }
.chk { display: inline-flex !important; margin: 0 8px 8px 0; }
.chk input { position: absolute; opacity: 0; width: 0; height: 0; }
.chk span { display: inline-block; font-size: 14px; font-weight: 500; color: var(--mut); border: 1.5px solid var(--line-l); border-radius: 999px; padding: 9px 16px; cursor: pointer; transition: all .2s; }
.chk input:checked + span { background: var(--gold); border-color: var(--gold); color: var(--navy-950); font-weight: 600; }
.chk input:focus-visible + span { box-shadow: 0 0 0 3px rgba(249,168,37,.3); }
.sheet-notes { margin-bottom: 20px; }
.sheet-submit { width: 100%; }
.sheet-fine { margin-top: 12px; font-size: 13px; color: var(--mut); text-align: center; }
.sheet-err { margin-top: 12px; font-size: 13.5px; color: #B3261E; text-align: center; }
.sheet-err a { text-decoration: underline; }
.sheet-done { text-align: center; padding: 30px 10px; }
.sheet-done h3 { font-family: var(--font-display); font-size: 40px; font-weight: 700; text-transform: uppercase; color: var(--navy-900); margin-bottom: 10px; }
.sheet-done p { color: var(--mut); margin-bottom: 22px; }
@media (max-width: 940px) { .signup-grid { grid-template-columns: 1fr; } .sheet-grid { grid-template-columns: 1fr; } }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-sec { background: var(--paper-2); color: var(--ink); padding: clamp(90px, 12vh, 150px) 0; }
.faq-sec .kicker { color: var(--gold-deep); }
.faq-sec .h2 .serif { color: var(--gold-deep); }
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details { background: var(--card); border: 1px solid var(--line-l); border-radius: var(--r); overflow: hidden; transition: border-color .25s; }
.faq details[open] { border-color: rgba(185,123,18,.5); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 24px; font-family: var(--font-display); font-size: 22px; font-weight: 600; text-transform: uppercase; color: var(--navy-900); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { position: relative; width: 18px; height: 18px; flex: none; }
.faq summary i::before, .faq summary i::after { content: ""; position: absolute; background: var(--gold-deep); transition: transform .3s var(--ease); }
.faq summary i::before { left: 0; top: 8px; width: 18px; height: 2px; }
.faq summary i::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq details[open] summary i::after { transform: rotate(90deg) scaleY(0); }
.faq details p { padding: 0 24px 22px; color: var(--mut); font-size: 15.5px; max-width: 720px; animation: faqIn .35s var(--ease); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ── Final CTA ───────────────────────────────────────────── */
.cta-end { position: relative; background: var(--navy-950); padding: clamp(110px, 16vh, 200px) 0; overflow: hidden; text-align: center; }
.cta-glow { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 90vw; height: 90vw; max-width: 1100px; max-height: 1100px; background: radial-gradient(circle, rgba(249,168,37,.13), transparent 60%); pointer-events: none; }
.cta-end-in { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; padding: 0 24px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.cta-h { font-family: var(--font-display); font-weight: 700; font-size: clamp(44px, 7vw, 92px); line-height: .95; text-transform: uppercase; color: #fff; margin: 12px 0 16px; }
.cta-h .serif { color: var(--gold); }
.cta-end .lead { color: var(--mut-l); }
.cta-end .row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 28px; }

/* ── Footer ──────────────────────────────────────────────── */
.foot { background: #040910; border-top: 1px solid var(--line-d); padding: 64px 0 40px; }
.foot-in { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.foot h4 { font-family: var(--font-display); font-size: 19px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #fff; margin-bottom: 14px; }
.foot .blurb { font-size: 14px; color: var(--mut-l); max-width: 380px; }
.foot-grid a { display: block; font-size: 14px; color: var(--mut-l); padding: 5px 0; transition: color .2s; }
.foot-grid a:hover { color: var(--gold); }
.foot-base { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid var(--line-d); padding-top: 26px; font-size: 13px; color: var(--mut-l); }
.foot-sig { font-family: var(--font-serif); font-style: italic; color: var(--gold); }
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr; gap: 28px; } }
