/* ==========================================================================
   Flights for Freedom — Design System
   Palette: navy / cream / brick red / brass gold — a restrained patriotic
   identity, not stock red-white-blue primaries.
   Signature motif: the flight-path arc (departure → destination), echoing
   the exact format used in every testimonial on this site.
   ========================================================================== */

:root {
  /* Color tokens — true Old Glory red/blue, cool white (not cream), for a
     grassroots-patriotic feel rather than an official-document one */
  --navy-deep: #0A1F44;
  --navy: #133A70;
  --navy-soft: #2159A6;
  --cream: #F4F6FA;
  --paper: #FFFFFF;
  --brick: #B5222E;
  --brick-deep: #8E1B26;
  --gold: #D4AF37;
  --gold-soft: #F0D998;
  --sky: #2C6BB3;
  --ink: #13203C;
  --ink-soft: #4A5678;
  --line: rgba(19, 58, 112, 0.16);

  /* Type */
  --font-display: 'Spectral', Georgia, serif;
  --font-label: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Scale */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6.5rem;

  --radius: 6px;
  --shadow-card: 0 1px 2px rgba(14, 24, 48, 0.06), 0 6px 20px rgba(14, 24, 48, 0.08);
  --max-width: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 var(--space-2);
  line-height: 1.15;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.4rem; }

p { margin: 0 0 var(--space-2); color: var(--ink-soft); }
a { color: var(--brick); }
img { max-width: 100%; display: block; }

.eyebrow {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brick);
  display: inline-block;
  margin-bottom: var(--space-1);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

section { padding: var(--space-6) 0; }
section.tight { padding: var(--space-5) 0; }

/* Skip link for keyboard/screen-reader users */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--navy);
  color: #fff;
  padding: var(--space-1) var(--space-2);
  z-index: 200;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus {
  left: 0;
  top: 0;
}

/* Top ribbon — a quiet, literal nod to red/white/blue, used once, at the
   very top of every page, rather than leaning on it throughout */
.patriot-stripe {
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy) 33.33%, #fff 33.33%, #fff 66.66%, var(--brick) 66.66%, var(--brick) 100%);
}

/* Subtle scattered-star texture, used only behind the hero — a quiet nod
   to the flag's stars rather than a literal flag graphic */
.star-field {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    radial-gradient(circle at 8% 20%, #fff 1.5px, transparent 1.6px),
    radial-gradient(circle at 22% 65%, #fff 1.5px, transparent 1.6px),
    radial-gradient(circle at 40% 30%, #fff 1px, transparent 1.1px),
    radial-gradient(circle at 58% 75%, #fff 1.5px, transparent 1.6px),
    radial-gradient(circle at 73% 15%, #fff 1px, transparent 1.1px),
    radial-gradient(circle at 85% 55%, #fff 1.5px, transparent 1.6px),
    radial-gradient(circle at 92% 85%, #fff 1px, transparent 1.1px),
    radial-gradient(circle at 15% 90%, #fff 1px, transparent 1.1px);
  background-size: 100% 100%;
  pointer-events: none;
}
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 2px;
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */

.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--gold);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-2);
  padding-bottom: var(--space-2);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--brick));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.9rem;
}

.brand-mark-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}

.main-nav ul {
  display: flex;
  gap: var(--space-3);
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.main-nav a {
  color: #E9E4D6;
  text-decoration: none;
  font-family: var(--font-label);
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  font-weight: 600;
  padding: var(--space-1) 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.main-nav a:hover, .main-nav a[aria-current="page"] {
  color: #fff;
  border-bottom-color: var(--gold);
}

.nav-cta {
  background: var(--brick);
  color: #fff !important;
  padding: 0.6rem 1.1rem !important;
  border-radius: var(--radius);
  border-bottom: none !important;
}
.nav-cta:hover { background: var(--brick-deep); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius);
  color: #fff;
  padding: 0.4rem 0.7rem;
  font-size: 1.1rem;
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--navy);
    border-bottom: 3px solid var(--gold);
  }
  .main-nav.open { display: block; }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-2) var(--space-3) var(--space-3);
    gap: var(--space-1);
  }
  .nav-cta { text-align: center; }
}

