/* ============================================================================
   NCBO  —  shared stylesheet
   Brand: navy #0A1228 · steel blue #2F5FA8 · Barlow Condensed

   ── Light theme ────────────────────────────────────────────────────────────
   The page runs on a soft whitish-blue ground with navy text. Photo surfaces
   (the hero, the CTA tiles) keep a deep navy scrim and light type — that
   contrast is the accent, and it's what keeps the light palette from going
   flat.

   Token names are historical: --navy* are *surface* steps from page ground
   up to raised card, and --white is the primary *text* colour. They read
   backwards on a light theme, but inline styles across the HTML reference
   them by name, so the values changed and the names didn't. The semantic
   aliases below are what new code should use.
   ========================================================================== */

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

:root {
  /* Surfaces — page ground, band, card, raised */
  --navy:      #F4F8FD;   /* page background */
  --navy-deep: #E8F0FA;   /* alternating band, footer */
  --navy-1:    #FFFFFF;   /* card surface */
  --navy-2:    #DEE9F7;   /* raised / empty photo well */
  --line:      #D2E0F0;

  /* Accent */
  --steel:       #2F5FA8; /* live accent — 6.4:1 on the page ground */
  --steel-light: #3A6BB8; /* hover / secondary accent text */
  --steel-deep:  #1E4478;
  --steel-wash:  rgba(47,95,168,0.08);

  /* Type */
  --white:      #0E1A2F;  /* primary text */
  --silver:     #3E4E68;  /* body copy */
  --silver-dim: #5C6B85;
  --muted:      #566580;  /* meta text — 4.9:1 */
  --muted-2:    #77839A;  /* fine print */

  /* Inverted type, for use over photo scrims */
  --on-photo:      #FFFFFF;
  --on-photo-soft: #D8E3F2;

  --maxw: 1180px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --navh: 72px;   /* fixed site nav height — sticky bars park below it */

  --font-display: 'Barlow Condensed', system-ui, sans-serif;
  --font-body: 'Barlow', system-ui, sans-serif;

  --r: 8px;   /* base radius — softened for the lighter surface */
  --shadow:    0 18px 40px -24px rgba(14,26,47,0.30);
  --shadow-sm: 0 2px 10px -4px rgba(14,26,47,0.16);

  /* Semantic aliases — prefer these in new code */
  --bg: var(--navy);
  --bg-band: var(--navy-deep);
  --surface: var(--navy-1);
  --text: var(--white);
  --text-soft: var(--silver);
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--steel); color: #fff; }

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

/* faint grain over everything for texture — dialled back for the light ground */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── layout helpers ──────────────────────────────────────────────────── */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); position: relative; z-index: 2; }
.section--tight { padding-block: clamp(3rem, 6vw, 4.5rem); }
.center { text-align: center; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--steel);
  display: inline-flex; align-items: center; gap: 0.7rem;
}
.eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--steel); display: inline-block; }
.eyebrow.center-line { justify-content: center; }

.h-display {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.005em;
  text-transform: none;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}
.accent { color: var(--steel); }
.lead { color: var(--silver); font-size: 1.08rem; }
.muted { color: var(--muted); }

