/* ============================================================
   MELODY FOR ARLINGTON — Main Stylesheet
   ============================================================ */

/* ── Base ─────────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-white);
  overflow-x: hidden;
}

/* ── Layout helpers ───────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
}

/* ── Skip link ────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--c-green);
  color: var(--c-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .07em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover        { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--c-green); outline-offset: 3px; }

.btn-lg { padding: 18px 44px; font-size: 15px; }

.btn-green { background: var(--c-green); color: var(--c-white); }
.btn-green:hover { background: var(--c-green-dark); box-shadow: 0 10px 30px rgba(58,174,42,.35); }

.btn-red { background: var(--c-red); color: var(--c-white); }
.btn-red:hover { background: var(--c-red-dark); box-shadow: var(--shadow-cta); }

.btn-white { background: var(--c-white); color: var(--c-text); }
.btn-white:hover { background: rgba(255,255,255,.9); box-shadow: var(--shadow-md); }

.btn-outline-white {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover {
  background: var(--c-white);
  color: var(--c-text);
  border-color: var(--c-white);
}

/* ── Screen-reader only ───────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Section typography ───────────────────────────────────── */
.section-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--c-green);
  margin-bottom: 12px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.15;
  color: var(--c-text);
}
.section-title--white { color: var(--c-white); }


/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  background: var(--c-white);
  box-shadow: var(--shadow-md);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}

/* Links */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav__link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-white);
  position: relative;
  transition: color .2s;
}
.site-header.scrolled .nav__link { color: var(--c-text); }
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%; right: 50%;
  height: 2px;
  background: var(--c-red);
  transition: left .25s ease, right .25s ease;
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { left: 0; right: 0; }
.nav__donate { font-size: 12px; padding: 10px 22px; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  padding: 4px;
  cursor: pointer;
  z-index: 1100;
}
.nav__hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--c-white);
  transition: transform .3s ease, opacity .3s ease, background .3s;
}
.site-header.scrolled .nav__hamburger span,
.nav__hamburger.open span { background: var(--c-text); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* Portrait side */
.hero__portrait {
  position: relative;
  overflow: hidden;
  background: #0c0c0c;
}
.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero__portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, rgba(234,10,42,.15) 100%);
  pointer-events: none;
}
.hero__vertical-kicker {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(234,10,42,.75);
  user-select: none;
  pointer-events: none;
}

/* Red panel side */
.hero__panel {
  background: var(--grad-red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 48px 80px;
  position: relative;
  text-align: center;
}
.hero__panel-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 460px;
  width: 100%;
}
.hero__logo {
  width: 280px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.25));
}
.hero__eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.hero__tagline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 44px);
  color: var(--c-white);
  line-height: 1.15;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.hero__typed-line {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(13px, 1.3vw, 16px);
  color: rgba(255,255,255,.8);
  letter-spacing: .08em;
  text-transform: uppercase;
  min-height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.typed-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: rgba(255,255,255,.65);
  vertical-align: middle;
  margin-left: 2px;
  animation: blink .75s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.hero__social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}
.hero__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: 2px solid rgba(255,255,255,.6);
  color: var(--c-white);
  transition: background .2s, border-color .2s, transform .2s;
}
.hero__social a:hover {
  background: rgba(255,255,255,.35);
  border-color: var(--c-white);
  transform: scale(1.1);
}

/* Scroll chevron */
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  animation: bounce-y 2.2s ease-in-out infinite;
  transition: color .2s;
  display: flex;
}
.hero__scroll:hover { color: var(--c-white); }
@keyframes bounce-y {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}


/* ══════════════════════════════════════════════════════════
   CTA CARDS
══════════════════════════════════════════════════════════ */
.cta-cards {
  position: relative;
  z-index: 10;
}
.cta-cards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(48px, 7vw, 88px) clamp(28px, 4vw, 64px);
  gap: 18px;
  transition: filter .3s;
}
.cta-card:hover { filter: brightness(1.05); }
.cta-card--green { background: var(--grad-green); color: var(--c-white); }
.cta-card--red   { background: var(--grad-red);   color: var(--c-white); }

.cta-card__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.cta-card h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: .05em;
}
.cta-card p {
  font-size: 15px;
  line-height: 1.65;
  opacity: .9;
  max-width: 280px;
}


