:root {
  --black: #0a0a0a;
  --coal: #141414;
  --ink: #1c1c1c;
  --gold: #c5a26e;
  --gold-deep: #a9885a;
  --gold-soft: rgba(197, 162, 110, 0.35);
  --blue: #37b5fe;
  --white: #ffffff;
  --paper: #faf8f5;
  --line: #e7e0d5;
  --muted: #6b665e;
  --smoke: #b9b3a8;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4, .eyebrow, .btn, nav a.navlink, .tick span, .count b, .cd-box b {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
}
img { max-width: 100%; display: block; }
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ---------- Reveal-on-scroll ----------
   Hiding is scoped to .js (set by an inline head script) so content
   stays visible when JavaScript is disabled. */
.js .rv { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.9,.35,1); }
.js .rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .08s; } .rv-d2 { transition-delay: .16s; }
.rv-d3 { transition-delay: .24s; } .rv-d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .js .rv { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Nav ---------- */
/* Event announcement banner */
.event-banner {
  display: flex; align-items: center; justify-content: center;
  gap: 6px 14px; flex-wrap: wrap; text-align: center;
  background: linear-gradient(90deg, #2496d8, var(--blue));
  color: #07222f; padding: 10px 16px;
  text-decoration: none; font-weight: 600; font-size: .95rem; line-height: 1.35;
}
.event-banner .eb-tag {
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase;
  letter-spacing: .1em; font-weight: 700; font-size: 1.1rem;
}
.event-banner .eb-cta { text-decoration: underline; font-weight: 700; white-space: nowrap; }
.event-banner:hover .eb-cta { text-decoration: none; }
@media (max-width: 700px) {
  .event-banner { font-size: .88rem; padding: 9px 12px; }
  .event-banner .eb-detail { display: none; }
}

header.site {
  position: sticky; top: 0; z-index: 90;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--gold);
}
#progress {
  position: absolute; left: 0; bottom: -3px; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  z-index: 2; transition: width .1s linear;
}
.navbar { display: flex; align-items: center; gap: 16px; padding: 12px 0; position: relative; }
.navbar .brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.navbar .brand img { height: 46px; width: auto; transition: transform .3s ease; }
.navbar .brand:hover img { transform: rotate(-4deg) scale(1.05); }
.navbar .brand span {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.25rem;
  color: var(--white); text-transform: uppercase; letter-spacing: .06em;
  white-space: nowrap;
}
@media (max-width: 440px) {
  .navbar .brand img { height: 38px; }
  .navbar .brand span { font-size: 1.05rem; }
}
.navbar .brand span em { color: var(--gold); font-style: normal; }
nav.main { margin-left: auto; display: flex; align-items: center; gap: 18px; }
nav.main a.navlink {
  color: var(--white); text-decoration: none; font-weight: 600; font-size: 1.02rem;
  opacity: .85; position: relative; padding: 4px 0;
}
nav.main a.navlink::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0%;
  background: var(--gold); transition: width .25s ease;
}
nav.main a.navlink:hover::after, nav.main a.navlink.active::after { width: 100%; }
nav.main a.navlink:hover, nav.main a.navlink.active { opacity: 1; color: var(--gold); }
.btn {
  display: inline-block; text-decoration: none; font-weight: 700; font-size: 1.05rem;
  padding: 11px 24px; border-radius: 4px; border: 2px solid var(--gold);
  color: var(--black); background: var(--gold);
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  position: relative; overflow: hidden; cursor: pointer;
}
.btn:hover { background: var(--gold-deep); border-color: var(--gold-deep); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.25); }
.btn.ghost { background: transparent; color: var(--gold); }
.btn.ghost:hover { background: var(--gold); color: var(--black); }
.hamburger {
  display: none; margin-left: auto; background: none; border: 0; cursor: pointer; padding: 8px;
}
.hamburger span { display: block; width: 26px; height: 3px; background: var(--gold); margin: 5px 0; border-radius: 2px; transition: all .3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
@media (max-width: 940px) {
  .hamburger { display: block; }
  nav.main {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--black); border-bottom: 3px solid var(--gold);
    flex-direction: column; align-items: flex-start; gap: 0; padding: 0 24px;
    max-height: 0; overflow: hidden; transition: max-height .35s ease;
  }
  nav.main.open { max-height: 520px; padding-bottom: 18px; }
  nav.main a.navlink { padding: 12px 0; font-size: 1.2rem; }
  nav.main .btn { margin-top: 8px; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--black); color: var(--white);
  padding: 84px 0 56px; position: relative; overflow: hidden;
}
#field { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .75; }
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 900px 420px at 78% -10%, rgba(197,162,110,.18), transparent 60%),
    radial-gradient(ellipse 700px 380px at 10% 110%, rgba(197,162,110,.10), transparent 60%);
}
.hero .inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.hero .eyebrow { color: var(--gold); font-weight: 600; font-size: 1.05rem; letter-spacing: .18em; margin-bottom: 22px; }
.hero .lockup-hero img {
  width: min(320px, 64vw); margin: 0 auto 30px;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.55));
  animation: floaty 6s ease-in-out infinite;
}
.hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.3rem); font-weight: 700; line-height: 1.05; margin-bottom: 18px; }
.hero h1 .goldline { color: var(--gold); }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line i {
  display: block; font-style: normal;
  transform: translateY(110%); animation: rise .8s cubic-bezier(.22,.9,.3,1) forwards;
}
.hero h1 .line:nth-child(2) i { animation-delay: .12s; }
.hero h1 .line:nth-child(3) i { animation-delay: .24s; }
@keyframes rise { to { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .hero h1 .line i { transform: none; animation: none; } }
.hero p.lede { font-size: 1.12rem; color: #d8d3ca; max-width: 34rem; margin: 0 auto 28px; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
@keyframes floaty { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-12px) } }
@media (prefers-reduced-motion: reduce) { .hero .lockup-hero img { animation: none; } }