/* ── buttons ─────────────────────────────────────────────────────────── */
.btn {
  font-family: var(--font-display);
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  font-size: 0.92rem;
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.85rem 1.7rem; border-radius: var(--r);
  cursor: pointer; border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.btn:focus-visible { outline: 2px solid var(--steel-light); outline-offset: 3px; }
.btn-primary { background: var(--steel); color: #fff; }
.btn-primary:hover { background: var(--steel-light); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--steel); color: var(--steel-light); transform: translateY(-2px); }
.btn-arrow::after { content: '→'; font-weight: 700; }

/* ── NAV (injected by site.js) ───────────────────────────────────────── */
/* Solid from the top. The hero sits behind a photo scrim, so a transparent
   nav would put navy links on a dark image; a solid bar is both legible and
   cleaner than a gradient that changes on scroll. */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem var(--pad);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
nav.site-nav.scrolled {
  background: rgba(255,255,255,0.96);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.brand { display: flex; align-items: center; gap: 0.65rem; }
.brand img { width: 40px; height: 40px; }
.brand-word {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.4rem; letter-spacing: 0.16em; color: var(--white);
}
.nav-links { display: flex; align-items: center; gap: 1.9rem; list-style: none; }
.nav-links a {
  font-family: var(--font-display); font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
  transition: color .18s ease; position: relative; padding-block: 0.2rem;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); }
.nav-links a[aria-current="page"]::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--steel);
}
.nav-cta {
  font-family: var(--font-display); font-size: 0.86rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff !important; background: var(--steel);
  padding: 0.6rem 1.3rem; border-radius: var(--r); transition: background .18s, transform .18s;
}
.nav-cta:hover { background: var(--steel-light); transform: translateY(-1px); }

