/* =============================================================================
   NEXTGEN DISC GOLF — Design System
   Athletic / bold movement brand. Night-fairway ink + electric volt + tangerine.
   Type: Archivo (heavy + expanded) for display, Space Mono for technical labels.
   ============================================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Core palette */
  --ink:        #0B0F0C;   /* near-black, faint green — "night fairway" */
  --ink-2:      #141A15;   /* raised dark surface */
  --ink-3:      #1E271F;   /* card / border on dark */
  --chalk:      #F4F3EC;   /* warm off-white paper */
  --chalk-2:    #EAE8DC;   /* slightly deeper paper */
  --volt:       #C6F73B;   /* electric lime — primary energy accent */
  --volt-deep:  #A6D617;   /* pressed / darker volt */
  --flare:      #FF5A1E;   /* tangerine — discs, donate, hot CTA */
  --flare-deep: #E6440C;
  --sky:        #35D2F2;   /* cool disc blue — sparingly */

  /* Neutrals */
  --stone:      #6E7A6C;   /* muted green-grey text on light */
  --ash:        #9BA79A;   /* muted text on dark */
  --line-dark:  rgba(198,247,59,0.16);
  --line-light: rgba(11,15,12,0.14);

  /* Type */
  --f-display: "Archivo", "Arial Narrow", sans-serif;
  --f-body:    "Archivo", system-ui, sans-serif;
  --f-mono:    "Space Mono", ui-monospace, monospace;

  /* Rhythm */
  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 64px);
  --sect: clamp(72px, 11vw, 160px);
  --radius: 4px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body {
  font-family: var(--f-body);
  background: var(--ink);
  color: var(--chalk);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
::selection { background: var(--volt); color: var(--ink); }

/* ---------- Type scale ---------- */
.display {
  font-family: var(--f-display);
  font-weight: 900;
  font-stretch: 125%;               /* Archivo expanded width axis */
  font-variation-settings: "wdth" 125, "wght" 900;
  line-height: 0.86;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: var(--f-display); font-weight: 800; line-height: 0.95; letter-spacing: -0.015em; }
.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.mono { font-family: var(--f-mono); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: var(--sect); position: relative; }
.on-ink  { background: var(--ink);  color: var(--chalk); }
.on-chalk{ background: var(--chalk); color: var(--ink); }
.on-volt { background: var(--volt);  color: var(--ink); }
.on-flare{ background: var(--flare); color: var(--chalk); }

/* Diagonal cut dividers between contrasting sections */
.cut-top    { clip-path: polygon(0 3.5vw, 100% 0, 100% 100%, 0 100%); margin-top: -3.5vw; padding-top: calc(var(--sect) + 3.5vw); }
.cut-bottom { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3.5vw), 0 100%); padding-bottom: calc(var(--sect) + 3.5vw); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--volt); --fg: var(--ink);
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--f-mono); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 1em 1.6em; background: var(--bg); color: var(--fg);
  border-radius: var(--radius); position: relative; isolation: isolate;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s;
  will-change: transform;
}
.btn::after {
  content: "→"; font-family: var(--f-body); font-weight: 800;
  transition: transform 0.3s var(--ease);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 0 -2px rgba(0,0,0,0.35), 0 18px 40px rgba(198,247,59,0.28); }
.btn:hover::after { transform: translateX(4px); }
.btn:active { transform: translateY(-1px); }
.btn--flare { --bg: var(--flare); --fg: var(--chalk); }
.btn--flare:hover { box-shadow: 0 10px 0 -2px rgba(0,0,0,0.35), 0 18px 40px rgba(255,90,30,0.35); }
.btn--ghost {
  --bg: transparent; --fg: var(--chalk);
  border: 1.5px solid var(--line-dark); box-shadow: none;
}
.btn--ghost:hover { border-color: var(--volt); color: var(--volt); box-shadow: none; }
.on-chalk .btn--ghost { --fg: var(--ink); border-color: var(--line-light); }
.on-chalk .btn--ghost:hover { border-color: var(--ink); color: var(--ink); }

.textlink {
  font-family: var(--f-mono); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.5em;
  border-bottom: 2px solid transparent; padding-bottom: 2px;
  transition: border-color 0.25s, gap 0.25s var(--ease);
}
.textlink:hover { border-color: currentColor; gap: 0.85em; }

