/* =========================================================================
   peter4florida.com — site.css
   Single stylesheet. Mobile-first. Self-contained.

   Tokens § colors / type / spacing / motion
   Base   § reset + typography + a11y
   Layout § container, grid, sections
   Comp   § header, footer, hero, cards, pull-quote, buttons, form
   Util   § helpers
   Pages  § page-specific overrides
   ========================================================================= */

/* ---------------- TOKENS ---------------- */
:root {
  /* color */
  --c-blue:        #0002c8;
  --c-blue-dk:     #000A4D;
  --c-blue-soft:   #1A1DD2;
  --c-amber:       #F40C0C;
  --c-amber-dk:    #B80808;
  --c-amber-soft:  #FF5A5A;
  --c-bg:          #FAF7F2;
  --c-bg-alt:      #F2EDE3;
  --c-text:        #1F2937;
  --c-text-mut:    #4B5563;
  --c-text-dim:    #6B7280;
  --c-rule:        #E5E0D5;
  --c-rule-soft:   #EFEAE0;
  --c-error:       #B23A3A;
  --c-success:     #2F7D55;
  --c-on-dark:     #FAF7F2;
  --c-on-dark-mut: #B7C0D1;

  /* type */
  --ff-serif: "Fraunces", "Iowan Old Style", "Charter", Georgia, "Times New Roman", serif;
  --ff-sans:  "Inter", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --fs-h1:      clamp(2.25rem, 5vw, 4rem);
  --fs-hero:    clamp(2.5rem, 6.5vw, 5rem);
  --fs-h2:      clamp(1.625rem, 3.25vw, 2.375rem);
  --fs-h3:      clamp(1.125rem, 2vw, 1.4rem);
  --fs-quote:   clamp(1.4rem, 2.75vw, 1.95rem);
  --fs-body:    1.0625rem;     /* 17px */
  --fs-lead:    1.1875rem;     /* 19px */
  --fs-small:   0.875rem;      /* 14px */
  --fs-nav:     0.9375rem;     /* 15px */
  --fs-disc:    0.75rem;       /* 12px */

  --lh-tight:   1.1;
  --lh-snug:    1.25;
  --lh-body:    1.6;

  /* spacing */
  --gutter:     clamp(1.25rem, 4vw, 2rem);
  --section-y:  clamp(3rem, 8vw, 6rem);
  --max-w:      1180px;
  --max-w-text: 38rem;
  --max-w-narrow: 30rem;

  /* radius / shadow / motion */
  --r-sm: 4px;
  --r:    6px;
  --r-lg: 10px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .04), 0 0 0 1px rgba(15, 23, 42, .04);
  --shadow:    0 4px 12px rgba(15, 23, 42, .08), 0 0 0 1px rgba(15, 23, 42, .04);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, .12), 0 0 0 1px rgba(15, 23, 42, .04);
  --t-fast: 120ms cubic-bezier(.2,.7,.3,1);
  --t:      200ms cubic-bezier(.2,.7,.3,1);
}

/* ---------------- FONT FACES ---------------- */
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/Fraunces-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/Fraunces-Variable-Italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ---------------- BASE ---------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; tab-size: 4; }
body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--ff-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}
h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 600;
  line-height: var(--lh-tight);
  margin: 0 0 .5em;
  color: var(--c-text);
  letter-spacing: -0.005em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 500; }
p  { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--c-blue);
  text-decoration: underline;
  text-decoration-color: rgba(0, 2, 200, 0.35);
  text-underline-offset: 3px;
  transition: color var(--t), text-decoration-color var(--t);
}
a:hover, a:focus-visible {
  color: var(--c-blue-dk);
  text-decoration-color: currentColor;
}
:focus-visible {
  outline: 2px solid var(--c-blue);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

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

::selection { background: var(--c-amber); color: var(--c-text); }

/* Skip link */
.skip {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--c-blue);
  color: var(--c-on-dark);
  padding: .65rem 1rem;
  border-radius: var(--r);
  text-decoration: none;
  font-weight: 600;
  z-index: 100;
  transition: top var(--t);
}
.skip:focus { top: 1rem; }