.mobile-menu { display: none; }   /* hidden on desktop; shown in mobile breakpoint */

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 42px; height: 42px; position: relative; z-index: 210;
}
.nav-toggle span {
  position: absolute; left: 9px; right: 9px; height: 2px; background: var(--white);
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── HERO (home) ─────────────────────────────────────────────────────── */
/* The one dark block on a light site. Photos of a gym floor need a deep
   scrim to carry type, so the hero inverts and everything below it is light. */
.hero {
  position: relative;
  min-height: 84vh; min-height: 84svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 9rem var(--pad) 3.5rem; overflow: hidden;
  color: var(--on-photo);
  background:
    radial-gradient(ellipse 80% 60% at 20% 100%, rgba(47,95,168,0.55), transparent 65%),
    linear-gradient(160deg, #14264A 0%, #0E1A2F 60%, #0A1424 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 860px; }
.hero .eyebrow { color: var(--on-photo-soft); }
.hero .eyebrow::before { background: var(--on-photo-soft); }
.hero .accent { color: #8FB0DD; }

/* alternating photo background (built by site.js) */
.photo-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.photo-layer {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease;
}
.photo-layer.on { opacity: 1; }
/* legibility scrim — only once a photo is actually behind the copy */
.photo-bg.has-photo::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top, #0A1424 2%, rgba(10,20,36,0.88) 38%, rgba(14,26,47,0.62) 75%, rgba(10,20,36,0.72)),
    linear-gradient(to right, rgba(10,20,36,0.78), transparent 72%);
}
.hero h1 {
  margin: 1.4rem 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.01em;
  font-size: clamp(2.7rem, 7.5vw, 5.6rem);
}
.tag-chip {
  display: inline-flex; gap: 0.5rem; align-items: center; flex-wrap: wrap;
  max-width: 100%;
  font-family: var(--font-display); font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; font-size: 0.82rem; color: var(--on-photo-soft);
  border: 1px solid rgba(255,255,255,0.22); border-radius: 100px; padding: 0.4rem 1rem;
  margin: 1.6rem 0 0;
}
.tag-chip b { color: #8FB0DD; }
.hero-sub { margin: 1.6rem 0 2.2rem; max-width: 600px; color: var(--on-photo-soft); font-size: 1.12rem; }
/* ghost button sits on the dark hero, so it inverts there */
.hero .btn-ghost { color: var(--on-photo); border-color: rgba(255,255,255,0.28); }
.hero .btn-ghost:hover { border-color: #8FB0DD; color: #C6D8F0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* fade-up entrance */
.up { opacity: 0; transform: translateY(20px); animation: up .8s ease forwards; }
.up.d1 { animation-delay: .1s } .up.d2 { animation-delay: .25s }
.up.d3 { animation-delay: .4s } .up.d4 { animation-delay: .55s } .up.d5 { animation-delay: .7s }
@keyframes up { to { opacity: 1; transform: none; } }

/* ── interior page hero ──────────────────────────────────────────────── */
.page-hero {
  position: relative; padding: 10rem var(--pad) 3.5rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 100% at 80% 0%, rgba(47,95,168,0.10), transparent 60%),
    var(--navy-deep);
  overflow: hidden;
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { margin-top: 1rem; font-size: clamp(2.4rem, 6vw, 4.2rem); }
.page-hero p { margin-top: 1.1rem; max-width: 620px; color: var(--silver); }
.page-hero-crest {
  position: absolute; top: 50%; right: -4%; transform: translateY(-50%);
  width: clamp(280px, 30vw, 460px);
  opacity: 0.06; z-index: 1; pointer-events: none;
}

/* ── jump bar (in-page section nav on the home page) ─────────────────── */
.jump {
  position: sticky; top: var(--navh); z-index: 120;
  background: rgba(244,248,253,0.94);
  backdrop-filter: blur(10px);
  border-block: 1px solid var(--line);
}
.jump-inner {
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding-inline: var(--pad);
  display: flex; gap: 0.35rem; overflow-x: auto;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.jump-inner::-webkit-scrollbar { display: none; }
.jump a {
  flex: 0 0 auto;
  font-family: var(--font-display); font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; font-size: 0.82rem; color: var(--muted);
  padding: 0.95rem 0.85rem; position: relative; transition: color .18s ease;
}
.jump a:hover { color: var(--silver); }
.jump a[aria-current="true"] { color: var(--white); }
.jump a[aria-current="true"]::after {
  content: ''; position: absolute; left: 0.55rem; right: 0.55rem; bottom: -1px;
  height: 2px; background: var(--steel);
}
/* anchored sections clear the fixed nav + sticky bar when jumped to */
.section[id], .m-sec[id] { scroll-margin-top: calc(var(--navh) + 3.2rem); }

/* alternating section band */
.band { background: var(--navy-deep); border-block: 1px solid var(--line); }

/* ── marquee (value words) ───────────────────────────────────────────── */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--navy-deep); overflow: hidden; position: relative; z-index: 2;
}
.marquee-track { display: flex; width: max-content; animation: scroll 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 1.6rem;
  font-family: var(--font-display); font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; font-size: 1.05rem; color: var(--silver);
  padding: 1.05rem 0;
}
.marquee-sep { width: 22px; height: 22px; opacity: 0.85; margin: 0 1.6rem; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ── CTA tiles ───────────────────────────────────────────────────────── */
.tiles {
  display: grid; gap: 1px; background: var(--line);
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}
/* Photo surfaces — these stay dark-scrimmed with light type. */
.tile {
  position: relative; min-height: 340px; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.8rem; background: #14264A; isolation: isolate;
  color: var(--on-photo);
}
.tile .photo-slot { position: absolute; inset: 0; z-index: -1; }
.tile::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(10,20,36,0.94) 10%, rgba(10,20,36,0.5) 55%, rgba(10,20,36,0.3));
  transition: background .25s ease;
}
.tile:hover::after { background: linear-gradient(to top, rgba(10,20,36,0.92) 5%, rgba(47,95,168,0.42) 70%, rgba(47,95,168,0.12)); }
.tile-kicker {
  font-family: var(--font-display); font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; font-size: 0.74rem; color: #9FBEE6;
}
.tile h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; line-height: 1; margin: 0.4rem 0 0.5rem; text-transform: uppercase; }
.tile p { font-size: 0.96rem; color: var(--on-photo-soft); }
.tile-go {
  margin-top: 1rem; font-family: var(--font-display); font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.82rem; color: #9FBEE6;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.tile-go::after { content: '→'; transition: transform .2s ease; }
.tile:hover .tile-go::after { transform: translateX(5px); }

/* ── photo slot (drop-in image placeholder) ──────────────────────────── */
.photo-slot { position: relative; width: 100%; height: 100%; background: var(--navy-2); overflow: hidden; }
.photo-slot img { width: 100%; height: 100%; object-fit: cover; }
.photo-slot[data-empty="true"] { display: grid; place-items: center;
  background:
    repeating-linear-gradient(45deg, rgba(47,95,168,0.06) 0 12px, transparent 12px 24px),
    var(--navy-2);
}
.photo-slot[data-empty="true"] img { display: none; }
.photo-ph {
  display: none; flex-direction: column; align-items: center; gap: 0.35rem;
  text-align: center; padding: 1rem; color: var(--muted);
}
.photo-slot[data-empty="true"] .photo-ph { display: flex; }
.photo-ph svg { width: 30px; height: 30px; opacity: 0.5; }
.photo-ph .lab { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; font-size: 0.72rem; color: var(--silver-dim); }
.photo-ph .path { font-size: 0.7rem; color: var(--muted-2); word-break: break-all; }

/* ── about / split bands ─────────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.split p + p { margin-top: 1.1rem; }
.split .lead { color: var(--silver); }

/* auto-fit, not a fixed 4 — the stat list is only as long as what we can
   actually evidence, and it shouldn't leave a hole when that's three. */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.5rem; margin-top: 2.4rem; }
.stat { border-left: 2px solid var(--steel); padding-left: 1rem; }
.stat-num { display: block; font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; line-height: 1.05; color: var(--white); }
/* word-valued stats (e.g. "In formation") sit at label scale, not numeral scale */
.stat-num.is-text { font-size: 1.5rem; letter-spacing: 0.01em; }
.stat-lab { font-size: 0.82rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* ── pillars / feature cards ─────────────────────────────────────────── */
.cards { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.card {
  background: var(--navy-1); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.8rem 1.6rem; transition: border-color .2s ease, transform .2s ease;
}
.card:hover { border-color: var(--steel-deep); transform: translateY(-3px); }
.card .num { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--steel); letter-spacing: 0.1em; }
.card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; margin: 0.6rem 0 0.5rem; text-transform: uppercase; }
.card p { color: var(--silver); font-size: 0.98rem; }

/* ── steps ───────────────────────────────────────────────────────────── */
.steps { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); counter-reset: s; }
.step { border-top: 2px solid var(--line); padding-top: 1.1rem; }
.step .s-num { font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; color: var(--steel); line-height: 1; }
.step h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; margin: 0.4rem 0 0.4rem; text-transform: uppercase; }
.step p { color: var(--silver); font-size: 0.96rem; }