/* =============================================================================
   NAV
   ============================================================================= */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--ink) 78%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line-dark);
  transition: transform 0.4s var(--ease);
}
.nav__row { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 0.6em; }
.brand__mark {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--volt); position: relative; flex: none;
  box-shadow: inset 0 0 0 2px var(--ink), 0 0 0 2px var(--volt);
}
.brand__mark::before {
  content: ""; position: absolute; inset: 6px; border-radius: 50%;
  border: 2px solid var(--ink); border-top-color: transparent; border-right-color: transparent;
}
.brand__name {
  font-family: var(--f-display); font-weight: 900; font-stretch: 125%;
  font-variation-settings: "wdth" 125, "wght" 900;
  font-size: 1.15rem; letter-spacing: 0.02em; text-transform: uppercase; line-height: 1;
}
.brand__name b { color: var(--volt); }
.nav__links { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav__links a {
  font-family: var(--f-mono); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ash);
  position: relative; padding: 4px 0; transition: color 0.2s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px;
  background: var(--volt); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--chalk); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__burger { display: none; }

@media (max-width: 900px) {
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav__burger {
    display: inline-flex; flex-direction: column; gap: 5px; padding: 8px;
  }
  .nav__burger span { width: 26px; height: 2.5px; background: var(--chalk); transition: 0.3s var(--ease); }
  body.menu-open .nav__burger span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
  body.menu-open .nav__burger span:nth-child(2){ opacity: 0; }
  body.menu-open .nav__burger span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }
  .mobile-menu {
    position: fixed; inset: 74px 0 0; z-index: 99;
    background: var(--ink); border-top: 1px solid var(--line-dark);
    display: flex; flex-direction: column; gap: 6px; padding: 32px var(--gut);
    transform: translateY(-120%); transition: transform 0.45s var(--ease); visibility: hidden;
  }
  body.menu-open .mobile-menu { transform: translateY(0); visibility: visible; }
  .mobile-menu a { font-family: var(--f-display); font-weight: 800; font-size: clamp(2rem,9vw,3rem); text-transform: uppercase; padding: 8px 0; border-bottom: 1px solid var(--line-dark); }
  .mobile-menu a:last-of-type { border: none; }
}
@media (min-width: 901px) { .mobile-menu { display: none; } }

/* =============================================================================
   HERO
   ============================================================================= */
.hero { position: relative; overflow: hidden; padding-block: clamp(48px, 8vw, 96px) clamp(60px, 10vw, 130px); }
.hero__grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 48px);
  position: relative; z-index: 2;
}
.hero__eyebrow { display: inline-flex; align-items: center; gap: 0.8em; color: var(--volt); margin-bottom: clamp(20px,3vw,34px); }
.hero__eyebrow .pip { width: 8px; height: 8px; border-radius: 50%; background: var(--flare); box-shadow: 0 0 0 4px rgba(255,90,30,0.2); }
.hero h1 {
  font-size: clamp(3.4rem, 13.5vw, 12rem);
  font-weight: 900; font-stretch: 125%;
  font-variation-settings: "wdth" 125, "wght" 900;
  line-height: 0.82; letter-spacing: -0.025em; text-transform: uppercase;
}
.hero h1 .ln { display: block; overflow: hidden; }
.hero h1 .ln > span { display: block; transform: translateY(105%); animation: rise 0.9s var(--ease) forwards; }
.hero h1 .ln:nth-child(2) > span { animation-delay: 0.08s; }
.hero h1 .ln:nth-child(3) > span { animation-delay: 0.16s; }
.hero h1 em { font-style: normal; color: var(--volt); -webkit-text-stroke: 0; position: relative; }
.hero h1 .out { color: transparent; -webkit-text-stroke: 2px var(--chalk); }
@keyframes rise { to { transform: translateY(0); } }

.hero__lower { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(24px,4vw,56px); align-items: end; margin-top: clamp(8px,2vw,20px); }
.hero__lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--ash); max-width: 46ch; opacity: 0; animation: fade 0.8s var(--ease) 0.5s forwards; }
.hero__lead strong { color: var(--chalk); font-weight: 700; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; opacity: 0; animation: fade 0.8s var(--ease) 0.62s forwards; }
@keyframes fade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 760px){ .hero__lower { grid-template-columns: 1fr; } }

