/* ═══════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════ */
:root {
  --ink:        #0e0e0e;
  --paper:      #f4efe4;
  --paper-mid:  #ebe4d5;
  --paper-dark: #ddd5c2;
  --coal:       #111820;
  --navy:       #18263a;
  --navy-lt:    #1e3252;
  --gold:       #b8892a;
  --gold-lt:    #d4a843;
  --gold-pale:  #f0d9a0;
  --rust:       #b93a2b;
  --fog:        #7a7265;
  --border:     #cec5b0;
  --border-lt:  #e2dccf;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Source Serif 4', Georgia, serif;
  --ff-mono:    'DM Mono', 'Courier New', monospace;
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* Global responsive images — never overflow their container */
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--gold-pale); color: var(--ink); }

/* ═══════════════════════════════════════
   STICKY NAV
═══════════════════════════════════════ */
#site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 2rem;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.3s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
#site-nav.scrolled {
  background: rgba(17, 24, 32, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.6rem 2rem;
  border-bottom-color: rgba(184,137,42,0.22);
}
.nav-brand {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  font-family: var(--ff-mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-lt); }
/* Hide nav links on small phones; show brand only */
@media (max-width: 480px) { .nav-links { display: none; } }

/* ═══════════════════════════════════════
   HERO / DEFINITION  — works for both
   #hero and #definition section IDs
═══════════════════════════════════════ */
#hero,
#definition {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--coal);
  overflow: hidden;
}

#hero-bg {
  position: absolute;
  inset: -25% 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23g)' opacity='0.055'/%3E%3C/svg%3E"),
    repeating-linear-gradient(-50deg, transparent 0, transparent 34px, rgba(255,255,255,0.014) 34px, rgba(255,255,255,0.014) 35px),
    radial-gradient(ellipse 130% 80% at 62% 52%, #1c3652 0%, #0d1f30 52%, #060f1a 100%);
  background-size: 250px 250px, auto, cover;
  will-change: transform;
  z-index: 0;
}

/* Low-opacity video layer — sits above the gradient, behind the content */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.05;
  z-index: 1;
  pointer-events: none;
}

/* Bottom gold bar */
#hero::after,
#definition::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--gold) 30%, var(--gold-lt) 65%, transparent);
  z-index: 3;
}

#hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.hero-eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.67rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 2.25rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Hero two-column row: title | abstract ── */
.hero-row {
  /* Bootstrap supplies the grid; this just adds breathing room
     between the two columns on wide viewports */
}
.hero-row > [class*="col-"] {
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .hero-row > [class*="col-"] { margin-bottom: 0; }
  .hero-row .hero-col-abstract { padding-left: 2.5rem; }
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 0.92;
  color: #fff;
  letter-spacing: -0.028em;
  margin-bottom: 0;
}
.hero-title em {
  display: block;
  font-style: italic;
  color: var(--gold-lt);
}

.hero-divider {
  width: 3.5rem;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-lt));
  margin: 2rem 0;
}

.hero-abstract {
  font-family: var(--ff-body);
  font-size: clamp(0.93rem, 1.6vw, 1.05rem);
  line-height: 1.85;
  color: rgba(255,255,255,0.72);
  font-weight: 300;
  max-width: 560px;
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
}

.hero-meta {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.75rem;
  font-family: var(--ff-mono);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.hero-meta span::before { content: '— '; color: var(--gold); }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-mono);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
}
.scroll-cue .line {
  width: 1px;
  height: 2.6rem;
  background: linear-gradient(to bottom, var(--gold-lt), transparent);
  animation: scrollPulse 2.3s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.95); }
  55%       { opacity: 1;   transform: scaleY(1.12); }
}

/* ═══════════════════════════════════════
   TRACKER SECTION
═══════════════════════════════════════ */
#tracker {
  background: var(--paper);
  padding: 6rem 0 7rem;
  position: relative;
}
#tracker::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(to right, var(--rust) 0%, var(--gold) 45%, var(--navy) 100%);
}