/* ══════════════════════════════════════════════════════════
   PRIORITIES
══════════════════════════════════════════════════════════ */
.priorities {
  padding: var(--section-pad) 0;
  background: var(--c-white);
}
.priorities__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}
.priority-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.priority-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-green);
}
.priority-card__icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-sm);
  background: var(--c-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-green);
  margin-bottom: 20px;
}
.priority-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--c-text);
}
.priority-card p {
  font-size: 15px;
  color: var(--c-muted);
  line-height: 1.7;
}


/* ══════════════════════════════════════════════════════════
   BIO / ANNOUNCEMENT
══════════════════════════════════════════════════════════ */
.bio {
  padding: var(--section-pad) 0;
  position: relative;
  background-color: #f9f9f9;
  background-size: cover;
  background-position: center;
}
.bio__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.94);
}
.bio__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}
.bio__photo-col { position: sticky; top: 96px; }
.bio__photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
}
.bio__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.bio__district-badge {
  margin-top: 20px;
  background: var(--grad-red);
  color: var(--c-white);
  border-radius: var(--radius);
  padding: 18px 20px;
  text-align: center;
}
.bio__district-badge strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .05em;
}
.bio__district-badge span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .85;
}
.bio__text-col { display: flex; flex-direction: column; gap: 20px; }
.bio__text-col .section-title { margin-bottom: 8px; }
.bio__body { display: flex; flex-direction: column; gap: 16px; }
.bio__body p {
  font-size: 16px;
  line-height: 1.78;
  color: var(--c-text);
}
.bio__quote {
  border-left: 4px solid var(--c-green);
  padding: 20px 24px;
  background: var(--c-mint);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 4px 0;
}
.bio__quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.7;
  color: var(--c-text);
}
.bio__quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-green-dark);
}


/* ══════════════════════════════════════════════════════════
   PULL-QUOTE BAND
══════════════════════════════════════════════════════════ */
.pullquote-band {
  padding: clamp(64px, 9vw, 112px) 0;
  position: relative;
  background-size: cover;
  background-position: center;
}
.pullquote-band__overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-red);
  opacity: .96;
}
.pullquote {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.pullquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(19px, 2.4vw, 27px);
  line-height: 1.65;
  color: var(--c-white);
}
.pullquote cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}


/* ══════════════════════════════════════════════════════════
   STATS / COUNTERS
══════════════════════════════════════════════════════════ */
.stats {
  padding: clamp(64px, 8vw, 100px) 0;
  position: relative;
  background-color: var(--c-navy);
  background-size: cover;
  background-position: center;
}
.stats__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,25,60,.90);
}
.stats__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  text-align: center;
}
.stat-item { color: var(--c-white); }
.stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 6vw, 72px);
  color: var(--c-gold);
  display: inline-block;
}
.stat-suffix {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.8vw, 34px);
  color: var(--c-gold);
}
.stat-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
}


/* ══════════════════════════════════════════════════════════
   RECORD OF SERVICE
══════════════════════════════════════════════════════════ */
.service-record {
  padding: var(--section-pad) 0;
  background: var(--c-cream);
}
.service-record__card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--c-white);
  border: 2px solid var(--c-red);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 52px);
  box-shadow: var(--shadow-md);
}
.service-record__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 40px;
  list-style: none;
}
.service-record__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.4;
}
.service-record__list li svg {
  color: var(--c-green);
  flex-shrink: 0;
}


/* ══════════════════════════════════════════════════════════
   APA ENDORSEMENT BAND
══════════════════════════════════════════════════════════ */
.endorsement {
  padding: clamp(64px, 9vw, 112px) 0;
  position: relative;
  background-color: var(--c-navy);
  background-size: cover;
  background-position: center;
}
.endorsement__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,25,60,.93);
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,.025) 0 1px,
    transparent 1px 8px
  );
}
.endorsement__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  max-width: 640px;
  margin: 0 auto;
}
.endorsement__shield {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-navy);
  box-shadow: 0 0 0 10px rgba(253,184,19,.18);
  flex-shrink: 0;
}
.endorsement__org {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.endorsement__rule {
  width: 56px;
  border: none;
  height: 2px;
  background: var(--c-gold);
  margin: 0 auto;
}
.endorsement__heading {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: clamp(26px, 3.8vw, 42px);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--c-white);
}
.endorsement__sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,.8);
  max-width: 480px;
}
.endorsement__sub strong { color: var(--c-white); }
.endorsement__slate {
  width: 100%;
  border: 1px solid rgba(253,184,19,.28);
  border-radius: var(--radius);
  padding: 24px 32px;
}
.endorsement__slate-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--c-gold);
  margin-bottom: 16px;
}
.endorsement__slate ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.endorsement__slate li {
  font-family: var(--font-display);
  font-size: 14px;
  color: rgba(255,255,255,.75);
}
.endorsement__slate li strong { color: var(--c-white); }