/* Flight path motif */
.hero__flight { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: visible; }
.hero__flight path { fill: none; stroke: var(--line-dark); stroke-width: 2; stroke-dasharray: 6 10; }
.flight-disc {
  offset-path: path("M -40 340 C 300 120, 780 480, 1320 180");
  offset-distance: 0%; animation: fly 5.5s var(--ease-io) infinite;
}
@keyframes fly {
  0% { offset-distance: 0%; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}
.flight-disc .disc { fill: var(--flare); }

/* big ghost word behind hero */
.hero__ghost {
  position: absolute; right: -2vw; bottom: -4vw; z-index: 0;
  font-family: var(--f-display); font-weight: 900; font-stretch: 125%;
  font-variation-settings: "wdth" 125, "wght" 900;
  font-size: 34vw; line-height: 0.7; color: transparent;
  -webkit-text-stroke: 1px rgba(198,247,59,0.07); text-transform: uppercase; user-select: none;
}

/* Ticker */
.ticker { border-block: 1px solid var(--line-dark); background: var(--ink-2); overflow: hidden; }
.ticker__track { display: flex; gap: 3rem; padding-block: 14px; width: max-content; animation: marquee 26s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item { font-family: var(--f-mono); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ash); display: inline-flex; align-items: center; gap: 1rem; white-space: nowrap; }
.ticker__item b { color: var(--volt); }
.ticker__item::after { content: "◉"; color: var(--flare); font-size: 0.6rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =============================================================================
   STAKES (editorial statement)
   ============================================================================= */
.stakes h2 { font-size: clamp(1.8rem, 4.2vw, 3.6rem); font-weight: 800; line-height: 1.02; max-width: 20ch; }
.stakes h2 .hl { color: var(--flare); }
.stakes__row { display: grid; grid-template-columns: 1fr 0.8fr; gap: clamp(28px,5vw,72px); align-items: start; }
.stakes__note { font-family: var(--f-mono); font-size: 0.9rem; line-height: 1.7; color: var(--stone); border-left: 2px solid var(--flare); padding-left: 20px; }
@media (max-width: 800px){ .stakes__row { grid-template-columns: 1fr; } }

/* =============================================================================
   FRICTION
   ============================================================================= */
.friction__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); }
.fcard { background: var(--chalk); padding: clamp(22px,2.4vw,32px); position: relative; transition: background 0.35s var(--ease), color 0.35s var(--ease); }
.fcard__n { font-family: var(--f-mono); font-weight: 700; font-size: 0.8rem; color: var(--flare); }
.fcard h3 { font-size: clamp(1.2rem,1.8vw,1.55rem); text-transform: uppercase; margin: 12px 0 10px; }
.fcard p { color: var(--stone); font-size: 0.92rem; transition: color 0.35s; }
.fcard:hover { background: var(--ink); color: var(--chalk); }
.fcard:hover p { color: var(--ash); }
.friction__foot { margin-top: 30px; font-family: var(--f-mono); font-size: 0.9rem; color: var(--stone); display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
@media (max-width: 900px){ .friction__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .friction__grid { grid-template-columns: 1fr; } }

.donate__fineprint { max-width: 52ch; margin: 22px auto 0; font-family: var(--f-mono); font-size: 0.72rem; line-height: 1.6; color: rgba(11,15,12,0.6); letter-spacing: 0.02em; }

/* =============================================================================
   PILLARS
   ============================================================================= */
.sec-head { display: grid; grid-template-columns: auto 1fr; gap: clamp(16px,3vw,40px); align-items: end; margin-bottom: clamp(36px,5vw,64px); }
.sec-head__k { font-family: var(--f-mono); font-weight: 700; font-size: 0.8rem; color: var(--flare); letter-spacing: 0.2em; }
.sec-head h2 { font-size: clamp(2rem, 5.5vw, 4.6rem); text-transform: uppercase; }
.sec-head p { color: var(--stone); max-width: 40ch; font-size: 1.02rem; grid-column: 2; }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); }
.pillar { background: var(--chalk); padding: clamp(26px,3vw,40px); position: relative; overflow: hidden; transition: background 0.4s var(--ease), color 0.4s var(--ease); }
.pillar__n { font-family: var(--f-mono); font-size: 0.82rem; font-weight: 700; color: var(--stone); }
.pillar h3 { font-size: clamp(1.5rem, 2.4vw, 2.15rem); text-transform: uppercase; margin: 14px 0 12px; max-width: 12ch; }
.pillar p { color: var(--stone); font-size: 0.98rem; transition: color 0.4s; }
.pillar__ic { position: absolute; top: clamp(22px,3vw,34px); right: clamp(22px,3vw,34px); width: 34px; height: 34px; color: var(--stone); transition: color 0.4s, transform 0.5s var(--ease); }
.pillar:hover { background: var(--ink); color: var(--chalk); }
.pillar:hover p, .pillar:hover .pillar__n { color: var(--ash); }
.pillar:hover .pillar__ic { color: var(--volt); transform: rotate(-12deg) scale(1.1); }
.pillar::before { content: ""; position: absolute; left: 0; bottom: 0; height: 4px; width: 100%; background: var(--volt); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease); }
.pillar:hover::before { transform: scaleX(1); }
@media (max-width: 820px){ .pillars { grid-template-columns: 1fr; } }