/* ==========================================================================
   Hero + flight-path signature motif
   ========================================================================== */

.hero {
  position: relative;
  background: radial-gradient(ellipse at top right, var(--navy-soft), var(--navy-deep) 70%);
  color: #fff;
  overflow: hidden;
  padding: var(--space-6) 0 var(--space-5);
}

.hero .flight-path {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-5);
  align-items: center;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-logo-showcase { order: -1; max-width: 260px; margin: 0 auto; }
}

.hero-logo-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-glow {
  position: absolute;
  inset: -8%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.35), rgba(181, 34, 46, 0.12) 60%, transparent 78%);
  filter: blur(30px);
  border-radius: 50%;
}

.hero-logo-plaque {
  position: relative;
  width: min(400px, 88%);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #FFFFFF 0%, #F4F6FA 65%, #E9EDF4 100%);
  border: 5px solid var(--gold);
  box-shadow: 0 25px 55px rgba(0,0,0,0.45), 0 0 0 3px rgba(255,255,255,0.5) inset;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12%;
}

.hero-logo-img {
  position: relative;
  width: 100%;
  max-width: none;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.18));
}

.hero .eyebrow { color: var(--gold-soft); }

.hero h1 { color: #fff; }

.hero p.lede {
  font-size: 1.15rem;
  color: #D7DCEA;
  max-width: 60ch;
}

.hero-ctas {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-top: var(--space-3);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-label);
  letter-spacing: 0.04em;
  font-weight: 600;
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.12s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary { background: var(--brick); color: #fff; }
.btn-primary:hover { background: var(--brick-deep); }

.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: var(--gold-soft); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: #fff; }

.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
}

/* ==========================================================================
   Cards: "How You Can Help" + generic card grid
   ========================================================================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.help-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: var(--space-3);
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--gold);
  text-decoration: none;
  color: var(--ink);
  display: block;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.help-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(14,24,48,0.14);
}
.help-card h3 { margin-bottom: 0.4rem; }
.help-card p { margin-bottom: 0; font-size: 0.95rem; }
.help-card .card-icon {
  font-family: var(--font-label);
  font-size: 1.6rem;
  color: var(--brick);
  margin-bottom: var(--space-1);
}

/* ==========================================================================
   Transparency stat band
   ========================================================================== */

.stat-band {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: var(--space-4);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  align-items: center;
  margin-top: var(--space-5);
}

/* When the banner is a link (e.g. the "Read Their Stories" CTA) */
a.stat-band {
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
a.stat-band:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.25);
}

.stat-band-red {
  background: var(--brick);
  margin-top: var(--space-3);
}
.stat-band-red .stat-number { color: var(--gold-soft); }
.stat-band-red .stat-label { color: var(--gold-soft); }

.stat-band .stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-band .stat-label {
  font-family: var(--font-label);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--gold-soft);
}

@media (max-width: 620px) {
  .stat-band { grid-template-columns: 1fr; text-align: center; }
}

/* ==========================================================================
   Story / testimonial cards
   ========================================================================== */

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.story-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.story-photo {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--navy-soft), var(--sky));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-label);
  font-size: 0.85rem;
  text-align: center;
  padding: var(--space-2);
  position: relative;
  overflow: hidden;
}
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.story-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}

.story-body { padding: var(--space-2) var(--space-3) var(--space-3); }

.story-name {
  font-family: var(--font-label);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy);
  font-size: 1.02rem;
  margin-bottom: 0.15rem;
}

.story-route {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--brick);
  font-family: var(--font-label);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-1);
}
.story-route svg { flex-shrink: 0; }

