/* ============================================
   BREAKNECK INDUSTRIES — DESIGN TOKENS
   ============================================
   Color:
     --ink      #0F2340  deep institutional navy, hero/signature backgrounds
     --navy     #1F4788  primary brand navy (established brand color)
     --gold     #C8A037  brass/medal accent
     --rust     #8B4A2E  rare tertiary accent, warnings/emphasis only
     --paper    #EDE8DC  aged paper, light section backgrounds
     --steel    #3D4450  secondary text on light backgrounds
   Type:
     Oswald          — display / headlines / stenciled signage feel
     Source Serif 4  — body copy, reported-document feel
     IBM Plex Mono   — stats, labels, data
   ============================================ */

:root {
  --ink: #0F2340;
  --ink-deep: #081527;
  --navy: #1F4788;
  --gold: #C8A037;
  --gold-bright: #E0B94D;
  --rust: #8B4A2E;
  --paper: #EDE8DC;
  --paper-dim: #E2DCCC;
  --steel: #3D4450;
  --white: #FBFAF7;

  --font-display: 'Oswald', sans-serif;
  --font-body: 'Source Serif 4', serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

* { box-sizing: border-box; }
html { 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;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; letter-spacing: 0.02em; }
p { margin: 0; }
ol, ul { margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* Global safety net: [hidden] must always win over any display rule
   set by a class on the same element (e.g. .btn { display: inline-block }
   would otherwise out-specificity the default browser [hidden] rule). */
[hidden] { display: none !important; }

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 1.8rem;
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-ghost-light {
  border-color: var(--paper);
  color: var(--paper);
}
.btn-ghost-light:hover { background: var(--paper); color: var(--ink); }
.btn-solid-gold {
  background: var(--gold);
  color: var(--ink-deep);
  border-color: var(--gold);
}
.btn-solid-gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); }

/* ============ PRE-LAUNCH BANNER ============ */
.prelaunch-banner {
  background: var(--ink-deep);
  border-bottom: 1px solid var(--gold);
  padding: 0.7rem 1.5rem;
  text-align: center;
}
.prelaunch-banner-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold-bright);
  margin-bottom: 0.3rem;
}
.prelaunch-banner-text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(251,250,247,0.75);
  max-width: 62ch;
  margin: 0 auto;
  line-height: 1.5;
}

.prelaunch-pill {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--ink-deep);
  background: var(--gold);
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
  white-space: nowrap;
}
.nav-brand-group { display: flex; align-items: center; gap: 0.7rem; }

/* ============ NAV ============ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 35, 64, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(200, 160, 55, 0.25);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
}
.nav-wordmark-dot { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 1.75rem;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--paper-dim);
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.55rem 1rem;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-cta:hover { background: var(--gold); color: var(--ink-deep); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
}
.nav-burger span {
  width: 22px;
  height: 2px;
  background: var(--paper);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--ink-deep) 0%, var(--ink) 55%, var(--navy) 130%);
  color: var(--white);
  padding: 5rem 1.5rem 0;
  overflow: hidden;
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: repeating-linear-gradient(0deg, #fff 0 1px, transparent 1px 3px);
  pointer-events: none;
}
.hero-inner {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  padding-bottom: 4rem;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--gold-bright);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  line-height: 1.12;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.hero-highlight {
  color: var(--gold);
  position: relative;
}
.hero-sub {
  margin: 2rem auto 0;
  max-width: 680px;
  font-size: 1.08rem;
  color: var(--paper-dim);
  line-height: 1.75;
}
.hero-ctas {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(200,160,55,0.3);
}
.triptych-frame { position: relative; aspect-ratio: 4/3; overflow: hidden; border-left: 1px solid rgba(255,255,255,0.06); }
.triptych-frame:first-child { border-left: none; }
.triptych-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
  transition: transform 0.6s ease;
}
.triptych-frame:hover .triptych-img { transform: scale(1.04); }
.triptych-archival .triptych-img { filter: grayscale(0.55) sepia(0.25) contrast(1.1); }
.triptych-overlay-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 1.1rem 1.2rem 1.3rem;
  background: linear-gradient(0deg, rgba(8,15,27,0.92) 0%, rgba(8,15,27,0.35) 55%, transparent 100%);
}
.triptych-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--gold-bright);
  border: 1px solid var(--gold);
  padding: 0.2rem 0.55rem;
  align-self: flex-start;
}
.triptych-caption-text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(251,250,247,0.9);
  line-height: 1.45;
  max-width: 34ch;
}
/* Retained for any remaining placeholder blocks (e.g. campus rendering not yet supplied) */
.triptych-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.2rem;
  text-align: center;
  background:
    repeating-linear-gradient(45deg, rgba(200,160,55,0.06) 0 2px, transparent 2px 14px),
    linear-gradient(200deg, #16294a, #0c1a30);
}
.triptych-caption {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(237,232,220,0.55);
  line-height: 1.5;
  max-width: 22ch;
}

