/* ================================================================
   HEART TO HEART — Main Stylesheet v1.0
   Extracted and unified from all HTML templates.
   ================================================================ */

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

/* ---------------------------------------------------------------
   CSS CUSTOM PROPERTIES (Design Tokens)
   --------------------------------------------------------------- */
:root {
  /* Blue ramp */
  --blue-50:  #eaf7fb;
  --blue-100: #cdecf3;
  --blue-200: #9adae8;
  --blue-300: #5ec3d8;
  --blue-400: #2cabc7;
  --blue-500: #099ec4;
  --blue-600: #0883a3;
  --blue-700: #0a6680;
  --blue-800: #0d4e62;
  --blue-900: #0f3a48;

  /* Pink ramp */
  --pink-50:  #fdeef3;
  --pink-100: #fbd6e2;
  --pink-200: #f7adc4;
  --pink-300: #f487a7;
  --pink-400: #f06d96;
  --pink-500: #f5588d;
  --pink-600: #d94677;
  --pink-700: #b03460;
  --pink-800: #7e2545;
  --pink-900: #4f1a30;

  /* Ink (neutral) ramp */
  --ink-900: #101319;
  --ink-800: #1c2129;
  --ink-700: #343b46;
  --ink-600: #535a66;
  --ink-500: #7a818c;
  --ink-400: #a3a9b3;
  --ink-300: #c9ced5;
  --ink-200: #e3e6eb;
  --ink-100: #f1f3f6;
  --ink-50:  #f7f8fa;
  --paper:   #ffffff;

  /* Extra colours (reporting) */
  --amber-500: #f5a623;
  --green-500: #1e9e5a;

  /* Radii */
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15,58,72,.06), 0 1px 3px rgba(15,58,72,.04);
  --shadow-md: 0 6px 18px rgba(15,58,72,.08), 0 2px 6px rgba(15,58,72,.05);
  --shadow-lg: 0 24px 60px rgba(15,58,72,.12), 0 8px 20px rgba(15,58,72,.06);

  /* Fonts */
  --font-display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  --font-body:    "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;

  /* Program accent (overridden inline per program) */
  --accent-50:   var(--pink-50);
  --accent-100:  var(--pink-100);
  --accent-200:  var(--pink-200);
  --accent-300:  var(--pink-300);
  --accent-500:  var(--pink-500);
  --accent-600:  var(--pink-600);
  --accent-glow: rgba(245,88,141,.30);
}

/* ---------------------------------------------------------------
   BASE
   --------------------------------------------------------------- */
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--paper);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { transition: color .2s; }

/* ---------------------------------------------------------------
   TYPOGRAPHY UTILITIES
   --------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 14px;
}
.h-display { font-family: var(--font-display); font-weight: 600; font-size: 64px; line-height: 1.02; letter-spacing: -.02em; color: var(--ink-900); }
.h1 { font-family: var(--font-display); font-weight: 600; font-size: 48px; line-height: 1.05; letter-spacing: -.01em; color: var(--ink-900); }
.h2 { font-family: var(--font-display); font-weight: 600; font-size: 40px; line-height: 1.08; letter-spacing: -.01em; color: var(--ink-900); }
.h3 { font-family: var(--font-display); font-weight: 600; font-size: 22px; line-height: 1.25; color: var(--ink-900); }
.lead { font-size: 17px; color: var(--ink-600); line-height: 1.65; max-width: 600px; }
.centered { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------------------------------------------------------------
   LAYOUT UTILITIES
   --------------------------------------------------------------- */
.section { padding: 96px 60px; max-width: 1280px; margin: 0 auto; }
.bg-alt  { background: var(--ink-50); }
.bg-ink  { background: var(--ink-900); }

.sec-head { margin-bottom: 56px; }
.sec-head.center { text-align: center; }
.sec-head.center .lead { margin-left: auto; margin-right: auto; }
.sec-head h2 { margin: 0 0 16px; }
.sec-head .eyebrow { margin-bottom: 12px; }

/* kick (monospace kicker for program pages) */
.kick {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: ui-monospace, monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-600);
  margin-bottom: 16px;
}
.kick .bar { width: 36px; height: 3px; border-radius: 2px; background: var(--accent-500); }

/* ---------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary   { background: var(--blue-500); color: #fff; box-shadow: 0 8px 18px rgba(9,158,196,.3); }
.btn-primary:hover { background: var(--blue-600); }
.btn-secondary { background: var(--pink-500); color: #fff; box-shadow: 0 8px 18px rgba(245,88,141,.3); }
.btn-secondary:hover { background: var(--pink-600); }
.btn-ghost     { background: transparent; color: var(--ink-800); border-color: var(--ink-300); }
.btn-ghost:hover { border-color: var(--ink-800); background: var(--paper); }
.btn-soft      { background: var(--blue-50); color: var(--blue-700); }
.btn-soft:hover { background: var(--blue-100); }
.btn-dark      { background: var(--ink-900); color: #fff; }
.btn-dark:hover { background: var(--ink-800); }
.btn-light     { background: var(--paper); color: var(--ink-900); }
.btn-light:hover { background: var(--ink-50); }
.btn-sm        { padding: 9px 16px; font-size: 13px; }
.btn-lg        { padding: 18px 28px; font-size: 16px; }
.btn .arrow    { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.2); }
.btn-ghost .arrow,
.btn-light .arrow { background: var(--ink-100); }

/* ---------------------------------------------------------------
   HEADER / NAV
   --------------------------------------------------------------- */
.hdr {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--ink-200);
  padding: 0 60px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hdr-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon { width: 34px; height: 34px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .nm { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--ink-900); letter-spacing: .01em; }
.logo-text .sb { font-size: 11px; font-weight: 600; color: var(--ink-500); letter-spacing: .06em; text-transform: uppercase; margin-top: 3px; }
.hdr-nav { display: flex; gap: 32px; align-items: center; }
.hdr-nav a { text-decoration: none; font-size: 14px; font-weight: 600; color: var(--ink-700); transition: color .2s; }
.hdr-nav a:hover { color: var(--blue-500); }
.hdr-nav a.active { color: var(--blue-600); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--ink-200);
  width: 42px; height: 42px;
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--ink-800);
}
.nav-toggle:hover { background: var(--ink-50); border-color: var(--ink-300); }
.nav-toggle svg { display: block; }

/* ---------------------------------------------------------------
   HERO (Homepage)
   --------------------------------------------------------------- */
.hero-wrap { background: var(--paper); overflow: hidden; border-bottom: 1px solid var(--ink-200); }
.hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 60px 96px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}
.hero h1 { font-family: var(--font-display); font-weight: 600; font-size: 72px; line-height: .98; letter-spacing: -.02em; color: var(--ink-900); margin: 18px 0 24px; }
.hero h1 .h {
  background: linear-gradient(92deg, var(--blue-500) 0%, var(--blue-500) 45%, var(--pink-500) 55%, var(--pink-500) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: 18px; color: var(--ink-600); line-height: 1.65; margin-bottom: 36px; max-width: 520px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust { font-size: 12px; color: var(--ink-500); display: flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; flex-wrap: wrap; }
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--pink-500); display: inline-block; }
.hero-img-wrap { position: relative; }
.hero-img-placeholder {
  width: 100%; aspect-ratio: 4/5; border-radius: 32px;
  background: linear-gradient(135deg, var(--blue-100) 0%, var(--pink-100) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden; box-shadow: var(--shadow-md);
}
.hero-img-placeholder img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero-img-placeholder::before { content: ''; position: absolute; top: -40px; right: -40px; width: 200px; height: 200px; background: var(--blue-500); opacity: .10; border-radius: 50%; }
.hero-img-placeholder::after  { content: ''; position: absolute; bottom: -30px; left: -30px; width: 160px; height: 160px; background: var(--pink-500); opacity: .10; border-radius: 50%; }
.hero-img-placeholder .ph { position: relative; z-index: 1; font-family: ui-monospace, monospace; font-size: 12px; color: var(--ink-700); background: rgba(255,255,255,.78); padding: 8px 14px; border-radius: 999px; }
.hero-badge {
  position: absolute; bottom: 28px; left: -22px; background: var(--paper);
  border-radius: var(--radius-pill); padding: 14px 22px;
  display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-lg);
}
.hero-badge .num { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--ink-900); line-height: 1; }
.hero-badge .lbl { font-size: 11px; color: var(--ink-500); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-top: 3px; }
.hero-badge-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--pink-500); }