.story-quote {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.95rem;
  border-left: 3px solid var(--gold);
  padding-left: 0.7rem;
  margin: 0.5rem 0 0;
}

.story-quote-from {
  display: block;
  margin-top: 0.4rem;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ==========================================================================
   Sponsors — tier badges
   ========================================================================== */

.tier-block { margin-top: var(--space-4); }

.tier-heading {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
  padding-bottom: var(--space-1);
  border-bottom: 2px solid var(--line);
}

.tier-badge {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  color: #fff;
}

.tier-hypersonic { background: linear-gradient(135deg, var(--gold), var(--brick)); }
.tier-stealth { background: var(--navy); }
.tier-fighter { background: var(--brick); }
.tier-bomber { background: var(--sky); }
.tier-recon { background: var(--ink-soft); }

.tier-amount { color: var(--ink-soft); font-size: 0.9rem; font-family: var(--font-label); }

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-2);
}

.sponsor-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: var(--space-2);
  box-shadow: var(--shadow-card);
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.15s ease;
}
a.sponsor-card:hover { transform: translateY(-2px); }

.sponsor-logo-text {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.sponsor-logo {
  width: 100%;
  height: 64px;
  object-fit: contain;
  border-radius: var(--radius);
}

.sponsor-name { font-weight: 700; font-size: 0.9rem; }
.sponsor-meta { font-size: 0.78rem; color: var(--ink-soft); }

.sponsor-cta-card {
  border: 2px dashed var(--gold);
  background: transparent;
  color: var(--brick);
  font-family: var(--font-label);
  font-weight: 700;
}

/* ==========================================================================
   Forms
   ========================================================================== */

.form-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: var(--space-4);
  box-shadow: var(--shadow-card);
  max-width: 640px;
}

.field { margin-bottom: var(--space-2); }

.field label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.field .hint { font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.3rem; }

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.7rem 0.8rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--sky);
  outline: none;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.form-status {
  margin-top: var(--space-2);
  padding: var(--space-2);
  border-radius: var(--radius);
  font-size: 0.95rem;
  display: none;
}
.form-status.show { display: block; }
.form-status.success { background: #E4F1E6; color: #1E5631; border: 1px solid #1E5631; }
.form-status.error { background: #FBEAEA; color: var(--brick-deep); border: 1px solid var(--brick); }
.form-status.warn { background: #FFF7E6; color: #7A5200; border: 1px solid var(--gold); }

/* Inline field-level validation errors */
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--brick);
  background: #FDF6F6;
}
.field.has-error label { color: var(--brick-deep); }
.field-error-msg {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brick-deep);
}

.closed-notice {
  background: var(--paper);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: var(--space-3);
  box-shadow: var(--shadow-card);
}

/* ==========================================================================
   Donorbox placeholder widget
   A visual mockup only — no real payment fields, clearly flagged as a demo.
   Swap for the real Donorbox embed once account access is available.
   ========================================================================== */

.give-events-grid {
  display: grid;
  grid-template-columns: minmax(320px, 460px) minmax(320px, 1fr);
  gap: var(--space-4);
  align-items: start;
  margin-top: var(--space-3);
}
@media (max-width: 960px) {
  .give-events-grid { grid-template-columns: 1fr; }
}