/* =============================================================================
   COMMITMENT band
   ============================================================================= */
.commit { position: relative; overflow: hidden; }
.commit__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(30px,5vw,64px); align-items: center; }
.commit h2 { font-size: clamp(2.2rem, 6vw, 5rem); text-transform: uppercase; line-height: 0.9; }
.commit h2 em { font-style: normal; color: var(--ink); background: var(--volt); padding: 0 0.14em; }
.commit__lead { margin: 22px 0 30px; font-size: 1.1rem; max-width: 44ch; color: rgba(11,15,12,0.72); }
.commit__list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.commit__list li { display: flex; gap: 12px; align-items: baseline; font-weight: 600; }
.commit__list li::before { content: "✓"; font-family: var(--f-mono); font-weight: 700; color: var(--flare); }
/* Bag tag visual */
.tag { position: relative; aspect-ratio: 3/4; background: var(--ink); border-radius: 12px; padding: 26px; color: var(--chalk); display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 30px 60px rgba(11,15,12,0.35); overflow: hidden; transform: rotate(3deg); transition: transform 0.5s var(--ease); }
.tag:hover { transform: rotate(0deg) translateY(-6px); }
.tag::before { content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 26px; height: 26px; border-radius: 50%; border: 3px solid var(--ash); }
.tag__top { text-align: center; margin-top: 30px; }
.tag__top .eyebrow { color: var(--volt); }
.tag__big { font-family: var(--f-display); font-weight: 900; font-stretch: 125%; font-variation-settings: "wdth" 125,"wght" 900; font-size: clamp(2.4rem,7vw,3.6rem); line-height: 0.85; text-transform: uppercase; }
.tag__big b { color: var(--volt); }
.tag__num { font-family: var(--f-mono); font-size: 0.72rem; color: var(--ash); letter-spacing: 0.2em; display: flex; justify-content: space-between; border-top: 1px solid var(--line-dark); padding-top: 12px; }
@media (max-width: 820px){ .commit__grid { grid-template-columns: 1fr; } .tag { max-width: 300px; } }

/* =============================================================================
   GOAL / 100 events
   ============================================================================= */
.goal { text-align: center; }
.goal__big { font-family: var(--f-display); font-weight: 900; font-stretch: 125%; font-variation-settings: "wdth" 125,"wght" 900; font-size: clamp(7rem, 30vw, 26rem); line-height: 0.78; color: var(--volt); letter-spacing: -0.03em; }
.goal h2 { font-size: clamp(1.6rem, 4vw, 3rem); text-transform: uppercase; margin-top: -0.1em; }
.goal p { color: var(--ash); max-width: 52ch; margin: 22px auto 0; font-size: 1.05rem; }
.goal__bar { max-width: 620px; margin: 34px auto 0; height: 14px; background: var(--ink-3); border-radius: 20px; overflow: hidden; }
.goal__fill { height: 100%; width: 0; background: repeating-linear-gradient(45deg, var(--volt), var(--volt) 10px, var(--volt-deep) 10px, var(--volt-deep) 20px); border-radius: 20px; transition: width 1.4s var(--ease); }
.goal__meta { display: flex; justify-content: space-between; max-width: 620px; margin: 12px auto 0; font-family: var(--f-mono); font-size: 0.78rem; color: var(--ash); letter-spacing: 0.1em; }