/* ---------------------------------------------------------------
   IMPACT BAR
   --------------------------------------------------------------- */
.impact-bar { border-top: 1px solid var(--ink-200); border-bottom: 1px solid var(--ink-200); background: var(--paper); }
.impact-bar-inner { max-width: 1280px; margin: 0 auto; padding: 36px 60px; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; align-items: center; }
.impact-item { position: relative; padding-left: 20px; }
.impact-item + .impact-item { border-left: 1px solid var(--ink-200); }
.impact-num { display: block; font-family: var(--font-display); font-weight: 600; font-size: 36px; color: var(--ink-900); line-height: 1; letter-spacing: -.01em; }
.impact-num em { font-style: normal; color: var(--pink-500); }
.impact-lbl { font-size: 13px; color: var(--ink-500); margin-top: 6px; display: block; }

/* ---------------------------------------------------------------
   STATS GRID
   --------------------------------------------------------------- */
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 8px; }
.stat-card {
  background: var(--paper); border-radius: var(--radius-lg); padding: 36px 32px;
  border: 1px solid var(--ink-200); box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s; position: relative; overflow: hidden;
}
.stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg,var(--blue-500),var(--pink-500)); }
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.stat-num { display: block; font-family: var(--font-display); font-weight: 600; font-size: 64px; color: var(--blue-500); line-height: 1; margin-bottom: 14px; letter-spacing: -.02em; }
.stat-heading { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--ink-900); margin-bottom: 10px; line-height: 1.3; }
.stat-desc { font-size: 14px; color: var(--ink-600); line-height: 1.6; margin-bottom: 12px; }
.stat-source { font-size: 11px; color: var(--ink-500); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }

/* ---------------------------------------------------------------
   PROGRAM CARDS (Homepage + Programs listing)
   --------------------------------------------------------------- */
.programs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.programs-grid.cols-1 { grid-template-columns: 1fr; max-width: 760px; }