/* ============ SECTIONS (generic) ============ */
.section { padding: 5.5rem 1.5rem; }
.section-inner { max-width: 1080px; margin: 0 auto; }
.section-dark { background: var(--navy); color: var(--white); }
.section-ink { background: var(--ink-deep); color: var(--white); }
.section-paper { background: var(--paper); color: var(--ink); }

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}
.section-eyebrow-gold { color: var(--gold); }
.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  text-transform: uppercase;
  line-height: 1.2;
  max-width: 20ch;
  margin-bottom: 1.5rem;
}
.section-title-dark { color: var(--ink); }
.section-lede {
  font-size: 1.08rem;
  max-width: 68ch;
  color: var(--paper-dim);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.section-lede-dark { color: var(--steel); }
.section-footnote {
  margin-top: 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
}
.section-footnote-dark {
  margin-top: 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--steel);
  border-top: 1px solid rgba(15,35,64,0.15);
  padding-top: 1.5rem;
}

/* ============ GAUGES (Crisis stats) ============ */
.gauge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.2);
}
.gauge {
  padding: 1.8rem 1.4rem;
  border-right: 1px solid rgba(255,255,255,0.2);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.gauge:last-child { border-right: none; }
.gauge-value {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-bright);
}
.gauge-label { font-size: 0.92rem; color: var(--paper-dim); line-height: 1.4; }
.gauge-source { font-family: var(--font-mono); font-size: 0.7rem; color: rgba(255,255,255,0.45); margin-top: auto; }

/* ============ ROSTER (six tracks) ============ */
.roster { border-top: 2px solid var(--ink); margin-bottom: 3.5rem; }
.roster-row {
  display: grid;
  grid-template-columns: 70px 260px 1fr;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(15,35,64,0.15);
}
.roster-pct {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 600;
}
.roster-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; }
.roster-detail { color: var(--steel); font-size: 0.95rem; }

/* ============ CYCLE (operating model — accordion) ============ */
.cycle-block { border-top: 1px solid rgba(15,35,64,0.2); padding-top: 2.5rem; }
.cycle-title { font-size: 1.4rem; text-transform: uppercase; margin-bottom: 0.6rem; }
.cycle-intro { font-family: var(--font-mono); font-size: 0.85rem; color: var(--steel); margin-bottom: 1.5rem; }

.cycle-accordion { border-top: 2px solid var(--ink); margin-bottom: 2rem; }
.cycle-item { border-bottom: 1px solid rgba(15,35,64,0.2); }
.cycle-item-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.1rem 0.2rem;
  text-align: left;
  transition: background 0.2s ease;
}
.cycle-item-header:hover { background: rgba(31,71,136,0.06); }
.cycle-num { font-family: var(--font-mono); font-size: 0.85rem; color: var(--gold); min-width: 28px; }
.cycle-word { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 1.1rem; flex: 1; }
.cycle-chevron {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  color: var(--steel);
  transition: transform 0.25s ease;
  width: 20px;
  text-align: center;
}
.cycle-item-header[aria-expanded="true"] .cycle-chevron { transform: rotate(45deg); color: var(--gold); }
.cycle-item-body {
  padding: 0 0.2rem 1.4rem 2.9rem;
  max-width: 68ch;
  animation: cycleReveal 0.3s ease;
}
.cycle-item-body p { color: var(--steel); line-height: 1.75; }
@keyframes cycleReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.cycle-refrain {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 1.5;
  margin-bottom: 2rem;
  font-weight: 600;
}
.cycle-caption { max-width: 68ch; color: var(--steel); line-height: 1.7; }

/* ============ CAMPUS ============ */
.campus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.campus-card {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 1.8rem;
}
.campus-num { font-family: var(--font-mono); color: var(--gold-bright); font-size: 0.85rem; }
.campus-card h3 { font-size: 1.15rem; margin: 0.8rem 0 0.8rem; text-transform: uppercase; }
.campus-card p { color: var(--paper-dim); font-size: 0.95rem; line-height: 1.65; }
.campus-photo-block { position: relative; }
.campus-img { width: 100%; height: auto; display: block; border: 1px solid rgba(255,255,255,0.15); }
.campus-caption {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.8rem;
  line-height: 1.5;
  max-width: 70ch;
}

/* ============ PARTNERSHIP LADDER ============ */
.ladder { border-top: 2px solid var(--ink); margin-bottom: 2rem; }
.ladder-row {
  display: grid;
  grid-template-columns: 50px 220px 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(15,35,64,0.15);
}
.ladder-level {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 700;
}
.ladder-name { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 0.98rem; }
.ladder-detail { color: var(--steel); font-size: 0.95rem; }

