/* ==========================================================================
   Shimell for Mayor — design system
   Palette sampled directly from img/poster.jpeg
   ========================================================================== */

:root {
  /* Core palette (from poster) */
  --navy:        #021E40;
  --navy-deep:   #01142C;
  --navy-soft:   #0B2E55;
  --navy-line:   rgba(255, 255, 255, .16);
  --red:         #A21622;
  --red-bright:  #C41E2A;
  --red-deep:    #7C0F19;
  --cream:       #F6F3ED;
  --paper:       #FFFFFF;
  --ink:         #101822;
  --ink-soft:    #4B5766;
  --rule:        #DEDACF;

  /* Type */
  --display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --body:    'Source Sans 3', 'Segoe UI', system-ui, sans-serif;

  /* Rhythm */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(3.5rem, 8vw, 6.5rem);
  --maxw: 1180px;
  --radius: 4px;

  --shadow-sm: 0 1px 2px rgba(2, 30, 64, .08), 0 4px 14px rgba(2, 30, 64, .06);
  --shadow-md: 0 8px 30px rgba(2, 30, 64, .14);
  --shadow-lg: 0 24px 60px rgba(1, 20, 44, .28);
}

/* --------------------------------------------------------------- reset -- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(1.0625rem, .45vw + .95rem, 1.1875rem);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.03;
  letter-spacing: -.015em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--red); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: var(--red-bright); }

ul { margin: 0; padding: 0; }

:focus-visible {
  outline: 3px solid var(--red-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--red);
  color: #fff;
  padding: .75rem 1.25rem;
  font-weight: 700;
}
.skip-link:focus { left: 0; color: #fff; }

.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;
}

/* ------------------------------------------------------------ primitives - */

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: #fff; }
.section--navy a { color: #FFB4B9; }

.eyebrow {
  font-family: var(--display);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 1rem;
}
.eyebrow::after {
  content: "";
  flex: 1;
  height: 2px;
  background: currentColor;
  opacity: .28;
  max-width: 4.5rem;
}
.section--navy .eyebrow { color: #FF8A93; }

.h-xl { font-size: clamp(2.5rem, 6.2vw, 4.5rem); font-weight: 800; text-transform: uppercase; }
.h-lg { font-size: clamp(1.95rem, 3.6vw, 2.9rem); font-weight: 800; text-transform: uppercase; }
.h-md { font-size: clamp(1.25rem, 1.4vw, 1.4rem); font-weight: 700; letter-spacing: -.01em; }

.lede {
  font-size: clamp(1.15rem, 1.1vw + .9rem, 1.4rem);
  color: var(--ink-soft);
  max-width: 62ch;
}
.section--navy .lede { color: rgba(255, 255, 255, .82); }

.rule-red {
  width: 68px; height: 5px;
  background: var(--red);
  border: 0;
  margin: 1.15rem 0 1.5rem;
}

/* ---------------------------------------------------------------- button - */

.btn {
  --btn-bg: var(--red);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--display);
  font-weight: 700;
  font-size: .9375rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .95rem 1.6rem;
  border: 2px solid var(--btn-bg);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .12s ease, background-color .16s ease, border-color .16s ease, color .16s ease;
}
.btn:hover { --btn-bg: var(--red-bright); color: #fff; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:disabled,
.btn[aria-disabled="true"] {
  --btn-bg: #9AA3AE;
  border-color: #9AA3AE;
  cursor: not-allowed;
}
.btn:disabled:hover,
.btn[aria-disabled="true"]:hover { --btn-bg: #9AA3AE; transform: none; }

.btn--navy { --btn-bg: var(--navy); }
.btn--navy:hover { --btn-bg: var(--navy-soft); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border-color: rgba(255, 255, 255, .55);
}
.btn--ghost:hover { --btn-bg: rgba(255, 255, 255, .12); border-color: #fff; transform: translateY(-1px); }

.btn--ghost-navy { --btn-bg: transparent; --btn-fg: var(--navy); border-color: rgba(2, 30, 64, .3); }
.btn--ghost-navy:hover { --btn-bg: var(--navy); --btn-fg: #fff; border-color: var(--navy); }

.btn--lg { padding: 1.1rem 2rem; font-size: 1.0625rem; }
.btn--block { width: 100%; }

/* ---------------------------------------------------------------- header - */

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

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 76px;
  padding-block: .6rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: #fff;
  text-decoration: none;
  margin-right: auto;
}
.brand:hover { color: #fff; }
.brand__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: .01em;
  line-height: 1;
  text-transform: uppercase;
}
.brand__role {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: .625rem;
  letter-spacing: .19em;
  color: #FF8A93;
  margin-top: .3rem;
}

.nav { display: flex; align-items: center; gap: clamp(.9rem, 1.6vw, 1.7rem); }

.nav__link {
  color: rgba(255, 255, 255, .88);
  font-family: var(--display);
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav__link:hover, .nav__link[aria-current="true"] { color: #fff; border-bottom-color: var(--red-bright); }

.header__actions { display: flex; align-items: center; gap: .75rem; }

.lang-toggle {
  display: flex;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: var(--radius);
  overflow: hidden;
}
.lang-toggle button {
  appearance: none;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, .72);
  font-family: var(--display);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .08em;
  padding: .45rem .6rem;
  cursor: pointer;
}
.lang-toggle button[aria-pressed="true"] { background: #fff; color: var(--navy); }
.lang-toggle button:hover:not([aria-pressed="true"]) { background: rgba(255, 255, 255, .14); color: #fff; }

.nav-toggle {
  display: none;
  appearance: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: var(--radius);
  color: #fff;
  padding: .5rem .6rem;
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 940px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy-deep);
    border-bottom: 3px solid var(--red);
    padding: .5rem var(--gutter) 1.25rem;
    display: none;
  }
  .nav[data-open="true"] { display: flex; }
  .nav__link {
    padding: .85rem 0;
    border-bottom: 1px solid var(--navy-line);
    font-size: 1rem;
  }
  .nav-toggle { display: inline-flex; }
  .header__donate { display: none; }
  .nav__donate { display: inline-flex; margin-top: 1rem; }
}
@media (min-width: 941px) { .nav__donate { display: none; } }

/* ------------------------------------------------------------------ hero - */

.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 78% 6%, rgba(23, 74, 128, .55), transparent 62%),
    linear-gradient(180deg, #02244B 0%, var(--navy) 45%, var(--navy-deep) 100%);
  z-index: -2;
}
.hero__skyline {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  height: min(46%, 320px);
  opacity: .22;
  z-index: -1;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 5.5rem);
}

.hero__star {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.1rem;
}
.hero__star svg { width: 20px; height: 20px; color: var(--red-bright); flex: none; }
.hero__star span {
  font-family: var(--display);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
}
.hero__star::after {
  content: "";
  flex: 1;
  max-width: 90px;
  height: 2px;
  background: var(--red-bright);
}

.hero h1 { font-size: clamp(2.75rem, 7.4vw, 5.25rem); font-weight: 800; text-transform: uppercase; }
.hero h1 .accent { color: #FF3B47; display: block; }

.hero__sub {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  letter-spacing: .01em;
  line-height: 1.35;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  margin: 1.6rem 0 0;
  max-width: 30ch;
}
.hero__sub .accent { color: #FF3B47; }

.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.1rem; }

.hero__note {
  margin-top: 1.5rem;
  font-size: .9375rem;
  color: rgba(255, 255, 255, .62);
}

/* framed portrait, echoing the poster's blocked geometry */
.portrait {
  position: relative;
  justify-self: center;
  width: min(100%, 340px);
}
.portrait::before {
  content: "";
  position: absolute;
  inset: 26px -22px -26px 22px;
  background: var(--red);
  border-radius: var(--radius);
  z-index: 0;
}
.portrait__img {
  position: relative;
  z-index: 1;
  width: 100%;
  border: 6px solid var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  background: var(--cream);
}
.portrait__plate {
  position: relative;
  z-index: 2;
  margin: -1.5rem 0 0 -1rem;
  background: var(--navy-deep);
  border-left: 5px solid var(--red);
  padding: .8rem 1.1rem;
  box-shadow: var(--shadow-md);
}
.portrait__plate strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1;
}
.portrait__plate span {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: .6875rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #FF8A93;
  margin-top: .4rem;
}

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .portrait { width: min(100%, 260px); justify-self: start; margin-top: 2.25rem; }
  .portrait::before { inset: 18px -14px -18px 14px; }
}

@media (max-width: 520px) {
  .brand__name { font-size: 1.05rem; white-space: nowrap; }
  .brand__role { font-size: .5625rem; letter-spacing: .14em; margin-top: .22rem; }
  .brand { gap: .55rem; }
  .site-header__inner { min-height: 64px; gap: .6rem; }
  .lang-toggle button { padding: .4rem .48rem; }
}

/* ------------------------------------------------------------- valuebar -- */

.valuebar {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
}
.valuebar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
}
.value {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2.1rem) clamp(1rem, 2.5vw, 2rem);
}
.value__icon {
  flex: none;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
}
.value__icon svg { width: 26px; height: 26px; }
.value__label {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0;
}