/* ---------------- LAYOUT ---------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section.tight { padding-top: clamp(2rem, 5vw, 3.5rem); padding-bottom: clamp(2rem, 5vw, 3.5rem); }
.section.alt { background: var(--c-bg-alt); }
.section.dark { background: var(--c-blue-dk); color: var(--c-on-dark); }
.section.dark h1, .section.dark h2, .section.dark h3 { color: var(--c-on-dark); }
.section.dark a { color: var(--c-amber); text-decoration-color: rgba(212,162,76,.4); }
.section.dark a:hover { color: var(--c-amber-soft); }

/* ---------------- HEADER / NAV ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--c-blue-dk);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .65rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--c-on-dark);
  transition: opacity var(--t-fast);
}
.brand:hover { opacity: .85; }
.brand img {
  height: 125px;
  width: auto;
  display: block;
}
@media (max-width: 480px) {
  .brand img { height: 96px; }
}

.nav-list {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(250, 247, 242, 0.82);
  text-decoration: none;
  padding: .4rem 0;
  position: relative;
  transition: color var(--t-fast);
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: var(--c-amber);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms cubic-bezier(.4,0,.2,1);
}
.nav-list a:hover,
.nav-list a:focus-visible,
.nav-list a[aria-current="page"] {
  color: var(--c-on-dark);
}
.nav-list a:hover::after,
.nav-list a:focus-visible::after,
.nav-list a[aria-current="page"]::after {
  transform: scaleX(1);
}
/* Donate button in nav: ghost pill on the dark header */
.nav-list a.btn::after { display: none; }
.nav-list a.btn-primary {
  background: transparent;
  color: var(--c-on-dark);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: .5rem 1.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  box-shadow: none;
}
.nav-list a.btn-primary:hover,
.nav-list a.btn-primary:focus-visible {
  background: #D80505;
  border-color: #D80505;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(180, 8, 8, 0.28);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: .55rem .7rem;
  cursor: pointer;
  color: var(--c-on-dark);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.nav-toggle:hover { border-color: var(--c-amber); background: rgba(255, 255, 255, 0.04); }
.nav-toggle .bars { display: block; width: 22px; height: 2px; background: currentColor; position: relative; }
.nav-toggle .bars::before, .nav-toggle .bars::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: currentColor;
}
.nav-toggle .bars::before { top: -7px; }
.nav-toggle .bars::after  { top:  7px; }

@media (max-width: 767px) {
  .nav-toggle { display: inline-flex; }
  .nav-list {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--c-blue-dk);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: .5rem var(--gutter) 1.25rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t), transform var(--t);
  }
  .nav-list.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-list li { width: 100%; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .nav-list li:last-child { border-bottom: 0; padding-top: .5rem; }
  .nav-list a { display: block; padding: .95rem 0; font-size: 1rem; }
  .nav-list a::after { display: none; }
}

/* ---------------- BUTTONS ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.85rem;
  border-radius: 5px;
  border: 1px solid transparent;
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
  transition: transform 140ms cubic-bezier(.2,.7,.3,1),
              background 200ms cubic-bezier(.2,.7,.3,1),
              border-color 200ms cubic-bezier(.2,.7,.3,1),
              color 200ms cubic-bezier(.2,.7,.3,1),
              box-shadow 200ms cubic-bezier(.2,.7,.3,1);
}
.btn:active { transform: translateY(0.5px); }

.btn-primary {
  background: #D80505;
  color: #fff;
  border-color: #D80505;
  box-shadow: none;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: #B80808;
  border-color: #B80808;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(180, 8, 8, 0.28);
}

.btn-secondary {
  background: transparent;
  color: var(--c-blue);
  border-color: rgba(0, 2, 200, 0.55);
  box-shadow: inset 0 0 0 1px transparent;
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  background: var(--c-blue);
  color: #fff;
  border-color: var(--c-blue);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 2, 200, 0.18);
}

/* When a secondary lives inside the dark hero/header area, invert it */
.section.dark .btn-secondary,
.site-header .btn-secondary {
  color: var(--c-on-dark);
  border-color: rgba(255, 255, 255, 0.45);
}
.section.dark .btn-secondary:hover,
.site-header .btn-secondary:hover {
  background: var(--c-on-dark);
  color: var(--c-blue-dk);
  border-color: var(--c-on-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-rule);
}
.btn-ghost:hover {
  color: var(--c-blue);
  border-color: rgba(0, 2, 200, 0.4);
  background: rgba(0, 2, 200, 0.03);
}