/* ============ THE BOARD (signature element) ============ */
.board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 0;
}
.board-panel {
  background: #0a1830;
  padding: 2.4rem 1.2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  transition: background 0.25s ease;
}
.board-bulb {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(200,160,55,0.25);
  box-shadow: 0 0 0 rgba(224,185,77,0);
  transition: background 0.25s ease, box-shadow 0.25s ease;
  margin-bottom: 0.4rem;
}
.board-label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 600;
}
.board-sub {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}
.board-panel:hover,
.board-panel:focus-visible,
.board-panel.is-active {
  background: #14265078;
}
.board-panel:hover .board-bulb,
.board-panel:focus-visible .board-bulb,
.board-panel.is-active .board-bulb {
  background: var(--gold-bright);
  box-shadow: 0 0 14px 3px rgba(224,185,77,0.65);
}
.board-panel.is-active .board-label { color: var(--gold-bright); }

.board-detail {
  margin-top: 0;
  background: #0a1830;
  border: 1px solid rgba(255,255,255,0.15);
  border-top: none;
  padding: 2.5rem 2rem;
  animation: boardReveal 0.35s ease;
}
@keyframes boardReveal {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.board-detail h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}
.board-detail-lede { color: var(--paper-dim); line-height: 1.75; margin-bottom: 1.5rem; max-width: 70ch; }
.board-detail p { color: var(--paper-dim); line-height: 1.7; }
.board-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  margin-bottom: 1.8rem;
}
.board-detail-grid h4 {
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.board-detail-section {
  max-width: 70ch;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.board-detail-section:last-of-type { border-bottom: none; }
.board-detail-section h4 {
  font-size: 1.05rem;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}
.board-detail-subhead {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.board-detail-section p { margin-bottom: 0.9rem; }
.board-detail-section p:last-child { margin-bottom: 0; }

.req-list {
  list-style: none;
  margin: 1rem 0 1.2rem;
  padding: 0;
}
.req-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.6rem;
  color: var(--paper-dim);
  line-height: 1.5;
}
.req-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.req-list-compact li { font-size: 0.92rem; }

.board-manifesto {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 2rem;
  padding-top: 2rem;
  max-width: 72ch;
}
.board-manifesto-eyebrow {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.board-manifesto-body {
  color: var(--paper-dim);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.board-manifesto-close {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  font-style: italic;
}
.process-list {
  counter-reset: step;
  margin-bottom: 1.8rem;
  max-width: 70ch;
}
.process-list li {
  counter-increment: step;
  list-style: none;
  position: relative;
  padding-left: 2.4rem;
  margin-bottom: 1rem;
  color: var(--paper-dim);
  line-height: 1.65;
}
.process-list li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink-deep);
  background: var(--gold);
  width: 1.6rem; height: 1.6rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.process-list strong { color: var(--white); }

.board-form { max-width: 640px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-row label, .form-row-full {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.form-row input, .form-row-full input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 0.7rem 0.8rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.form-submit { margin-top: 0.5rem; }
.form-note {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

/* ============ FOUNDER ============ */
.founder-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: center;
}
.founder-photo { aspect-ratio: 4/5; overflow: hidden; }
.founder-img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.founder-quote {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 1.5rem;
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
}
.founder-name { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.founder-title { font-family: var(--font-mono); font-size: 0.85rem; color: var(--steel); }
.founder-date { font-family: var(--font-mono); font-size: 0.78rem; color: rgba(61,68,80,0.65); margin-top: 0.2rem; }

/* ============ FOOTER ============ */
.site-footer { background: var(--ink-deep); color: var(--paper-dim); }
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}
.footer-logo-mark { width: 64px; height: auto; margin-bottom: 0.8rem; border-radius: 2px; }
.footer-wordmark { font-size: 1.2rem; margin-bottom: 0.6rem; }
.footer-tagline { font-size: 0.92rem; color: rgba(255,255,255,0.55); max-width: 32ch; }
.footer-heading {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.footer-col p { margin-bottom: 0.5rem; font-size: 0.92rem; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.2rem 1.5rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}
.footer-attribution {
  max-width: 62ch;
  margin: 0.8rem auto 0;
  line-height: 1.6;
  color: rgba(255,255,255,0.32);
  font-size: 0.68rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--ink-deep);
    padding: 1.2rem 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(200,160,55,0.25);
  }
  .nav-links.is-open { display: flex; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
  .gauge-grid { grid-template-columns: repeat(2, 1fr); }
  .gauge { border-bottom: 1px solid rgba(255,255,255,0.2); }
  .campus-grid { grid-template-columns: 1fr; }
  .board { grid-template-columns: repeat(2, 1fr); }
  .board-detail-grid { grid-template-columns: 1fr; }
  .founder-inner { grid-template-columns: 1fr; }
  .founder-photo { max-width: 260px; margin: 0 auto; }
  .roster-row { grid-template-columns: 50px 1fr; }
  .roster-detail { grid-column: 2; }
  .ladder-row { grid-template-columns: 40px 1fr; }
  .ladder-detail { grid-column: 2; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero-triptych { grid-template-columns: 1fr; }
  .board { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 1.2rem; }
}