@media (max-width: 780px) {
  .valuebar__grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------- about - */

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.about__figure { position: relative; }
.about__figure img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.about__figure figcaption {
  margin-top: .9rem;
  font-size: .875rem;
  color: var(--ink-soft);
  border-left: 3px solid var(--red);
  padding-left: .8rem;
}

.facts {
  list-style: none;
  margin: 2rem 0 0;
  display: grid;
  gap: .6rem;
}
.facts li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: .75rem 1rem;
  background: var(--cream);
  border-left: 3px solid var(--navy);
  font-size: 1rem;
}
.facts svg { width: 18px; height: 18px; color: var(--red); flex: none; margin-top: .28rem; }

.pull {
  margin: 2rem 0 0;
  padding: 1.5rem 1.75rem;
  background: var(--navy);
  color: #fff;
  border-left: 6px solid var(--red);
  border-radius: var(--radius);
}
.pull blockquote {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.3;
}
.pull cite {
  display: block;
  margin-top: .85rem;
  font-family: var(--body);
  font-style: normal;
  font-size: .8125rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #FF8A93;
}

@media (max-width: 820px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__figure { max-width: 280px; }
}

/* dark-background variant used in the volunteer column */
.facts--dark li {
  background: rgba(255, 255, 255, .07);
  border-left-color: var(--red);
  color: #fff;
}

