/* SHAHICA design system.
   Palette and type scale come from the V2 developer handoff. */

:root {
  --red: #C9252D;
  --red-dark: #a81d24;
  --green: #789B3C;
  --forest: #355E3B;
  --forest-dark: #24412a;
  --yellow: #F3E85B;
  --ivory: #FFFDF6;
  --ink: #252525;
  --muted: #6d6d67;
  --line: #e8e4d8;
  --white: #fff;

  --gutter: 7vw;
  --radius-btn: 8px;
  --radius-card: 18px;
  --shadow-card: 0 8px 30px rgba(59, 53, 32, .07);
}

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

/* The closed nav drawer is parked off-screen right, and a stray wide element
   anywhere would do the same: clip the horizontal axis so a phone can never
   scroll sideways. `clip` rather than `hidden` — it does not create a scroll
   container, so the sticky header keeps sticking. */
html, body { overflow-x: clip; }

body {
  margin: 0;
  max-width: 100%;
  font-family: 'DM Sans', system-ui, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { line-height: 1.65; color: #555; margin: 0 0 1em; }

/* Accessible focus ring on every interactive element. */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--forest);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Hidden upwards rather than at left:-9999px — overflow above the viewport is
   never scrollable, so this cannot widen the page. */
.skip-link {
  position: absolute; left: 0; top: 0; z-index: 100;
  transform: translateY(-140%);
  background: var(--forest); color: #fff; padding: 12px 20px;
  font-weight: 700; border-radius: 0 0 8px 0;
}
.skip-link:focus { transform: none; }

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

/* ---------------------------------------------------------- typography */

h1, h2, h3, h4 { color: var(--ink); }
h1 { font-family: Lora, Georgia, serif; font-size: clamp(45px, 6vw, 78px); line-height: 1.02; margin: 18px 0 20px; max-width: 900px; font-weight: 600; }
h2 { font-family: Lora, Georgia, serif; font-size: clamp(34px, 4vw, 54px); line-height: 1.08; margin: 12px 0 18px; font-weight: 600; }
h3 { font-size: 20px; margin: 0 0 10px; font-weight: 700; }
h4 { font-size: 16px; margin: 0 0 8px; font-weight: 700; }

.eyebrow {
  display: block; text-transform: uppercase; letter-spacing: .14em;
  font-size: 12px; font-weight: 800; color: var(--red); margin-bottom: 6px;
}
.eyebrow-forest { color: var(--forest); }
.eyebrow-light { color: var(--yellow); }

.lede { font-size: 18px; }

/* ---------------------------------------------------------- layout */

.section { padding: 90px var(--gutter); }
.section-warm { background: var(--ivory); }
.section-forest { background: var(--forest); color: #fff; }
.section-forest h2, .section-forest h3 { color: #fff; }
.section-forest p { color: #e8eee8; }
.section-tight { padding-top: 40px; }

.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 50px; margin-bottom: 42px; }
.section-head > div { max-width: 800px; }
.section-head > p { max-width: 430px; margin: 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gutter); align-items: center; }

/* ---------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px;              /* touch target required by the brief */
  padding: 13px 22px; border-radius: var(--radius-btn);
  font-weight: 700; font-size: 15px; border: 1px solid transparent;
  cursor: pointer; transition: transform .18s ease, background .18s ease, color .18s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }

.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }
.btn-outline { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: #fff; }
.btn-forest { background: var(--forest); color: #fff; }
.btn-forest:hover { background: var(--forest-dark); }
.btn-light { background: #fff; color: var(--forest); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ghost:hover { background: #fff; color: var(--forest); }

.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.text-link { color: var(--red); font-weight: 700; }
.text-link:hover { text-decoration: underline; }

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

/* No backdrop-filter here: it would make the header the containing block for
   its own position:fixed descendants, and the mobile nav drawer — a child of
   this element — would then be sized against the 70px bar instead of the
   viewport. At 97% opacity the blur was invisible anyway. */
.header {
  min-height: 82px; padding: 0 5vw; display: flex; align-items: center; gap: 24px;
  position: sticky; top: 0; background: rgba(255,255,255,.97);
  z-index: 40; border-bottom: 1px solid #eee;
}
/* The wordmark is the one header item that can give ground: it shrinks to fit
   whatever the language switch and the donate button leave behind, down to a
   floor where it is still readable. Everything else in the bar is nowrap. */
.brand { display: flex; min-width: 0; }
.brand img, .brand svg { width: 175px; max-width: 100%; min-width: 96px; height: auto; }
.header-nav { display: flex; align-items: center; gap: 20px; margin-left: auto; font-size: 14px; font-weight: 600; }
.header-nav > a, .nav-item > button { color: var(--ink); background: none; border: 0; font: inherit; cursor: pointer; padding: 8px 0; position: relative; }
.header-nav a:hover, .nav-item > button:hover { color: var(--red); }
.header-nav a[aria-current='page'] { color: var(--red); }

.nav-item { position: relative; }
.nav-caret { display: inline-block; margin-left: 5px; font-size: 10px; }
.nav-submenu {
  position: absolute; top: 100%; left: 0; min-width: 270px; background: #fff;
  border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-card);
  padding: 8px; display: flex; flex-direction: column; gap: 2px; z-index: 50;
}
.nav-submenu a { padding: 10px 12px; border-radius: 8px; font-weight: 600; }
.nav-submenu a:hover { background: var(--ivory); color: var(--red); }

.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
/* Never let the bar squeeze "Faire un don" into a three-line stack. */
.header-actions .btn { white-space: nowrap; }
.menu-toggle { display: none; background: none; border: 0; font-size: 26px; line-height: 1; cursor: pointer; padding: 8px; flex-shrink: 0; }

.locale-switch { display: flex; gap: 2px; border: 1px solid var(--line); border-radius: 99px; padding: 2px; flex-shrink: 0; }
.locale-switch a { padding: 5px 11px; border-radius: 99px; font-size: 12px; font-weight: 700; color: var(--muted); }
.locale-switch a[aria-current='true'] { background: var(--forest); color: #fff; }

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

/* The supplied photography tops out at 1280px wide, so the hero image sits in
   a contained panel rather than stretching full-bleed and going soft. */
.hero { padding: 70px var(--gutter) 90px; background: var(--ivory); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 5vw; align-items: center; }
.hero-copy h1 { margin-top: 12px; }
.hero-copy p { font-size: 18px; max-width: 600px; }
.hero-visual { position: relative; }
.hero-visual img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow-card); }
.hero-visual::after {
  content: ''; position: absolute; inset: auto -18px -18px auto; width: 55%; height: 55%;
  background: radial-gradient(circle at 60% 60%, rgba(243,232,91,.55), transparent 65%);
  border-radius: 50%; z-index: -1;
}

.page-hero { padding: 60px var(--gutter); background: var(--forest); color: #fff; position: relative; overflow: hidden; }
.page-hero h1 { color: #fff; font-size: clamp(34px, 4.6vw, 58px); margin: 10px 0 12px; }
.page-hero p { color: #e8eee8; max-width: 640px; font-size: 17px; }
.page-hero .eyebrow { color: var(--yellow); }
.page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.page-hero-inner { position: relative; z-index: 1; }

/* ---------------------------------------------------------- cards */

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-card);
  overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 38px rgba(0,0,0,.09); }
.card-media { aspect-ratio: 16 / 11; background: var(--ivory); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body p { margin: 0; flex: 1; }
.card-body .text-link { margin-top: 10px; }

.icon-badge {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: #fff; flex-shrink: 0;
}
.icon-badge svg { width: 22px; height: 22px; }
.icon-badge-green { background: var(--green); }
.icon-badge-forest { background: var(--forest); }
.icon-badge-yellow { background: #e7c729; color: var(--ink); }

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

.facts { display: flex; gap: 35px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 25px; margin-top: 28px; }
.facts b { font-size: 22px; color: var(--forest); display: block; font-family: Lora, serif; }
.facts span { display: block; font-size: 11px; color: var(--muted); font-weight: 500; margin-top: 4px; text-transform: uppercase; letter-spacing: .06em; }

.checklist { list-style: none; padding: 0; margin: 18px 0; }
.checklist li { padding: 11px 0; border-bottom: 1px solid var(--line); display: flex; gap: 12px; align-items: flex-start; }
.checklist li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

.pill-row { display: flex; gap: 9px; flex-wrap: wrap; margin: 25px 0; }
.pill-row span { border: 1px solid rgba(255,255,255,.4); border-radius: 99px; padding: 8px 14px; font-size: 13px; }
.pill-row-light span { border-color: var(--line); background: var(--ivory); color: var(--ink); }

.goal-figure { text-align: center; }
.goal-figure b { font-family: Lora, serif; font-size: clamp(70px, 9vw, 120px); color: var(--yellow); line-height: .85; display: block; font-weight: 600; }
.goal-figure span { display: block; font-size: 20px; margin-top: 18px; }
.goal-figure small { display: block; font-size: 13px; opacity: .75; margin-top: 6px; }

.stats-band { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; }
.stats-band div { text-align: center; padding: 24px 12px; background: var(--ivory); border-radius: var(--radius-card); }
.stats-band b { display: block; font-family: Lora, serif; font-size: 30px; color: var(--forest); }
.stats-band span { display: block; font-size: 13px; color: var(--muted); margin-top: 6px; }

.split-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; align-items: center; }
.split-panel img { border-radius: 24px; aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.tag-badge { display: inline-block; background: #fff; color: var(--ink); padding: 10px 16px; border-radius: 8px; font-weight: 700; font-size: 13px; box-shadow: var(--shadow-card); margin-bottom: 14px; }

.sponsor-box { background: var(--ivory); border-radius: 24px; display: grid; grid-template-columns: 1fr .75fr; overflow: hidden; }
.sponsor-box > div:first-child { padding: 60px; }
.sponsor-box img { width: 100%; height: 100%; object-fit: cover; min-height: 340px; }
.amount-highlight { font-family: Lora, serif; font-size: 46px; color: var(--red); display: block; margin-bottom: 8px; }

.involve-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.involve-card { background: #fff; border: 1px solid var(--line); padding: 28px 22px; border-radius: 14px; transition: transform .2s ease, box-shadow .2s ease; display: block; }
.involve-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,.07); }
.involve-card h3 { margin-top: 14px; }
.involve-card ul { margin: 10px 0 0; padding-left: 18px; font-size: 14px; color: var(--muted); }
.involve-card li { margin-bottom: 4px; }

.timeline { list-style: none; padding: 0; margin: 0; border-left: 2px solid var(--line); }
.timeline li { padding: 0 0 28px 28px; position: relative; }
.timeline li::before { content: ''; position: absolute; left: -8px; top: 5px; width: 14px; height: 14px; border-radius: 50%; background: var(--red); }
.timeline b { display: block; font-family: Lora, serif; color: var(--forest); font-size: 20px; }

.faq-item { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq-item summary { font-weight: 700; cursor: pointer; font-size: 17px; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--red); font-size: 22px; line-height: 1; }
.faq-item[open] summary::after { content: '−'; }

.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.video-frame { aspect-ratio: 16/9; border-radius: var(--radius-card); overflow: hidden; background: #000; }
.video-frame iframe { width: 100%; height: 100%; border: 0; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; list-style: none; padding: 0; margin: 0; }
.gallery-item {
  display: block; width: 100%; padding: 0; border: 0; background: var(--ivory);
  border-radius: 12px; overflow: hidden; position: relative; cursor: zoom-in;
}
.gallery-item img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.04); }
.gallery-caption {
  position: absolute; inset: auto 0 0 0; padding: 14px 12px; font-size: 12px; color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,.75)); text-align: left;
}
.gallery-zoom {
  position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,0,0,.55); color: #fff; display: grid; place-items: center; font-size: 15px;
  opacity: 0; transition: opacity .2s ease;
}
.gallery-item:hover .gallery-zoom, .gallery-item:focus-visible .gallery-zoom { opacity: 1; }