.sec-label {
  font-family: var(--ff-mono);
  font-size: 0.63rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--fog);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}
.sec-label::after {
  content: '';
  width: 5rem;
  height: 1px;
  background: var(--border);
}
.sec-heading {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.sec-intro {
  font-size: 0.95rem;
  color: var(--fog);
  font-style: italic;
  max-width: 700px;
  margin-bottom: 3rem;
  line-height: 1.78;
}

/* ── Logo quick-nav strip: two explicit rows (6 + 7) ── */
.logo-nav {
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  background: #fff;
  border: 1px solid var(--border);
}
.logo-nav-row {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 0.85rem;
}
.logo-nav-row + .logo-nav-row {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-lt);
}
.logo-nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  background: var(--paper-mid);
  border: 1px solid var(--border-lt);
  border-radius: 6px;
  padding: 7px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.logo-nav-item:hover,
.logo-nav-item:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  border-color: var(--gold);
}
.logo-nav-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 768px) {
  .logo-nav-row { flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
}
@media (max-width: 540px) {
  .logo-nav { gap: 0.75rem; padding: 1rem; }
  .logo-nav-item { width: 46px; height: 46px; padding: 5px; }
}

/* Column legend */
.col-legend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 0.6rem;
  border: 1px solid var(--border);
  background: var(--navy);
}
.col-legend span {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  padding: 0.6rem 1.4rem;
}
.col-legend span + span { border-left: 1px solid rgba(255,255,255,0.08); }
@media (max-width: 620px) { .col-legend { display: none; } }

/* ── Org card ── */
.org-card {
  border: 1px solid var(--border);
  background: #fff;
  margin-bottom: 1.15rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  scroll-margin-top: 6rem; /* keeps card clear of sticky nav when jumped to */
}
.org-card:hover {
  box-shadow: 0 6px 30px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}
/* Brief highlight flash when navigated to via the logo strip */
.org-card:target {
  box-shadow: 0 0 0 3px var(--gold-pale), 0 6px 30px rgba(0,0,0,0.09);
}

/* ── Card header ── */
.card-head {
  background: var(--navy);
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;          /* vertically center all children */
  gap: 1rem;
  position: relative;
  flex-wrap: wrap;              /* allow wrap on very narrow screens */
}
/* ── Card head: idx | logo | info+about ── */
.card-head {
  background: var(--navy);
  padding: 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
  flex-wrap: wrap;
}
.card-head::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold) 0%, transparent 75%);
}
.card-idx {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  color: var(--gold);
  min-width: 1.7rem;
  flex-shrink: 0;
  align-self: flex-start;
  padding-top: 0.22rem;
}

/* Real org logo image — sits as direct flex child of .card-head */
.org-img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  flex-shrink: 0;
  background: rgba(255,255,255,0.96);
  border-radius: 6px;
  padding: 10px;
}
@media (max-width: 620px) {
  .org-img { width: 120px; height: 120px; }
}

.card-info {
  flex: 1;
  min-width: 0;
}
/* Legacy: img inside card-info (if not yet migrated to .org-img) */
.card-info img {
  max-width: 480px;
  max-height: 360px;
  width: auto;
  height: auto;
  margin-bottom: 0.75rem;
  object-fit: contain;
}
@media (max-width: 620px) {
  .card-info img { max-width: 360px; max-height: 240px; }
}

.card-name {
  font-family: var(--ff-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0.22rem;
}
.card-meta {
  font-family: var(--ff-mono);
  font-size: 0.59rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.36);
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 0.9rem;
}
.fn-ref {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  color: var(--gold-lt);
  vertical-align: super;
  line-height: 0;
  text-decoration: none;
  margin-left: 2px;
  transition: color 0.15s;
}
.fn-ref:hover { color: #fff; }

/* About text — lives inside .card-info, styled for the dark header */
.card-about {
  margin-top: 0.85rem;
  font-family: var(--ff-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}
/* Override col-lbl colour when it's inside the dark header */
.card-about .col-lbl { color: rgba(255,255,255,0.35); }

/* ── Card body: full width, contains 2-col donor grid ── */
.card-body {
  padding: 1.5rem 1.4rem;
}

.col-lbl {
  display: block;
  font-family: var(--ff-mono);
  font-size: 0.59rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fog);
  margin-bottom: 0.55rem;
}

/* ── Donor list: 2-column grid ── */
.donor-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
  align-content: start;
}
/* Label spans both columns */
.donor-list > .col-lbl { grid-column: 1 / -1; margin-bottom: 0.25rem; }