/* Countdown */
.countdown { position: relative; z-index: 2; margin-top: 44px; text-align: center; }
.countdown .cd-label {
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .2em;
  color: var(--gold); font-size: .95rem; margin-bottom: 12px; font-weight: 600;
}
.cd-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.cd-box {
  background: rgba(255,255,255,.05); border: 1px solid var(--gold-soft); border-radius: 6px;
  padding: 12px 0 8px; text-align: center; min-width: 86px; flex: 0 0 auto;
}
.cd-box b { display: block; font-size: 2.3rem; font-weight: 700; color: var(--white); line-height: 1; font-variant-numeric: tabular-nums; }
.cd-box span { font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; color: var(--smoke); }
@media (max-width: 440px) {
  .cd-row { gap: 8px; flex-wrap: nowrap; }
  .cd-box { min-width: 0; flex: 1 1 0; }
  .cd-box b { font-size: 1.8rem; }
  .cd-box span { letter-spacing: .08em; font-size: .64rem; }
}
@media (max-width: 350px) {
  .cd-row { gap: 6px; }
  .cd-box b { font-size: 1.5rem; }
  .cd-box span { letter-spacing: 0; font-size: .56rem; }
}

/* ---------- Ticker ---------- */
.tick {
  background: var(--gold); color: var(--black); overflow: hidden; white-space: nowrap;
  border-top: 2px solid var(--black); border-bottom: 2px solid var(--black);
  position: relative; z-index: 3;
}
.tick .track { display: inline-block; padding: 9px 0; animation: tickmove 28s linear infinite; }
.tick:hover .track { animation-play-state: paused; }
.tick span { font-weight: 700; font-size: 1rem; margin: 0 22px; letter-spacing: .08em; }
.tick span::after { content: "◆"; margin-left: 44px; font-size: .7rem; vertical-align: 2px; }
@keyframes tickmove { from { transform: translateX(0) } to { transform: translateX(-50%) } }
@media (prefers-reduced-motion: reduce) { .tick .track { animation: none; } }