/* ── clubs grid ──────────────────────────────────────────────────────── */
.clubs-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); }
.club-card {
  background: var(--navy-1); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; transition: border-color .2s ease, transform .2s ease;
}
.club-card:hover { border-color: var(--steel-deep); transform: translateY(-3px); }
.club-photo { aspect-ratio: 16 / 10; }
.club-body { padding: 1.3rem 1.4rem 1.5rem; }
.club-school { font-family: var(--font-display); font-weight: 800; font-size: 1.45rem; line-height: 1.05; text-transform: uppercase; }
.club-name { color: var(--silver); font-size: 0.96rem; margin-top: 0.25rem; }
.club-note { color: var(--muted-2); }
.club-meta { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.club-lead { font-size: 0.85rem; color: var(--muted); }
.club-lead b { color: var(--white); font-weight: 600; }
.club-lead a { color: var(--steel); text-decoration: underline; text-underline-offset: 2px; }
.badge {
  font-family: var(--font-display); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  font-size: 0.68rem; padding: 0.28rem 0.65rem; border-radius: 100px; white-space: nowrap;
}
.badge.active  { background: var(--steel-wash); color: var(--steel-deep); border: 1px solid rgba(47,95,168,0.35); }
.badge.forming { background: rgba(86,101,128,0.08); color: var(--silver-dim); border: 1px solid var(--line); }

/* ── voices (testimonials) ───────────────────────────────────────────── */
.voices { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(290px,1fr)); }
.voice {
  background: var(--navy-1); border: 1px solid var(--line); border-radius: var(--r);
  padding: 0; overflow: hidden; display: flex; flex-direction: column;
}
.voice-photo { aspect-ratio: 4 / 3; }
.voice-body { padding: 1.5rem 1.5rem 1.7rem; }
.voice-mark { font-family: var(--font-display); font-size: 2.6rem; line-height: 0.5; color: var(--steel); }
.voice-quote { margin: 0.8rem 0 1.2rem; color: var(--white); font-size: 1.05rem; }
.voice-who { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.9rem; }
.voice-club { color: var(--steel-light); font-size: 0.82rem; }