.donor-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.6rem;
  border: 1px solid var(--border-lt);
  border-radius: 3px;
  background: #fff;
  font-size: 0.855rem;
  line-height: 1.45;
}
.donor-item:last-child { border-bottom: 1px solid var(--border-lt); }

/* Donor logos from filesystem — constrain to a fixed thumbnail slot.
   Sized at 75% of the original 144px slot (~25% smaller). */
.donor-item img {
  width: 108px;
  height: 108px;
  object-fit: contain;
  flex-shrink: 0;
  border: 1px dashed var(--border);
  border-radius: 4px;
  background: var(--paper-mid);
  padding: 6px;
}
@media (max-width: 480px) {
  .donor-item img { width: 81px; height: 81px; }
}

/* Donor name text — 75% of the original 2.565rem (~25% smaller) */
.d-name { color: var(--ink); flex: 1; min-width: 0; font-size: 1.924rem; line-height: 1.3; }
.d-amt {
  font-family: var(--ff-mono);
  font-size: 0.73rem;
  color: var(--rust);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── SVG placeholder logo styles (used when no real image supplied) ── */
.org-logo {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  margin-left: 0;
  align-self: flex-start;
  background: rgba(255,255,255,0.06);
  border: 1px dashed rgba(255,255,255,0.20);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.org-logo svg {
  width: 22px;
  height: 22px;
  stroke: rgba(255,255,255,0.28);
  flex-shrink: 0;
}
.org-logo-lbl {
  font-family: var(--ff-mono);
  font-size: 0.44rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  line-height: 1;
}
.donor-logo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--paper-mid);
  border: 1px dashed var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.donor-logo svg {
  width: 20px;
  height: 20px;
  stroke: var(--fog);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   FEATURE SPLIT SECTION (photo | text)
═══════════════════════════════════════ */
#feature-split {
  background: var(--paper-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
  position: relative;
}
.feature-split-row {
  display: flex;
  align-items: center;
  gap: 3rem;
}
/* ── Feature split: responsive image, contained to column ── */
.feature-photo {
  width: 100%;
  overflow: hidden; /* clips the image to the rounded corners */
}
.feature-photo img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--border);
}

/* ── Read More button ── */
.btn-readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.7rem 1.5rem;
  background: var(--navy);
  color: #fff;
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--navy);
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn-readmore::after {
  content: '→';
  font-family: var(--ff-body);
  transition: transform 0.2s ease;
}
.btn-readmore:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-1px);
}
.btn-readmore:hover::after {
  transform: translateX(3px);
}
.feature-text {
  flex: 1 1 58%;
  min-width: 0;
}
.feature-text .sec-label { margin-bottom: 0.6rem; }
.feature-text .sec-heading { margin-bottom: 1.1rem; }
.feature-text p {
  font-size: 0.95rem;
  color: var(--fog);
  line-height: 1.85;
}
@media (max-width: 768px) {
  .feature-split-row { flex-direction: column; gap: 2rem; }
  .feature-photo, .feature-text { flex-basis: 100%; }
}

/* ═══════════════════════════════════════
   FOOTNOTES SECTION
═══════════════════════════════════════ */
#footnotes {
  background: var(--paper-mid);
  border-top: 1px solid var(--border);
  padding: 5rem 0 6rem;
  position: relative;
}
#footnotes::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold) 0%, transparent 60%);
}