.btn-lg { padding: 1.05rem 2.15rem; font-size: 0.9rem; letter-spacing: 0.09em; }
.btn-sm { padding: .65rem 1.4rem; font-size: 0.74rem; border-radius: 4px; letter-spacing: 0.09em; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  align-items: center;
}

/* ---------------- HERO ---------------- */
.hero {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: .75rem;
}
.hero-slogan {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 600;
  font-size: var(--fs-hero);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 1.5rem;
  color: var(--c-text);
}
.hero-slogan .quote-mark {
  color: var(--c-amber);
  font-style: normal;
}
.hero-lede {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--c-text-mut);
  max-width: 34rem;
  margin-bottom: 1.85rem;
}
.hero-lede strong { color: var(--c-text); font-weight: 600; }
.hero-photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--c-bg-alt);
  aspect-ratio: 4 / 5;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: auto auto -8px -8px;
  width: 64px; height: 64px;
  background: var(--c-amber);
  border-radius: var(--r-sm);
  z-index: -1;
}

@media (max-width: 767px) {
  .hero-grid > .hero-photo { order: -1; max-width: 18rem; margin: 0 auto; }
  .hero-photo::after { display: none; }
}

/* ---------------- PULL-QUOTE BAND ---------------- */
.quote-band {
  text-align: center;
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}
.quote-band .pq {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  font-size: var(--fs-quote);
  line-height: 1.25;
  max-width: 50rem;
  margin: 0 auto 1rem;
  color: var(--c-text);
}
.quote-band .pq::before { content: "“"; color: var(--c-amber); }
.quote-band .pq::after  { content: "”"; color: var(--c-amber); }
.quote-band .src {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: var(--fs-small);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-mut);
  font-weight: 600;
}
.quote-band .src::before {
  content: "";
  display: inline-block;
  width: 36px; height: 2px;
  background: var(--c-amber);
  margin-right: .75rem;
  vertical-align: middle;
}

/* ---------------- PILLAR CARDS ---------------- */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) {
  .pillars { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.pillar {
  background: var(--c-bg);
  border: 1px solid var(--c-rule);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.pillar:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--c-amber);
}
.pillar .pillar-num {
  display: inline-block;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-amber-dk);
  margin-bottom: .5rem;
}
.pillar h3 {
  font-family: var(--ff-serif);
  color: var(--c-blue);
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0 0 .65rem;
  line-height: 1.2;
}
.pillar p {
  margin: 0;
  font-size: 1rem;
  color: var(--c-text-mut);
  line-height: 1.55;
}

/* ---------------- WHY-NOW BLOCK ---------------- */
.why-now {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 768px) {
  .why-now { grid-template-columns: 1.4fr 1fr; gap: 3rem; }
}
.why-now h2 {
  font-size: clamp(1.5rem, 2.75vw, 2.1rem);
  margin-bottom: 1rem;
}
.why-now p { color: var(--c-text-mut); font-size: 1.0625rem; line-height: 1.7; }
.why-now .cta-card {
  border: 1px solid var(--c-rule);
  border-left: 3px solid var(--c-amber);
  background: var(--c-bg);
  border-radius: var(--r-lg);
  padding: 1.5rem;
}
.why-now .cta-card h3 {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 1.15rem;
  margin: 0 0 .5rem;
  color: var(--c-text);
}
.why-now .cta-card p { font-size: 0.95rem; line-height: 1.55; margin-bottom: .85rem; }