/* ── tiers (pricing) ─────────────────────────────────────────────────── */
.tiers { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); align-items: stretch; }
.tier {
  background: var(--navy-1); border: 1px solid var(--line); border-radius: var(--r);
  padding: 2rem 1.8rem; display: flex; flex-direction: column;
}
.tier.featured { border-color: var(--steel); box-shadow: 0 0 0 1px var(--steel), var(--shadow); position: relative; }
.tier.featured::before {
  content: 'Most popular'; position: absolute; top: 0; right: 1.5rem; transform: translateY(-50%);
  background: var(--steel); color: #fff; font-family: var(--font-display); font-weight: 700;
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 100px;
}
.tier-name { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; text-transform: uppercase; }
.tier-tag { color: var(--steel-light); font-size: 0.92rem; }
.tier-price { font-family: var(--font-display); font-weight: 800; font-size: 3rem; line-height: 1; margin: 1.2rem 0 0.1rem; }
.tier-note { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.tier ul { list-style: none; margin: 1.5rem 0; display: grid; gap: 0.7rem; }
.tier li { display: flex; gap: 0.6rem; font-size: 0.96rem; color: var(--silver); }
.tier li::before { content: '✓'; color: var(--steel); font-weight: 700; }
.tier .btn { margin-top: auto; justify-content: center; }

/* ── people grid ──────────────────────────────────────────────────────
   Cards rather than loose images: the headshots aren't all in yet, and a
   named monogram in a bordered card reads as finished where a bare
   placeholder reads as broken. Name is the anchor; the role sits under it
   and is simply omitted for anyone whose title isn't confirmed.          */
.people { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fill, minmax(210px,1fr)); }
.person {
  text-align: left; background: var(--navy-1);
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.person:hover { border-color: var(--steel); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.person .photo-slot { aspect-ratio: 1; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; }
.person .photo-slot .photo-ph { display: none !important; }   /* monogram replaces it */

/* initials monogram, shown until a real headshot loads */
.person-photo .mono {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.9rem); letter-spacing: 0.06em;
  color: var(--steel); background: linear-gradient(160deg, #EDF3FB, #DCE7F6);
}
.person-photo[data-empty="false"] .mono { display: none; }

.person-body { padding: 1rem 1.1rem 1.2rem; }
.person-name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.22rem;
  line-height: 1.1; text-transform: uppercase; color: var(--white);
}
.person-role { color: var(--silver); font-size: 0.9rem; margin-top: 0.2rem; }

/* ── news ────────────────────────────────────────────────────────────── */
.news-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); }
.news-card { background: var(--navy-1); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: border-color .2s, transform .2s; }
.news-card:hover { border-color: var(--steel-deep); transform: translateY(-3px); }
.news-photo { aspect-ratio: 16/9; }
.news-body { padding: 1.4rem 1.5rem 1.6rem; }
.news-meta { display: flex; gap: 0.8rem; align-items: center; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; }
.news-tag { color: var(--steel-light); font-family: var(--font-display); font-weight: 700; }
.news-date { color: var(--muted); }
.news-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; margin: 0.6rem 0 0.5rem; text-transform: uppercase; }
.news-card p { color: var(--silver); font-size: 0.96rem; }

/* ── FAQ accordion ───────────────────────────────────────────────────── */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer; color: var(--white);
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; text-transform: uppercase;
  padding: 1.4rem 2.5rem 1.4rem 0; position: relative; letter-spacing: 0.01em;
}
.faq-q:focus-visible { outline: 2px solid var(--steel-light); outline-offset: 3px; }
.faq-q::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); color: var(--steel); font-weight: 400; font-size: 1.7rem; 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 .3s ease; }
.faq-a p { padding: 0 0 1.4rem; color: var(--silver); }

