/* ==========================================================================
   Altruistica — site.css
   Plain CSS, no build step. Brand: orange #ff9100 + charcoal #31302f.
   Tokens on :root, dark mode via prefers-color-scheme.
   ========================================================================== */

/* ---------- Tokens ------------------------------------------------------ */
:root {
  color-scheme: light dark;

  --brand: #ff9100;          /* historic brand orange — fills, rules, display words on dark */
  --brand-hover: #ffa733;
  --on-brand: #31302f;       /* text on orange (5.8:1) */
  --accent-text: #a84f00;    /* orange for small text on light backgrounds (5.5:1) */

  --bg: #ffffff;
  --bg-2: #f4f2ee;
  --ink: #31302f;            /* historic charcoal, used as text on light */
  --ink-2: #5c5955;
  --rule: #e2ded7;

  --dark: #31302f;           /* charcoal surfaces */
  --dark-2: #262524;
  --on-dark: #f2efe9;
  --on-dark-2: #b8b3ac;
  --rule-dark: #4a4844;

  --sea: #0f6b7a;            /* ocean secondary on light */
  --sea-dark: #6fd3e3;       /* ocean secondary on dark */
  --focus: #0f6b7a;

  --font-display: "Bricolage Grotesque", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --gutter: clamp(1rem, 4vw, 3rem);
  --measure: 40rem;
  --container: 84rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: clamp(4rem, 9vw, 7rem);
  --header-h: 4.5rem;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --accent-text: #ffa733;
    --bg: #1c1b1a;
    --bg-2: #262524;
    --ink: #f2efe9;
    --ink-2: #b8b3ac;
    --rule: #3a3835;
    --dark: #31302f;
    --dark-2: #2a2927;
    --sea: #6fd3e3;
    --focus: #ffa733;
  }
}
:root[data-theme="dark"] {
  --accent-text: #ffa733;
  --bg: #1c1b1a;
  --bg-2: #262524;
  --ink: #f2efe9;
  --ink-2: #b8b3ac;
  --rule: #3a3835;
  --dark: #31302f;
  --dark-2: #2a2927;
  --sea: #6fd3e3;
  --focus: #ffa733;
}

/* ---------- Base -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { margin: 0; line-height: 1.1; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }
figure { margin: 0; }

:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
::selection { background: var(--brand); color: var(--on-brand); }

/* ---------- Typography ------------------------------------------------- */
.display, .h1, .h2, .h3, .stat-n {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-wrap: balance;
  font-variation-settings: "opsz" 96;
}
.display { font-size: clamp(3rem, 9vw, 7.5rem); line-height: 0.92; letter-spacing: -0.04em; font-weight: 800; }
.h1 { font-size: clamp(2.6rem, 6.5vw, 5.25rem); line-height: 0.96; }
.h2 { font-size: clamp(2rem, 4.2vw, 3.5rem); line-height: 1.0; }
.h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); line-height: 1.15; letter-spacing: -0.02em; font-variation-settings: "opsz" 24; }

.display em, .h1 em, .h2 em, .statement em { font-style: normal; color: var(--accent-text); }
.on-dark .display em, .on-dark .h1 em, .on-dark .h2 em, .on-dark .statement em { color: var(--brand); }

.eyebrow {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-2); margin: 0 0 var(--space-3);
}
.eyebrow::before { content: ""; width: 2rem; height: 3px; background: var(--brand); flex: none; }
.on-dark .eyebrow { color: var(--on-dark-2); }

.lede { font-size: clamp(1.15rem, 1.7vw, 1.45rem); line-height: 1.45; max-width: var(--measure); text-wrap: pretty; }
.muted { color: var(--ink-2); }
.on-dark .muted { color: var(--on-dark-2); }
.small { font-size: 0.92rem; }

.statement {
  font-family: var(--font-display); font-weight: 600; letter-spacing: -0.025em;
  font-size: clamp(1.75rem, 3.8vw, 3.25rem); line-height: 1.08; max-width: 24ch; text-wrap: balance;
  margin: 0; font-variation-settings: "opsz" 96;
}

