/* ============================================================
   ForestHayes.com — stylesheet
   Palette: cream #FBF5E9 · navy #101F44 · red #D7263D · gold #F5B826
   Type: Anton (display) · Public Sans (body)
   ============================================================ */

:root {
  /* Campaign blue = Red Bull sugar-free can blue */
  --cream: #FBF5E9;
  --navy: #00509D;
  --navy-deep: #003C77;
  --red: #D7263D;
  --gold: #F5B826;
  --gold-dark: #D99A0B;
  --paper: #FFFFFF;
  --sky: #E7F0FB;
  --ink: #0E2E56;
  --muted: #55637A;
  --border: 3px solid var(--navy);
  --shadow-pop: 8px 8px 0 rgba(0, 60, 119, 0.18);
  --font-display: 'Anton', 'Arial Narrow', Impact, sans-serif;
  --font-body: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- type helpers ---------- */
.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
  font-weight: 400;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow .star { color: var(--red); }

.section { padding: 88px 0; }
.section-head { margin-bottom: 44px; }
.section-head .eyebrow { color: var(--red); margin-bottom: 10px; }
.section-head h2 { font-size: clamp(38px, 5.5vw, 62px); color: var(--navy); }
.section-head p.lede { max-width: 640px; margin-top: 14px; font-size: 18px; color: var(--muted); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: var(--border);
}
.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.wordmark {
  font-family: var(--font-display);
  font-size: 26px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.wordmark .star { color: var(--red); font-size: 20px; }

.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  padding: 4px 0;
  border-bottom: 3px solid transparent;
}
.nav-links a:hover { border-bottom-color: var(--red); }

.btn {
  display: inline-block;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 12px 26px;
  border: var(--border);
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn:active { transform: translate(2px, 2px); }
.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 5px 5px 0 var(--navy); }
.btn-gold:hover { background: #FFC93C; }
.btn-red { background: var(--red); color: #fff; box-shadow: 5px 5px 0 var(--navy); }
.btn-red:hover { background: #E93B51; }
.btn-ghost { background: transparent; color: #fff; border-color: #fff; box-shadow: none; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn-lg { font-size: 22px; padding: 16px 34px; }

.nav-toggle {
  display: none;
  background: none;
  border: var(--border);
  padding: 6px 12px;
  font-size: 20px;
  cursor: pointer;
  color: var(--navy);
  background: var(--cream);
}

/* ---------- hero ---------- */
.hero {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1.5px, transparent 1.6px);
  background-size: 26px 26px;
  pointer-events: none;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 88px;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.25);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-eyebrow .dot { color: var(--gold); }
.hero h1 {
  font-size: clamp(64px, 10vw, 132px);
  color: #fff;
}
.hero h1 .accent { color: var(--gold); }
.hero .tagline {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(20px, 2.6vw, 30px);
  color: var(--gold);
  letter-spacing: 0.03em;
  margin-top: 16px;
}
.hero .sub {
  margin-top: 18px;
  font-size: 18px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.85);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }

.lang-row { display: flex; gap: 8px; margin-top: 28px; flex-wrap: wrap; }
.lang-chip {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 13px;
  cursor: pointer;
  font-family: var(--font-body);
}
.lang-chip.active, .lang-chip:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.hero-photo { position: relative; justify-self: center; }
.hero-photo .frame {
  width: min(380px, 80vw);
  border: 6px solid var(--cream);
  box-shadow: 14px 14px 0 var(--red);
  transform: rotate(2deg);
  background: #fff;
}
.hero-photo .frame img { width: 100%; height: auto; }
.sticker {
  position: absolute;
  bottom: -22px;
  left: -30px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: 0.05em;
  padding: 10px 18px;
  border: var(--border);
  transform: rotate(-5deg);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.25);
}

/* ---------- ticker ---------- */
.ticker {
  background: var(--gold);
  border-top: var(--border);
  border-bottom: var(--border);
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-block;
  animation: ticker 26s linear infinite;
  padding: 13px 0;
}
.ticker span {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 21px;
  color: var(--navy);
  letter-spacing: 0.05em;
  margin: 0 18px;
}
.ticker .tstar { color: var(--red); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- about ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}
.about-copy p { margin-bottom: 18px; font-size: 17.5px; }
.about-copy strong { color: var(--navy); }

.cred-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 8px; }
.chip {
  background: var(--paper);
  border: 2px solid var(--navy);
  font-size: 13.5px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 100px;
}
.chip .star { color: var(--red); margin-right: 6px; }

.about-photos { position: relative; display: grid; gap: 26px; }
.polaroid {
  background: #fff;
  border: var(--border);
  padding: 10px 10px 14px;
  box-shadow: var(--shadow-pop);
}
.polaroid img { width: 100%; height: 300px; object-fit: cover; object-position: center 22%; }
.polaroid figcaption { font-size: 13.5px; font-weight: 600; margin-top: 10px; color: var(--muted); }
.polaroid.tilt-l { transform: rotate(-1.6deg); }
.polaroid.tilt-r { transform: rotate(1.6deg); }

/* ---------- record ---------- */
.section-sky { background: var(--sky); border-top: var(--border); border-bottom: var(--border); }
.record-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.record-card {
  background: var(--paper);
  border: var(--border);
  box-shadow: var(--shadow-pop);
  display: flex;
  flex-direction: column;
}
/* Faces sit in the upper third of most photos — bias the crop up so heads
   are never clipped when a wide box covers a taller source image. */
.record-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  object-position: center 20%;
  border-bottom: var(--border);
  background: var(--sky);
}
/* Design graphics (endorsement cards, signs) must never be cropped */
.record-card img.img-graphic,
.shot img.img-graphic {
  object-fit: contain;
  object-position: center;
  background: var(--navy);
}
.record-card .body { padding: 22px 24px 26px; }
.record-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.record-card p { font-size: 15.5px; color: var(--muted); }
.record-card .year {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  margin-bottom: 12px;
}