.section--navy-deep { background: var(--navy-deep); }

.legend-label {
  font-family: var(--display);
  font-weight: 600;
  font-size: .8125rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
}

.fieldset-reset { border: 0; padding: 0; margin: 0 0 .5rem; }

.fineprint--muted {
  margin-top: .9rem;
  font-size: .8125rem;
  color: rgba(255, 255, 255, .55);
}

/* ---------------------------------------------------------------- issues - */

.issues__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-top: 2.75rem;
}

.issue {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-top: 5px solid var(--navy);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .16s ease, box-shadow .16s ease, border-top-color .16s ease;
}
.issue:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-top-color: var(--red); }
.issue__num {
  font-family: var(--display);
  font-weight: 800;
  font-size: .8125rem;
  letter-spacing: .16em;
  color: var(--red);
}
.issue h3 { margin: .5rem 0 .7rem; font-size: 1.25rem; font-weight: 800; }
.issue p { font-size: 1rem; color: var(--ink-soft); }
.issue ul { list-style: none; display: grid; gap: .45rem; margin-top: 1rem; }
.issue li {
  display: flex;
  gap: .6rem;
  font-size: .9375rem;
  line-height: 1.45;
}
.issue li svg { width: 15px; height: 15px; color: var(--red); flex: none; margin-top: .3rem; }

/* ------------------------------------------------------------ forward CTA */

.forward {
  background: var(--red);
  color: #fff;
}
.forward__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-block: clamp(2rem, 4vw, 3rem);
}
.forward__check {
  flex: none;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: var(--radius);
  color: var(--red);
}
.forward__check svg { width: 34px; height: 34px; }
.forward h2 {
  flex: 1 1 320px;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}
.forward h2 .accent { color: var(--navy); }
.forward .btn { --btn-bg: var(--navy); border-color: var(--navy); }
.forward .btn:hover { --btn-bg: var(--navy-deep); border-color: var(--navy-deep); }

/* ------------------------------------------------------------ endorsements */

.endorse__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.endorse {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  display: flex;
  gap: .9rem;
  align-items: flex-start;
}
.endorse__seal {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: .875rem;
  letter-spacing: .02em;
}
.endorse__body strong { display: block; font-family: var(--display); font-size: 1rem; line-height: 1.2; }
.endorse__body span { display: block; font-size: .875rem; color: var(--ink-soft); margin-top: .2rem; }