/* ---------- Stats band ---------- */
.stats { background: var(--coal); color: var(--white); padding: 46px 0; }
.stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.count { text-align: center; padding: 10px 6px; border-left: 1px solid var(--gold-soft); }
.count:first-child { border-left: 0; }
.count b { display: block; font-size: 2.7rem; font-weight: 700; color: var(--gold); line-height: 1.05; font-variant-numeric: tabular-nums; }
.count small { font-size: .85rem; color: var(--smoke); text-transform: uppercase; letter-spacing: .12em; }
@media (max-width: 760px) {
  .stats .grid { grid-template-columns: repeat(2, 1fr); }
  .count:nth-child(3) { border-left: 0; }
}

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head .eyebrow { color: var(--blue); font-weight: 600; letter-spacing: .18em; font-size: .95rem; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); font-weight: 700; line-height: 1.08; margin: 6px 0 12px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- Programs ---------- */
.prog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
/* Training academies: full-width rows instead of a grid with an empty slot */
#training .prog-grid { grid-template-columns: 1fr; }
#training .prog .desc, #training .prog .bio-more { max-width: 62rem; }
.prog {
  background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--gold);
  border-radius: 6px; padding: 28px 26px 24px; display: flex; flex-direction: column;
  box-shadow: 0 1px 2px rgba(10,10,10,.04);
  transition: transform .25s ease, box-shadow .25s ease;
  transform-style: preserve-3d; will-change: transform;
}
.prog:hover { box-shadow: 0 18px 40px rgba(10,10,10,.13); }
.prog .tag {
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .14em;
  font-size: .85rem; font-weight: 600; color: var(--blue); margin-bottom: 6px;
}
.prog h3 { font-size: 1.55rem; font-weight: 700; margin-bottom: 10px; }
.prog p.desc { color: var(--muted); font-size: .98rem; margin-bottom: 16px; }
.prog ul { list-style: none; margin: 0 0 18px; padding: 0; }
.prog ul li { padding: 7px 0 7px 26px; position: relative; font-size: .95rem; border-top: 1px dashed var(--line); }
.prog ul li:first-child { border-top: 0; }
.prog ul li::before {
  content: ""; position: absolute; left: 2px; top: 14px; width: 12px; height: 12px;
  background: var(--gold); clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.prog ul li a { color: var(--gold-deep); font-weight: 600; text-decoration-color: var(--gold); }
.prog ul li a:hover { color: var(--blue); }
.prog .price { margin-top: auto; padding-top: 14px; border-top: 2px solid var(--black); display: flex; align-items: baseline; gap: 8px; }
.prog .price strong { font-family: 'Barlow Condensed', sans-serif; font-size: 1.7rem; font-weight: 700; }
.prog .price span { color: var(--muted); font-size: .9rem; }
.prog .tba-note { margin-top: 8px; font-size: .88rem; color: var(--muted); font-style: italic; }
.prog .price-deal {
  margin-top: 10px; padding: 8px 12px; border-radius: 4px;
  background: rgba(197,162,110,.14); border-left: 3px solid var(--gold);
  font-size: .88rem; color: var(--ink); font-weight: 500;
}
.prog .price-deal b { color: var(--gold-deep); text-transform: uppercase; font-family: 'Barlow Condensed', sans-serif; letter-spacing: .08em; margin-right: 6px; }
@media (max-width: 780px) { .prog-grid { grid-template-columns: 1fr; } }

/* ---------- Quiz ---------- */
.quiz-band { background: var(--black); color: var(--white); }
.quiz-band .section-head .eyebrow { color: var(--gold); }
.quiz-band .section-head p { color: var(--smoke); }
.quiz {
  background: rgba(255,255,255,.04); border: 1px solid var(--gold-soft); border-radius: 8px;
  padding: 36px; max-width: 720px; margin: 0 auto; min-height: 280px;
}
.quiz .q-step { font-family: 'Barlow Condensed', sans-serif; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-size: .85rem; font-weight: 600; margin-bottom: 10px; }
.quiz h3 { font-size: 1.7rem; font-weight: 700; margin-bottom: 22px; }
.quiz .q-opts { display: grid; gap: 12px; }
.quiz .q-opt {
  text-align: left; background: transparent; color: var(--white);
  border: 1px solid var(--gold-soft); border-radius: 6px; padding: 15px 18px;
  font-family: 'Inter', sans-serif; font-size: 1rem; cursor: pointer;
  transition: all .18s ease;
}
.quiz .q-opt:hover { border-color: var(--gold); background: rgba(197,162,110,.12); transform: translateX(6px); }
.quiz .q-result h3 { color: var(--gold); font-size: 2rem; }
.quiz .q-result .q-price { font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; color: var(--white); margin: 6px 0 12px; }
.quiz .q-result p { color: var(--smoke); margin-bottom: 20px; }
.quiz .q-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.quiz .q-restart {
  background: none; border: none; color: var(--smoke); text-decoration: underline;
  cursor: pointer; font-size: .9rem; font-family: 'Inter', sans-serif; padding: 10px 4px;
}
.quiz .q-restart:hover { color: var(--gold); }

/* ---------- Seasons / timeline ---------- */
.seasons { background: var(--white); border-top: 1px solid var(--line); }
.tl { margin: 10px 0 40px; }
.tl-bar {
  position: relative; height: 54px; border-radius: 6px; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line); display: flex;
}
.tl-seg {
  position: relative; display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .1em;
  font-weight: 700; font-size: .95rem; color: var(--muted);
  border-left: 1px solid var(--line); transition: background .3s ease;
}
.tl-seg:first-child { border-left: 0; }
.tl-seg.season { background: var(--black); color: var(--gold); }
.tl-seg.season.live { background: var(--gold); color: var(--black); }
.tl-seg small { font-weight: 400; letter-spacing: .04em; margin-left: 8px; font-size: .78rem; opacity: .8; }
.tl-now {
  position: absolute; top: 0; bottom: 0; width: 3px; background: var(--blue); z-index: 2;
}
.tl-now::after {
  content: "Today"; position: absolute; top: -3px; left: 6px;
  font-family: 'Barlow Condensed', sans-serif; font-size: .7rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue); font-weight: 700; white-space: nowrap;
}
.tl-status { margin-top: 12px; font-size: .95rem; color: var(--muted); }
.tl-status b { color: var(--blue); }
/* On phones the proportional 12-month bar can't fit: swap it for a
   stacked list of the three seasons (breaks and the now-marker hidden). */