/* ---------------- BIO PAGE ---------------- */
.bio-header {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
  text-align: left;
  border-bottom: 1px solid var(--c-rule);
}
.bio-header .eyebrow {
  display: inline-block;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: .65rem;
}
.bio-header h1 { font-size: var(--fs-h1); margin: 0 0 .5rem; }
.bio-header .subtitle {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--c-text-mut);
  max-width: 42rem;
  margin: 0;
}

.bio-body { display: grid; gap: clamp(2rem, 4vw, 3rem); }
@media (min-width: 960px) {
  .bio-body { grid-template-columns: minmax(0, 1fr) 320px; gap: 3.5rem; align-items: start; }
}
.bio-section { padding-top: clamp(2rem, 4vw, 3rem); }
.bio-section + .bio-section { border-top: 1px solid var(--c-rule); }
.bio-section h2 {
  font-size: clamp(1.5rem, 2.75vw, 2.1rem);
  color: var(--c-blue);
  margin-bottom: 1rem;
}
.bio-section p { font-size: 1.0625rem; line-height: 1.75; color: var(--c-text); max-width: 38rem; }
.bio-section p strong { color: var(--c-text); font-weight: 700; }
.bio-section figure {
  margin: 1.5rem 0;
  max-width: 30rem;
}
.bio-section figure img {
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
}
.bio-section figcaption {
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  color: var(--c-text-dim);
  margin-top: .5rem;
  font-style: italic;
}

.bio-pullquote {
  margin: 2rem 0;
  padding: 0 0 0 1.25rem;
  border-left: 3px solid var(--c-amber);
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: var(--fs-quote);
  line-height: 1.3;
  color: var(--c-text);
  max-width: 36rem;
}

.bio-aside {
  position: sticky;
  top: 10.5rem;
  max-height: calc(100vh - 11.5rem);
  overflow-y: auto;
  background: var(--c-bg-alt);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  border: 1px solid var(--c-rule);
}
.bio-aside h3 {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0 0 .85rem;
  color: var(--c-blue);
}
.bio-aside p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: .8rem;
  color: var(--c-text);
}
.bio-aside .quote {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--c-text);
  border-top: 1px solid var(--c-rule);
  padding-top: .85rem;
  margin-top: .5rem;
  font-size: 1rem;
}

@media (max-width: 959px) {
  .bio-aside { position: static; }
}

/* ---------------- DONATE PAGE ---------------- */
.donate-hero {
  text-align: center;
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.donate-hero h1 {
  font-size: var(--fs-h1);
  margin-bottom: 0.85rem;
}
.donate-hero .subtitle {
  font-family: var(--ff-sans);
  font-size: var(--fs-lead);
  color: var(--c-text-mut);
  max-width: 38rem;
  margin: 0 auto;
  line-height: 1.55;
}
.donate-amounts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
  max-width: 720px;
  margin: 2rem auto;
}
@media (min-width: 700px) {
  .donate-amounts { grid-template-columns: repeat(5, 1fr); }
}
.donate-amounts .btn {
  padding: 1.15rem 1rem;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  background: #fff;
  color: var(--c-blue);
  border: 1px solid var(--c-rule);
  border-radius: 6px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 1px 2px rgba(15, 23, 42, 0.04);
}
.donate-amounts .btn:hover, .donate-amounts .btn:focus-visible {
  background: var(--c-blue-dk);
  color: var(--c-on-dark);
  border-color: var(--c-blue-dk);
  transform: translateY(-2px);
  box-shadow:
    0 10px 24px rgba(0, 10, 77, 0.22),
    0 2px 6px rgba(0, 10, 77, 0.10);
}
.donate-amounts .btn.btn-other {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--c-text);
}
.donate-amounts .btn.btn-other:hover {
  color: var(--c-on-dark);
}
.donate-note {
  text-align: center;
  font-size: var(--fs-small);
  color: var(--c-text-dim);
  max-width: 38rem;
  margin: 1rem auto 2.5rem;
  line-height: 1.55;
}
.donate-pq {
  text-align: center;
  margin: 3rem auto 0;
  max-width: 36rem;
}
.donate-pq .pq {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: var(--fs-quote);
  color: var(--c-text);
  margin: 0 0 .5rem;
}
.donate-pq .pq::before { content: "“"; color: var(--c-amber); }
.donate-pq .pq::after { content: "”"; color: var(--c-amber); }
.donate-pq .src {
  font-size: var(--fs-small);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-mut);
  font-weight: 600;
}