.prog-card {
  background: var(--paper); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--ink-200); box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column;
}
.prog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.prog-card.wide { flex-direction: row; }
.prog-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.prog-card.wide .prog-img { aspect-ratio: auto; width: 42%; flex-shrink: 0; }
.prog-img img { width: 100%; height: 100%; object-fit: cover; }
.prog-img-ph { width: 100%; height: 100%; display: grid; place-items: center; min-height: 200px; }
.prog-img-ph.blue { background: linear-gradient(135deg,var(--blue-100),var(--blue-200)); }
.prog-img-ph.pink { background: linear-gradient(135deg,var(--pink-100),var(--pink-200)); }
.prog-img-ph.mix  { background: linear-gradient(135deg,var(--blue-100),var(--pink-100)); }
.prog-img-ph.amber { background: linear-gradient(135deg,#fef3c7,#fde68a); }
.prog-img-ph.green { background: linear-gradient(135deg,#d1fae5,#a7f3d0); }
.prog-img-ph.purple { background: linear-gradient(135deg,#ede9fe,#ddd6fe); }
.prog-img-ph.red { background: linear-gradient(135deg,#fee2e2,#fecaca); }
.prog-img-ph .ph { font-family: ui-monospace, monospace; font-size: 11px; color: var(--ink-700); background: rgba(255,255,255,.72); padding: 6px 12px; border-radius: 999px; }
.chip {
  position: absolute; top: 16px; left: 16px; background: var(--paper);
  border-radius: 999px; padding: 6px 14px;
  font-size: 12px; font-weight: 700; color: var(--ink-800);
  box-shadow: var(--shadow-sm); display: inline-flex; align-items: center; gap: 8px;
}
.chip .d { width: 6px; height: 6px; border-radius: 50%; background: var(--pink-500); }
.chip.blue .d { background: var(--blue-500); }
.prog-body { padding: 28px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.prog-card.wide .prog-body { justify-content: center; }
.prog-kicker { font-family: ui-monospace, monospace; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-400); margin-bottom: 10px; }
.prog-title { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--ink-900); margin: 0 0 12px; line-height: 1.25; }
.prog-text  { font-size: 14.5px; color: var(--ink-600); line-height: 1.65; flex: 1; margin-bottom: 20px; }
.prog-tags  { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 22px; }
.ptag { font-size: 11.5px; font-weight: 600; color: var(--ink-600); background: var(--ink-50); border: 1px solid var(--ink-200); padding: 4px 10px; border-radius: 999px; }
.prog-divider { height: 3px; border-radius: 2px; background: linear-gradient(90deg,var(--blue-500),var(--pink-500)); margin-bottom: 18px; width: 48px; }
.prog-link { font-size: 13px; font-weight: 700; color: var(--blue-600); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; letter-spacing: .04em; text-transform: uppercase; margin-top: auto; }
.prog-link:hover { color: var(--pink-500); }

/* ---------------------------------------------------------------
   STORY SECTION
   --------------------------------------------------------------- */
.story-section { overflow: hidden; }
.story-inner { max-width: 1280px; margin: 0 auto; padding: 96px 60px; display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: center; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; height: 520px; }
.sgrid-cell { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.sgrid-ph { width: 100%; height: 100%; display: grid; place-items: center; }
.sgrid-ph.g1 { background: linear-gradient(135deg,var(--blue-100),var(--blue-200)); }
.sgrid-ph.g2 { background: linear-gradient(135deg,var(--pink-100),var(--pink-200)); }
.sgrid-ph.g3 { background: linear-gradient(135deg,var(--blue-100),var(--pink-100)); }
.sgrid-ph img, .sgrid-cell img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.sgrid-ph .ph { font-family: ui-monospace, monospace; font-size: 11px; color: var(--ink-700); background: rgba(255,255,255,.7); padding: 6px 12px; border-radius: 999px; }
.sgrid-accent {
  background: var(--pink-500);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 24px; color: #fff;
}
.sgrid-accent-num { font-family: var(--font-display); font-weight: 600; font-size: 48px; line-height: 1; letter-spacing: -.02em; }
.sgrid-accent-txt { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-top: 10px; line-height: 1.4; opacity: .9; }
.story-photo-tag { position: absolute; bottom: 12px; left: 12px; background: rgba(255,255,255,.92); border-radius: 999px; padding: 5px 12px; font-size: 11px; font-weight: 700; color: var(--ink-800); letter-spacing: .04em; text-transform: uppercase; }
.story-right p { font-size: 16px; color: var(--ink-600); line-height: 1.75; margin-bottom: 16px; }

/* ---------------------------------------------------------------
   DONATE SECTION (Homepage dark + Program pages)
   --------------------------------------------------------------- */
.donate-section { background: var(--ink-900); padding: 104px 60px; position: relative; overflow: hidden; }
.donate-blob1 { position: absolute; top: -100px; right: -100px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle,rgba(9,158,196,.22),transparent 70%); pointer-events: none; }
.donate-blob2 { position: absolute; bottom: -80px; left: -80px; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle,rgba(245,88,141,.22),transparent 70%); pointer-events: none; }
.donate-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; text-align: center; }
.donate-inner.two-col { max-width: 1080px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; text-align: left; }
.donate-title { font-family: var(--font-display); font-weight: 600; font-size: 56px; color: #fff; margin-bottom: 14px; line-height: 1.02; letter-spacing: -.02em; }
.donate-title .h { background: linear-gradient(92deg,var(--blue-300) 0%, var(--pink-300) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.donate-sub { font-size: 17px; color: rgba(255,255,255,.65); margin-bottom: 44px; line-height: 1.65; }
.donate-eyebrow { font-family: var(--font-body); font-weight: 700; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-300, #f487a7); margin-bottom: 16px; }

/* Donation card (Homepage) */
.donate-card { background: var(--paper); border-radius: 32px; padding: 40px; box-shadow: var(--shadow-lg); }
.donate-toggle { display: flex; background: var(--ink-50); border-radius: 999px; padding: 5px; margin-bottom: 28px; border: 1px solid var(--ink-200); }
.dtog-btn { flex: 1; padding: 11px; border-radius: 999px; border: none; background: transparent; font-size: 14px; font-weight: 700; cursor: pointer; color: var(--ink-600); transition: all .2s; font-family: var(--font-body); }
.dtog-btn.active { background: var(--paper); color: var(--ink-900); box-shadow: var(--shadow-sm); }
.dtog-badge { display: inline-block; background: var(--pink-50); color: var(--pink-700); font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 999px; margin-left: 8px; letter-spacing: .04em; text-transform: uppercase; }
.donate-amounts { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 24px; }
.damount { border: 1px solid var(--ink-200); border-radius: 14px; padding: 16px 8px; text-align: center; cursor: pointer; transition: all .2s; background: var(--paper); }
.damount:hover, .damount.active { border-color: var(--pink-500); background: var(--pink-50); color: var(--pink-700); }
.damount .amt { display: block; font-family: var(--font-display); font-weight: 600; font-size: 24px; color: var(--ink-900); letter-spacing: -.01em; }
.damount.active .amt { color: var(--pink-700); }
.damount .albl { font-size: 11px; color: var(--ink-500); line-height: 1.4; margin-top: 6px; font-weight: 500; }
.damount.active .albl { color: var(--pink-700); }
.payment-logos { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 22px; opacity: .55; }
.pay-logo { font-family: ui-monospace, monospace; font-size: 11px; font-weight: 700; color: var(--ink-500); letter-spacing: .04em; }

/* Donation card (dark, program pages) */
.donate-card.dark {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  padding: 36px;
  backdrop-filter: blur(4px);
}
.donate-card.dark h3 { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: #fff; margin-bottom: 6px; }
.donate-card.dark .ct { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 24px; }

.impact-line { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.08); }
.impact-line:first-of-type { border-top: none; padding-top: 6px; }
.impact-amt { font-family: var(--font-display); font-weight: 600; font-size: 26px; color: #fff; width: 74px; flex-shrink: 0; letter-spacing: -.01em; }
.impact-amt em { font-style: normal; color: var(--pink-300); }
.impact-desc { font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.5; }

.donate-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.donate-trust { font-size: 12px; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; flex-wrap: wrap; }
.donate-trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--pink-400); display: inline-block; }

.enable-list { list-style: none; margin: 0 0 30px; padding: 0; }
.enable-list li { display: flex; align-items: flex-start; gap: 12px; padding: 8px 0; font-size: 15px; color: rgba(255,255,255,.82); line-height: 1.5; }
.enable-list li .ed { width: 18px; height: 18px; border-radius: 50%; background: rgba(245,88,141,.22); flex-shrink: 0; display: grid; place-items: center; margin-top: 2px; color: var(--pink-300); }

/* ---------------------------------------------------------------
   IMPACT CARDS
   --------------------------------------------------------------- */
.impact-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.icard { background: var(--paper); border: 1px solid var(--ink-200); border-radius: var(--radius-lg); padding: 32px 22px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; position: relative; overflow: hidden; }
.icard::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--pink-500); }
.icard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.icard-num { display: block; font-family: var(--font-display); font-weight: 600; font-size: 52px; color: var(--pink-500); line-height: 1; margin-bottom: 10px; letter-spacing: -.02em; }
.icard-lbl { font-size: 14px; color: var(--ink-700); font-weight: 500; line-height: 1.4; }

/* ---------------------------------------------------------------
   EVENTS
   --------------------------------------------------------------- */
.events-header { display: flex; justify-content: space-between; align-items: end; margin-bottom: 48px; gap: 24px; }
.see-all { font-size: 13px; font-weight: 700; color: var(--blue-600); text-decoration: none; display: flex; align-items: center; gap: 6px; letter-spacing: .04em; text-transform: uppercase; }
.see-all:hover { color: var(--pink-500); }
.events-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.ev-card { background: var(--paper); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--ink-200); box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.ev-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ev-img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.ev-img img { width: 100%; height: 100%; object-fit: cover; }
.ev-img-ph { width: 100%; height: 100%; display: grid; place-items: center; }
.ev-img-ph.e1 { background: linear-gradient(135deg,var(--blue-100),var(--blue-200)); }
.ev-img-ph.e2 { background: linear-gradient(135deg,var(--pink-100),var(--pink-200)); }
.ev-img-ph.e3 { background: linear-gradient(135deg,var(--blue-100),var(--pink-100)); }
.ev-img-ph .ph { font-family: ui-monospace, monospace; font-size: 10px; color: var(--ink-700); background: rgba(255,255,255,.7); padding: 5px 10px; border-radius: 999px; }
.ev-date-badge { position: absolute; top: 14px; left: 14px; background: var(--blue-500); color: #fff; font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 999px; letter-spacing: .04em; text-transform: uppercase; }
.ev-body { padding: 22px; }
.ev-title { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--ink-900); margin-bottom: 10px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ev-desc { font-size: 13.5px; color: var(--ink-600); line-height: 1.6; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ev-link { font-size: 12px; font-weight: 700; color: var(--blue-600); text-decoration: none; letter-spacing: .04em; text-transform: uppercase; }
.ev-link:hover { color: var(--pink-500); }

/* ---------------------------------------------------------------
   TRUST / WHY DONORS
   --------------------------------------------------------------- */
.trust-inner { max-width: 1280px; margin: 0 auto; padding: 96px 60px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: center; }
.trust-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.trust-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: var(--paper); border-radius: var(--radius-md); border: 1px solid var(--ink-200); transition: border-color .2s, box-shadow .2s; }
.trust-item:hover { border-color: var(--blue-300); box-shadow: var(--shadow-sm); }
.trust-icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; }
.ti-blue { background: var(--blue-50); color: var(--blue-600); }
.ti-pink { background: var(--pink-50); color: var(--pink-600); }
.trust-item h4 { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink-900); margin-bottom: 5px; }
.trust-item p  { font-size: 13.5px; color: var(--ink-600); line-height: 1.55; }
.trust-photo-wrap { position: relative; }
.trust-ph { width: 100%; aspect-ratio: 4/5; border-radius: 32px; background: linear-gradient(135deg,var(--blue-100) 0%,var(--pink-100) 100%); display: grid; place-items: center; box-shadow: var(--shadow-md); overflow: hidden; }
.trust-ph img { width: 100%; height: 100%; object-fit: cover; }
.trust-ph .ph { font-family: ui-monospace, monospace; font-size: 12px; color: var(--ink-700); background: rgba(255,255,255,.78); padding: 8px 14px; border-radius: 999px; }
.ftag { position: absolute; background: var(--paper); border-radius: 999px; padding: 9px 18px; display: flex; align-items: center; gap: 9px; box-shadow: var(--shadow-md); font-size: 13px; font-weight: 700; color: var(--ink-800); }
.ftag.t1 { bottom: 32px; left: -26px; }
.ftag.t2 { top: 32px; right: -26px; }
.ftag-dot { width: 8px; height: 8px; border-radius: 50%; }
.ftag.t1 .ftag-dot { background: var(--blue-500); }
.ftag.t2 .ftag-dot { background: var(--pink-500); }

/* ---------------------------------------------------------------
   WAYS TO GIVE
   --------------------------------------------------------------- */
.ways-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.way-card { background: var(--paper); border-radius: var(--radius-lg); padding: 36px 30px; border: 1px solid var(--ink-200); box-shadow: var(--shadow-sm); text-align: center; transition: transform .2s, box-shadow .2s, border-color .2s; }
.way-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-300); }
.way-icon { width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center; margin: 0 auto 20px; }
.wi-blue { background: var(--blue-50); color: var(--blue-500); }
.wi-pink { background: var(--pink-50); color: var(--pink-500); }
.wi-mix  { background: linear-gradient(135deg,var(--blue-50),var(--pink-50)); color: var(--ink-800); }
.way-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 20px; color: var(--ink-900); margin-bottom: 12px; }
.way-card p  { font-size: 14px; color: var(--ink-600); line-height: 1.65; margin-bottom: 22px; }
.way-link { font-size: 12px; font-weight: 700; color: var(--blue-600); text-decoration: none; letter-spacing: .04em; text-transform: uppercase; }
.way-card:nth-child(2) .way-link { color: var(--pink-600); }

/* ---------------------------------------------------------------
   NEWSLETTER
   --------------------------------------------------------------- */
.nl-section { background: var(--ink-900); padding: 88px 60px; text-align: center; position: relative; overflow: hidden; }
.nl-icon { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg,var(--blue-500),var(--pink-500)); display: grid; place-items: center; margin: 0 auto 22px; box-shadow: 0 12px 32px rgba(245,88,141,.3); }
.nl-title { font-family: var(--font-display); font-weight: 600; font-size: 48px; color: #fff; margin-bottom: 14px; letter-spacing: -.02em; line-height: 1.05; }
.nl-title .h { background: linear-gradient(92deg,var(--blue-300) 0%, var(--pink-300) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nl-sub { font-size: 16px; color: rgba(255,255,255,.6); margin-bottom: 36px; max-width: 460px; margin-left: auto; margin-right: auto; line-height: 1.65; }
.nl-form { display: flex; gap: 10px; max-width: 520px; margin: 0 auto 16px; }
.nl-input { flex: 1; height: 54px; border-radius: 999px; border: 1.5px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: #fff; padding: 0 22px; font-size: 14px; font-family: var(--font-body); transition: border-color .2s, background .2s; }
.nl-input:focus { outline: none; border-color: var(--blue-400); background: rgba(255,255,255,.12); box-shadow: 0 0 0 4px rgba(9,158,196,.18); }
.nl-input::placeholder { color: rgba(255,255,255,.4); }
.nl-btn { height: 54px; padding: 0 30px; border-radius: 999px; background: var(--pink-500); color: #fff; border: none; font-size: 14px; font-weight: 700; cursor: pointer; font-family: var(--font-body); transition: background .2s; white-space: nowrap; box-shadow: 0 8px 18px rgba(245,88,141,.3); }
.nl-btn:hover { background: var(--pink-600); }
.nl-fine { font-size: 12px; color: rgba(255,255,255,.4); }
.nl-success { font-size: 16px; color: #9ff5c4; font-weight: 600; display: none; }
.nl-success.show { display: block; }

/* ---------------------------------------------------------------
   FOOTER (full — homepage/programs)
   --------------------------------------------------------------- */
.footer { background: #0a0d12; padding: 64px 60px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .nm { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: #fff; letter-spacing: .01em; }
.footer-brand .sb { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.45); letter-spacing: .06em; text-transform: uppercase; margin-top: 3px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.7; margin-top: 18px; margin-bottom: 22px; max-width: 340px; }
.footer-brand .row { display: flex; align-items: center; gap: 12px; }
.footer-socials { display: flex; gap: 10px; }
.soc-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: rgba(255,255,255,.7); font-size: 12px; font-weight: 700; text-decoration: none; transition: background .2s, color .2s; letter-spacing: .04em; text-transform: uppercase; }
.soc-icon:hover { background: var(--blue-500); color: #fff; }
.footer-col-title { font-family: var(--font-body); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: #fff; margin-bottom: 18px; }
.footer-link { display: block; font-size: 13px; color: rgba(255,255,255,.55); text-decoration: none; margin-bottom: 11px; transition: color .2s; }
.footer-link:hover { color: var(--blue-300); }
.footer-bottom { padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.35); }
.footer-ein  { font-size: 12px; color: rgba(255,255,255,.35); text-align: center; line-height: 1.65; }
.footer-badges { display: flex; gap: 10px; align-items: center; }
.fbadge { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.4); border: 1px solid rgba(255,255,255,.15); padding: 5px 11px; border-radius: 8px; letter-spacing: .04em; text-transform: uppercase; }

/* Footer compact (contact/volunteer/reporting) */
.footer.compact { padding: 34px 60px; }
.footer.compact .footer-inner { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer.compact .footer-brand { display: flex; align-items: center; gap: 12px; }
.footer.compact .footer-brand .nm { font-size: 15px; }
.footer.compact .footer-meta { font-size: 12px; color: rgba(255,255,255,.4); text-align: right; line-height: 1.7; }

/* ---------------------------------------------------------------
   PROGRAMS PAGE — Page Hero
   --------------------------------------------------------------- */
.phero-wrap { background: var(--paper); border-bottom: 1px solid var(--ink-200); overflow: hidden; position: relative; }
.phero-blob1 { position: absolute; top: -160px; right: -120px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle,rgba(9,158,196,.10),transparent 65%); pointer-events: none; }
.phero-blob2 { position: absolute; bottom: -200px; left: -140px; width: 440px; height: 440px; border-radius: 50%; background: radial-gradient(circle,rgba(245,88,141,.10),transparent 65%); pointer-events: none; }
.phero { max-width: 1280px; margin: 0 auto; padding: 72px 60px 64px; position: relative; z-index: 1; }
.phero-top { max-width: 760px; }
.phero h1 { font-family: var(--font-display); font-weight: 600; font-size: 64px; line-height: 1.0; letter-spacing: -.02em; color: var(--ink-900); margin: 16px 0 22px; }
.phero h1 .h { background: linear-gradient(92deg,var(--blue-500) 0%, var(--blue-500) 42%, var(--pink-500) 60%, var(--pink-500) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.phero-sub { font-size: 18px; color: var(--ink-600); line-height: 1.7; max-width: 620px; margin-bottom: 28px; }
.phero-jump { display: flex; gap: 10px; flex-wrap: wrap; }
.jump-pill { display: inline-flex; align-items: center; gap: 9px; padding: 10px 18px; border-radius: var(--radius-pill); background: var(--paper); border: 1px solid var(--ink-200); font-size: 14px; font-weight: 700; color: var(--ink-800); text-decoration: none; transition: border-color .2s, box-shadow .2s, transform .15s; }
.jump-pill:hover { border-color: var(--blue-300); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.jump-pill .d { width: 8px; height: 8px; border-radius: 50%; }
.jump-pill .d.blue { background: var(--blue-500); }
.jump-pill .d.pink { background: var(--pink-500); }
.jump-pill .ct { color: var(--ink-400); font-weight: 600; font-size: 13px; }

/* Directions strip */
.dir-strip { border-top: 1px solid var(--ink-200); border-bottom: 1px solid var(--ink-200); background: var(--paper); }
.dir-strip-inner { max-width: 1280px; margin: 0 auto; padding: 0 60px; display: grid; grid-template-columns: repeat(3,1fr); }
.dir-mini { padding: 32px 36px; border-left: 1px solid var(--ink-200); }
.dir-mini:first-child { border-left: none; padding-left: 0; }
.dir-mini .lbl { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 20px; color: var(--ink-900); margin-bottom: 8px; }
.dir-mini .lbl .n { font-family: ui-monospace, monospace; font-size: 12px; font-weight: 700; color: var(--blue-600); letter-spacing: .08em; }
.dir-mini p { font-size: 13.5px; color: var(--ink-600); line-height: 1.6; }
.dir-mini.pink .lbl .n { color: var(--pink-600); }

/* Direction block heading */
.dir-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 38px; flex-wrap: wrap; }
.dir-head-left { max-width: 640px; }
.dir-num { display: inline-flex; align-items: center; gap: 12px; font-family: ui-monospace, monospace; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-600); margin-bottom: 14px; }
.dir-num .bar { width: 36px; height: 3px; border-radius: 2px; background: var(--blue-500); }
.dir-pink .dir-num { color: var(--pink-600); }
.dir-pink .dir-num .bar { background: var(--pink-500); }
.dir-head h2 { font-family: var(--font-display); font-weight: 600; font-size: 38px; line-height: 1.06; letter-spacing: -.01em; color: var(--ink-900); margin-bottom: 14px; }
.dir-head p { font-size: 16px; color: var(--ink-600); line-height: 1.7; }
.dir-count { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--ink-500); white-space: nowrap; padding-bottom: 6px; }
.dir-count em { font-style: normal; color: var(--ink-900); font-size: 18px; }

/* ---------------------------------------------------------------
   SINGLE PROGRAM PAGE
   --------------------------------------------------------------- */
/* Breadcrumb */
.crumb { max-width: 1280px; margin: 0 auto; padding: 22px 60px 0; display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: var(--ink-500); }
.crumb a { color: var(--ink-500); text-decoration: none; transition: color .2s; }
.crumb a:hover { color: var(--accent-600); }
.crumb .sep { color: var(--ink-300); }
.crumb .cur { color: var(--ink-900); }

/* Program hero */
.phero-blob1.accent { background: radial-gradient(circle,var(--accent-glow),transparent 62%); opacity: .5; }
.phero.prog { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; padding: 48px 60px 64px; }
.phero-left { max-width: 560px; }
.phero-tag { display: inline-flex; align-items: center; gap: 10px; padding: 7px 15px; border-radius: var(--radius-pill); background: var(--accent-50); color: var(--accent-600); font-size: 12.5px; font-weight: 700; letter-spacing: .04em; margin-bottom: 22px; }
.phero-tag .d { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-500); }
.phero.prog h1 { font-family: var(--font-display); font-weight: 600; font-size: 62px; line-height: 1.0; letter-spacing: -.02em; color: var(--ink-900); margin: 0 0 22px; }
.phero.prog h1 .h { background: linear-gradient(92deg,var(--accent-500) 0%, var(--accent-600) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.phero-sub { font-size: 18px; color: var(--ink-600); line-height: 1.7; margin-bottom: 30px; }
.phero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.phero-media { position: relative; }
.phero-img { aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: linear-gradient(135deg,var(--accent-100),var(--blue-100)); display: grid; place-items: center; position: relative; }
.phero-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.ph { font-family: ui-monospace, monospace; font-size: 12px; color: var(--ink-700); background: rgba(255,255,255,.74); padding: 7px 14px; border-radius: 999px; }
.phero-float { position: absolute; left: -26px; bottom: 34px; background: var(--paper); border-radius: 18px; box-shadow: var(--shadow-lg); padding: 18px 22px; display: flex; align-items: center; gap: 14px; max-width: 248px; }
.phero-float .fic { width: 42px; height: 42px; border-radius: 12px; background: var(--accent-50); flex-shrink: 0; display: grid; place-items: center; color: var(--accent-600); }
.phero-float .ft { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink-900); line-height: 1.25; }
.phero-float .fs { font-size: 12px; color: var(--ink-500); margin-top: 2px; }

/* At-a-glance */
.glance { border-top: 1px solid var(--ink-200); border-bottom: 1px solid var(--ink-200); background: var(--paper); }
.glance-inner { max-width: 1280px; margin: 0 auto; padding: 0 60px; display: grid; grid-template-columns: repeat(4,1fr); }
.glance-cell { padding: 30px 32px; border-left: 1px solid var(--ink-200); }
.glance-cell:first-child { border-left: none; padding-left: 0; }
.glance-cell .gl { font-family: ui-monospace, monospace; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-400); margin-bottom: 9px; }
.glance-cell .gv { font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--ink-900); line-height: 1.25; }

/* Why it matters */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.why-copy p { font-size: 16px; color: var(--ink-600); line-height: 1.75; margin-bottom: 18px; }
.why-copy p:last-child { margin-bottom: 0; }
.goals-card { background: var(--paper); border: 1px solid var(--ink-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 34px; }
.goals-card .gh { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--ink-900); margin-bottom: 22px; }
.goal { display: flex; align-items: flex-start; gap: 14px; padding: 13px 0; border-top: 1px solid var(--ink-100); }
.goal:first-of-type { border-top: none; padding-top: 0; }
.goal .ck { width: 26px; height: 26px; border-radius: 50%; background: var(--accent-50); flex-shrink: 0; display: grid; place-items: center; margin-top: 1px; }
.goal .ck svg { display: block; color: var(--accent-600); }
.goal span { font-size: 15px; font-weight: 600; color: var(--ink-800); line-height: 1.4; }

/* Services grid */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.svc-card { background: var(--paper); border: 1px solid var(--ink-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 32px 30px; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s, border-color .25s; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--accent-200); }
.svc-card.feature { grid-column: span 2; flex-direction: row; gap: 34px; align-items: flex-start; }
.svc-ic { width: 52px; height: 52px; border-radius: 15px; background: var(--accent-50); display: grid; place-items: center; color: var(--accent-600); margin-bottom: 22px; flex-shrink: 0; }
.svc-card.feature .svc-ic { margin-bottom: 0; }
.svc-num { font-family: ui-monospace, monospace; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-400); margin-bottom: 9px; }
.svc-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 21px; color: var(--ink-900); margin-bottom: 11px; line-height: 1.22; }
.svc-card p { font-size: 14.5px; color: var(--ink-600); line-height: 1.65; }
.svc-card.feature .svc-body { flex: 1; }

/* Who we support */
.who-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 60px; align-items: center; }
.who-img { aspect-ratio: 5/4; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); background: linear-gradient(135deg,var(--blue-100),var(--accent-100)); display: grid; place-items: center; }
.who-img img { width: 100%; height: 100%; object-fit: cover; }
.who-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 26px; }
.who-item { display: flex; align-items: center; gap: 13px; padding: 16px 18px; background: var(--paper); border: 1px solid var(--ink-200); border-radius: var(--radius-md); }
.who-item .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent-500); flex-shrink: 0; }
.who-item span { font-size: 14px; font-weight: 600; color: var(--ink-800); line-height: 1.35; }
.who-note { margin-top: 24px; font-size: 15px; color: var(--ink-500); font-style: italic; }
.sec-head.prog { max-width: 720px; margin-bottom: 48px; }
.sec-head.prog .kick { margin-bottom: 16px; }
.sec-head.prog h2 { font-family: var(--font-display); font-weight: 600; font-size: 40px; line-height: 1.06; letter-spacing: -.01em; color: var(--ink-900); }
.sec-head.prog p { font-size: 17px; color: var(--ink-600); line-height: 1.7; margin-top: 16px; }