/* =============================================================================
   MEDIA
   ============================================================================= */
.media__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.mcard {
  background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: clamp(24px,3vw,38px); position: relative; overflow: hidden; min-height: 220px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform 0.4s var(--ease), border-color 0.3s;
}
.mcard:hover { transform: translateY(-6px); border-color: var(--volt); }
.mcard__k { position: absolute; top: clamp(20px,3vw,30px); left: clamp(24px,3vw,38px); font-family: var(--f-mono); font-size: 0.75rem; color: var(--flare); letter-spacing: 0.15em; }
.mcard__ic { position: absolute; top: clamp(18px,3vw,26px); right: clamp(20px,3vw,30px); width: 40px; height: 40px; color: var(--ink-3); transition: color 0.4s, transform 0.5s var(--ease); }
.mcard:hover .mcard__ic { color: var(--volt); transform: scale(1.12) rotate(8deg); }
.mcard h3 { font-size: clamp(1.4rem,2.4vw,2rem); text-transform: uppercase; margin-bottom: 8px; }
.mcard p { color: var(--ash); font-size: 0.96rem; max-width: 34ch; }
@media (max-width: 720px){ .media__grid { grid-template-columns: 1fr; } }

/* =============================================================================
   LEADERS split
   ============================================================================= */
.leaders__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,72px); align-items: center; }
.leaders__k { font-family: var(--f-mono); color: var(--flare); font-size: 0.8rem; letter-spacing: 0.2em; margin-bottom: 18px; }
.leaders h2 { font-size: clamp(1.9rem,4.6vw,3.6rem); text-transform: uppercase; line-height: 0.95; margin-bottom: 20px; }
.leaders p { color: var(--stone); font-size: 1.05rem; max-width: 46ch; margin-bottom: 28px; }
.leaders__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); }
.lstat { background: var(--chalk); padding: clamp(22px,3vw,34px); }
.lstat__n { font-family: var(--f-display); font-weight: 900; font-stretch: 125%; font-variation-settings:"wdth" 125,"wght" 900; font-size: clamp(2.6rem,6vw,4.4rem); line-height: 0.85; }
.lstat__n b { color: var(--flare); }
.lstat__l { font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); margin-top: 8px; }
@media (max-width: 820px){ .leaders__grid { grid-template-columns: 1fr; } }

/* =============================================================================
   DONATE CTA
   ============================================================================= */
.donate { position: relative; overflow: hidden; text-align: center; }
.donate h2 { font-size: clamp(2.4rem, 8vw, 7rem); text-transform: uppercase; line-height: 0.85; letter-spacing: -0.02em; }
.donate p { max-width: 48ch; margin: 22px auto 32px; font-size: 1.1rem; color: rgba(244,243,236,0.85); }
.donate .btn { --bg: var(--ink); --fg: var(--volt); }
.donate .btn:hover { box-shadow: 0 10px 0 -2px rgba(0,0,0,0.3), 0 18px 40px rgba(11,15,12,0.4); }
.donate__disc { position: absolute; width: 180px; height: 180px; border-radius: 50%; border: 3px solid rgba(11,15,12,0.16); opacity: 0.5; }

/* =============================================================================
   FOOTER
   ============================================================================= */