.fn-title {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--ink);
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.25rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}
.fn-title-tag {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.12em;
}

/* Two columns on tablet+, single column on phone */
.fn-cols {
  display: block;
}


.fn-entry {
  display: grid;
  grid-template-columns: 1.75rem 1fr;
  gap: 0 0.85rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border-lt);
  font-size: 0.845rem;
  line-height: 1.68;
  color: #4a4232;
}
.fn-entry:last-child { border-bottom: none; }
.fn-n {
  font-family: var(--ff-mono);
  font-size: 0.69rem;
  color: var(--gold);
  font-weight: 500;
  text-align: right;
  padding-top: 0.08rem;
}
.fn-body strong { color: var(--ink); font-weight: 600; }
.fn-body a {
  color: var(--rust);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.fn-body a:hover { color: var(--gold); }

.fn-note {
  margin-top: 3rem;
  font-size: 0.82rem;
  color: var(--fog);
  font-style: italic;
  max-width: 740px;
  line-height: 1.72;
}
.fn-note strong { color: var(--ink); font-style: normal; font-weight: 600; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
#site-footer {
  background: var(--navy);
  padding: 1.75rem 0;
  text-align: center;
}
#site-footer p {
  font-family: var(--ff-mono);
  font-size: 0.63rem;
  letter-spacing: 0.13em;
  color: rgba(255,255,255,0.27);
  margin: 0;
}
#site-footer strong { color: rgba(255,255,255,0.48); font-weight: 500; }

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.20s; }
.reveal-d3 { transition-delay: 0.30s; }

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET  ≤ 768px
═══════════════════════════════════════ */
@media (max-width: 768px) {
  #hero-inner { padding-top: 6rem; padding-bottom: 4rem; }
  #tracker    { padding: 4rem 0 5rem; }
  #footnotes  { padding: 3.5rem 0 4.5rem; }

  /* Donor grid: single column on tablet */
  .donor-list { grid-template-columns: 1fr; gap: 0.4rem; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — PHONE  ≤ 540px
═══════════════════════════════════════ */
@media (max-width: 540px) {
  #hero-inner    { padding-top: 5rem; padding-bottom: 3rem; }
  .hero-abstract { font-size: 0.94rem; padding-left: 1rem; }
  .hero-meta     { gap: 0.25rem 1rem; font-size: 0.6rem; }
  #tracker       { padding: 3rem 0 4rem; }

  /* Card header: logo shrinks, about text wraps below */
  .card-head  { padding: 0.85rem 1rem; gap: 0.75rem; }
  .org-img    { width: 90px; height: 90px; }
  .org-logo   { width: 90px; height: 90px; }
  .org-logo svg { width: 28px; height: 28px; }
  .card-name  { font-size: 0.93rem; }
  .card-about { font-size: 0.82rem; }

  /* Card body */
  .card-body  { padding: 1rem; }

  /* Donor rows */
  .donor-item { align-items: flex-start; gap: 0.4rem; }
  .donor-logo { width: 38px; height: 38px; margin-top: 1px; }
  .donor-logo svg { width: 15px; height: 15px; }
  .d-amt      { font-size: 0.67rem; align-self: flex-start; padding-top: 2px; }

  #footnotes  { padding: 3rem 0 3.5rem; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — SMALL PHONE  ≤ 380px
═══════════════════════════════════════ */
@media (max-width: 380px) {
  .hero-title { letter-spacing: -0.035em; }
  .card-name  { font-size: 0.85rem; }
  .card-meta  { font-size: 0.52rem; gap: 0.1rem 0.7rem; }
  .org-img    { width: 70px; height: 70px; }
  .org-logo   { width: 70px; height: 70px; }

  .donor-item { flex-wrap: wrap; }
  .d-name     { flex: 1 1 calc(100% - 38px - 0.4rem); }
  .d-amt {
    flex-basis: 100%;
    padding-left: calc(38px + 0.4rem);
    padding-top: 0;
    font-size: 0.65rem;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue .line { animation: none; }
}