/* ---------------------------------------------------------------
   CONTACT PAGE
   --------------------------------------------------------------- */
.contact { flex: 1; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.contact-blob1 { position: absolute; top: -200px; right: -140px; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle,rgba(245,88,141,.16),transparent 62%); pointer-events: none; }
.contact-blob2 { position: absolute; bottom: -220px; left: -180px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle,rgba(9,158,196,.14),transparent 65%); pointer-events: none; }
.contact-inner { max-width: 1280px; width: 100%; margin: 0 auto; padding: 56px 60px 72px; position: relative; z-index: 1; flex: 1; display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.c-tag { display: inline-flex; align-items: center; gap: 10px; padding: 7px 15px; border-radius: var(--radius-pill); background: var(--pink-50); color: var(--pink-700); font-size: 12.5px; font-weight: 700; letter-spacing: .04em; margin-bottom: 22px; }
.c-tag .d { width: 7px; height: 7px; border-radius: 50%; background: var(--pink-500); }
.c-left h1 { font-family: var(--font-display); font-weight: 600; font-size: 54px; line-height: 1.02; letter-spacing: -.02em; color: var(--ink-900); margin: 0 0 18px; }
.c-left h1 .h { background: linear-gradient(92deg,var(--blue-500) 0%, var(--pink-500) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.c-left .lead { font-size: 17px; color: var(--ink-600); line-height: 1.7; max-width: 480px; margin-bottom: 34px; }
.info-list { display: flex; flex-direction: column; gap: 14px; max-width: 480px; }
.info-item { display: flex; align-items: flex-start; gap: 18px; padding: 20px 22px; background: var(--paper); border: 1px solid var(--ink-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.info-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--ink-300); }
.info-ic { width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0; display: grid; place-items: center; }
.info-ic.blue { background: var(--blue-50); color: var(--blue-600); }
.info-ic.pink { background: var(--pink-50); color: var(--pink-600); }
.info-body .lab { font-family: ui-monospace, monospace; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-400); margin-bottom: 6px; }
.info-body .val { font-size: 15.5px; font-weight: 600; color: var(--ink-900); line-height: 1.5; }
.info-body .val a { color: inherit; text-decoration: none; transition: color .2s; }
.info-body .val a:hover { color: var(--pink-600); }
.info-body .val span { display: block; color: var(--ink-600); font-weight: 500; }
.c-right { display: flex; justify-content: center; }
.brand-card { width: 100%; max-width: 460px; background: var(--paper); border: 1px solid var(--ink-200); border-radius: 28px; box-shadow: var(--shadow-lg); padding: 48px 44px; text-align: center; position: relative; overflow: hidden; }
.brand-card .bc-glow { position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 360px; height: 240px; background: radial-gradient(ellipse,rgba(245,88,141,.10),transparent 70%); pointer-events: none; }
.brand-card .bc-logo { position: relative; z-index: 1; width: 300px; max-width: 88%; height: auto; margin: 0 auto 30px; display: block; }
.brand-card .bc-line { position: relative; z-index: 1; height: 1px; background: var(--ink-200); margin: 0 0 26px; }
.brand-card .bc-quote { position: relative; z-index: 1; font-family: var(--font-display); font-weight: 500; font-size: 22px; line-height: 1.3; letter-spacing: -.01em; color: var(--ink-800); margin-bottom: 22px; }
.brand-card .bc-quote em { font-style: normal; color: var(--pink-600); }
.brand-card .bc-hours { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: var(--ink-500); background: var(--ink-50); border: 1px solid var(--ink-200); padding: 9px 16px; border-radius: var(--radius-pill); }
.brand-card .bc-cta { position: relative; z-index: 1; margin-top: 26px; }
.brand-card .bc-cta .btn { width: 100%; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: #1e9e5a; position: relative; }
.pulse::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(30,158,90,.35); }

/* ---------------------------------------------------------------
   VOLUNTEER PAGE
   --------------------------------------------------------------- */
.vol { flex: 1; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.vol-blob1 { position: absolute; top: -200px; right: -140px; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle,rgba(245,88,141,.16),transparent 62%); pointer-events: none; }
.vol-blob2 { position: absolute; bottom: -220px; left: -180px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle,rgba(9,158,196,.14),transparent 65%); pointer-events: none; }
.vol-inner { max-width: 1280px; width: 100%; margin: 0 auto; padding: 56px 60px 72px; position: relative; z-index: 1; flex: 1; display: grid; grid-template-columns: .92fr 1.08fr; gap: 56px; align-items: start; }
.v-tag { display: inline-flex; align-items: center; gap: 10px; padding: 7px 15px; border-radius: var(--radius-pill); background: var(--pink-50); color: var(--pink-700); font-size: 12.5px; font-weight: 700; letter-spacing: .04em; margin-bottom: 22px; }
.v-tag .d { width: 7px; height: 7px; border-radius: 50%; background: var(--pink-500); }
.v-left { padding-top: 6px; }
.v-left h1 { font-family: var(--font-display); font-weight: 600; font-size: 52px; line-height: 1.02; letter-spacing: -.02em; color: var(--ink-900); margin: 0 0 18px; }
.v-left h1 .h { background: linear-gradient(92deg,var(--blue-500) 0%, var(--pink-500) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.v-left .lead { font-size: 17px; color: var(--ink-600); line-height: 1.7; max-width: 460px; margin-bottom: 34px; }
.help-list { display: flex; flex-direction: column; gap: 14px; max-width: 470px; }
.help-item { display: flex; align-items: flex-start; gap: 18px; padding: 18px 20px; background: var(--paper); border: 1px solid var(--ink-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.help-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--ink-300); }
.help-ic { width: 46px; height: 46px; border-radius: 14px; flex-shrink: 0; display: grid; place-items: center; }
.help-ic.blue { background: var(--blue-50); color: var(--blue-600); }
.help-ic.pink { background: var(--pink-50); color: var(--pink-600); }
.help-body h4 { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink-900); margin-bottom: 4px; }
.help-body p { font-size: 13.5px; color: var(--ink-600); line-height: 1.55; }

/* Form card */
.v-right { display: flex; justify-content: center; }
.form-card { width: 100%; max-width: 540px; background: var(--paper); border: 1px solid var(--ink-200); border-radius: 28px; box-shadow: var(--shadow-lg); padding: 44px 42px; position: relative; overflow: hidden; }
.form-card .fc-glow { position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 380px; height: 240px; background: radial-gradient(ellipse,rgba(9,158,196,.10),transparent 70%); pointer-events: none; }
.form-head { position: relative; z-index: 1; margin-bottom: 28px; }
.form-head h2 { font-family: var(--font-display); font-weight: 600; font-size: 26px; letter-spacing: -.01em; color: var(--ink-900); margin-bottom: 8px; }
.form-head p { font-size: 14px; color: var(--ink-600); line-height: 1.6; }
form { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { font-size: 13px; font-weight: 700; color: var(--ink-700); letter-spacing: .01em; }
label .req { color: var(--pink-500); margin-left: 2px; }
.input, select, textarea {
  width: 100%; font-family: var(--font-body); font-size: 14.5px; color: var(--ink-900);
  background: var(--ink-50); border: 1.5px solid var(--ink-200); border-radius: var(--radius-md);
  padding: 13px 15px; transition: border-color .2s, box-shadow .2s, background .2s;
}
.input::placeholder, textarea::placeholder { color: var(--ink-400); }
.input:focus, select:focus, textarea:focus { outline: none; border-color: var(--blue-400); background: var(--paper); box-shadow: 0 0 0 4px rgba(9,158,196,.14); }
textarea { resize: vertical; min-height: 104px; line-height: 1.6; }
select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237a818c' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 42px;
}
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip-opt { position: relative; cursor: pointer; }
.chip-opt input { position: absolute; opacity: 0; pointer-events: none; }
.chip-opt span { display: inline-flex; align-items: center; gap: 7px; padding: 9px 15px; border-radius: var(--radius-pill); border: 1.5px solid var(--ink-200); background: var(--paper); font-size: 13px; font-weight: 600; color: var(--ink-600); transition: all .18s ease; }
.chip-opt span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--ink-300); transition: background .18s; }
.chip-opt:hover span { border-color: var(--blue-300); }
.chip-opt input:checked + span { border-color: var(--pink-400); background: var(--pink-50); color: var(--pink-700); }
.chip-opt input:checked + span::before { background: var(--pink-500); }
.chip-opt input:focus-visible + span { box-shadow: 0 0 0 4px rgba(9,158,196,.14); }
.consent { display: flex; align-items: flex-start; gap: 11px; font-size: 12.5px; color: var(--ink-600); line-height: 1.55; }
.consent input { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--pink-500); flex-shrink: 0; cursor: pointer; }
.consent a { color: var(--blue-600); text-decoration: none; font-weight: 600; }
.consent a:hover { text-decoration: underline; }
.submit-btn { width: 100%; margin-top: 2px; }
.form-foot { position: relative; z-index: 1; display: flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 600; color: var(--ink-500); margin-top: 18px; justify-content: center; }
.success { position: relative; z-index: 1; display: none; flex-direction: column; align-items: center; text-align: center; padding: 18px 6px 8px; }
.success.show { display: flex; }
.success-ic { width: 76px; height: 76px; border-radius: 50%; background: linear-gradient(135deg,var(--blue-500),var(--pink-500)); display: grid; place-items: center; margin-bottom: 22px; box-shadow: 0 14px 34px rgba(245,88,141,.28); }
.success h2 { font-family: var(--font-display); font-weight: 600; font-size: 28px; letter-spacing: -.01em; color: var(--ink-900); margin-bottom: 12px; }
.success p { font-size: 15px; color: var(--ink-600); line-height: 1.65; max-width: 380px; margin-bottom: 26px; }
.success .btn { min-width: 200px; }
.form-card.is-done form, .form-card.is-done .form-head, .form-card.is-done .form-foot { display: none; }