.foot { background: var(--ink); border-top: 1px solid var(--line-dark); padding-top: clamp(56px,7vw,90px); }
.foot__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(28px,4vw,48px); padding-bottom: 48px; border-bottom: 1px solid var(--line-dark); }
.foot__brand .brand { margin-bottom: 18px; }
.foot__brand p { color: var(--stone); max-width: 34ch; font-size: 0.96rem; }
.foot col-h, .foot__col h4 { font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--flare); margin-bottom: 16px; }
.foot__col a, .foot__col p { display: block; color: var(--ash); font-size: 0.94rem; padding: 5px 0; transition: color 0.2s; }
.foot__col a:hover { color: var(--volt); }
.foot__news { display: flex; gap: 8px; margin-top: 12px; }
.foot__news input { flex: 1; background: var(--ink-2); border: 1px solid var(--line-dark); color: var(--chalk); padding: 12px 14px; border-radius: var(--radius); font-family: var(--f-mono); font-size: 0.85rem; }
.foot__news input:focus { outline: none; border-color: var(--volt); }
.foot__news button { background: var(--volt); color: var(--ink); padding: 0 16px; border-radius: var(--radius); font-family: var(--f-body); font-weight: 800; }
.foot__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-block: 28px; }
.foot__bottom p { font-family: var(--f-mono); font-size: 0.74rem; color: var(--stone); letter-spacing: 0.06em; }
.foot__social { display: flex; gap: 10px; }
.foot__social a { width: 40px; height: 40px; border: 1px solid var(--line-dark); border-radius: 50%; display: grid; place-items: center; color: var(--ash); transition: 0.25s var(--ease); }
.foot__social a:hover { background: var(--volt); color: var(--ink); border-color: var(--volt); transform: translateY(-3px); }
@media (max-width: 820px){ .foot__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .foot__top { grid-template-columns: 1fr; } }

/* =============================================================================
   FORMS (shared)
   ============================================================================= */
.form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); }
.on-ink .field label { color: var(--ash); }
.field input, .field textarea, .field select {
  background: var(--chalk); border: 1.5px solid var(--line-light); color: var(--ink);
  padding: 13px 15px; border-radius: var(--radius); font-family: var(--f-body); font-size: 1rem; width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.on-ink .field input, .on-ink .field textarea, .on-ink .field select { background: var(--ink-2); border-color: var(--line-dark); color: var(--chalk); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--volt); box-shadow: 0 0 0 4px rgba(198,247,59,0.16); }
.field textarea { min-height: 130px; resize: vertical; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px){ .form__row { grid-template-columns: 1fr; } }
.form__note { font-family: var(--f-mono); font-size: 0.76rem; color: var(--stone); }
.form__msg { font-family: var(--f-mono); font-size: 0.85rem; padding: 12px 14px; border-radius: var(--radius); display: none; }
.form__msg.ok { display: block; background: rgba(198,247,59,0.14); color: var(--volt-deep); border: 1px solid var(--volt); }
.on-ink .form__msg.ok { color: var(--volt); }
.form__msg.err { display: block; background: rgba(255,90,30,0.12); color: var(--flare); border: 1px solid var(--flare); }

/* =============================================================================
   PAGE HEADERS (sub-pages)
   ============================================================================= */
.phead { padding-block: clamp(60px,9vw,120px) clamp(40px,6vw,72px); position: relative; overflow: hidden; }
.phead .eyebrow { color: var(--volt); }
.phead h1 { font-size: clamp(2.8rem, 9vw, 7rem); text-transform: uppercase; line-height: 0.86; margin: 18px 0 20px; font-weight: 900; font-stretch: 125%; font-variation-settings:"wdth" 125,"wght" 900; }
.phead p { color: var(--ash); max-width: 52ch; font-size: 1.1rem; }
.phead__ghost { position: absolute; right: -1vw; top: -4vw; font-family: var(--f-display); font-weight: 900; font-stretch:125%; font-variation-settings:"wdth" 125,"wght" 900; font-size: 26vw; color: transparent; -webkit-text-stroke: 1px rgba(198,247,59,0.06); text-transform: uppercase; user-select: none; z-index: 0; }

/* Reveal-on-scroll utility (progressive enhancement — only hides when JS is active) */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay: 0.08s; }
.reveal[data-d="2"]{ transition-delay: 0.16s; }
.reveal[data-d="3"]{ transition-delay: 0.24s; }