/* ── forms ───────────────────────────────────────────────────────────── */
.form { max-width: 620px; display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.4rem; }
.field label { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.82rem; color: var(--silver); }
.field input, .field select, .field textarea {
  background: var(--navy-1); border: 1px solid var(--line); border-radius: var(--r);
  color: var(--white); font-family: var(--font-body); font-size: 1rem; padding: 0.8rem 0.9rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--steel); box-shadow: 0 0 0 3px var(--steel-wash);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.84rem; color: var(--muted-2); margin-top: -0.3rem; }

/* ── newsletter band ─────────────────────────────────────────────────── */
.newsletter { background: var(--navy-deep); border-block: 1px solid var(--line); position: relative; z-index: 2; }
.newsletter .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; padding-block: clamp(2.5rem, 5vw, 4rem); }
.newsletter h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem,3.5vw,2.6rem); text-transform: uppercase; line-height: 1; }
.newsletter p { color: var(--silver); margin-top: 0.6rem; }
.nl-form { display: flex; gap: 0.6rem; }
.nl-form input { flex: 1; background: var(--navy-1); border: 1px solid var(--line); border-radius: var(--r); color: var(--white); padding: 0.85rem 1rem; font-size: 1rem; }
.nl-form input:focus { outline: none; border-color: var(--steel); box-shadow: 0 0 0 3px var(--steel-wash); }
.nl-msg { font-size: 0.86rem; color: var(--steel); margin-top: 0.6rem; min-height: 1.2em; }

/* ── footer (injected) ───────────────────────────────────────────────── */
footer.site-footer { background: var(--navy-deep); border-top: 1px solid var(--line); position: relative; z-index: 2; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; padding-block: 3.5rem; }
.footer-brand img { width: 52px; height: 52px; }
.footer-brand .brand-word { font-size: 1.6rem; display: block; margin-top: 0.8rem; }
.footer-brand p { color: var(--muted); margin-top: 0.8rem; max-width: 320px; }
.footer-brand .tagline { color: var(--steel-light); font-family: var(--font-display); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.84rem; margin-top: 1rem; }
.footer-col h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.82rem; color: var(--steel); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: grid; gap: 0.6rem; }
.footer-col a { color: var(--silver); font-size: 0.95rem; transition: color .15s; }
.footer-col a:hover { color: var(--white); }
/* Legal status line — NCBO is not yet incorporated, so this sits on every
   page directly above the copyright. */
.footer-legal {
  border-top: 1px solid var(--line); padding-top: 1.4rem;
  color: var(--muted-2); font-size: 0.82rem; max-width: 70ch;
}
.footer-legal + .footer-bottom { border-top: 0; padding-top: 0.9rem; }
.footer-bottom { border-top: 1px solid var(--line); padding-block: 1.4rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; }
.footer-bottom p { color: var(--muted-2); font-size: 0.85rem; }
.socials { display: flex; gap: 1rem; }
.socials a { color: var(--muted); transition: color .15s; }
.socials a:hover { color: var(--steel-light); }
.socials svg { width: 20px; height: 20px; }