/* ---------- issues ---------- */
.issue-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.issue-card {
  background: var(--paper);
  border: var(--border);
  padding: 30px 28px 34px;
  box-shadow: var(--shadow-pop);
  position: relative;
  display: flex;
  flex-direction: column;
}
.issue-card .icon { font-size: 38px; margin-bottom: 16px; }
.issue-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 27px;
  line-height: 1.02;
  color: var(--navy);
  margin-bottom: 14px;
}
.issue-card p { font-size: 15.5px; margin-bottom: 18px; }
.issue-card blockquote {
  margin-top: auto;
  border-left: 5px solid var(--gold);
  padding: 10px 14px;
  background: var(--cream);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}
.issue-card blockquote cite { display: block; font-style: normal; font-weight: 600; font-size: 12.5px; color: var(--muted); margin-top: 6px; }

/* ---------- gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.shot {
  position: relative;
  border: var(--border);
  overflow: hidden;
  background: var(--navy);
  aspect-ratio: 4 / 3;
}
.shot img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; transition: transform 0.35s ease, opacity 0.35s ease; }
.shot:hover img { transform: scale(1.045); opacity: 0.85; }
.shot figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(10, 21, 48, 0.92));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 26px 12px 10px;
}
.shot.wide { grid-column: span 2; }
.gallery-note { margin-top: 18px; font-size: 13px; color: var(--muted); }

/* ---------- join ---------- */
.join { background: var(--navy); color: #fff; border-top: var(--border); }
.join .inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.join h2 { font-size: clamp(38px, 5vw, 58px); color: #fff; }
.join h2 .accent { color: var(--gold); }
.join p.lede { color: rgba(255, 255, 255, 0.8); margin-top: 14px; font-size: 17px; }
.join-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.join-form input {
  padding: 14px 16px;
  font-size: 15.5px;
  font-family: var(--font-body);
  border: var(--border);
  background: var(--cream);
  color: var(--ink);
  width: 100%;
}
.join-form input:focus { outline: 3px solid var(--gold); }
.join-form .full { grid-column: 1 / -1; }
.join-form button { grid-column: 1 / -1; }
.join-fineprint { grid-column: 1 / -1; font-size: 11.5px; color: rgba(255, 255, 255, 0.55); }
.form-success {
  grid-column: 1 / -1;
  background: var(--gold);
  color: var(--navy);
  border: var(--border);
  font-weight: 800;
  padding: 16px;
  display: none;
}

/* ---------- contribute ---------- */
.donate-panel {
  background: var(--paper);
  border: var(--border);
  box-shadow: 12px 12px 0 var(--gold);
  padding: 44px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
}
.donate-panel h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 34px;
  color: var(--navy);
  margin-bottom: 10px;
}
.donate-panel .sub { color: var(--muted); margin-bottom: 24px; font-size: 16px; }
.amount-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.amount-btn {
  font-family: var(--font-display);
  font-size: 22px;
  padding: 16px 8px;
  background: var(--cream);
  border: var(--border);
  color: var(--navy);
  cursor: pointer;
  text-transform: uppercase;
}
.amount-btn:hover { background: var(--gold); }
.amount-btn.selected { background: var(--navy); color: var(--gold); }
.donate-cta { margin-top: 18px; width: 100%; text-align: center; }
.secure-note { margin-top: 14px; font-size: 12.5px; color: var(--muted); }

.give-ways h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 14px;
}
.give-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border: 2px solid var(--navy);
  padding: 13px 16px;
  margin-bottom: 10px;
  background: var(--cream);
  font-weight: 700;
  font-size: 15px;
}
.give-card .handle { font-weight: 600; color: var(--muted); font-size: 14px; }
.give-card .soon { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); font-weight: 800; }
.compliance { margin-top: 18px; font-size: 11.5px; color: var(--muted); line-height: 1.55; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, 0.8); padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 44px; align-items: start; }
.site-footer .wordmark { color: #fff; font-size: 30px; }
.footer-logo { display: block; max-width: 330px; }
.footer-logo img { width: 100%; height: auto; display: block; border: 2px solid rgba(255, 255, 255, 0.22); }
.footer-tag { margin-top: 16px; font-size: 14.5px; max-width: 330px; }
.social-row { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
}
.social-row a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-col h5 {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: rgba(255, 255, 255, 0.75); text-decoration: none; font-size: 14.5px; }
.footer-col a:hover { color: var(--gold); }
.paid-for {
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 12px 18px;
  display: inline-block;
  font-size: 12.5px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-top: 8px;
  max-width: 300px;
  text-wrap: balance;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 44px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- phase 2 extras ---------- */
.preview-banner {
  background: var(--red);
  color: #fff;
  text-align: center;
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 16px;
}
.ballot-chip {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 17px;
  padding: 9px 18px;
  border: var(--border);
  transform: rotate(-1.5deg);
  margin-bottom: 24px;
  box-shadow: 5px 5px 0 rgba(0,0,0,0.25);
}
.action-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.action-card {
  background: var(--paper);
  border: var(--border);
  box-shadow: var(--shadow-pop);
  padding: 30px 26px;
  text-align: center;
}
.action-card .icon { font-size: 40px; }
.action-card h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 24px; color: var(--navy); margin: 12px 0 10px; }
.action-card p { font-size: 14.5px; color: var(--muted); margin-bottom: 18px; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
}

/* ---------- modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(10, 21, 48, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--cream);
  border: var(--border);
  box-shadow: 12px 12px 0 var(--gold);
  max-width: 460px;
  padding: 34px 32px;
}
.modal h4 { font-family: var(--font-display); text-transform: uppercase; font-size: 24px; color: var(--navy); margin-bottom: 12px; }
.modal p { font-size: 15px; margin-bottom: 20px; }

/* ============================================================
   Multi-page components
   ============================================================ */

/* active nav state */
.nav-links a.active { border-bottom-color: var(--red); }

/* inner-page hero */
.page-hero { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1.5px, transparent 1.6px);
  background-size: 26px 26px;
  pointer-events: none;
}
.page-hero .wrap { position: relative; padding-top: 56px; padding-bottom: 56px; }
.page-hero h1 { font-size: clamp(42px, 7vw, 76px); color: #fff; }
.page-hero h1 .accent { color: var(--gold); }
.page-hero .sub { margin-top: 14px; font-size: 17.5px; max-width: 640px; color: rgba(255, 255, 255, 0.85); }
.page-hero .hero-eyebrow { margin-bottom: 18px; }

/* hero inline email capture (homepage primary CTA) */
.mini-form { display: flex; gap: 10px; margin-top: 30px; max-width: 520px; flex-wrap: wrap; }
.mini-form input {
  flex: 1 1 180px;
  padding: 14px 16px;
  font-size: 15.5px;
  font-family: var(--font-body);
  border: var(--border);
  background: var(--cream);
  color: var(--ink);
  min-width: 0;
}
.mini-form input:focus { outline: 3px solid var(--gold); }
.mini-form button { flex: 0 0 auto; }
.mini-note { margin-top: 10px; font-size: 12px; color: rgba(255, 255, 255, 0.55); max-width: 520px; }
.hero-secondary { margin-top: 18px; }
.hero-secondary a { color: var(--gold); font-weight: 800; font-size: 15.5px; text-decoration: none; border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.hero-secondary a:hover { color: #FFC93C; border-bottom-color: #FFC93C; }

/* teaser rows + section links */
.section-link { display: inline-block; margin-top: 26px; font-weight: 800; color: var(--navy); text-decoration: none; border-bottom: 3px solid var(--gold); padding-bottom: 2px; font-size: 15.5px; }
.section-link:hover { color: var(--red); border-bottom-color: var(--red); }

/* 4-photo strip (homepage) */
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* bottom next-step band */
.cta-band { background: var(--navy); color: #fff; border-top: var(--border); }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-top: 48px; padding-bottom: 48px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(28px, 4vw, 44px); color: #fff; }
.cta-band h2 .accent { color: var(--gold); }
.cta-band p { color: rgba(255, 255, 255, 0.8); margin-top: 8px; max-width: 52ch; }

/* frequency toggle (one-time / monthly) */
.seg-toggle { display: inline-flex; border: var(--border); margin-bottom: 16px; }
.seg-toggle button {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 10px 22px;
  background: var(--paper);
  color: var(--navy);
  border: none;
  cursor: pointer;
}
.seg-toggle button + button { border-left: var(--border); }
.seg-toggle button.on { background: var(--navy); color: var(--gold); }
.freq-hint { font-size: 12.5px; color: var(--muted); margin: -6px 0 14px; }

/* consent + eligibility rows */
.check-row { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: var(--muted); margin-top: 12px; }
.check-row input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--red); flex: none; }

/* steps (what happens next) */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { background: var(--paper); border: var(--border); padding: 24px 22px; box-shadow: var(--shadow-pop); }
.step .num { font-family: var(--font-display); font-size: 34px; color: var(--red); line-height: 1; }
.step h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 20px; color: var(--navy); margin: 10px 0 8px; letter-spacing: 0.02em; }
.step p { font-size: 14.5px; color: var(--muted); }

/* press page */
.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.asset-card { background: var(--paper); border: var(--border); box-shadow: var(--shadow-pop); display: flex; flex-direction: column; }
/* Press downloads show the COMPLETE approved image — never a crop */
.asset-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: var(--cream);
  border-bottom: var(--border);
  padding: 8px;
}
.asset-card .body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 10px; }
.asset-card .cap { font-size: 13.5px; font-weight: 700; color: var(--navy); }
.asset-card .btn { font-size: 14px; padding: 9px 16px; text-align: center; }
.bio-box { background: var(--paper); border: var(--border); box-shadow: var(--shadow-pop); padding: 26px 28px; }
.bio-box h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 20px; color: var(--navy); margin-bottom: 10px; }
.bio-box p { font-size: 15px; }
.bio-box + .bio-box { margin-top: 20px; }
.swatch-stack { display: grid; grid-template-columns: 1fr 1fr; height: 260px; border-bottom: var(--border); }
.swatch { display: flex; flex-direction: column; justify-content: center; align-items: center; color: #fff; font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; gap: 3px; }
.swatch b { font-family: var(--font-display); text-transform: uppercase; font-size: 17px; font-weight: 400; letter-spacing: 0.03em; }

/* platform planks (phase 2) */
.plank { background: var(--paper); border: var(--border); box-shadow: var(--shadow-pop); padding: 30px 30px 32px; margin-bottom: 26px; }
.plank .plank-head { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.plank .plank-num { font-family: var(--font-display); font-size: 40px; color: var(--red); line-height: 1; }
.plank h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 28px; color: var(--navy); letter-spacing: 0.02em; }
.plank p { margin-top: 12px; font-size: 15.5px; max-width: 75ch; }
.plank ul { margin: 14px 0 0 0; padding-left: 0; list-style: none; }
.plank li { padding: 7px 0 7px 26px; position: relative; font-size: 15px; }
.plank li::before { content: "★"; position: absolute; left: 0; color: var(--red); font-size: 13px; top: 9px; }
.plank blockquote { margin-top: 16px; border-left: 5px solid var(--gold); padding: 10px 14px; background: var(--cream); font-weight: 700; font-size: 15px; color: var(--navy); }
.plank blockquote cite { display: block; font-style: normal; font-weight: 600; font-size: 12.5px; color: var(--muted); margin-top: 6px; }

/* volunteer interests (optional chips) */
.chips-select { display: flex; flex-wrap: wrap; gap: 10px; }
.chips-select label {
  border: 2px solid var(--navy);
  background: var(--cream);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}
.chips-select input { accent-color: var(--red); width: 15px; height: 15px; }
.chips-select label:has(input:checked) { background: var(--gold); }

/* FAQ */
details.faq { background: var(--paper); border: 2px solid var(--navy); padding: 0; margin-bottom: 12px; }
details.faq summary { cursor: pointer; font-weight: 800; color: var(--navy); padding: 14px 18px; font-size: 15px; list-style: none; position: relative; }
details.faq summary::after { content: "+"; position: absolute; right: 18px; top: 12px; font-size: 20px; color: var(--red); font-weight: 800; }
details.faq[open] summary::after { content: "–"; }
details.faq .a { padding: 0 18px 16px; font-size: 14.5px; color: var(--muted); }

/* inline disclaimer near solicitations */
.disclaimer-inline { display: inline-block; border: 2px solid var(--navy); padding: 8px 14px; font-size: 12.5px; font-weight: 700; color: var(--ink); background: var(--paper); margin-top: 16px; letter-spacing: 0.02em; line-height: 1.5; max-width: 420px; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; padding-top: 56px; }
  .hero-photo { justify-self: start; margin-left: 20px; }
  .about-grid, .join .inner, .donate-panel { grid-template-columns: 1fr; }
  .record-grid { grid-template-columns: 1fr; }
  .issue-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 980px) {
  .steps, .press-grid { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 820px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: var(--border);
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 13px 26px; border-bottom: none; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .section { padding: 64px 0; }
  .join-form { grid-template-columns: 1fr; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .shot.wide { grid-column: span 1; }
  .action-grid { grid-template-columns: 1fr; }
}