/* Form-split layout (content + form card) */
.formsplit { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px,5vw,64px); align-items: start; }
@media (max-width: 900px){ .formsplit { grid-template-columns: 1fr; } }
.formcard { background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: 10px; padding: clamp(24px,3vw,38px); }
.on-chalk .formcard { background: #fff; border-color: var(--line-light); box-shadow: 0 24px 60px rgba(11,15,12,0.08); }
.formcard h3 { font-size: clamp(1.3rem,2.2vw,1.8rem); text-transform: uppercase; margin-bottom: 6px; }
.formcard__sub { color: var(--stone); font-size: 0.95rem; margin-bottom: 22px; }
.on-ink .formcard__sub { color: var(--ash); }
.checkline { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; cursor: pointer; }
.checkline input { width: 20px; height: 20px; flex: none; margin-top: 2px; accent-color: var(--volt); }
.honey { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.btn[type="submit"], button.btn { border: none; }

/* Count pill */
.countpill { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-mono); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; background: var(--ink-3); color: var(--volt); border: 1px solid var(--line-dark); border-radius: 40px; padding: 8px 16px; }
.countpill b { font-size: 1.05rem; }
.on-chalk .countpill { background: rgba(11,15,12,0.05); color: var(--ink); border-color: var(--line-light); }

/* Numbered steps */
.steps { display: grid; gap: 2px; background: var(--line-light); border: 1px solid var(--line-light); }
.on-ink .steps { background: var(--line-dark); border-color: var(--line-dark); }
.step { background: var(--chalk); padding: clamp(20px,2.4vw,30px); display: grid; grid-template-columns: clamp(60px,7vw,96px) 1fr; gap: clamp(18px,2.4vw,32px); align-items: center; }
.on-ink .step { background: var(--ink-2); }
.step__n { font-family: var(--f-display); font-weight: 900; font-stretch: 125%; font-variation-settings:"wdth" 125,"wght" 900; font-size: clamp(2.4rem,4vw,3.4rem); color: var(--flare); line-height: 0.9; letter-spacing: -0.02em; }
.on-ink .step__n { color: var(--volt); }
.step h3 { font-size: clamp(1.15rem,1.8vw,1.5rem); text-transform: uppercase; margin-bottom: 6px; }
.step p { color: var(--stone); font-size: 0.96rem; }
.on-ink .step p { color: var(--ash); }

/* Directory (courses) */
.directory { display: grid; gap: 12px; }
.ditem { display: grid; grid-template-columns: 1fr auto; gap: 12px 20px; align-items: center; background: var(--ink-2); border: 1px solid var(--line-dark); border-left: 3px solid var(--volt); border-radius: var(--radius); padding: 18px 22px; }
.ditem h4 { font-size: 1.15rem; text-transform: uppercase; }
.ditem .loc { font-family: var(--f-mono); font-size: 0.78rem; color: var(--ash); letter-spacing: 0.06em; }
.ditem p { color: var(--ash); font-size: 0.9rem; grid-column: 1 / -1; }
.directory__empty { background: var(--ink-2); border: 1px dashed var(--line-dark); border-radius: 10px; padding: clamp(30px,5vw,56px); text-align: center; }
.directory__empty h3 { font-size: clamp(1.3rem,2.4vw,2rem); text-transform: uppercase; margin-bottom: 10px; }
.directory__empty p { color: var(--ash); max-width: 44ch; margin: 0 auto 22px; }

/* Info tiles row */
.tiles { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media (max-width: 760px){ .tiles { grid-template-columns: 1fr; } }
.tile { background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: 8px; padding: clamp(22px,2.6vw,30px); }
.on-chalk .tile { background: #fff; border-color: var(--line-light); }
.tile .k { font-family: var(--f-mono); font-size: 0.74rem; color: var(--flare); letter-spacing: 0.14em; }
.tile h3 { font-size: 1.3rem; text-transform: uppercase; margin: 10px 0 8px; }
.tile p { color: var(--stone); font-size: 0.95rem; }
.on-ink .tile p { color: var(--ash); }

/* Prose (about / content pages) */
.prose { max-width: 66ch; }
.prose p { color: var(--stone); font-size: 1.08rem; margin-bottom: 1.2em; }
.on-ink .prose p { color: var(--ash); }
.prose h2 { font-size: clamp(1.6rem,3vw,2.4rem); text-transform: uppercase; margin: 1.4em 0 0.5em; }
.prose strong { color: inherit; font-weight: 800; }
.prose .lead { font-size: 1.3rem; color: var(--chalk); font-weight: 500; }
.on-chalk .prose .lead { color: var(--ink); }