@media (max-width: 720px) {
  .tl-bar {
    display: block; height: auto; overflow: visible;
    background: transparent; border: 0; border-radius: 0;
  }
  .tl-seg { display: none; }
  .tl-seg.season {
    display: flex; width: 100% !important;
    padding: 15px 18px; margin-bottom: 8px;
    border: 0; border-radius: 6px; font-size: 1.05rem;
  }
  .tl-seg.season span {
    display: flex; width: 100%; align-items: center;
    justify-content: space-between; gap: 12px;
  }
  .tl-seg.season small { display: inline; font-size: .85rem; margin-left: 0; white-space: nowrap; }
  .tl-now { display: none; }
}
.table-scroll { overflow-x: auto; }
table.sched { width: 100%; border-collapse: collapse; min-width: 560px; }
table.sched th {
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .1em;
  text-align: left; font-size: .95rem; color: var(--gold-deep);
  padding: 12px 16px; border-bottom: 2px solid var(--gold);
}
table.sched td { padding: 14px 16px; border-bottom: 1px solid var(--line); font-size: .98rem; }
table.sched tbody tr { transition: background .15s ease; }
table.sched tbody tr:hover { background: var(--paper); }
h3.sub { font-size: 1.35rem; font-weight: 700; margin: 42px 0 10px; }