.prose { max-width: var(--measure); text-wrap: pretty; }
.prose strong { font-weight: 600; }
.prose a { text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
.prose a:hover { color: var(--accent-text); }
.prose h3 { margin: 2em 0 0.6em; }

/* ---------- Layout ------------------------------------------------------ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--space-6); }
.section--tight { padding-block: var(--space-5); }
.section--alt { background: var(--bg-2); }
.on-dark { background: var(--dark); color: var(--on-dark); }
.on-dark.section--deeper { background: var(--dark-2); }

.split { display: grid; gap: var(--space-3) var(--space-5); align-items: start; }
@media (min-width: 52em) {
  .split { grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); }
  .split--even { grid-template-columns: 1fr 1fr; align-items: center; }
  .split--wide-left { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); align-items: center; }
  .split > .sticky { position: sticky; top: calc(var(--header-h) + 1.5rem); }
}

.rule-brand { border: 0; border-top: 3px solid var(--brand); width: 4rem; margin: 0 0 var(--space-3); }

/* ---------- Skip link --------------------------------------------------- */
.skip-link { position: absolute; left: var(--gutter); top: -100%; padding: 0.6rem 0.9rem; background: var(--brand); color: var(--on-brand); z-index: 100; font-weight: 600; }
.skip-link:focus { top: 0.75rem; }

/* ---------- Header ------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--rule);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); min-height: var(--header-h); }
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { height: 2.6rem; width: auto; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .logo img { filter: brightness(1.35) contrast(0.95); }
}
:root[data-theme="dark"] .logo img { filter: brightness(1.35) contrast(0.95); }

.nav { display: flex; align-items: center; gap: clamp(0.75rem, 2vw, 1.9rem); }
.nav a { text-decoration: none; font-size: 0.97rem; font-weight: 500; padding: 0.35rem 0; border-bottom: 2px solid transparent; transition: border-color 0.15s ease; }
.nav a:hover, .nav a[aria-current="page"] { border-bottom-color: var(--brand); }
/* `.nav a` above is more specific than `.btn`, so it wipes the button's own
   padding and weight — restore them here rather than loosening `.nav a`. */
.nav .btn { border-bottom: 0; padding: 0.75rem 1.5rem; font-size: 0.98rem; font-weight: 600; }

.nav-toggle { display: none; appearance: none; background: none; border: 1px solid var(--rule); border-radius: 4px; padding: 0.55rem 0.7rem; cursor: pointer; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .x { display: none; }
.nav-toggle[aria-expanded="true"] .bars { display: none; }
.nav-toggle[aria-expanded="true"] .x { display: block; }

@media (max-width: 52em) {
  .js .nav-toggle { display: inline-flex; }
  .js .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch; gap: 0; background: var(--bg); border-bottom: 1px solid var(--rule); padding: 0.5rem var(--gutter) 1rem; }
  .js .nav.is-open { display: flex; }
  .js .nav a { padding: 0.9rem 0; border-bottom: 1px solid var(--rule); font-size: 1.1rem; }
  .js .nav a[aria-current="page"] { border-bottom-color: var(--brand); color: var(--accent-text); }
  .js .nav .btn { margin-top: 0.9rem; border-bottom: 0; justify-content: center; color: var(--on-brand); }
  .no-js .nav { flex-wrap: wrap; justify-content: flex-end; }
}

/* ---------- Buttons ----------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 3rem; padding: 0.75rem 1.5rem; border-radius: 4px;
  border: 2px solid var(--ink); background: transparent; color: var(--ink);
  font-weight: 600; font-size: 0.98rem; text-decoration: none; cursor: pointer; line-height: 1.2;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { background: var(--ink); color: var(--bg); }
.btn--brand { background: var(--brand); border-color: var(--brand); color: var(--on-brand); }
.btn--brand:hover { background: var(--brand-hover); border-color: var(--brand-hover); color: var(--on-brand); }
.btn--light { border-color: #fff; color: #fff; }
.btn--light:hover { background: #fff; color: #31302f; }
.on-dark .btn:not(.btn--brand) { border-color: var(--on-dark); color: var(--on-dark); }
.on-dark .btn:not(.btn--brand):hover { background: var(--on-dark); color: var(--dark); }
.btn--lg { min-height: 3.5rem; padding: 1rem 2rem; font-size: 1.08rem; }
.btn--block { width: 100%; }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: var(--space-3); }

.arrow-link { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; text-decoration: none; border-bottom: 2px solid var(--brand); padding-bottom: 0.1rem; }
.arrow-link svg { width: 1em; height: 1em; transition: transform 0.15s ease; }
.arrow-link:hover { color: var(--accent-text); }
.on-dark .arrow-link:hover { color: var(--brand); }
.arrow-link:hover svg { transform: translateX(3px); }

/* ---------- Photo hero -------------------------------------------------- */
.hero {
  position: relative; isolation: isolate; display: flex; align-items: flex-end;
  min-height: clamp(34rem, 92svh, 56rem); color: #fff; background: #31302f;
}
.hero--short { min-height: clamp(24rem, 62svh, 38rem); }
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero--home > img { object-position: 72% 40%; }
.hero--top > img { object-position: 50% 18%; }
@media (max-width: 52em) { .hero--home > img { object-position: 60% 30%; } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(49,48,47,0.94) 0%, rgba(49,48,47,0.55) 42%, rgba(49,48,47,0.12) 100%);
}
.hero .container { padding-block: clamp(2.5rem, 6vw, 5rem); }
.hero .eyebrow { color: rgba(255,255,255,0.85); }
.hero .display, .hero .h1 { max-width: 14ch; color: #fff; }
.hero .display em, .hero .h1 em { color: var(--brand); }
.hero .lede { margin-top: var(--space-3); color: rgba(255,255,255,0.92); }
.hero .btn-row { margin-top: var(--space-4); }
.hero .btn { border-color: #fff; color: #fff; }
.hero .btn:hover { background: #fff; color: #31302f; }
.hero .btn--brand { border-color: var(--brand); color: var(--on-brand); }
.hero .btn--brand:hover { background: var(--brand-hover); border-color: var(--brand-hover); }
.hero .credit { position: absolute; right: var(--gutter); bottom: 0.75rem; font-size: 0.72rem; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; }

/* ---------- Images ------------------------------------------------------ */
.ph { position: relative; overflow: hidden; background: var(--bg-2); }
.ph img { width: 100%; height: 100%; object-fit: cover; }
.ph--4x3 { aspect-ratio: 4 / 3; }
.ph--3x2 { aspect-ratio: 3 / 2; }
.ph--16x9 { aspect-ratio: 16 / 9; }
.ph--3x4 { aspect-ratio: 3 / 4; }
.ph--1x1 { aspect-ratio: 1 / 1; }
.ph--21x9 { aspect-ratio: 21 / 9; }
.ph--tall { aspect-ratio: 4 / 5; }
figcaption { font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-2); margin-top: 0.6rem; }
.on-dark figcaption { color: var(--on-dark-2); }

/* Full-bleed band with image + copy */
.band { display: grid; gap: 0; }
@media (min-width: 52em) { .band { grid-template-columns: 1fr 1fr; } }
.band .ph { aspect-ratio: 4 / 3; min-height: 100%; }
@media (min-width: 52em) { .band .ph { aspect-ratio: auto; } }
.band .copy { padding: clamp(2rem, 6vw, 5rem) var(--gutter); display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 52em) { .band .copy { padding-inline: clamp(2rem, 5vw, 5rem); } }
.band .copy > * { max-width: 34rem; }

/* Photo strip — documentary register: same aspect, tight gap, captions */
.strip { display: grid; gap: 0.5rem; list-style: none; }
@media (min-width: 40em) { .strip { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.strip figure .ph { aspect-ratio: 4 / 3; }

/* Nature grid — editorial register: mixed sizes */
.mosaic { display: grid; gap: 0.75rem; list-style: none; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 52em) { .mosaic { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.mosaic .span-2 { grid-column: span 2; }
.mosaic figure .ph { aspect-ratio: 4 / 3; }
.mosaic .span-2 .ph { aspect-ratio: auto; height: 100%; min-height: 16rem; }

/* ---------- Stats ------------------------------------------------------- */
.stats { display: grid; gap: var(--space-3) var(--space-4); list-style: none; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 52em) { .stats { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.stats li { border-top: 3px solid var(--brand); padding-top: var(--space-2); }
.stat-n { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1; letter-spacing: -0.04em; font-weight: 800; }
.stat-n small { font-size: 0.42em; letter-spacing: 0; margin-left: 0.15em; font-weight: 600; }
.stat-l { display: block; margin-top: 0.5rem; font-size: 0.95rem; color: var(--ink-2); }
.on-dark .stat-l { color: var(--on-dark-2); }

/* ---------- Paths ------------------------------------------------------- */
.paths { display: grid; gap: var(--space-4); list-style: none; }
@media (min-width: 52em) { .paths { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.path { border-top: 3px solid var(--brand); padding-top: var(--space-3); }
.on-dark .path .num { color: var(--brand); }
.path h3 { margin-bottom: 0.6rem; }
.path p { color: var(--ink-2); }
.on-dark .path p { color: var(--on-dark-2); }

/* ---------- Numbered lists ---------------------------------------------- */
.impacts { list-style: none; counter-reset: impact; max-width: 46rem; }
.impacts li { counter-increment: impact; display: grid; grid-template-columns: 3.25rem 1fr; gap: var(--space-2); padding: var(--space-3) 0; border-top: 1px solid var(--rule); font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.4; }
.impacts li:last-child { border-bottom: 1px solid var(--rule); }
.impacts li::before { content: counter(impact, decimal-leading-zero); font-family: var(--font-display); font-weight: 700; color: var(--accent-text); font-size: 1rem; padding-top: 0.3em; }
.on-dark .impacts li { border-color: var(--rule-dark); }
.on-dark .impacts li::before { color: var(--brand); }

/* ---------- Facts ------------------------------------------------------- */
.facts { display: grid; gap: var(--space-3); list-style: none; }
@media (min-width: 40em) { .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 64em) { .facts { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.facts li { border-top: 1px solid var(--rule); padding-top: var(--space-2); }
.on-dark .facts li { border-top-color: var(--rule-dark); }
.facts .k { display: block; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 0.35rem; }
.on-dark .facts .k { color: var(--on-dark-2); }
.facts .v { font-size: 1.05rem; line-height: 1.45; }

/* ---------- Timeline --------------------------------------------------- */
.timeline { list-style: none; max-width: 46rem; }
.timeline li { display: grid; grid-template-columns: 5.5rem 1fr; gap: var(--space-2); padding: 1rem 0; border-top: 1px solid var(--rule); }
.timeline li:last-child { border-bottom: 1px solid var(--rule); }
.timeline .yr { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--accent-text); }
.timeline p { margin: 0; }
@media (max-width: 26em) { .timeline li { grid-template-columns: 1fr; gap: 0.2rem; } }

/* ---------- Contact ----------------------------------------------------- */
.contact-line { display: grid; grid-template-columns: 6rem 1fr; gap: 1rem; align-items: baseline; padding: var(--space-2) 0; border-top: 1px solid var(--rule); }
.contact-line:last-of-type { border-bottom: 1px solid var(--rule); }
.on-dark .contact-line { border-color: var(--rule-dark); }
.contact-line .k { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2); }
.on-dark .contact-line .k { color: var(--on-dark-2); }
.contact-line .v { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.2rem, 2vw, 1.6rem); letter-spacing: -0.02em; }
.contact-line a { text-decoration: none; border-bottom: 2px solid var(--brand); transition: color 0.15s ease; overflow-wrap: anywhere; }
.contact-line a:hover { color: var(--accent-text); }
.on-dark .contact-line a:hover { color: var(--brand); }
@media (max-width: 30em) { .contact-line { grid-template-columns: 1fr; gap: 0.2rem; } }
.contact-actions { display: grid; gap: 0.75rem; margin-top: var(--space-3); }
@media (min-width: 30em) { .contact-actions { grid-template-columns: 1fr 1fr; } }

/* ---------- Donate ------------------------------------------------------ */
.give-panel { border: 3px solid var(--brand); padding: clamp(1.5rem, 4vw, 2.5rem); background: var(--bg); }
.give-panel .h3 { margin-bottom: 0.5rem; }
.give-panel .btn { margin-top: var(--space-2); }
.give-panel .note { margin: var(--space-3) 0 0; font-size: 0.9rem; color: var(--ink-2); }
.uses { list-style: none; display: grid; gap: var(--space-2); }
.uses li { display: grid; grid-template-columns: 1.4rem 1fr; gap: 0.75rem; align-items: start; }
.uses svg { width: 1.4rem; height: 1.4rem; color: var(--accent-text); margin-top: 0.15em; }

/* ---------- Footer ------------------------------------------------------ */
.site-footer { background: var(--dark); color: var(--on-dark); padding-block: var(--space-5) var(--space-4); font-size: 0.95rem; border-top: 4px solid var(--brand); }
.site-footer .grid { display: grid; gap: var(--space-4); }
@media (min-width: 52em) { .site-footer .grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; } }
.site-footer h2 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-dark-2); margin-bottom: 0.8rem; font-weight: 600; }
.site-footer ul { list-style: none; display: grid; gap: 0.45rem; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--brand); }
.site-footer .muted { color: var(--on-dark-2); }
.site-footer .logo img { height: 2.6rem; filter: brightness(1.35) contrast(0.95); }
.site-footer .tag { color: var(--on-dark-2); max-width: 28rem; margin-top: 0.8rem; }
.site-footer .legal { margin-top: var(--space-4); padding-top: var(--space-3); border-top: 1px solid var(--rule-dark); color: var(--on-dark-2); font-size: 0.85rem; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between; }

/* ---------- Motion ------------------------------------------------------ */
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .arrow-link svg, .nav a, .org-n, .wr-n { transition: none; }
}

/* ---------- Utilities --------------------------------------------------- */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.mt-2 { margin-top: var(--space-2); } .mt-3 { margin-top: var(--space-3); } .mt-4 { margin-top: var(--space-4); } .mt-5 { margin-top: var(--space-5); }
.mb-3 { margin-bottom: var(--space-3); } .mb-4 { margin-bottom: var(--space-4); } .mb-5 { margin-bottom: var(--space-5); }

/* ---------- Page head (typographic, charcoal) --------------------------- */
.page-head { padding-block: clamp(3rem, 7vw, 6rem) clamp(2.5rem, 5vw, 4rem); }
.page-head .display, .page-head .h1 { max-width: 16ch; }
.page-head .lede { margin-top: var(--space-3); }
.page-head .eyebrow a { text-decoration: none; border-bottom: 1px solid var(--on-dark-2); }
.page-head .eyebrow a:hover { color: var(--brand); border-bottom-color: var(--brand); }

.jump { display: flex; flex-wrap: wrap; gap: 0.5rem 0.75rem; margin-top: var(--space-4); }
.jump a { text-decoration: none; font-size: 0.9rem; font-weight: 600; padding: 0.5rem 0.9rem; border: 1.5px solid var(--rule-dark); border-radius: 999px; min-height: 2.5rem; display: inline-flex; align-items: center; }
.jump a:hover { border-color: var(--brand); color: var(--brand); }

/* ---------- Organization list --------------------------------------------- */
.cause { padding-block: var(--space-5); border-top: 1px solid var(--rule); }
.cause:first-of-type { border-top: 0; }
.org-list { list-style: none; }
.org-row {
  display: grid; grid-template-columns: 2.5rem 1fr 1.5rem; gap: 0 var(--space-2); align-items: start;
  padding: 1.1rem 0; border-top: 1px solid var(--rule); text-decoration: none; min-height: 3rem;
}
.org-list li:last-child .org-row { border-bottom: 1px solid var(--rule); }
/* the orange dash — the site's eyebrow mark — instead of an ordinal: the list is not a ranking */
.org-n { width: 1.5rem; height: 3px; background: var(--brand); margin-top: 0.75rem; transition: width 0.15s ease; }
.org-row:hover .org-n { width: 2.25rem; }
.org-body { display: grid; gap: 0.2rem; min-width: 0; }
.org-t { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.2rem, 1.8vw, 1.5rem); letter-spacing: -0.02em; line-height: 1.15; }
.org-x { color: var(--ink-2); font-size: 0.95rem; line-height: 1.45; text-wrap: pretty; }
.org-arrow { padding-top: 0.5rem; color: var(--ink-2); }
.org-arrow svg { width: 1.25rem; height: 1.25rem; transition: transform 0.15s ease; }
.org-row:hover .org-t { color: var(--accent-text); }
.org-row:hover .org-arrow { color: var(--accent-text); }
.org-row:hover .org-arrow svg { transform: translateX(3px); }
.org-bio p { font-size: 1.1rem; line-height: 1.6; }
.org-bio a { color: var(--accent-text); overflow-wrap: anywhere; }

/* home strip of recommended organizations */
.wr-list { list-style: none; display: grid; gap: 0.5rem var(--space-4); }
@media (min-width: 40em) { .wr-list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 64em) { .wr-list { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.wr { display: grid; grid-template-columns: 2.25rem 1fr; grid-template-rows: auto auto; column-gap: 0.75rem; text-decoration: none; padding: 1rem 0; border-top: 1px solid var(--rule); min-height: 3rem; }
.wr-n { grid-row: 1 / 3; width: 1.5rem; height: 3px; background: var(--brand); margin-top: 0.6rem; transition: width 0.15s ease; }
.wr:hover .wr-n { width: 2.25rem; }
.wr-t { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; letter-spacing: -0.02em; line-height: 1.15; }
.wr-c { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); margin-top: 0.25rem; }
.wr:hover .wr-t { color: var(--accent-text); }

/* ---------- Campaigns --------------------------------------------------- */
.camp-list { list-style: none; }
.camp-list li { display: grid; grid-template-columns: 4rem 1fr; gap: var(--space-2); padding: 1rem 0; border-top: 1px solid var(--rule); }
.camp-list li:last-child { border-bottom: 1px solid var(--rule); }
.camp-d { font-family: var(--font-display); font-weight: 700; color: var(--accent-text); font-size: 0.95rem; letter-spacing: 0.04em; padding-top: 0.2rem; }
.camp-b { display: grid; gap: 0.3rem; min-width: 0; }
.camp-t { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.02em; line-height: 1.2; }
.camp-x { color: var(--ink-2); font-size: 0.95rem; line-height: 1.45; text-wrap: pretty; }
.camp-v { display: grid; gap: 0.25rem; margin-top: 0.3rem; font-size: 0.92rem; }
.camp-v a { display: inline-flex; align-items: center; gap: 0.4rem; text-decoration: none; border-bottom: 2px solid var(--brand); width: fit-content; max-width: 100%; }
.camp-v a svg { width: 1em; height: 1em; flex: none; }
.camp-v a:hover { color: var(--accent-text); }
@media (max-width: 26em) { .camp-list li { grid-template-columns: 1fr; gap: 0.2rem; } }

/* ---------- Film -------------------------------------------------------- */
.film { border-top: 3px solid var(--brand); padding-top: 0.75rem; }
.film video { width: 100%; height: auto; aspect-ratio: 16 / 9; background: #000; display: block; }
.org-sub { display: inline-flex; align-items: center; gap: 0.35rem; margin: -0.4rem 0 0.9rem 3.5rem; font-size: 0.9rem; font-weight: 600; text-decoration: none; border-bottom: 2px solid var(--brand); padding-bottom: 0.1rem; }
.org-sub svg { width: 1em; height: 1em; }
.org-sub:hover { color: var(--accent-text); }
@media (max-width: 30em) { .org-sub { margin-left: 0; } }

/* ---------- Page-head field: many equal dashes, no photo ---------------- */
/* The directory pages get a field of the site's own mark instead of a photograph:
   a photo of one subject would tilt a six-cause page toward one cause. Inline SVG,
   no request, masked so the text column stays clean. Static: nothing to reduce. */
.page-head--field { position: relative; isolation: isolate; overflow: hidden; }
.page-head--field::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27320%27 height=%27160%27 viewBox=%270 0 320 160%27%3E%3Cg fill=%27%23ff9100%27 fill-opacity=%270.28%27%3E%3Crect x=%2723%27 y=%2712%27 width=%2720%27 height=%273%27 rx=%271.5%27/%3E%3Crect x=%27105%27 y=%2712%27 width=%2724%27 height=%273%27 rx=%271.5%27/%3E%3Crect x=%27177%27 y=%2712%27 width=%2736%27 height=%273%27 rx=%271.5%27/%3E%3Crect x=%27279%27 y=%2712%27 width=%2720%27 height=%273%27 rx=%271.5%27/%3E%3Crect x=%2736%27 y=%2744%27 width=%2736%27 height=%273%27 rx=%271.5%27/%3E%3Crect x=%27114%27 y=%2744%27 width=%2736%27 height=%273%27 rx=%271.5%27/%3E%3Crect x=%27198%27 y=%2744%27 width=%2724%27 height=%273%27 rx=%271.5%27/%3E%3Crect x=%27290%27 y=%2744%27 width=%2716%27 height=%273%27 rx=%271.5%27/%3E%3Crect x=%2712%27 y=%2776%27 width=%2728%27 height=%273%27 rx=%271.5%27/%3E%3Crect x=%27106%27 y=%2776%27 width=%2736%27 height=%273%27 rx=%271.5%27/%3E%3Crect x=%27206%27 y=%2776%27 width=%2728%27 height=%273%27 rx=%271.5%27/%3E%3Crect x=%27296%27 y=%2776%27 width=%2724%27 height=%273%27 rx=%271.5%27/%3E%3Crect x=%2722%27 y=%27108%27 width=%2720%27 height=%273%27 rx=%271.5%27/%3E%3Crect x=%2775%27 y=%27108%27 width=%2716%27 height=%273%27 rx=%271.5%27/%3E%3Crect x=%27133%27 y=%27108%27 width=%2724%27 height=%273%27 rx=%271.5%27/%3E%3Crect x=%27226%27 y=%27108%27 width=%2716%27 height=%273%27 rx=%271.5%27/%3E%3Crect x=%27302%27 y=%27108%27 width=%2716%27 height=%273%27 rx=%271.5%27/%3E%3Crect x=%2731%27 y=%27140%27 width=%2736%27 height=%273%27 rx=%271.5%27/%3E%3Crect x=%27106%27 y=%27140%27 width=%2716%27 height=%273%27 rx=%271.5%27/%3E%3Crect x=%27165%27 y=%27140%27 width=%2724%27 height=%273%27 rx=%271.5%27/%3E%3Crect x=%27240%27 y=%27140%27 width=%2728%27 height=%273%27 rx=%271.5%27/%3E%3Crect x=%27304%27 y=%27140%27 width=%2716%27 height=%273%27 rx=%271.5%27/%3E%3C/g%3E%3C/svg%3E");
  background-size: 320px 160px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 30%, #000 70%), linear-gradient(to bottom, #000 0%, #000 60%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, transparent 0%, transparent 30%, #000 70%), linear-gradient(to bottom, #000 0%, #000 60%, transparent 100%);
  mask-composite: intersect;
}
@media (max-width: 52em) {
  .page-head--field::before {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 55%, #000 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, transparent 55%, #000 100%);
  }
}