.donorbox-widget {
  background: var(--paper);
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  padding: var(--space-4);
  max-width: 460px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.donorbox-demo-flag {
  position: absolute;
  top: -14px;
  left: var(--space-3);
  background: var(--brick);
  color: #fff;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

.donorbox-toggle {
  display: flex;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 0.25rem;
  margin-bottom: var(--space-2);
}

.db-toggle-btn {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.55rem;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink-soft);
  border-radius: calc(var(--radius) - 2px);
  cursor: pointer;
}
.db-toggle-btn.active { background: var(--navy); color: #fff; }

.donorbox-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: var(--space-2);
}

.db-amount-btn {
  padding: 0.7rem;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  font-family: var(--font-label);
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
}
.db-amount-btn.active { border-color: var(--brick); background: var(--brick); color: #fff; }
.db-amount-other { grid-column: span 1; font-size: 0.85rem; }

.donorbox-note {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin: var(--space-2) 0 0;
  text-align: center;
}

/* ==========================================================================
   Disclosure box
   ========================================================================== */

.disclosure-box {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius);
  padding: var(--space-3);
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-top: var(--space-4);
}
.disclosure-box strong { color: var(--navy); }
.disclosure-box.placeholder-flag {
  border-left-color: var(--brick);
}
.disclosure-box .placeholder-note {
  display: inline-block;
  margin-top: var(--space-1);
  color: var(--brick);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   Instagram / calendar embeds
   ========================================================================== */

.embed-frame {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.embed-frame iframe { width: 100%; border: 0; display: block; }
.embed-placeholder {
  padding: var(--space-4);
  text-align: center;
  color: var(--ink-soft);
  font-family: var(--font-label);
  background: repeating-linear-gradient(135deg, var(--cream), var(--cream) 10px, #efe9db 10px, #efe9db 20px);
}

/* ==========================================================================
   Section variants
   ========================================================================== */

.section-navy {
  background: var(--navy);
  color: #fff;
}
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy p { color: #C9D0E2; }

.section-cream { background: var(--cream); }
.section-white { background: var(--paper); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: center;
}
@media (max-width: 780px) {
  .two-col { grid-template-columns: 1fr; gap: var(--space-3); }
}

.photo-placeholder {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--navy-soft), var(--navy-deep));
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3);
  font-family: var(--font-label);
  font-size: 0.9rem;
  box-shadow: var(--shadow-card);
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-3);
}
.board-member {
  text-align: center;
}
.board-photo {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--navy-soft);
  margin: 0 auto var(--space-1);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  color: #fff;
  font-family: var(--font-label);
  font-weight: 700;
}
.board-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.board-title {
  font-family: var(--font-label);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--brick);
}
.board-bio {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: var(--space-1);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--navy-deep);
  color: #C9D0E2;
  padding: var(--space-5) 0 var(--space-3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-4);
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-grid h3 {
  color: #fff;
  font-family: var(--font-label);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-2);
}

.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 0.5rem; }
.footer-grid a { color: #C9D0E2; text-decoration: none; font-size: 0.92rem; }
.footer-grid a:hover { color: #fff; text-decoration: underline; }

.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--space-2);
}
.social-icons a {
  width: 38px; height: 38px;
  border-radius: 10px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.15s ease;
}
.social-icons a img { width: 100%; height: 100%; object-fit: cover; }
.social-icons a:hover { transform: translateY(-2px); }

.footer-disclosure {
  margin-top: var(--space-5);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.82rem;
  color: #9BA6C4;
}
/* Overrides .disclosure-box's white card styling (background/border/padding) so the
   disclosure sits directly on the navy footer instead of as a mismatched white box —
   the white-box + light-text combo is what failed the WCAG 2 AA 4.5:1 contrast check
   (light gray-blue / white text was landing on white, not navy). Text colors above and
   below already meet AA comfortably once read against the navy footer they're meant for. */
.footer-disclosure.disclosure-box {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}
.footer-disclosure h3 {
  color: #fff;
  font-family: var(--font-label);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-1);
}
.footer-disclosure strong {
  color: #fff;
}
.footer-disclosure .placeholder-note {
  color: var(--gold-soft);
  font-weight: 700;
}

.footer-bottom {
  margin-top: var(--space-3);
  font-size: 0.8rem;
  color: #7A87AC;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-1);
}

/* ==========================================================================
   Utility
   ========================================================================== */

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.center-copy { max-width: 640px; margin: 0 auto var(--space-4); text-align: center; }
.center-copy.left { text-align: left; margin-left: 0; }