/* ---------------- FORMS ---------------- */
.form {
  display: grid;
  gap: 1.1rem;
  max-width: 36rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 560px) {
  .form-row.split { grid-template-columns: 1fr 1fr; }
}
.field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.field label {
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--c-text);
  letter-spacing: 0.01em;
}
.field label .req { color: var(--c-amber-dk); margin-left: 2px; }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea {
  font-family: var(--ff-sans);
  font-size: 1rem;
  padding: .75rem .9rem;
  background: var(--c-bg);
  color: var(--c-text);
  border: 1.5px solid var(--c-rule);
  border-radius: var(--r);
  transition: border-color var(--t), box-shadow var(--t);
  width: 100%;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(0, 2, 200, 0.12);
}
.field textarea { min-height: 100px; resize: vertical; line-height: 1.5; }
.field .hint { font-size: 0.8rem; color: var(--c-text-dim); }
.field.has-error label { color: var(--c-error); }
.field.has-error input,
.field.has-error textarea { border-color: var(--c-error); }
.field .err { font-size: 0.8rem; color: var(--c-error); }

.checks {
  display: grid;
  gap: .55rem;
  padding: .9rem 1rem;
  border: 1.5px solid var(--c-rule);
  border-radius: var(--r);
  background: var(--c-bg);
}
.checks legend {
  padding: 0 .35rem;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 0.85rem;
}
.check {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.45;
}
.check input[type="checkbox"] {
  margin: 4px 0 0;
  width: 18px; height: 18px;
  accent-color: var(--c-blue);
  flex-shrink: 0;
}
.check span { color: var(--c-text); }

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important; height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  display: none;
  padding: .85rem 1rem;
  border-radius: var(--r);
  font-size: 0.9rem;
  line-height: 1.5;
}
.form-status.is-error {
  display: block;
  background: rgba(178, 58, 58, 0.08);
  border: 1px solid rgba(178, 58, 58, 0.3);
  color: var(--c-error);
}
.form-status.is-loading {
  display: block;
  background: rgba(0, 2, 200, 0.06);
  border: 1px solid rgba(0, 2, 200, 0.2);
  color: var(--c-blue);
}

/* Inline mini form on home */
.mini-signup {
  display: grid;
  gap: .65rem;
  grid-template-columns: 1fr;
  background: var(--c-bg);
  border: 1px solid var(--c-rule);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  max-width: 36rem;
}
@media (min-width: 600px) {
  .mini-signup { grid-template-columns: 1fr 1fr 110px auto; align-items: end; }
  .mini-signup .field-full { grid-column: 1 / -1; }
}
.mini-signup label {
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--c-text);
  display: block;
  margin-bottom: .25rem;
}
.mini-signup input {
  width: 100%;
  font-size: 0.95rem;
  padding: .65rem .8rem;
  background: var(--c-bg-alt);
  border: 1.5px solid var(--c-rule);
  border-radius: var(--r);
  font-family: var(--ff-sans);
}
.mini-signup input:focus {
  outline: none;
  border-color: var(--c-blue);
  background: var(--c-bg);
}
.mini-signup .btn { padding: .7rem 1.2rem; }
.mini-signup .lead {
  grid-column: 1 / -1;
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  margin: 0 0 .25rem;
  font-weight: 600;
  color: var(--c-text);
}