/* ---------------------------------------------------------------
   REPORTING PAGE
   --------------------------------------------------------------- */
.report { flex: 1; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.report-blob1 { position: absolute; top: -200px; right: -160px; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle,rgba(9,158,196,.14),transparent 62%); pointer-events: none; }
.report-blob2 { position: absolute; bottom: -220px; left: -180px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle,rgba(245,88,141,.13),transparent 65%); pointer-events: none; }
.report-inner { max-width: 1280px; width: 100%; margin: 0 auto; padding: 42px 60px 48px; position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; }
.report-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; margin-bottom: 30px; }
.r-tag { display: inline-flex; align-items: center; gap: 10px; padding: 7px 15px; border-radius: var(--radius-pill); background: var(--blue-50); color: var(--blue-700); font-size: 12.5px; font-weight: 700; letter-spacing: .04em; margin-bottom: 16px; }
.r-tag .d { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-500); }
.report-head h1 { font-family: var(--font-display); font-weight: 600; font-size: 42px; line-height: 1.04; letter-spacing: -.02em; color: var(--ink-900); margin: 0 0 12px; }
.report-head h1 .h { background: linear-gradient(92deg,var(--blue-500) 0%, var(--pink-500) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.report-head .lead { font-size: 16px; color: var(--ink-600); line-height: 1.6; max-width: 520px; }
.year-tabs { display: flex; gap: 6px; background: var(--ink-100); border: 1px solid var(--ink-200); border-radius: var(--radius-pill); padding: 5px; flex-shrink: 0; }
.year-tab { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink-600); background: transparent; border: none; cursor: pointer; padding: 10px 22px; border-radius: var(--radius-pill); transition: color .2s, background .2s, box-shadow .2s; letter-spacing: .01em; }
.year-tab:hover { color: var(--ink-900); }
.year-tab.active { background: var(--paper); color: var(--blue-600); box-shadow: var(--shadow-sm); }
.report-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 28px; align-items: stretch; flex: 1; }
.summary-card { background: linear-gradient(165deg,var(--blue-600),var(--blue-800)); border-radius: var(--radius-lg); padding: 34px 32px; color: #fff; position: relative; overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
.summary-card .sc-glow { position: absolute; top: -120px; right: -100px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle,rgba(245,88,141,.34),transparent 65%); pointer-events: none; }
.sc-label { position: relative; z-index: 1; font-family: ui-monospace, monospace; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 10px; }
.sc-raised { position: relative; z-index: 1; font-family: var(--font-display); font-weight: 600; font-size: 58px; line-height: 1; letter-spacing: -.02em; margin-bottom: 6px; }
.sc-sub { position: relative; z-index: 1; font-size: 14px; color: rgba(255,255,255,.7); margin-bottom: 26px; display: flex; align-items: center; gap: 8px; }
.sc-sub .chip { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.12); border-radius: var(--radius-pill); padding: 4px 11px; font-weight: 600; font-size: 12.5px; color: #fff; }
.sc-sub .chip.up { color: #9ff5c4; }
.sc-divider { position: relative; z-index: 1; height: 1px; background: rgba(255,255,255,.16); margin: 0 0 22px; }
.sc-mini { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 20px 14px; margin-bottom: 26px; }
.sc-mini .m-num { font-family: var(--font-display); font-weight: 600; font-size: 26px; line-height: 1; letter-spacing: -.01em; }
.sc-mini .m-lbl { font-size: 12px; color: rgba(255,255,255,.62); margin-top: 6px; line-height: 1.35; }
.sc-spacer { flex: 1; }
.sc-eff { position: relative; z-index: 1; display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-md); padding: 16px 18px; }
.sc-eff .big { font-family: var(--font-display); font-weight: 600; font-size: 34px; line-height: 1; color: #9ff5c4; }
.sc-eff .txt { font-size: 12.5px; color: rgba(255,255,255,.78); line-height: 1.45; }
.alloc-card { background: var(--paper); border: 1px solid var(--ink-200); border-radius: var(--radius-lg); padding: 30px 32px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.alloc-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 6px; }
.alloc-head h2 { font-family: var(--font-display); font-weight: 600; font-size: 21px; color: var(--ink-900); letter-spacing: -.01em; }
.alloc-head .yr { font-family: ui-monospace, monospace; font-size: 12px; font-weight: 700; letter-spacing: .1em; color: var(--ink-400); text-transform: uppercase; }
.alloc-note { font-size: 13.5px; color: var(--ink-500); margin-bottom: 22px; }
.alloc-list { display: flex; flex-direction: column; gap: 18px; flex: 1; justify-content: center; }
.alloc-row { display: grid; grid-template-columns: 1fr auto; gap: 6px 14px; align-items: center; }
.alloc-row .ar-top { display: flex; align-items: center; gap: 11px; }
.ar-dot { width: 11px; height: 11px; border-radius: 3px; flex-shrink: 0; }
.ar-name { font-size: 15px; font-weight: 600; color: var(--ink-800); }
.ar-amt { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink-900); text-align: right; font-variant-numeric: tabular-nums; }
.ar-amt .pct { display: block; font-family: var(--font-body); font-size: 11.5px; font-weight: 600; color: var(--ink-400); margin-top: 1px; }
.ar-track { grid-column: 1 / -1; height: 9px; border-radius: var(--radius-pill); background: var(--ink-100); overflow: hidden; }
.ar-fill { height: 100%; border-radius: var(--radius-pill); transition: width .6s ease; }
.alloc-foot { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--ink-200); }
.alloc-foot .audit { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--ink-500); font-weight: 500; }
.alloc-foot .audit .ic { width: 30px; height: 30px; border-radius: 9px; background: var(--green-500); display: grid; place-items: center; color: #fff; flex-shrink: 0; }

/* ================================================================
   RESPONSIVE — TABLET (max 1024px)
   ================================================================ */
@media (max-width: 1024px) {
  .section { padding: 72px 40px; }
  .hdr { padding: 0 40px; height: 72px; }
  .hdr-nav { gap: 22px; }
  .hdr-nav a:not(.btn) { font-size: 13px; }
  .crumb { padding: 18px 40px 0; }

  .hero { padding: 56px 40px 72px; grid-template-columns: 1fr; gap: 48px; }
  .hero h1 { font-size: 52px; }
  .hero-sub { font-size: 17px; max-width: none; }
  .hero-img-wrap { max-width: 520px; margin: 0 auto; }
  .impact-bar-inner { padding: 28px 40px; grid-template-columns: repeat(2,1fr); gap: 24px 32px; }
  .impact-item { padding-left: 16px; }
  .impact-item + .impact-item { border-left: none; }
  .impact-item:nth-child(2n) { border-left: 1px solid var(--ink-200); }
  .impact-num { font-size: 30px; }
  .h1 { font-size: 42px; } .h2 { font-size: 34px; }
  .stats-grid, .programs-grid, .events-grid, .ways-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid > :nth-child(3), .programs-grid > :nth-child(3), .events-grid > :nth-child(3), .ways-grid > :nth-child(3) { grid-column: 1 / -1; max-width: 560px; margin: 0 auto; width: 100%; }
  .impact-grid { grid-template-columns: repeat(2,1fr); }
  .icard-num { font-size: 44px; } .stat-num { font-size: 52px; }
  .story-inner { padding: 72px 40px; grid-template-columns: 1fr; gap: 48px; }
  .story-grid { max-width: 560px; margin: 0 auto; width: 100%; }
  .donate-section { padding: 80px 40px; }
  .donate-title { font-size: 42px; }
  .donate-card { padding: 32px; }
  .donate-inner.two-col { grid-template-columns: 1fr; gap: 44px; text-align: left; }
  .trust-inner { padding: 72px 40px; grid-template-columns: 1fr; gap: 56px; }
  .trust-photo-wrap { max-width: 480px; margin: 0 auto; width: 100%; }
  .nl-section { padding: 72px 40px; } .nl-title { font-size: 38px; }
  .footer { padding: 56px 40px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: none; }
  .footer.compact { padding: 30px 40px; }

  /* Programs page */
  .phero { padding: 56px 40px 52px; }
  .phero h1 { font-size: 50px; }
  .phero.prog { grid-template-columns: 1fr; gap: 44px; padding: 40px 40px 52px; }
  .phero-left { max-width: 640px; }
  .phero-media { max-width: 440px; }
  .dir-strip-inner { padding: 0 40px; }
  .dir-mini { padding: 28px 28px; }
  .programs-grid { grid-template-columns: repeat(2,1fr); }
  .prog-card.wide { flex-direction: column; }
  .prog-card.wide .prog-img { width: 100%; aspect-ratio: 16/9; }
  .dir-head h2 { font-size: 32px; }
  .glance-inner { padding: 0 40px; grid-template-columns: repeat(2,1fr); }
  .glance-cell { border-left: none; border-top: 1px solid var(--ink-200); padding: 26px 28px; }
  .glance-cell:nth-child(odd) { padding-left: 0; }
  .glance-cell:nth-child(-n+2) { border-top: none; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .svc-card.feature { grid-column: span 2; }
  .who-grid { grid-template-columns: 1fr; gap: 40px; }
  .who-img { max-width: 520px; }

  /* Contact / Vol */
  .contact-inner { padding: 48px 40px 56px; grid-template-columns: 1fr; gap: 44px; align-items: start; }
  .c-left h1 { font-size: 46px; }
  .c-right { justify-content: flex-start; }
  .brand-card { max-width: none; }
  .info-list, .c-left .lead { max-width: none; }
  .vol-inner { padding: 48px 40px 56px; grid-template-columns: 1fr; gap: 44px; }
  .v-left h1 { font-size: 46px; }
  .v-right { justify-content: flex-start; }
  .form-card { max-width: none; }
  .help-list, .v-left .lead { max-width: none; }

  /* Reporting */
  .report-inner { padding: 34px 40px 40px; }
  .report-head h1 { font-size: 36px; }
  .report-grid { grid-template-columns: 1fr; gap: 22px; }
  .sc-raised { font-size: 54px; }
}

/* ================================================================
   RESPONSIVE — MOBILE (max 720px)
   ================================================================ */
@media (max-width: 720px) {
  .section { padding: 56px 20px; }
  .hdr { padding: 0 20px; height: 64px; }
  .logo-icon { width: 30px; height: 30px; }
  .logo-text .nm { font-size: 15px; }
  .logo-text .sb { font-size: 10px; }
  .hdr-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .hdr-nav.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 6px;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--ink-200);
    padding: 18px 20px 22px; box-shadow: var(--shadow-md); z-index: 200;
  }
  .hdr-nav.open a:not(.btn) { padding: 12px 6px; border-bottom: 1px solid var(--ink-100); font-size: 15px; }
  .hdr-nav.open a:last-child { margin-top: 8px; align-self: flex-start; }

  .hero { padding: 40px 20px 56px; gap: 40px; }
  .eyebrow { font-size: 11px; }
  .hero h1 { font-size: 38px; margin: 14px 0 18px; }
  .hero-sub { font-size: 16px; margin-bottom: 28px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn { width: 100%; }
  .btn-lg { padding: 15px 22px; font-size: 15px; }
  .hero-trust { flex-wrap: wrap; gap: 6px; font-size: 11px; }
  .hero-img-placeholder { aspect-ratio: 1/1; border-radius: 24px; }
  .hero-badge { left: 50%; transform: translateX(-50%); bottom: -20px; padding: 10px 18px; }
  .hero-badge .num { font-size: 16px; }
  .impact-bar-inner { padding: 24px 20px; grid-template-columns: 1fr 1fr; gap: 20px 16px; }
  .impact-item { padding-left: 12px; }
  .impact-num { font-size: 24px; }
  .impact-lbl { font-size: 12px; }
  .sec-head { margin-bottom: 36px; }
  .h1 { font-size: 32px; } .h2 { font-size: 28px; } .h3 { font-size: 19px; }
  .lead { font-size: 15px; }
  .stats-grid, .programs-grid, .events-grid, .ways-grid { grid-template-columns: 1fr; gap: 16px; }
  .stats-grid > :nth-child(3), .programs-grid > :nth-child(3), .events-grid > :nth-child(3), .ways-grid > :nth-child(3) { max-width: none; grid-column: auto; }
  .stat-card { padding: 28px 24px; } .stat-num { font-size: 48px; }
  .impact-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .icard { padding: 24px 14px; } .icard-num { font-size: 36px; } .icard-lbl { font-size: 13px; }
  .prog-body { padding: 22px; } .prog-title { font-size: 20px; }
  .story-inner { padding: 56px 20px; gap: 40px; }
  .story-grid { height: 380px; gap: 10px; }
  .sgrid-accent-num { font-size: 36px; } .sgrid-accent-txt { font-size: 11px; }
  .donate-section { padding: 64px 20px; }
  .donate-title { font-size: 32px; }
  .donate-sub { font-size: 15px; margin-bottom: 32px; }
  .donate-card { padding: 22px; border-radius: 24px; }
  .donate-amounts { grid-template-columns: 1fr 1fr; gap: 8px; }
  .damount { padding: 14px 6px; } .damount .amt { font-size: 20px; } .damount .albl { font-size: 10px; }
  .dtog-btn { font-size: 12px; padding: 10px 4px; } .dtog-badge { display: none; }
  .payment-logos { gap: 10px; flex-wrap: wrap; } .pay-logo { font-size: 10px; }
  .events-header { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 32px; }
  .trust-inner { padding: 56px 20px; gap: 40px; }
  .trust-item { padding: 16px; gap: 14px; }
  .trust-icon { width: 42px; height: 42px; }
  .ftag { font-size: 12px; padding: 7px 14px; }
  .ftag.t1 { left: -12px; bottom: 18px; } .ftag.t2 { right: -12px; top: 18px; }
  .way-card { padding: 28px 22px; } .way-icon { width: 56px; height: 56px; }
  .nl-section { padding: 64px 20px; }
  .nl-title { font-size: 30px; line-height: 1.1; }
  .nl-sub { font-size: 15px; margin-bottom: 28px; }
  .nl-form { flex-direction: column; gap: 8px; max-width: none; }
  .nl-input, .nl-btn { height: 50px; width: 100%; }
  .nl-icon { width: 60px; height: 60px; margin-bottom: 18px; }
  .footer { padding: 48px 20px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
  .footer-brand p { margin-top: 14px; margin-bottom: 18px; }
  .footer-bottom { padding: 20px 0; flex-direction: column; align-items: flex-start; text-align: left; gap: 12px; }
  .footer-ein { text-align: left; }
  .footer.compact { padding: 26px 20px; }
  .footer.compact .footer-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer.compact .footer-meta { text-align: left; }

  /* Programs page mobile */
  .phero { padding: 40px 20px 44px; }
  .phero h1 { font-size: 38px; margin: 12px 0 16px; }
  .phero-sub { font-size: 16px; }
  .phero.prog { padding: 30px 20px 44px; }
  .phero.prog h1 { font-size: 38px; }
  .phero-ctas .btn { width: 100%; }
  .phero-float { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .dir-strip-inner { grid-template-columns: 1fr; padding: 0 20px; }
  .dir-mini { border-left: none; border-top: 1px solid var(--ink-200); padding: 24px 0; }
  .dir-mini:first-child { border-top: none; }
  .dir-head { margin-bottom: 28px; }
  .dir-head h2 { font-size: 27px; }
  .programs-grid { grid-template-columns: 1fr; gap: 16px; }
  .prog-card.wide { flex-direction: column; }
  .prog-card.wide .prog-img { width: 100%; }
  .crumb { padding: 16px 20px 0; }
  .glance-inner { grid-template-columns: 1fr; padding: 0 20px; }
  .glance-cell { padding: 22px 0; }
  .glance-cell:nth-child(2) { border-top: none; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card.feature { grid-column: span 1; flex-direction: column; gap: 0; }
  .svc-card.feature .svc-ic { margin-bottom: 22px; }
  .who-list { grid-template-columns: 1fr; }
  .donate-ctas { flex-direction: column; align-items: stretch; }
  .donate-ctas .btn { width: 100%; }
  .sec-head.prog h2 { font-size: 27px; }

  /* Contact/Vol mobile */
  .contact-inner { padding: 34px 20px 44px; gap: 34px; }
  .c-left h1 { font-size: 36px; margin-bottom: 14px; }
  .c-left .lead { font-size: 16px; margin-bottom: 26px; }
  .info-item { padding: 16px 18px; gap: 14px; }
  .info-ic { width: 44px; height: 44px; }
  .brand-card { padding: 36px 26px; }
  .brand-card .bc-logo { width: 240px; margin-bottom: 24px; }
  .brand-card .bc-quote { font-size: 19px; }
  .vol-inner { padding: 34px 20px 44px; gap: 34px; }
  .v-left h1 { font-size: 36px; margin-bottom: 14px; }
  .v-left .lead { font-size: 16px; margin-bottom: 26px; }
  .help-item { padding: 16px 18px; gap: 14px; }
  .help-ic { width: 44px; height: 44px; }
  .form-card { padding: 32px 24px; }
  .form-head h2 { font-size: 23px; }
  .field-row { grid-template-columns: 1fr; gap: 18px; }

  /* Reporting mobile */
  .report-inner { padding: 26px 20px 34px; }
  .report-head { margin-bottom: 22px; gap: 20px; }
  .report-head h1 { font-size: 29px; }
  .year-tabs { width: 100%; }
  .year-tab { flex: 1; padding: 10px 0; font-size: 14px; }
  .sc-raised { font-size: 46px; }
  .sc-mini .m-num { font-size: 23px; }
}

/* Extra small phones */
@media (max-width: 380px) {
  .hero h1 { font-size: 32px; }
  .h2 { font-size: 26px; }
  .donate-title { font-size: 28px; }
  .nl-title { font-size: 26px; }
  .impact-bar-inner { grid-template-columns: 1fr; }
  .impact-item:nth-child(2n) { border-left: none; }
  .impact-grid { grid-template-columns: 1fr; }
  .phero.prog h1, .phero h1 { font-size: 32px; }
  .c-left h1, .v-left h1 { font-size: 31px; }
  .report-head h1 { font-size: 25px; }
  .sc-raised { font-size: 40px; }
}