/* ── scroll reveal ───────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .tiles { grid-template-columns: repeat(2,1fr); }
  .split { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .newsletter .wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .tile { min-height: 260px; }
}
@media (max-width: 820px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  nav.site-nav.open-menu, body.nav-open nav.site-nav { background: #fff; backdrop-filter: none; }
  .mobile-menu {
    display: flex;
    position: fixed; inset: 0; z-index: 150; background: var(--navy);
    flex-direction: column; justify-content: center; gap: 0.4rem;
    padding: var(--pad); transform: translateY(-100%); transition: transform .35s ease; visibility: hidden;
  }
  body.nav-open .mobile-menu { transform: none; visibility: visible; }
  .mobile-menu a {
    font-family: var(--font-display); font-weight: 700; font-size: 2rem; text-transform: uppercase;
    letter-spacing: 0.04em; color: var(--white); padding: 0.5rem 0; border-bottom: 1px solid var(--line);
  }
  .mobile-menu a.nav-cta { color: #fff; background: var(--steel); text-align: center; border: 0; border-radius: var(--r); margin-top: 1rem; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .tiles { grid-template-columns: 1fr; }
  .tile { min-height: 200px; padding: 1.3rem; }
  .stats { grid-template-columns: 1fr 1fr; gap: 1.1rem; }
  .stat-num { font-size: 2.1rem; }
  .footer-top { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; }

  /* one column, full-width taps */
  .cards, .steps, .clubs-grid, .voices, .news-grid { grid-template-columns: minmax(0, 1fr); }
  .people { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
  .person-name { font-size: 1rem; }
  .hero h1 { font-size: clamp(2.1rem, 10vw, 3.2rem); }
  .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero { min-height: 78vh; min-height: 78svh; padding-bottom: 2.5rem; }
  .card, .club-body, .voice-body { padding: 1.3rem 1.2rem; }
  .map-card { padding: 0.9rem; }
  .map-foot { flex-direction: column; align-items: flex-start; gap: 0.7rem; }
  .faq-q { font-size: 1.1rem; padding-block: 1.15rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .marquee-track { animation: none; }
  .up { opacity: 1; transform: none; }
}

/* ── interactive US club map ─────────────────────────────────────────── */
.map-card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--navy-1);
  box-shadow: var(--shadow-sm);
  padding: clamp(1rem, 3vw, 2.2rem);
}
.map-stage { width: 100%; }
.us-map { width: 100%; height: auto; display: block; overflow: visible; }
.us-states path {
  fill: #E3ECF8;
  stroke: #C2D5EC;
  stroke-width: 0.8;
  transition: fill .2s ease;
}
/* states that host a chapter are tinted so the footprint reads at a glance */
.us-states path.has-club { fill: #BAD3F0; stroke: #8FB2DE; }

.club-dot { cursor: pointer; }
.club-dot .dot-halo {
  fill: var(--steel);
  opacity: 0.16;
  transition: opacity .2s ease;
}
.club-dot .dot-core {
  fill: var(--steel);
  stroke: #fff;
  stroke-width: 1.6;
  transition: r .2s ease, fill .2s ease;
}
.club-dot.forming .dot-core { fill: #fff; stroke: var(--steel); }
.club-dot:hover .dot-halo { opacity: 0.34; }
.club-dot:hover .dot-core { fill: var(--steel-deep); }
.club-dot:focus-visible { outline: none; }
.club-dot:focus-visible .dot-halo { opacity: 0.45; }

/* campus labels — the map is a directory, not decoration */
.dot-label {
  font-family: var(--font-display); font-weight: 800;
  font-size: 16px; letter-spacing: 0.05em; text-transform: uppercase;
  fill: #14264A; paint-order: stroke;
  stroke: #fff; stroke-width: 4px; stroke-linejoin: round;
  pointer-events: none;
}
.club-dot:hover .dot-label { fill: var(--white); }

@keyframes dotPulse { 0%,100% { opacity:0.16; } 50% { opacity:0.38; } }
.club-dot.active .dot-halo { animation: dotPulse 2.6s ease-in-out infinite; }

.map-foot {
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; justify-content: space-between;
  margin-top: 1.4rem;
}
.map-hint { color: var(--silver); margin: 0; font-size: 0.95rem; }
.map-hint b { color: var(--white); }
.map-legend { display: flex; gap: 1.2rem; }
.map-legend .lg {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; font-size: 0.78rem; color: var(--silver);
}
.map-legend .lg i {
  width: 12px; height: 12px; border-radius: 50%;
  border: 1.6px solid var(--steel); display: inline-block;
}
.map-legend .lg.active i { background: var(--steel); }
.map-legend .lg.forming i { background: #fff; }

.club-card.club-flash {
  box-shadow: 0 0 0 2px var(--steel), var(--shadow);
  transition: box-shadow .3s ease;
}