/* ══════════════════════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════════════════════ */
.final-cta {
  padding: clamp(72px, 9vw, 112px) 0;
  position: relative;
  background-color: var(--c-green-dark);
  background-size: cover;
  background-position: center;
}
.final-cta__overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-green);
  opacity: .95;
}
.final-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.final-cta__inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 48px);
  color: var(--c-white);
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.15;
}
.final-cta__inner p {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  max-width: 440px;
  line-height: 1.6;
}
.final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 8px;
}


/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.site-footer {
  background: #111111;
  color: rgba(255,255,255,.6);
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
  padding: 60px var(--gap) 36px;
}
.site-footer__brand img {
  height: 50px;
  width: auto;
  border-radius: 6px;
  opacity: .9;
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 28px;
  justify-content: center;
  align-items: center;
}
.site-footer__links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.site-footer__links a:hover { color: var(--c-white); }
.site-footer__links a:focus-visible { outline: 2px solid var(--c-green); outline-offset: 2px; }

.site-footer__social {
  display: flex;
  gap: 18px;
}
.site-footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  transition: color .2s, border-color .2s, transform .2s;
}
.site-footer__social a:hover {
  color: var(--c-green);
  border-color: var(--c-green);
  transform: translateY(-2px);
}
.site-footer__contact a {
  color: var(--c-green);
  font-size: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  transition: color .2s;
}
.site-footer__contact a:hover { color: var(--c-green-dark); }
.site-footer__disclaimer {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.site-footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,.28);
}
.site-footer__divider {
  width: 40px;
  border: none;
  height: 1px;
  background: rgba(255,255,255,.1);
}


/* ══════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.stagger-child {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.stagger-child.is-visible { opacity: 1; transform: translateY(0); }
.stagger-child:nth-child(1) { transition-delay: .05s; }
.stagger-child:nth-child(2) { transition-delay: .15s; }
.stagger-child:nth-child(3) { transition-delay: .25s; }
.stagger-child:nth-child(4) { transition-delay: .35s; }


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1023px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px var(--gap); }
  .bio__inner { grid-template-columns: 280px 1fr; gap: 40px; }
}

/* Mobile */
@media (max-width: 767px) {
  /* Hero stacks */
  .hero { grid-template-columns: 1fr; grid-template-rows: 60vh auto; }
  .hero__portrait { min-height: 60vh; }
  .hero__portrait::after { display: none; }
  .hero__vertical-kicker { display: none; }
  .hero__panel { padding: 52px 24px 64px; }
  .hero__logo { width: 220px; }

  /* CTA cards stack */
  .cta-cards__grid { grid-template-columns: 1fr; }

  /* Priorities 1-col */
  .priorities__grid { grid-template-columns: 1fr; }

  /* Bio stacks */
  .bio__inner { grid-template-columns: 1fr; gap: 32px; }
  .bio__photo-col { position: static; }
  .bio__photo { aspect-ratio: 4/3; }

  /* Stats 2-col */
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 48px var(--gap); }

  /* Service record 1-col */
  .service-record__list { grid-template-columns: 1fr; gap: 14px; }

  /* Nav mobile drawer */
  .nav__hamburger { display: flex; }
  .nav__menu {
    position: fixed;
    top: 72px; right: -100%;
    bottom: 0;
    width: min(300px, 80vw);
    background: var(--c-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 0;
    box-shadow: -8px 0 32px rgba(0,0,0,.15);
    transition: right .3s ease;
    overflow-y: auto;
  }
  .nav__menu.open { right: 0; }
  .nav__menu li { width: 100%; border-bottom: 1px solid var(--c-border); }
  .nav__menu li:last-child { border-bottom: none; padding-top: 20px; }
  .nav__link {
    display: block;
    padding: 18px 0;
    color: var(--c-text) !important;
    font-size: 16px;
  }
  .nav__link::after { display: none; }
  .nav__donate { display: flex; justify-content: center; }

  /* Misc */
  .hero__actions { flex-direction: column; align-items: center; }
  .btn-lg { padding: 16px 32px; }
}

/* Small mobile */
@media (max-width: 479px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .endorsement__slate { padding: 18px 20px; }
  .final-cta__buttons { flex-direction: column; align-items: center; }
}