/* --------------------------------------------------------------- donate -- */

.donate__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.donate-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: 6px;
  padding: clamp(1.5rem, 3vw, 2.1rem);
  box-shadow: var(--shadow-lg);
  border-top: 6px solid var(--red);
}
.donate-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
  margin-bottom: .6rem;
}
.amount {
  appearance: none;
  background: var(--cream);
  border: 2px solid var(--rule);
  border-radius: var(--radius);
  padding: .85rem .4rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--navy);
  cursor: pointer;
  transition: border-color .14s ease, background-color .14s ease, color .14s ease;
}
.amount:hover { border-color: var(--navy); }
.amount[aria-pressed="true"] { background: var(--navy); border-color: var(--navy); color: #fff; }

.amount-custom { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.1rem; }
.amount-custom span {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
}
.donate-card .fineprint { margin-top: 1rem; font-size: .8125rem; color: var(--ink-soft); line-height: 1.5; }

@media (max-width: 900px) {
  .donate__grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------- forms - */

.field { display: grid; gap: .35rem; margin-bottom: 1rem; }
.field label {
  font-family: var(--display);
  font-weight: 600;
  font-size: .8125rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
}
.section--navy .field label { color: rgba(255, 255, 255, .82); }

.field input, .field select, .field textarea {
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--rule);
  border-radius: var(--radius);
  padding: .75rem .85rem;
  width: 100%;
  transition: border-color .14s ease, box-shadow .14s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--navy);
  outline: none;
  box-shadow: 0 0 0 3px rgba(2, 30, 64, .16);
}
.field input[aria-invalid="true"] { border-color: var(--red); }
.field .err { font-size: .8125rem; color: var(--red-bright); font-weight: 600; min-height: 0; }
.section--navy .field .err { color: #FF9AA2; }

.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0 1rem;
}

.checks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: .5rem;
  margin: .25rem 0 1.25rem;
}
.check {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius);
  padding: .65rem .8rem;
  font-size: .9375rem;
  cursor: pointer;
}
.check:hover { background: rgba(255, 255, 255, .12); }
.check input { width: 18px; height: 18px; accent-color: var(--red-bright); flex: none; }

.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-status {
  margin-top: 1rem;
  padding: .9rem 1.1rem;
  border-radius: var(--radius);
  font-size: .9375rem;
  font-weight: 600;
  display: none;
}
.form-status[data-state="ok"] { display: block; background: #0E4D2E; color: #C9F2D9; border-left: 4px solid #35C77B; }
.form-status[data-state="err"] { display: block; background: #5A0F17; color: #FFD5D8; border-left: 4px solid var(--red-bright); }

.volunteer__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) { .volunteer__grid { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------------- footer */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .74);
  font-size: .9375rem;
  border-top: 4px solid var(--red);
}
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; color: #fff; }

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  padding-block: clamp(2.5rem, 5vw, 3.75rem);
}
@media (max-width: 780px) { .footer__grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: .8125rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 .9rem;
}
.footer__list { list-style: none; display: grid; gap: .55rem; }
.footer__contact { margin-bottom: .5rem; }
.footer__addr { font-size: .8125rem; opacity: .75; }

.social { display: flex; gap: .6rem; margin-top: 1.1rem; }
.social a {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--navy-line);
  border-radius: var(--radius);
  color: #fff;
}
.social a:hover { background: var(--red); border-color: var(--red); }
.social svg { width: 19px; height: 19px; }

.disclaimer {
  border-top: 1px solid var(--navy-line);
  padding-block: 1.5rem 2.25rem;
  font-size: .8125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .6);
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: space-between;
}
.disclaimer strong { color: rgba(255, 255, 255, .88); font-weight: 700; }

/* ------------------------------------------------------------------ misc - */

/* Hide-then-reveal only where scripting can bring it back. Browsers without
   `scripting` support (or with JS off) never hide it — fail visible. */
@media (scripting: enabled) {
  .reveal { opacity: 0; transform: translateY(14px); }
}
.reveal.is-in { opacity: 1; transform: none; transition: opacity .55s ease, transform .55s ease; }

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

@media print {
  .site-header, .forward, .hero__cta, .social, .nav-toggle { display: none !important; }
  body { color: #000; }
}