/* ---------------- VOLUNTEER PAGE ---------------- */
.join-hero {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(1rem, 3vw, 2rem);
}
.join-hero h1 { margin-bottom: .65rem; }
.join-hero .subtitle {
  font-size: var(--fs-lead);
  color: var(--c-text-mut);
  max-width: 36rem;
  margin: 0;
}
.join-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  align-items: start;
}
@media (min-width: 900px) {
  .join-grid { grid-template-columns: 1.4fr 1fr; }
}
.join-aside {
  background: var(--c-bg-alt);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  border: 1px solid var(--c-rule);
}
.join-aside h3 {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  margin: 0 0 .8rem;
  color: var(--c-blue);
}
.join-aside ul { padding-left: 1.1rem; margin: 0; font-size: 0.95rem; line-height: 1.6; color: var(--c-text-mut); }
.join-aside ul li { margin-bottom: .35rem; }
.join-aside .alt-contact {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--c-rule);
  font-size: 0.9rem;
  color: var(--c-text-mut);
}

/* ---------------- THANKS / 404 ---------------- */
.center-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
}
.center-page .container { padding-top: 3rem; padding-bottom: 3rem; }
.center-page h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: 1rem;
  color: var(--c-blue);
}
.center-page p {
  font-size: var(--fs-lead);
  color: var(--c-text-mut);
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}
.center-page .actions {
  display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap;
}

/* ---------------- PRIVACY ---------------- */
.prose {
  max-width: 42rem;
  margin: 0 auto;
  padding-top: clamp(2rem, 4vw, 3rem);
}
.prose h1 { font-size: var(--fs-h1); margin-bottom: 1.5rem; }
.prose h2 { font-size: clamp(1.25rem, 2.25vw, 1.6rem); margin-top: 2rem; margin-bottom: .65rem; color: var(--c-blue); }
.prose p, .prose li { font-size: 1rem; line-height: 1.75; color: var(--c-text); }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose .meta {
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  color: var(--c-text-dim);
  margin-bottom: 2rem;
}

/* ---------------- FOOTER ---------------- */
.site-footer {
  background: var(--c-blue-dk);
  color: var(--c-on-dark);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: clamp(2rem, 4vw, 2.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.site-footer a { color: var(--c-amber-soft); text-decoration-color: rgba(232, 201, 136, .35); }
.site-footer a:hover { color: var(--c-amber); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-disclaimer {
  font-family: var(--ff-sans);
  font-size: var(--fs-disc);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-on-dark);
  line-height: 1.6;
  max-width: 32rem;
}
.footer-disclaimer .mark {
  display: block;
  margin-bottom: 1rem;
}
.footer-disclaimer .mark img {
  height: 108px;
  width: auto;
  display: block;
}
.footer-nav {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: .5rem;
}
.footer-nav a {
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--c-on-dark);
  font-weight: 500;
}
.footer-nav a:hover { color: var(--c-amber); }
.footer-meta { font-size: 0.85rem; color: var(--c-on-dark-mut); line-height: 1.6; }
.footer-meta .copy { margin-top: 1.5rem; opacity: 0.7; font-size: 0.8rem; }
.social-row {
  display: flex; gap: .75rem; margin-top: .75rem;
}
.social-row a {
  display: inline-flex;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(250, 247, 242, 0.25);
  align-items: center;
  justify-content: center;
  color: var(--c-on-dark);
  text-decoration: none;
}
.social-row a:hover { background: var(--c-amber); color: var(--c-blue-dk); border-color: var(--c-amber); }
.social-row svg { width: 18px; height: 18px; fill: currentColor; }

/* ---------------- UTILITIES ---------------- */
.u-center  { text-align: center; }
.u-narrow  { max-width: var(--max-w-narrow); margin-left: auto; margin-right: auto; }
.u-text    { max-width: var(--max-w-text); }
.u-stack-1 { display: grid; gap: .5rem; }
.u-stack-2 { display: grid; gap: 1rem; }
.u-stack-3 { display: grid; gap: 1.5rem; }
.u-mt-2 { margin-top: 1rem; }
.u-mt-3 { margin-top: 1.5rem; }
.u-mt-4 { margin-top: 2rem; }
.u-mb-0 { margin-bottom: 0 !important; }
.u-sr   { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Print */
@media print {
  .site-header, .site-footer, .nav-toggle, .btn, .mini-signup, .form, .donate-amounts { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: inherit; text-decoration: none; }
}