.filter-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.filter-row button { border: 1px solid var(--line); background: #fff; border-radius: 99px; padding: 9px 16px; font: inherit; font-size: 13px; font-weight: 600; cursor: pointer; min-height: 40px; }
.filter-row button[aria-pressed='true'] { background: var(--forest); color: #fff; border-color: var(--forest); }

.report-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 20px; }
.report-card { border: 1px solid var(--line); border-radius: var(--radius-card); padding: 24px; background: #fff; display: flex; flex-direction: column; gap: 8px; }
.report-card b { font-family: Lora, serif; font-size: 28px; color: var(--forest); }

.partner-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; padding: 0; list-style: none; }
.partner-list li { border: 1px solid var(--line); background: #fff; border-radius: 99px; padding: 10px 18px; font-weight: 600; font-size: 14px; }

.cta-banner { background: var(--forest); color: #fff; border-radius: 24px; padding: 60px; text-align: center; }
.cta-banner h2 { color: #fff; margin-top: 0; }
.cta-banner p { color: #e8eee8; max-width: 620px; margin: 0 auto 8px; }
.cta-banner .actions { justify-content: center; }

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

label { font-size: 13px; font-weight: 700; display: grid; gap: 7px; }
input, select, textarea {
  width: 100%; border: 1px solid #d9d9d4; border-radius: var(--radius-btn);
  padding: 12px; font: inherit; background: #fff; color: var(--ink); min-height: 44px;
}
textarea { min-height: 120px; resize: vertical; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-card); padding: 30px; display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 13px; color: var(--muted); }
.form-error { color: var(--red); font-size: 14px; font-weight: 600; }
.form-success { background: #eef5e8; border: 1px solid var(--green); color: var(--forest); padding: 14px 16px; border-radius: 8px; font-weight: 600; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; font-weight: 500; }
.checkbox-row input { width: 18px; min-height: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
/* Still a real, fillable field for a bot, but clipped in place instead of
   pushed to left:-9999px, which stretched the page on narrow screens. */
.honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }

.amount-picker { display: grid; grid-template-columns: repeat(auto-fit, minmax(90px, 1fr)); gap: 10px; }
.amount-picker button { border: 1px solid var(--line); background: #fff; border-radius: var(--radius-btn); padding: 14px 8px; font: inherit; font-weight: 700; cursor: pointer; min-height: 48px; }
.amount-picker button[aria-pressed='true'] { background: var(--red); color: #fff; border-color: var(--red); }

.frequency-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; border: 1px solid var(--line); border-radius: var(--radius-btn); padding: 4px; }
.frequency-toggle button { border: 0; background: transparent; border-radius: 6px; padding: 11px; font: inherit; font-weight: 700; cursor: pointer; min-height: 44px; }
.frequency-toggle button[aria-pressed='true'] { background: var(--forest); color: #fff; }

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

footer.site-footer { padding: 60px var(--gutter) 34px; background: var(--forest-dark); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-grid h4 { color: var(--yellow); font-size: 13px; text-transform: uppercase; letter-spacing: .1em; }
.footer-grid a { display: block; padding: 5px 0; color: #dfe8e1; font-size: 14px; }
.footer-grid a:hover { color: #fff; text-decoration: underline; }
.footer-brand img, .footer-brand svg { width: 190px; background: #fff; border-radius: 8px; padding: 10px; }
.footer-brand p { color: #dfe8e1; font-size: 14px; margin-top: 14px; }
.footer-socials { display: flex; gap: 12px; margin-top: 14px; }
.footer-socials a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); padding: 0; }
.footer-legal { border-top: 1px solid rgba(255,255,255,.18); margin-top: 36px; padding-top: 20px; font-size: 13px; color: #cfdcd3; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

.preview-banner { background: var(--yellow); color: var(--ink); padding: 12px var(--gutter); display: flex; gap: 16px; align-items: center; font-size: 14px; flex-wrap: wrap; }
.fallback-notice { background: var(--ivory); border-top: 1px solid var(--line); color: var(--muted); text-align: center; padding: 14px; font-size: 13px; margin: 0; }

/* ---------------------------------------------------------- animation */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.show { opacity: 1; transform: none; }

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

/* Makes it unmistakable that a donation form is not taking real money. */
.sandbox-warning {
  background: #fdf0d5; border: 1px solid #e0a020; color: #7a4f00;
  padding: 10px 14px; border-radius: 8px; font-weight: 600;
}

/* ---------------------------------------------------------- lightbox */

body.lightbox-open { overflow: hidden; }

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center; padding: 4vh 4vw;
}
.lightbox-backdrop {
  position: absolute; inset: 0; border: 0; padding: 0;
  background: rgba(18, 24, 19, .93); cursor: zoom-out;
}
.lightbox-inner { position: relative; max-width: min(1100px, 92vw); max-height: 92vh; }

.lightbox-figure { margin: 0; display: grid; gap: 12px; justify-items: center; }
.lightbox-figure img {
  max-width: 100%; max-height: 78vh; width: auto; height: auto;
  border-radius: 10px; box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
}
.lightbox-figure figcaption {
  color: #fff; font-size: 14px; text-align: center; display: grid; gap: 4px;
  max-width: 70ch;
}
.lightbox-figure figcaption small { color: rgba(255, 255, 255, .6); font-size: 12px; }

.lightbox-close, .lightbox-nav {
  position: absolute; z-index: 2; border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(0, 0, 0, .45); color: #fff; cursor: pointer;
  display: grid; place-items: center; border-radius: 50%;
  transition: background .2s ease, transform .2s ease;
}
.lightbox-close:hover, .lightbox-nav:not(:disabled):hover { background: var(--red); border-color: var(--red); }
.lightbox-nav:disabled { opacity: .25; cursor: default; }

.lightbox-close { top: 3vh; right: 4vw; width: 46px; height: 46px; font-size: 18px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 32px; line-height: 1; padding-bottom: 4px; }
.lightbox-prev { left: 2vw; }
.lightbox-next { right: 2vw; }

@media (max-width: 760px) {
  .lightbox { padding: 0; }
  .lightbox-inner { max-width: 100vw; }
  .lightbox-figure img { max-height: 70vh; border-radius: 0; }
  .lightbox-close { top: 12px; right: 12px; }
  /* Thumbs reach the bottom of a phone screen more easily than the sides. */
  .lightbox-nav { top: auto; bottom: 18px; transform: none; width: 56px; height: 56px; }
  .lightbox-prev { left: 18px; }
  .lightbox-next { right: 18px; }
}

/* ---------------------------------------------------------- PHP templates

   The Vue components carried a handful of one-off `style="…"` attributes.
   Inline styles cannot be covered by a Content-Security-Policy, so the PHP
   templates use classes instead and the rules live here. */

/* The submenu is closed with the `hidden` attribute rather than a class, and
   the UA rule behind it loses to `.nav-submenu { display: flex }`. */
.nav-submenu[hidden], .gallery-grid > li[hidden] { display: none; }

.facts dd, .stats-band dd { margin: 0; }
.goal-figure { margin: 0; }
.pill-row { list-style: none; padding: 0; }
.rounded-image { border-radius: 24px; }
.faq-answer { margin-top: 12px; }
.video-figure { margin: 0; }
.video-caption { margin-top: 10px; }
.report-download { margin-top: auto; }
.partner-logo { height: 34px; width: auto; }

.footer-address { color: #dfe8e1; font-size: 14px; margin-top: 8px; }
.footer-address-small { font-size: 13px; }
.footer-legal p { margin: 0; color: inherit; }
.footer-legal-notice { max-width: 620px; }

/* Phase 3 — the two forms. */
.facts-stacked { flex-direction: column; gap: 16px; align-items: flex-start; }
.facts-stacked dd { margin: 0; }
.socials-heading { margin-top: 26px; }
.actions-tight { margin-top: 10px; }
.fieldset-plain { border: 0; padding: 0; margin: 0; display: grid; gap: 14px; }
.form-card small.form-error { display: block; margin-top: 6px; }
.form-card input[type='file'] { font: inherit; font-size: 14px; }