/* ---------- Leadership ---------- */
.lead-grid { display: grid; grid-template-columns: minmax(0, 780px); justify-content: center; gap: 22px; margin-top: 8px; align-items: start; }
.lead-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 6px;
  padding: 30px 28px; transition: box-shadow .25s ease, transform .25s ease;
}
.lead-card:hover { box-shadow: 0 14px 34px rgba(10,10,10,.10); transform: translateY(-3px); }
.lead-card .head { display: flex; gap: 20px; align-items: center; margin-bottom: 16px; }
.lead-card .avatar {
  flex: 0 0 96px; width: 96px; height: 96px; border-radius: 50%;
  border: 3px solid var(--gold); overflow: hidden; background: var(--black);
  display: flex; align-items: center; justify-content: center;
}
.lead-card .avatar img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.lead-card:hover .avatar img { transform: scale(1.07); }
.lead-card .avatar span { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 700; color: var(--gold); }
.lead-card h3 { font-size: 1.45rem; font-weight: 700; }
.lead-card .role {
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .12em;
  color: var(--blue); font-weight: 600; font-size: .92rem;
}
.lead-card p { color: var(--muted); font-size: .96rem; }
.lead-card p.soon { margin-top: 10px; font-size: .85rem; font-style: italic; color: #9a938a; }
.lead-card ul { list-style: none; margin: 12px 0 0; padding: 0; }
.lead-card ul li { padding: 6px 0 6px 22px; position: relative; font-size: .9rem; color: var(--ink); border-top: 1px dashed var(--line); }
.lead-card ul li::before {
  content: ""; position: absolute; left: 0; top: 13px; width: 10px; height: 10px;
  background: var(--gold); clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.bio-more { margin-top: 16px; }
.bio-more .bio-body {
  max-height: 0; overflow: hidden; transition: max-height .5s ease;
}
.bio-more.open .bio-body { max-height: 1400px; }
.bio-body h4 { font-size: 1.05rem; color: var(--ink); margin: 16px 0 4px; }
.bio-body p { margin-bottom: 10px; }
.bio-toggle {
  background: none; border: none; cursor: pointer; padding: 8px 0 0;
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .1em;
  font-weight: 700; font-size: .95rem; color: var(--gold-deep);
}
.bio-toggle:hover { color: var(--blue); }
.bio-toggle::after { content: " ▾"; }
.bio-more.open .bio-toggle::after { content: " ▴"; }
.lead-why {
  margin-top: 26px; background: var(--black); color: #d8d3ca; border-radius: 6px;
  padding: 30px 32px; border-left: 5px solid var(--gold);
}
.lead-why h3 { color: var(--gold); font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.lead-why p { font-size: 1rem; max-width: 62rem; }
@media (max-width: 780px) { .lead-grid { grid-template-columns: 1fr; } }
@media (max-width: 380px) {
  .lead-card { padding: 22px 18px; }
  .lead-card .head { gap: 14px; }
  .lead-card .avatar { flex: 0 0 68px; width: 68px; height: 68px; }
  .lead-card h3 { font-size: 1.3rem; }
  .lead-card .role { letter-spacing: .06em; font-size: .85rem; }
}

/* ---------- Free camp banner ---------- */
.free-camp {
  display: flex; gap: 28px; align-items: stretch;
  background: var(--black); color: var(--white);
  border: 1px solid var(--gold); border-radius: 8px;
  padding: 30px 32px; margin-bottom: 34px;
  position: relative; overflow: hidden;
}
.free-camp::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 500px 300px at 0% 0%, rgba(197,162,110,.18), transparent 65%);
}
.fc-badge {
  flex: 0 0 auto; align-self: center;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 3rem;
  letter-spacing: .06em; color: var(--black); background: var(--gold);
  border-radius: 6px; padding: 18px 22px; transform: rotate(-4deg);
  box-shadow: 0 10px 24px rgba(0,0,0,.4);
}
.fc-body { position: relative; }
.fc-tag {
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .16em;
  color: var(--blue); font-weight: 600; font-size: .95rem; margin-bottom: 4px;
}
.free-camp h3 { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; font-size: 1.9rem; font-weight: 700; margin-bottom: 10px; }
.fc-desc { color: var(--smoke); font-size: .96rem; margin-bottom: 14px; max-width: 46rem; }
.fc-details { list-style: none; margin: 0 0 12px; padding: 0; }
.fc-details li { padding: 6px 0; font-size: .95rem; border-top: 1px solid rgba(197,162,110,.22); }
.fc-details li:first-child { border-top: 0; }
.fc-details li b {
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .1em;
  color: var(--gold); margin-right: 10px; font-size: .9rem;
}
.fc-urgency { color: var(--gold); font-weight: 600; font-size: .95rem; margin-bottom: 16px; }
@media (max-width: 700px) {
  .free-camp { flex-direction: column; gap: 16px; padding: 24px 22px; }
  .fc-badge { align-self: flex-start; font-size: 2.2rem; padding: 12px 16px; }
}

/* ---------- How-to steps ---------- */
.howto { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 34px; }
.howto .step {
  background: var(--black); color: #d8d3ca; border-radius: 6px;
  padding: 16px 18px; font-size: .92rem; display: flex; align-items: center; gap: 14px;
}
.howto .step b {
  flex: 0 0 34px; width: 34px; height: 34px; border-radius: 50%;
  background: var(--gold); color: var(--black); display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem;
}
@media (max-width: 780px) { .howto { grid-template-columns: 1fr; } }

/* ---------- Why ---------- */
.why { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.why-item { border-top: 3px solid var(--gold); padding-top: 16px; }
.why-item h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 6px; }
.why-item p { color: var(--muted); font-size: .95rem; }
@media (max-width: 780px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 44px 20px 4px; position: relative;
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .05em;
  font-size: 1.25rem; font-weight: 700; color: var(--ink);
}
.faq-q:hover { color: var(--gold-deep); }
.faq-q::after {
  content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--gold); transition: transform .25s ease;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { color: var(--muted); font-size: .98rem; padding: 0 4px 20px; }
.faq-item.open .faq-a { max-height: 320px; }

/* ---------- CTA band / form ---------- */
.cta-band { background: var(--black); color: var(--white); text-align: center; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 800px 400px at 50% 0%, rgba(197,162,110,.14), transparent 65%);
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band img.lockup { width: min(280px, 65vw); margin: 0 auto 26px; }
.cta-band h2 { font-size: clamp(1.9rem, 3.5vw, 2.5rem); font-weight: 700; margin-bottom: 12px; }
.cta-band p { color: var(--smoke); max-width: 40rem; margin: 0 auto 28px; }
.cta-band .gold { color: var(--gold); }
.interest-form {
  max-width: 560px; margin: 36px auto 0; text-align: left;
  background: rgba(255,255,255,.04); border: 1px solid var(--gold-soft);
  border-radius: 6px; padding: 28px;
}
.interest-form h3 {
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .06em;
  color: var(--gold); font-size: 1.3rem; margin-bottom: 4px;
}
.interest-form p.sub { color: var(--smoke); font-size: .92rem; margin-bottom: 18px; }
.interest-form label {
  display: block; font-size: .85rem; font-weight: 600; color: #d8d3ca;
  margin: 14px 0 6px; text-transform: uppercase; letter-spacing: .08em;
  font-family: 'Barlow Condensed', sans-serif;
}
.interest-form input, .interest-form select {
  width: 100%; padding: 11px 12px; font-size: 1rem; font-family: 'Inter', sans-serif;
  background: var(--coal); color: var(--white);
  border: 1px solid rgba(197,162,110,.45); border-radius: 4px;
}
.interest-form input:focus, .interest-form select:focus {
  outline: 2px solid var(--gold); outline-offset: 0; border-color: var(--gold);
}
.interest-form button {
  margin-top: 22px; width: 100%; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .06em;
  font-weight: 700; font-size: 1.1rem; padding: 12px;
  background: var(--gold); color: var(--black); border: 2px solid var(--gold); border-radius: 4px;
  transition: all .15s ease;
}
.interest-form button:hover { background: var(--gold-deep); border-color: var(--gold-deep); transform: translateY(-2px); }

/* ---------- Donate ---------- */
.donate-band { background: var(--black); color: var(--white); }
.donate-band .section-head .eyebrow { color: var(--gold); }
.donate-band .section-head p { color: var(--smoke); }
.donate-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 34px; align-items: start; }
.donate-info h3 {
  font-size: 1.5rem; font-weight: 700; color: var(--gold); margin-bottom: 16px;
}
.donate-ways { list-style: none; margin: 0 0 24px; padding: 0; }
.donate-ways li {
  padding: 14px 0 14px 26px; position: relative; font-size: .96rem; color: var(--smoke);
  border-top: 1px solid rgba(197,162,110,.25);
}
.donate-ways li:first-child { border-top: 0; }
.donate-ways li::before {
  content: ""; position: absolute; left: 0; top: 22px; width: 12px; height: 12px;
  background: var(--gold); clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.donate-ways li b {
  display: block; color: var(--white); font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase; letter-spacing: .06em; font-size: 1.1rem; margin-bottom: 2px;
}
.donate-ways a { color: var(--gold); font-weight: 600; }
.donate-ways a:hover { color: var(--gold-deep); }
.donate-qr {
  display: flex; align-items: center; gap: 16px; margin-bottom: 26px;
  background: rgba(255,255,255,.04); border: 1px solid var(--gold-soft);
  border-radius: 6px; padding: 14px 16px;
}
.donate-qr img { border-radius: 4px; background: var(--white); padding: 4px; flex: 0 0 auto; }
.donate-qr p { color: var(--smoke); font-size: .88rem; }
.donate-embed {
  background: var(--white); border-radius: 8px; overflow: hidden;
  border: 1px solid var(--gold-soft);
}
.donate-embed iframe { display: block; width: 100%; height: 715px; border: 0; }
@media (max-width: 860px) {
  .donate-grid { grid-template-columns: 1fr; }
}

/* ---------- Survey page ---------- */
.survey-hero {
  background: var(--black); color: var(--white); padding: 70px 0 56px;
  display: flex; align-items: center;
}
.survey-hero .eyebrow { color: var(--gold); font-weight: 600; letter-spacing: .18em; font-size: 1rem; margin-bottom: 14px; }
.survey-hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); font-weight: 700; line-height: 1.05; margin-bottom: 18px; max-width: 46rem; }
.survey-hero .goldline { color: var(--gold); }
.survey-hero .lede { color: #d8d3ca; font-size: 1.08rem; max-width: 42rem; }
.survey-body { padding: 60px 0 80px; }
.survey-form { max-width: 760px; margin: 0 auto; }
.survey-form fieldset {
  border: 1px solid var(--line); border-top: 4px solid var(--gold); border-radius: 6px;
  background: var(--white); padding: 26px 28px 30px; margin-bottom: 26px;
}
.survey-form legend {
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .08em;
  font-weight: 700; font-size: 1.35rem; padding: 0 10px; color: var(--ink);
}
.survey-form label { display: block; font-weight: 600; font-size: .92rem; margin: 16px 0 6px; }
.survey-form label .opt, .survey-form .q .opt { font-weight: 400; color: var(--muted); font-size: .85rem; }
.survey-form input[type="text"], .survey-form input[type="email"], .survey-form textarea {
  width: 100%; padding: 11px 12px; font-size: 1rem; font-family: 'Inter', sans-serif;
  border: 1px solid var(--line); border-radius: 4px; background: var(--paper);
}
.survey-form input:focus, .survey-form textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.survey-form .q { font-weight: 600; font-size: .98rem; margin: 22px 0 10px; }
.survey-form .q b { color: var(--gold-deep); }
.survey-form .q-note {
  color: var(--muted); font-size: .88rem; line-height: 1.55;
  background: var(--paper); border-left: 3px solid var(--gold);
  padding: 10px 14px; border-radius: 4px; margin: -2px 0 12px;
}
.survey-form .q-note b { color: var(--gold-deep); }
.opts { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px;
  font-size: .92rem; font-weight: 500 !important; margin: 0 !important;
  background: var(--paper); transition: all .15s ease; user-select: none;
}
.pill:hover { border-color: var(--gold); }
.pill:has(input:checked) { background: var(--gold); border-color: var(--gold-deep); color: var(--black); font-weight: 600 !important; }
.pill input { accent-color: var(--gold-deep); }
.rate-row { padding: 14px 0; border-top: 1px dashed var(--line); }
.rate-row:first-of-type { border-top: 0; }
.rate-row .rate-name { display: block; font-weight: 600; font-size: .96rem; margin-bottom: 10px; }
.rate-row .rate-name small { display: block; color: var(--muted); font-weight: 400; font-size: .84rem; }
.survey-submit {
  width: 100%; cursor: pointer; margin-top: 6px;
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .06em;
  font-weight: 700; font-size: 1.25rem; padding: 15px;
  background: var(--gold); color: var(--black); border: 2px solid var(--gold); border-radius: 4px;
  transition: all .15s ease;
}
.survey-submit:hover { background: var(--gold-deep); border-color: var(--gold-deep); transform: translateY(-2px); }
.fineprint { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 14px; }

/* ---------- Footer & back-to-top ---------- */
footer.site {
  background: var(--black); color: #8d8880; padding: 26px 0;
  border-top: 1px solid var(--gold-soft); font-size: .88rem;
}
footer.site .row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
footer.site img { height: 34px; }
footer.site .est { color: var(--gold); font-family: 'Barlow Condensed', sans-serif; letter-spacing: .12em; text-transform: uppercase; }
#totop {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold); color: var(--black); border: none; cursor: pointer;
  font-size: 1.3rem; font-weight: 700; box-shadow: 0 6px 18px rgba(0,0,0,.3);
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease;
}
#totop.show { opacity: 1; pointer-events: auto; transform: none; }
#totop:hover { background: var(--gold-deep); }