/* Disable parallax on touch devices */
@media (hover: none) {
  .bio, .pullquote-band, .stats, .endorsement, .final-cta {
    background-attachment: scroll;
  }
}


/* ══════════════════════════════════════════════════════════
   PAGE HERO (slim — join / inner pages)
══════════════════════════════════════════════════════════ */
.page-hero {
  padding: 120px 0 64px;
  position: relative;
  background: var(--grad-red);
  text-align: center;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero .section-eyebrow { color: rgba(255,255,255,.75); }
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  color: var(--c-white);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero__sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,.82);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}


/* ══════════════════════════════════════════════════════════
   JOIN PAGE LAYOUT
══════════════════════════════════════════════════════════ */
.join-section {
  padding: var(--section-pad) 0;
  background: #f7f8fa;
}
.join-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 56px;
  align-items: start;
}

/* ── Left intro column ───────────────────────────────────── */
.join-intro { position: sticky; top: 96px; }
.join-intro__photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  margin-bottom: 28px;
}
.join-intro__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.join-intro__copy h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--c-text);
  margin-bottom: 14px;
}
.join-intro__copy p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-muted);
  margin-bottom: 20px;
}
.join-intro__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.join-intro__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--c-text);
}
.join-intro__bullets li svg { color: var(--c-green); flex-shrink: 0; }

/* ── Right form card ─────────────────────────────────────── */
.join-form-card {
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: clamp(28px, 4vw, 48px);
}
.join-form-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--c-text);
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--c-border);
}

/* ── Form elements ───────────────────────────────────────── */
.form-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 28px;
}
.form-legend {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-red);
  margin-bottom: 16px;
  display: block;
  width: 100%;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--c-text);
  letter-spacing: .02em;
}
.form-label .req {
  color: var(--c-red);
  margin-left: 2px;
}
.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--c-text);
  background: var(--c-white);
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.form-input:focus {
  outline: none;
  border-color: var(--c-green);
  box-shadow: 0 0 0 3px rgba(58,174,42,.15);
}
.form-input.error { border-color: var(--c-red); }
.form-input.error:focus { box-shadow: 0 0 0 3px rgba(234,10,42,.12); }
.field-error {
  font-size: 12px;
  color: var(--c-red);
  font-family: var(--font-display);
  font-weight: 600;
  display: none;
}
.field-error.visible { display: block; }

/* Honeypot — visually hidden, trap bots */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

/* ── Checkbox grid ───────────────────────────────────────── */
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.4;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--c-green);
  margin-top: 1px;
  cursor: pointer;
}
.checkbox-label:hover { color: var(--c-green-dark); }

/* ── SMS consent box ─────────────────────────────────────── */
.sms-box {
  background: var(--c-mint);
  border: 1px solid rgba(58,174,42,.25);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.sms-box .checkbox-label {
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--c-text);
}
.sms-consent {
  font-size: 12px;
  line-height: 1.65;
  color: var(--c-muted);
}

/* ── Submit row ──────────────────────────────────────────── */
.form-submit-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.btn-full { width: 100%; justify-content: center; }
.form-legal {
  text-align: center;
  font-size: 12px;
  color: var(--c-muted);
}
.form-legal a {
  color: var(--c-green-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s;
}
.form-legal a:hover { color: var(--c-green); }

/* ── Success state ───────────────────────────────────────── */
.form-success {
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: clamp(40px, 6vw, 72px) clamp(28px, 4vw, 48px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.form-success__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--c-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-green);
  animation: pop-in .4s cubic-bezier(.175,.885,.32,1.275);
}
@keyframes pop-in {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.form-success h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--c-text);
}
.form-success p {
  font-size: 16px;
  color: var(--c-muted);
  line-height: 1.65;
}
.form-success p a {
  color: var(--c-green-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Form error banner ───────────────────────────────────── */
.form-error-banner {
  background: #fef2f2;
  border: 1px solid rgba(234,10,42,.25);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--c-red);
  display: none;
  margin-bottom: 16px;
}
.form-error-banner.visible { display: block; }

/* ── Join page responsive ────────────────────────────────── */
@media (max-width: 1023px) {
  .join-layout { grid-template-columns: 1fr; gap: 40px; }
  .join-intro { position: static; }
  .join-intro__photo { aspect-ratio: 16/9; max-height: 360px; }
}
@media (max-width: 599px) {
  .form-row { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
}
