  :root {
    /* ─── SLS BRAND BLUES (extracted from logo) ─── */
    --navy:        #06063e;   /* deepest: backgrounds, footer */
    --navy-mid:    #0c0c6a;   /* mid-dark: hero, impact band */
    --brand:       #101088;   /* primary brand blue from logo */
    --brand-mid:   #2828a0;   /* links, accents */
    --brand-light: #4848b0;   /* lighter touches, hover */
    --brand-pale:  #eeeef8;   /* tinted background */

    /* ─── WARM ACCENT ─── */
    --amber:       #c8882b;
    --amber-hover: #b07822;
    --amber-light: #fdf5e8;

    /* ─── COOL ACCENT (secondary CTA, supporter actions) ─── */
    --teal:        #1f9b8e;
    --teal-hover:  #178578;

    /* ─── NEUTRALS ─── */
    --ink:         #1c1f26;
    --ink-soft:    #4a4e57;
    --ink-muted:   #7a7e87;
    --paper:       #ffffff;
    --cream:       #f8f8fc;
    --warm-bg:     #f2f2f8;
    --border:      #d8d8e4;

    /* ─── TYPE ─── */
    --font-serif:  'Libre Baskerville', Georgia, serif;
    --font-sans:   'Lato', system-ui, sans-serif;

    /* ─── LAYOUT ─── */
    --max-w:  1140px;
    --r:      8px;
    --r-lg:   16px;
  }

  .skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--brand);
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    z-index: 1000;
    font-size: 0.9rem;
    text-decoration: none;
  }
  .skip-link:focus { top: 8px; }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }
  .wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

  /* ═══════════════════════════════════════════
     ANNOUNCEMENT BAR
     ═══════════════════════════════════════════ */
  .announce {
    background: var(--navy);
    color: white;
    text-align: center;
    padding: 11px 24px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
  }
  .announce a {
    color: #fde9c4;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(253,233,196,0.4);
    margin-left: 10px;
    transition: border-color 0.2s;
  }
  .announce a:hover { border-color: #fde9c4; }

  /* ═══════════════════════════════════════════
     HEADER
     ═══════════════════════════════════════════ */
  header {
    background: var(--paper);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px;
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .logo {
    display: block;
    text-decoration: none;
    flex-shrink: 0;
  }
  .logo-img {
    height: 68px;
    width: auto;
    display: block;
  }
  /* Footer uses text-based logo name */
  .logo-name {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.25;
    color: var(--ink);
  }

  nav {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  nav a {
    text-decoration: none;
    color: #06063e;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    padding: 10px 16px;
    border-radius: 6px;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
  }
  nav a:hover { color: var(--brand); background: var(--brand-pale); }
  .nav-donate {
    background: var(--amber);
    color: white;
    font-weight: 700;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 6px;
    margin-left: 12px;
    transition: background 0.2s;
    flex-shrink: 0;
  }
  .nav-donate:hover { background: var(--amber-hover); color: white; }

  /* Nav — Programs ▾ dropdown (2026-06-06) */
  .nav-dd { position: relative; display: flex; align-items: center; }
  .nav-dd-parent { display: inline-flex; align-items: center; gap: 5px; }
  .nav-caret { font-size: 0.6em; line-height: 1; opacity: 0.65; transition: transform 0.2s; }
  .nav-dd:hover .nav-caret { transform: translateY(2px); }
  .nav-dd-menu {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    min-width: 184px;
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(6, 6, 62, 0.14);
    padding: 8px;
    display: none;
    flex-direction: column;
    z-index: 200;
  }
  .nav-dd:hover .nav-dd-menu,
  .nav-dd:focus-within .nav-dd-menu { display: flex; }
  .nav-dd-menu a { padding: 9px 14px; border-radius: 6px; font-size: 15px; white-space: nowrap; }

  .burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
  .burger svg { width: 26px; height: 26px; color: var(--ink); }

  /* ═══════════════════════════════════════════
     HERO
     ═══════════════════════════════════════════ */
  .hero {
    padding: 72px 0 80px;
    background: linear-gradient(165deg, var(--navy) 0%, var(--navy-mid) 55%, var(--brand) 100%);
    color: white;
    position: relative;
    overflow: hidden;
  }
  .hero--photo {
    background:
      linear-gradient(100deg, rgba(6,6,62,0.94) 0%, rgba(8,8,74,0.89) 42%, rgba(12,12,106,0.62) 72%, rgba(16,16,136,0.42) 100%),
      var(--hero-img, none) center top/cover no-repeat; /* top-anchored: faces sit high in the hero photo; center crop cut heads off (Board 2026-07-28) */
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(72,72,176,0.15) 0%, transparent 70%);
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -35%;
    left: -8%;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,136,43,0.08) 0%, transparent 70%);
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .hero-content { animation: riseIn 0.7s ease both; }
  .hero-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 5px 14px;
    border-radius: 100px;
  }
  .hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 4.5vw, 3.3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .hero h1 em {
    font-style: italic;
    color: #fde9c4;
  }
  .hero-body {
    font-size: 1.02rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 530px;
    margin-bottom: 28px;
  }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 4px; }

  .hero-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    animation: riseIn 0.7s 0.15s ease both;
  }
  .hero-card-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
  }
  .stat-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .stat-row:last-child { border-bottom: none; padding-bottom: 0; }
  .stat-num {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    flex: 0 0 96px;
    text-align: right;
    color: #fde9c4;
  }
  .stat-label {
    font-size: 0.84rem;
    opacity: 0.8;
    line-height: 1.4;
  }

  /* ═══════════════════════════════════════════
     BUTTONS
     ═══════════════════════════════════════════ */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: var(--r);
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
    letter-spacing: 0.01em;
  }
  .btn-amber { background: var(--amber); color: white; }
  .btn-amber:hover { background: var(--amber-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(200,136,43,0.3); }
  .btn-brand { background: var(--brand-mid); color: white; }
  .btn-brand:hover { background: var(--brand); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(16,16,136,0.25); }
  .btn-outline { background: transparent; color: var(--brand); border: 1.5px solid var(--brand); }
  .btn-outline:hover { background: var(--brand); color: white; }
  .btn-ghost { background: transparent; color: var(--ink-soft); border: 1.5px solid var(--border); }
  .btn-ghost:hover { border-color: var(--ink-soft); color: var(--ink); }
  .btn-white { background: white; color: var(--navy); font-weight: 700; }
  .btn-white:hover { background: var(--cream); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
  .btn-white-ghost { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.35); }
  .btn-white-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }

  /* ═══════════════════════════════════════════
     SHARED SECTION STYLES
     ═══════════════════════════════════════════ */
  .section-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 10px;
    display: block;
  }
  .section-h {
    font-family: var(--font-serif);
    font-size: clamp(1.95rem, 3.3vw, 2.55rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--ink);
  }

  /* ═══════════════════════════════════════════
     TWO PATHS
     ═══════════════════════════════════════════ */
  .paths { padding: 72px 0; background: var(--paper); }
  .paths-intro { text-align: center; margin-bottom: 48px; }
  .paths-trunk { text-align: center; margin-top: 44px; }
  .paths-trunk a {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1rem;
    color: var(--brand);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 3px;
    transition: border-color 0.2s;
  }
  .paths-trunk a:hover { border-color: var(--brand); }
  .paths-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
  /* Option 2 — de-telled panels: soft fill + accent top-rule, no border, no icon chip */
  .path-card {
    background: var(--brand-pale);
    border-radius: var(--r-lg);
    padding: 40px 34px;
    border-top: 3px solid var(--brand);
    text-decoration: none;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .path-card:last-child { border-top-color: var(--amber); background: #faf3e8; }
  .path-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(6,6,62,0.07); }
  .path-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .path-card:not(:last-child) .path-eyebrow { color: var(--brand); }
  .path-card:last-child .path-eyebrow { color: var(--amber); }
  .path-card h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
  }
  .path-card > p {
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 22px;
    flex: 1;
  }
  .path-card ul { list-style: none; margin-bottom: 22px; padding: 0; }
  .path-card ul li {
    font-size: 0.85rem;
    color: var(--ink-soft);
    padding: 5px 0 5px 20px;
    position: relative;
  }
  .path-card ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 0.8rem;
  }
  .path-card:not(:last-child) ul li::before { color: var(--brand); }
  .path-card:last-child ul li::before { color: var(--amber); }
  .path-link {
    margin-top: auto;
    align-self: flex-start;
    font-size: 1.02rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: gap 0.2s, border-color 0.2s;
  }
  .path-card:not(:last-child) .path-link { color: var(--brand); }
  .path-card:last-child .path-link { color: var(--amber); }
  .path-card:hover .path-link { gap: 10px; border-bottom-color: currentColor; }

  /* ═══════════════════════════════════════════
     THREE PILLARS
     ═══════════════════════════════════════════ */
  .how {
    padding: 72px 0;
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .how-header { margin-bottom: 44px; }
  .how--centered .how-header { text-align: center; }
  .how.how--centered { background: var(--brand-pale); }
  .how--centered .kicker-rule, .cc-head .kicker-rule { margin-left: auto; margin-right: auto; }
  .cc-head { text-align: center; margin-bottom: 38px; }
  .cc-head p { max-width: 620px; margin: 14px auto 0; }
  .how-lead {
    font-size: 1.08rem;
    color: var(--ink-soft);
    line-height: 1.55;
    margin: 12px 0 0;
  }
  .how-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 56px;
    align-items: center;
  }
  .how-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--r-lg);
    display: block;
  }
  .how-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .how-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    align-items: start;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
  }
  .how-step:first-child { padding-top: 0; }
  .how-step:last-child { border-bottom: none; padding-bottom: 0; }
  .how-step-n {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 0.9;
    color: var(--brand);
  }
  .how-step h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
  }
  .how-step p {
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.65;
    margin: 0;
  }

  /* ═══════════════════════════════════════════
     IMPACT BAND
     ═══════════════════════════════════════════ */
  .impact {
    padding: 64px 0;
    background: var(--navy-mid);
    color: white;
  }
  .impact-n {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
    color: #fde9c4;
  }
  .impact-l { font-size: 0.82rem; opacity: 0.6; line-height: 1.4; }
  .rc-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .rc-text .section-tag { margin-bottom: 8px; }
  .rc-text .section-h { margin-bottom: 16px; max-width: 540px; }
  .rc-text p {
    font-size: 0.96rem;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 14px;
    max-width: 560px;
  }
  .rc-text p:last-of-type { margin-bottom: 24px; }
  .rc-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--brand-pale);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    border: 1px solid var(--border);
  }
  .rc-stat {
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .rc-stat:last-child { border-bottom: none; padding-bottom: 0; }
  .rc-stat-num {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--brand);
    line-height: 1;
    min-width: 50px;
  }
  .rc-stat-label {
    font-size: 0.86rem;
    color: var(--ink-soft);
    line-height: 1.4;
  }

  /* ═══════════════════════════════════════════
     TESTIMONIALS
     ═══════════════════════════════════════════ */
  .voices { padding: 72px 0; background: var(--paper); }
  .voices-header { text-align: center; margin-bottom: 48px; }
  .testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .testi {
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
  }
  .testi-featured {
    grid-row: span 2;
    align-self: start;
    background: var(--brand);
    border-color: var(--brand);
    color: white;
  }
  .testi-mark {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    opacity: 0.2;
    margin-bottom: 8px;
  }
  .testi blockquote {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    line-height: 1.75;
    font-style: italic;
    flex: 1;
    margin-bottom: 20px;
  }
  .testi:not(.testi-featured) blockquote { color: var(--ink-soft); }
  .testi-featured blockquote { color: #fff; font-size: 1.22rem; line-height: 1.7; }
  .testi-who {
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    font-weight: 600;
  }
  .testi-featured .testi-who { border-color: rgba(255,255,255,0.2); }
  .testi-role { font-weight: 400; display: block; margin-top: 2px; }
  .voices-lead {
    background: linear-gradient(160deg, var(--navy) 0%, var(--brand) 100%);
    color: #fff;
    border-radius: var(--r-lg);
    padding: clamp(32px, 5vw, 56px);
    text-align: center;
    max-width: 880px;
    margin: 0 auto 24px;
  }
  .vl-mark { font-family: var(--font-serif); font-size: 3rem; line-height: 1; color: rgba(255,255,255,0.32); display: block; }
  .vl-quote { font-family: var(--font-serif); font-style: normal; font-size: clamp(1.15rem, 2vw, 1.45rem); line-height: 1.65; color: #fff; margin: 4px auto 18px; max-width: 720px; }
  .vl-who { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.65); }
  .voices-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 880px; margin: 0 auto; }
  .voices-row .testi blockquote { font-style: normal; }
  @media (max-width: 760px) { .voices-row { grid-template-columns: 1fr; } }
  .testi:not(.testi-featured) .testi-role { color: var(--ink-muted); }
  .testi-featured .testi-role { color: rgba(255,255,255,0.6); }

  /* Parent quotes — carousel of testimonials (Curriculum, 2026-06-23) */
  .pq-carousel { max-width: 820px; margin: 0 auto; }
  .pq-viewport { position: relative; }
  .pq-slide {
    margin: 0 0 16px;
    background: linear-gradient(160deg, var(--navy) 0%, var(--brand) 100%);
    border-radius: var(--r-lg);
    padding: 52px 56px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(6, 6, 62, 0.16);
  }
  .pq-slide::before {
    content: "\201C";
    display: block;
    font-family: var(--font-serif);
    font-size: 3rem;
    line-height: 0.6;
    color: rgba(255, 255, 255, 0.28);
    margin-bottom: 12px;
  }
  .pq-slide blockquote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.35rem;
    line-height: 1.6;
    color: #fff;
    margin: 0 0 22px;
  }
  .pq-slide figcaption {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
  }
  /* carousel mode (JS on): one slide at a time, cross-fade */
  .pq-carousel.is-ready .pq-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
  }
  .pq-carousel.is-ready .pq-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
  }
  .pq-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 26px; }
  .pq-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--brand);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }
  .pq-arrow:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
  .pq-dots { display: flex; gap: 10px; }
  .pq-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }
  .pq-dot.is-active { background: var(--brand); transform: scale(1.25); }
  .pq-carousel:not(.is-ready) .pq-controls { display: none; }
  @media (max-width: 760px) { .pq-slide { padding: 40px 28px; } .pq-slide blockquote { font-size: 1.18rem; } }

  /* ═══════════════════════════════════════════
     NEWS & EVENTS
     ═══════════════════════════════════════════ */
  .news {
    padding: 72px 0;
    background: var(--cream);
    border-top: 1px solid var(--border);
  }
  .news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
  }
  .news-header .section-h { margin-bottom: 0; }
  .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .news-card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    text-decoration: none;
    color: var(--ink);
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
  }
  .news-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(6,6,62,0.07); }
  .news-img {
    height: 175px;
    background: var(--warm-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    color: var(--ink-muted);
    border-bottom: 1px solid var(--border);
    font-style: italic;
  }
  .news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .contact-form-section {
    background: var(--brand-pale, #eeeef8);
    padding: clamp(40px, 6vw, 72px) 0;
  }
  .inquiry-form-card {
    max-width: 620px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--r-lg, 14px);
    padding: clamp(28px, 4vw, 44px);
    box-shadow: 0 10px 30px rgba(6, 6, 62, 0.10);
  }
  .inquiry-form-card .ctct-inline-form label,
  .inquiry-form-card .ctct-inline-form label span {
    color: var(--navy, #06063e) !important;
  }
  .inquiry-form-card .ctct-inline-form .ctct-form-checkbox-label {
    font-weight: 600 !important;
  }
  .topic-videos {
    margin: 24px 0 8px;
  }
  .topic-videos .res-label {
    margin-bottom: 6px;
  }
  .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
  }
  .video-embed {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--r, 8px);
    overflow: hidden;
    background: #000;
    box-shadow: 0 4px 16px rgba(6, 6, 62, 0.10);
  }
  .video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  .nl-cover {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin: 18px auto 0;
    text-align: center;
    text-decoration: none;
  }
  .nl-cover img {
    display: block;
    width: 240px;
    max-width: 100%;
    margin: 0 auto;
    border-radius: var(--r, 8px);
    border: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(6, 6, 62, 0.16);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .nl-cover:hover img {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(6, 6, 62, 0.22);
  }
  .impact .rc-text .section-tag { color: #fde9c4; }
  .impact .rc-text .section-h { color: #fff; }
  .impact .rc-text p { color: rgba(255, 255, 255, 0.85); }
  .impact .gift-list {
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 24px 20px;
    font-size: 0.98rem;
    line-height: 1.8;
  }
  .impact-stack {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .news-type {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 4px;
    display: inline-block;
    margin: 20px 20px 10px;
    width: fit-content;
  }
  .type-event { background: var(--amber-light); color: var(--amber); }
  .type-news { background: var(--brand-pale); color: var(--brand); }
  .news-card h4 {
    font-family: var(--font-serif);
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.35;
    padding: 0 20px;
    margin-bottom: 8px;
  }
  .news-card p {
    font-size: 0.84rem;
    color: var(--ink-soft);
    line-height: 1.6;
    padding: 0 20px 16px;
    flex: 1;
  }
  .news-date {
    font-size: 0.76rem;
    color: var(--ink-muted);
    padding: 0 20px 20px;
  }

  /* ═══════════════════════════════════════════
     NEWSLETTER / CONSTANT CONTACT
     ═══════════════════════════════════════════ */
  .newsletter {
    padding: 60px 0;
    background: var(--paper);
    border-top: 1px solid var(--border);
  }
  .nl-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .nl-cover--inline {
    margin: 32px auto 0;
    text-align: center;
  }
  .nl-cover--inline img {
    width: 320px;
  }
  .nl-cover-btn {
    margin-top: 20px;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 16px 34px;
  }
  .nl-text .section-tag { margin-bottom: 8px; }
  .nl-text .section-h { margin-bottom: 10px; }
  .nl-text p {
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.65;
  }
  .nl-form {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px;
  }
  .nl-form label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink-soft);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
  }
  .nl-form input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--r);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--ink);
    background: var(--paper);
    margin-bottom: 14px;
    transition: border-color 0.2s;
  }
  .nl-form input:focus { outline: none; border-color: var(--brand-mid); }
  .nl-form button {
    width: 100%;
    padding: 13px;
    background: var(--brand);
    color: white;
    border: none;
    border-radius: var(--r);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
  }
  .nl-form button:hover { background: var(--navy-mid); }
  .nl-form .nl-note {
    font-size: 0.72rem;
    color: var(--ink-muted);
    margin-top: 10px;
    line-height: 1.5;
  }

  /* ═══════════════════════════════════════════
     TOPICS
     ═══════════════════════════════════════════ */
  .topics {
    padding: 72px 0;
    background: var(--cream);
    border-top: 1px solid var(--border);
  }
  .tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
  .tag {
    display: inline-block;
    padding: 12px 20px;
    border: 1px solid var(--border);
    border-radius: var(--r);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--brand);
    text-decoration: none;
    transition: all 0.2s;
    background: var(--paper);
  }
  .tag:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: var(--brand-pale);
  }

  /* ═══════════════════════════════════════════
     CTA
     ═══════════════════════════════════════════ */
  .cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--brand) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta::before {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,136,43,0.12) 0%, transparent 70%);
  }
  .cta .wrap { position: relative; z-index: 1; }
  .cta .section-h { color: white; margin-bottom: 12px; }
  .cta p {
    font-size: 1.02rem;
    opacity: 0.8;
    max-width: 460px;
    margin: 0 auto 32px;
    line-height: 1.65;
  }
  .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .cta-note { margin: 18px 0 0; font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); }

  /* ═══════════════════════════════════════════
     PARTNER BAR
     ═══════════════════════════════════════════ */
  .partners {
    padding: 32px 0;
    background: var(--warm-bg);
    border-top: 1px solid var(--border);
  }

  /* Inquiry form — native Statamic form replacing the CC inline widget (2026-07-14) */
  .inq-form { max-width: 560px; margin: 0 auto; text-align: left; }
  .inq-row { display: flex; gap: 14px; }
  .inq-row .inq-field { flex: 1; }
  .inq-field { margin-bottom: 16px; }
  .inq-field label {
    display: block;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 6px;
  }
  .inq-req { color: #c0392b; }
  .inq-field input, .inq-field select, .inq-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    background: white;
    color: var(--ink);
  }
  .inq-field input:focus, .inq-field select:focus, .inq-field textarea:focus {
    outline: 2px solid var(--brand-light);
    outline-offset: 0;
  }
  .inq-optin {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    margin-bottom: 18px;
    cursor: pointer;
  }
  .inq-optin input { width: auto; }
  .inq-submit { width: 100%; justify-content: center; }
  .inq-hp { position: absolute; left: -9999px; top: -9999px; }
  .inq-success {
    text-align: center;
    padding: 28px 16px;
  }
  .inq-success h3 { font-family: var(--font-serif); margin-bottom: 8px; }
  .inq-errors {
    background: #fdf1f0;
    border: 1px solid #e8c8c4;
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 18px;
    font-size: 0.9rem;
  }
  .inq-errors ul { margin: 6px 0 0 18px; }
  @media (max-width: 560px) {
    .inq-row { flex-direction: column; gap: 0; }
  }

  /* Sponsors & partners — For Funders (2026-07-13). White cards normalize
     wildly different logo shapes/backgrounds onto one neutral field. */
  .sponsor-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
  .sponsor-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
  }
  .sponsor-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  .sponsor-card--name span {
    font-family: var(--font-serif);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--brand);
    text-align: center;
    line-height: 1.35;
  }
  .sponsor-individuals {
    margin-top: 36px;
    text-align: center;
  }
  .sponsor-individuals h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    margin-bottom: 10px;
  }
  .sponsor-individuals p {
    color: var(--ink-soft);
    max-width: 980px; /* wide enough for the contributor list on one line at desktop */
    margin: 0 auto;
  }
  @media (max-width: 900px) {
    .sponsor-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 560px) {
    .sponsor-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .sponsor-card { height: 92px; padding: 12px 14px; }
  }

  /* ═══════════════════════════════════════════
     FOOTER
     ═══════════════════════════════════════════ */
  footer {
    background: var(--navy);
    color: rgba(255,255,255,0.6);
    padding: 56px 0 28px;
  }
  .ft-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .ft-brand .logo-name { color: white; }
  .ft-brand p {
    font-size: 0.82rem;
    line-height: 1.7;
    margin-top: 14px;
    max-width: 280px;
    color: rgba(255,255,255,0.35);
  }
  .ft-col h5 {
    color: white;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .ft-col a {
    display: block;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.84rem;
    padding: 3px 0;
    transition: color 0.2s;
  }
  .ft-col a:hover { color: #fde9c4; }
  .ft-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.74rem;
    color: rgba(255,255,255,0.25);
    flex-wrap: wrap;
    gap: 12px;
  }
  .ft-social { display: flex; gap: 16px; }
  .ft-social a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
  }
  .ft-social a:hover { color: white; }

  /* ═══════════════════════════════════════════
     ANIMATIONS & RESPONSIVE
     ═══════════════════════════════════════════ */
  @keyframes riseIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ═══════════════════════════════════════════
     INNER PAGE — HERO / HEADER
     ═══════════════════════════════════════════ */
  .page-hero {
    padding: 56px 0 48px;
    background: linear-gradient(165deg, var(--navy) 0%, var(--navy-mid) 55%, var(--brand) 100%);
    color: white;
    position: relative;
    overflow: hidden;
  }
  .page-hero--photo {
    background:
      linear-gradient(175deg, rgba(6,6,62,0.94) 0%, rgba(7,7,74,0.89) 40%, rgba(11,11,104,0.72) 72%, rgba(16,16,136,0.54) 100%),
      var(--hero-img, none) center/cover no-repeat;
    padding: 88px 0 72px;
  }
  .page-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(72,72,176,0.15) 0%, transparent 70%);
  }
  .page-hero .wrap {
    position: relative;
    z-index: 1;
  }
  .page-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.15rem, 4vw, 2.95rem);
    font-weight: 700;
    line-height: 1.2;
    max-width: 720px;
    text-shadow: 0 2px 18px rgba(0,0,0,0.30);
  }
  .page-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.94;
    max-width: 620px;
    margin-top: 16px;
    text-shadow: 0 1px 12px rgba(0,0,0,0.28);
  }

  /* ═══════════════════════════════════════════
     INNER PAGE — BODY / PROSE
     ═══════════════════════════════════════════ */
  .page-body {
    padding: 56px 0 72px;
    background: var(--paper);
  }
  .prose {
    max-width: 720px;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--ink);
  }
  .prose h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ink);
    margin: 40px 0 12px;
    line-height: 1.25;
  }
  .prose h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ink);
    margin: 32px 0 10px;
    line-height: 1.3;
  }
  .prose p {
    margin-bottom: 18px;
    color: var(--ink-soft);
  }
  .prose a {
    color: var(--brand);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
  }
  .prose a:hover { color: var(--brand-mid); }
  .prose ul, .prose ol {
    margin: 0 0 18px 24px;
    color: var(--ink-soft);
  }
  .prose li {
    margin-bottom: 6px;
    line-height: 1.65;
  }
  .prose blockquote {
    border-left: 3px solid var(--brand);
    padding: 12px 0 12px 20px;
    margin: 24px 0;
    font-style: italic;
    color: var(--ink-soft);
  }
  .prose img {
    max-width: 100%;
    height: auto;
    border-radius: var(--r);
    margin: 24px 0;
  }
  .prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.9rem;
  }
  .prose th, .prose td {
    padding: 10px 14px;
    border: 1px solid var(--border);
    text-align: left;
  }
  .prose th {
    background: var(--brand-pale);
    font-weight: 600;
    color: var(--ink);
  }
  .prose td {
    color: var(--ink-soft);
  }
  .prose hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 40px 0;
  }

  @media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-card { max-width: 400px; }
    .paths-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .how-grid { grid-template-columns: 1fr; gap: 32px; }
    .how-photo { aspect-ratio: 16 / 10; }
    .how-step-n { font-size: 2rem; }
    .rc-inner { grid-template-columns: 1fr; gap: 32px; }
    .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .testi-featured { grid-row: auto; }
    .news-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .nl-inner { grid-template-columns: 1fr; gap: 32px; }
    .ft-grid { grid-template-columns: 1fr 1fr; }
    .prose { font-size: 0.95rem; }
  }
  @media (max-width: 768px) {
    nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--paper);
      border-bottom: 2px solid var(--border);
      flex-direction: column;
      align-items: stretch;
      padding: 16px 24px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    nav.nav-open { display: flex; }
    nav a { padding: 12px 0; border-bottom: 1px solid var(--border); text-align: left; border-radius: 0; }
    nav a:last-child { border-bottom: none; }
    nav .nav-donate { margin-left: 0; margin-top: 8px; text-align: center; }
    /* Programs ▾ expands inline (overview link on top, children indented); audience doors move into the menu */
    .nav-dd { flex-direction: column; align-items: stretch; }
    .nav-caret { display: none; }
    .nav-dd-menu {
      position: static; display: flex; flex-direction: column;
      background: transparent; border: none; box-shadow: none; padding: 0; min-width: 0;
    }
    .nav-dd-menu a { padding-left: 18px; font-size: 16px; }
    .burger { display: block; }
    .hdr { position: relative; }
    .logo-img { height: 52px; }
    .hero { padding: 48px 0 56px; }
    .hero h1 { font-size: 2.05rem; }
    footer { padding: 36px 0 22px; }
    .ft-grid { grid-template-columns: 1fr 1fr 1fr; gap: 22px 14px; margin-bottom: 26px; }
    .ft-brand { grid-column: 1 / -1; }
    .ft-brand p { margin-top: 10px; }
    .ft-col h5 { font-size: 0.7rem; margin-bottom: 9px; }
    .ft-col a { font-size: 0.78rem; padding: 2px 0; }
    .ft-bottom { flex-direction: column; text-align: center; }
    .news-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .page-hero { padding: 40px 0 36px; }
    .page-hero h1 { font-size: 1.9rem; }
    .page-body { padding: 40px 0 56px; }
    .prose h2 { font-size: 1.5rem; margin-top: 32px; }
    .prose h3 { font-size: 1.18rem; margin-top: 24px; }
    .rp-section { padding: 48px 0; }
  }

  /* ═══════════════════════════════════════════
     RESEARCH PAGE
     ═══════════════════════════════════════════ */
  .rp-section { padding: clamp(64px, 8vw, 92px) 0; }
  .rp-section--alt {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  /* approach — elevated layout: lede + pulled stat + methodology 3-up */
  .rp-approach { max-width: 840px; margin: 26px auto 0; }
  .rp-approach .section-h { margin-bottom: 18px; }
  .rp-lede {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.2vw, 1.42rem);
    line-height: 1.5;
    color: var(--ink);
    margin: 0 0 22px;
    text-align: center;
  }
  .rp-approach-p {
    font-size: 1rem;
    color: var(--ink-soft);
    line-height: 1.7;
    margin: 0;
    text-align: center;
  }
  .rp-approach-p em { font-style: normal; color: var(--brand); font-weight: 600; }
  .rp-statcard {
    background: linear-gradient(150deg, var(--navy) 0%, var(--brand) 100%);
    border-radius: var(--r-lg);
    padding: clamp(28px, 4vw, 46px);
    margin: 36px 0;
    box-shadow: 0 14px 36px rgba(6, 6, 62, 0.18);
  }
  .rp-statcard p {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.9vw, 2rem);
    line-height: 1.4;
    color: #fff;
    margin: 0;
    text-align: center;
  }
  .rp-statcard em { font-style: normal; color: #fff; }
  .rp-method-lead {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin: 30px 0 28px;
    text-align: center;
  }
  .rp-method {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 28px;
  }
  .rp-method-item::before {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--brand);
    border-radius: 2px;
    margin-bottom: 16px;
  }
  .rp-method-item h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 8px;
  }
  .rp-method-item p {
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.6;
    margin: 0;
  }
  .rp-highlight {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.4vw, 1.5rem);
    line-height: 1.45;
    color: var(--ink);
    text-align: center;
    max-width: 740px;
    margin: 40px auto 0;
  }
  @media (max-width: 720px) {
    .rp-method { grid-template-columns: 1fr; gap: 22px; }
  }

  /* 7-year evaluation — centered head + photo/stats on one line */
  .val-head { max-width: 760px; margin: 0 auto; text-align: center; }
  .val-head .section-h { margin-bottom: 16px; }
  .val-head p { font-size: 1rem; color: var(--ink-soft); line-height: 1.7; margin: 0 0 14px; }
  .val-head .btn { margin-top: 10px; }
  .val-media .feature-photo { margin: 0; }

  /* 7-year evaluation — the page's visual anchor: bigger heading + image/finding tied together */
  .rp-eval .val-head .section-h { font-size: clamp(2.3rem, 4.4vw, 3.1rem); }
  .eval-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 44px;
  }
  .eval-group .feature-photo { margin: 0; }
  .eval-group .rp-finding { margin: 0; max-width: none; }
  @media (max-width: 760px) { .eval-group { grid-template-columns: 1fr; gap: 28px; } }

  /* Research — proof snapshot tiles (the study at a glance, under the hero) */
  .proof-snapshot {
    background: #fff;
    padding: clamp(36px, 5vw, 56px) 0;
    border-bottom: 1px solid var(--border);
  }
  .proof-row { display: grid; grid-template-columns: repeat(3, 1fr); }
  .proof-tile { text-align: center; padding: 6px 28px; }
  .proof-tile + .proof-tile { border-left: 1px solid var(--border); }
  .proof-num {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    color: var(--brand);
    line-height: 1.1;
  }
  .proof-label { margin-top: 8px; font-size: 0.92rem; color: var(--ink-soft); line-height: 1.45; }
  @media (max-width: 720px) {
    .proof-row { grid-template-columns: 1fr; }
    .proof-tile { padding: 0; }
    .proof-tile + .proof-tile { border-left: 0; border-top: 1px solid var(--border); padding-top: 24px; margin-top: 24px; }
  }

  /* Research — awards & recognition, two-column with photo (Dawn 2026-06-23) */
  .awards-split {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 48px;
    align-items: center;
    max-width: 1040px;
    margin: 0 auto;
  }
  .awards-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .awards-list li { display: flex; gap: 18px; align-items: baseline; }
  .awards-list .ay {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--brand);
    min-width: 64px;
    flex-shrink: 0;
  }
  .awards-list .an { color: var(--ink-soft); line-height: 1.45; }
  .awards-list .an small { display: block; opacity: 0.7; font-size: 0.82rem; margin-top: 2px; }
  .awards-media { text-align: center; }
  .awards-media img {
    width: 100%;
    max-width: 240px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--r-lg);
    box-shadow: 0 6px 24px rgba(6, 6, 62, 0.12);
  }
  @media (max-width: 760px) {
    .awards-split { grid-template-columns: 1fr; gap: 28px; justify-items: center; }
    .awards-media { order: -1; }
  }

  /* "What the evaluation found" synthesis block */
  .rp-finding {
    max-width: 860px;
    margin: 40px auto 0;
    background: var(--paper);
    border-radius: var(--r-lg);
    border-top: 3px solid var(--brand);
    padding: 32px 34px;
    box-shadow: 0 8px 26px rgba(6,6,62,0.06);
  }
  .rp-finding h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 12px;
  }
  .rp-finding p { font-size: 1.02rem; color: var(--ink-soft); line-height: 1.7; margin: 0; }

  /* alignment group headings */
  .rp-align-group + .rp-align-group { margin-top: 40px; }
  .rp-align-group-h {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand);
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
  }

  /* outcomes grid */
  .rp-outcomes-header { margin-bottom: 28px; text-align: center; }
  .rp-outcomes-intro { font-size: 1rem; color: var(--ink-soft); line-height: 1.7; max-width: 720px; margin: 14px auto 0; }
  .rp-outcomes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 44px;
  }
  /* mobile collapse must live AFTER the base rule (same specificity wins on source order) */
  @media (max-width: 720px) { .rp-outcomes { grid-template-columns: 1fr; } }
  .rp-outcome { padding: 22px 4px 0; }
  .rp-outcome-neutral {
    max-width: 760px;
    margin: 36px auto 0;
    padding: 22px 26px;
    background: #f4f4f7;
    border-radius: var(--r-lg);
  }
  .rp-outcome-neutral h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink-soft);
    margin: 0 0 6px;
  }
  .rp-outcome-neutral p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.6; margin: 0; }
  .neutral-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-soft);
    background: #e4e4ea;
    padding: 4px 10px;
    border-radius: 4px;
    margin: 0 0 12px;
  }
  .rp-outcome::before {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--brand);
    border-radius: 2px;
    margin-bottom: 16px;
  }
  .rp-outcome h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
  }
  .rp-outcome p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.65;
  }

  /* alignment cards */
  .rp-align-intro {
    font-size: 1rem;
    color: var(--ink-soft);
    max-width: 620px;
    line-height: 1.65;
    margin: 0 auto 36px;
    text-align: center;
  }
  .rp-align-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  /* mobile collapse must live AFTER the base rule (same specificity wins on source order) */
  @media (max-width: 920px) { .rp-align-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .rp-align-grid { grid-template-columns: 1fr; } }
  .rp-align-card {
    padding: 16px 0 0;
    border-top: 1px solid var(--border);
  }
  .rp-align-card h4 {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 5px;
  }
  .rp-align-card p {
    font-size: 0.82rem;
    color: var(--ink-soft);
    line-height: 1.5;
  }
  /* Alignment cards → accordion on mobile (mobile-length pass 2026-06-08). Desktop: bodies always shown, no chevron. */
  .acc-card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
  .acc-card-toggle { display: none; }
  .acc-card-body { display: block; }
  @media (max-width: 768px) {
    .rp-align-grid { grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--border); }
    .rp-align-card { padding: 0; border-top: 0; border-bottom: 1px solid var(--border); }
    .acc-card-head { align-items: center; padding: 13px 2px; cursor: pointer; }
    .acc-card-head h4 { margin-bottom: 0; }
    .acc-card-toggle { display: flex; flex: 0 0 auto; background: none; border: 0; padding: 4px; cursor: pointer; }
    .acc-card-chev { width: 9px; height: 9px; border-right: 2px solid var(--brand); border-bottom: 2px solid var(--brand); transform: rotate(45deg); transition: transform 0.2s; }
    .acc-card.is-open .acc-card-chev { transform: rotate(-135deg); }
    .acc-card-body { display: none; padding: 0 2px 14px; }
    .acc-card.is-open .acc-card-body { display: block; }
  }

  /* ═══════════════════════════════════════════
     CONTACT PAGE
     ═══════════════════════════════════════════ */
  .contact-body { padding: 56px 0 72px; }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  @media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
  .contact-block { margin-bottom: 32px; }
  .contact-block:last-child { margin-bottom: 0; }
  .contact-block h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
  }
  .contact-block p {
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.65;
  }
  .contact-block a {
    color: var(--brand);
    text-decoration: none;
    transition: color 0.2s;
  }
  .contact-block a:hover { color: var(--brand-mid); }
  .contact-social {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  .contact-social a {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--brand);
    text-decoration: none;
    transition: color 0.2s;
  }
  .contact-social a:hover { color: var(--brand-mid); }
  .contact-cta { display: flex; flex-direction: column; gap: 20px; }
  .contact-cta-card {
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px 28px;
  }
  .contact-cta-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
  }
  .contact-cta-card p {
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 16px;
  }

  /* ═══════════════════════════════════════════
     DONATE PAGE
     ═══════════════════════════════════════════ */
  .donate-body { padding: 56px 0 72px; }
  .donate-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: stretch;
  }
  @media (max-width: 768px) { .donate-grid { grid-template-columns: 1fr; gap: 32px; } }
  .donate-sidebar {
    display: flex;
    flex-direction: column;
  }
  .donate-card {
    background: var(--brand-pale);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 48px 36px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .donate-card h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
  }
  .donate-card p {
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.6;
  }
  .donate-ein {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand);
    margin-top: 8px;
  }
  .donate-note {
    font-size: 0.76rem;
    color: var(--ink-muted);
    margin-top: 12px;
  }

  /* ═══════════════════════════════════════════
     LANDING PAGE SHARED (For Schools / Funders)
     ═══════════════════════════════════════════ */
  .lp-section { padding: 64px 0; }
  .lp-section--alt {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .lp-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  @media (max-width: 900px) { .lp-features { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .lp-features { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; } }
  .lp-feature {
    text-align: center;
    padding: 16px;
  }
  .pillar-n {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--brand);
    margin-bottom: 14px;
  }
  .lp-feature h3 {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
  }
  .lp-feature p {
    font-size: 1.02rem;
    color: var(--ink-soft);
    line-height: 1.7;
    max-width: 360px;
    margin: 0 auto;
  }

  /* ═══════════════════════════════════════════
     PROGRAMS PAGE
     ═══════════════════════════════════════════ */
  .prog-audiences {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 28px;
  }
  /* roles: open columns (explain section) — short brand accent rule, no box */
  .prog-audience { padding-top: 2px; }
  .prog-audience::before {
    content: '';
    display: block;
    width: 44px;
    height: 3px;
    background: var(--brand);
    border-radius: 2px;
    margin-bottom: 22px;
  }
  .prog-audience h3 {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.25;
    margin-bottom: 12px;
  }
  .prog-audience p {
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 16px;
  }

  /* ═══════════════════════════════════════════
     ABOUT PAGE
     ═══════════════════════════════════════════ */
  .about-mission { padding: clamp(56px, 7vw, 84px) 0 clamp(32px, 4vw, 44px); }
  .prose a.btn { text-decoration: none; color: #fff; }
  .mv-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 48px; align-items: center; }
  .mv-mission .section-h { margin-bottom: 16px; }
  .mv-mission p { font-size: 1.02rem; color: var(--ink-soft); line-height: 1.8; margin: 0; }
  .mv-vision {
    background: var(--brand-pale);
    border-radius: var(--r-lg);
    border-top: 3px solid var(--brand);
    padding: 30px;
  }
  .mv-vision h3 {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand);
    margin: 0 0 14px;
  }
  .mv-vision p {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    line-height: 1.45;
    color: var(--ink);
    margin: 0;
  }
  @media (max-width: 760px) { .mv-grid { grid-template-columns: 1fr; gap: 28px; } }
  .about-section { padding: 64px 0; }
  .about-section--alt {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .about-group-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-align: center;
  }
  .staff-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 32px 40px;
  }
  .staff-card {
    flex: 0 0 248px;
    text-align: center;
    padding: 8px;
  }
  .staff-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    background: var(--brand-pale);
  }
  .staff-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .staff-photo--placeholder {
    background: var(--brand-pale);
    border: 2px dashed var(--border);
  }
  .staff-card h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
  }
  .staff-role {
    font-size: 0.85rem;
    color: var(--brand);
    font-weight: 600;
    margin-bottom: 8px;
  }
  .staff-bio {
    font-size: 0.85rem;
    color: var(--ink-soft);
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto;
  }
  .sab-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 26px 34px;
  }
  .sab-card { flex: 0 0 152px; text-align: center; }
  .sab-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 10px;
    background: var(--brand-pale);
  }
  .sab-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .sab-card h4 {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
  }
  .sab-school {
    font-size: 0.8rem;
    color: var(--ink-soft);
  }

  /* ═══════════════════════════════════════════
     EVENT PAGE
     ═══════════════════════════════════════════ */
  .event-body { padding: 48px 0 64px; }
  .event-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
  }
  .event-details {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
  }
  .event-details h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 16px;
  }
  .event-detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 12px;
  }
  .event-detail strong {
    font-size: 0.8rem;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .event-detail span {
    font-size: 0.95rem;
    color: var(--ink);
  }
  .event-sidebar-cta {
    background: var(--brand-pale);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    margin-top: 20px;
  }
  .event-sidebar-cta h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
  }
  .event-sidebar-cta p {
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 12px;
  }
  /* Event — flyer + sponsorship (golf-style events). These classes had no CSS until 2026-06-06; the flyer img was overflowing the container (no max-width). */
  .wrap-narrow { max-width: 760px; }
  .event-grid--single { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .event-flyer { padding: 44px 0 8px; }
  .event-flyer-img,
  .event-sponsor-img {
    display: block;
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
    border-radius: var(--r, 8px);
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(6, 6, 62, 0.14);
  }
  .event-flyer-actions,
  .event-sponsor-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
  }
  .event-sponsor { padding: 16px 0 56px; }
  .event-sponsor .section-h { text-align: center; margin-bottom: 24px; }

  /* Trainings & Workshops page (/services-training) */
  .train-section { padding: clamp(56px, 7vw, 84px) 0; }
  .train-section--alt { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .train-section .section-h { text-align: center; }
  .train-lead { text-align: center; max-width: 640px; margin: 10px auto 0; color: var(--ink-soft); line-height: 1.6; }
  .train-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 40px; }
  @media (max-width: 760px) { .train-grid { grid-template-columns: 1fr; } }
  .train-card { background: var(--brand-pale); border-top: 3px solid var(--brand); border-radius: var(--r-lg); padding: 26px; }
  .train-card h3 { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
  .train-card p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; }
  .train-fulllist { text-align: center; margin-top: 32px; color: var(--ink-soft); }
  .train-fulllist a { color: var(--brand); font-weight: 700; white-space: nowrap; }
  .train-podcasts { margin-top: 40px; text-align: center; }
  .train-podcasts ul { list-style: none; padding: 0; margin: 10px 0 0; }
  .train-podcasts li { margin: 6px 0; }
  .train-podcasts a { color: var(--brand); font-weight: 600; text-decoration: none; }
  .train-podcasts a:hover { text-decoration: underline; }

  /* Home — click-to-play video facade (AUDIT #6d; school-network friendly) */
  .vfacade { cursor: pointer; }
  .vfacade-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
  .vfacade-play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 66px; height: 66px; border-radius: 50%;
    background: rgba(6, 6, 62, 0.78);
    transition: background 0.2s, transform 0.2s;
  }
  .vfacade-play::after {
    content: ''; position: absolute; top: 50%; left: 54%; transform: translate(-50%, -50%);
    border-style: solid; border-width: 12px 0 12px 20px; border-color: transparent transparent transparent #fff;
  }
  .vfacade:hover .vfacade-play, .vfacade:focus .vfacade-play { background: var(--brand); transform: translate(-50%, -50%) scale(1.06); }
  .vfacade:focus { outline: 2px solid var(--brand); outline-offset: 2px; }

  /* Learn & Lead — student-video captions (AUDIT #6b) */
  .video-figure { margin: 0; }
  .video-figure .video-caption { margin: 8px 2px 0; font-size: 0.82rem; line-height: 1.35; color: var(--ink-soft); }
  .video-figure .video-caption .vc-school { display: block; }

  /* Learn & Lead — accordion-tiles (one expandable card per topic, collapsed by default; 2026-06-07) */
  .acc-list { max-width: 840px; margin: 36px auto 0; border-top: 1px solid var(--border); }
  .acc { border-bottom: 1px solid var(--border); }
  .acc-head {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
    background: none; border: none; cursor: pointer; text-align: left;
    padding: 24px 4px; font-family: var(--font-sans);
  }
  .acc-text { display: flex; flex-direction: column; gap: 5px; }
  .acc-title { font-family: var(--font-serif); font-size: clamp(1.3rem, 2.4vw, 1.6rem); font-weight: 700; color: var(--ink); line-height: 1.15; }
  .acc-blurb { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.45; }
  .acc-head:hover .acc-title { color: var(--brand); }
  .acc-chev {
    flex-shrink: 0; width: 11px; height: 11px;
    border-right: 2px solid var(--brand); border-bottom: 2px solid var(--brand);
    transform: rotate(45deg); transition: transform 0.2s; margin-right: 6px;
  }
  .acc.is-open .acc-chev { transform: rotate(-135deg); }
  .acc-body { display: none; padding: 0 4px 30px; }
  .acc.is-open .acc-body { display: block; }
  .acc-body > p:first-child { margin-top: 0; }
  .acc-body .feature-photo, .acc-body .topic-videos, .acc-body .topic-resources { margin-top: 22px; }

  /* Mobile: tighter section rhythm (2026-06-07) */
  @media (max-width: 768px) {
    .lp-section, .train-section, .news-index-section, .paths, .how, .voices, .cta, .about-section, .newsletter, .event-body { padding-top: 44px; padding-bottom: 44px; }
    .topic-cards, .cc-grid, .train-grid, .paths-grid { gap: 16px; }
    .acc-head { padding: 20px 2px; }
  }

  /* Research — alignment framework names as quiet outbound source links (AUDIT #6a) */
  .rp-align-card h4 .rp-align-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s ease;
  }
  .rp-align-card h4 .rp-align-link:hover,
  .rp-align-card h4 .rp-align-link:focus { border-bottom-color: var(--brand); }

  /* About — Awards & Recognition hairline list (AUDIT #3) */
  .award-list { list-style: none; margin: 0 auto; padding: 0; max-width: 760px; }
  .award-row {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 20px;
    align-items: baseline;
    padding: 18px 0;
    border-top: 1px solid var(--border);
  }
  .award-row:last-child { border-bottom: 1px solid var(--border); }
  .award-year { font-family: var(--font-serif); font-weight: 700; color: var(--brand); font-size: 1.15rem; }
  .award-name { color: var(--ink); line-height: 1.5; }
  .award-name a { color: var(--brand); }
  @media (max-width: 560px) { .award-row { grid-template-columns: 1fr; gap: 4px; padding: 16px 0; } }

  /* Programs — Four Pillars (4-up) + Key Components (5-up), open .prog-audience cells (AUDIT #4) */
  .pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 28px; }
  .components-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; margin-top: 28px; }
  .pillars-grid .prog-audience h3, .components-grid .prog-audience h3 { font-size: 1.3rem; }
  /* Accordion shell — desktop: a transparent reset, bodies always shown (no collapse) */
  .prog-acc-head { display: block; width: 100%; text-align: left; background: none; border: 0; padding: 0; cursor: default; font: inherit; color: inherit; }
  .prog-acc-head h3 { margin-bottom: 12px; }
  .prog-acc-chev { display: none; }
  .prog-acc-body { display: block; }
  .prog-acc-body p { margin-bottom: 0; }
  @media (max-width: 980px) {
    .pillars-grid { grid-template-columns: 1fr 1fr; }
    .components-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    /* Mobile: pillars + components collapse into scannable accordion tiles */
    .pillars-grid, .components-grid { display: block; margin-top: 18px; border-top: 1px solid var(--border); }
    .pillars-grid .prog-acc, .components-grid .prog-acc { border-bottom: 1px solid var(--border); padding-top: 0; }
    .pillars-grid .prog-acc::before, .components-grid .prog-acc::before { display: none; }
    .prog-acc-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 2px; cursor: pointer; }
    .prog-acc-head h3 { margin-bottom: 0; }
    .pillars-grid .prog-acc-head h3, .components-grid .prog-acc-head h3 { font-size: 1.12rem; line-height: 1.3; }
    .prog-acc-head:hover h3 { color: var(--brand); }
    .prog-acc-chev { display: block; flex-shrink: 0; width: 10px; height: 10px; border-right: 2px solid var(--brand); border-bottom: 2px solid var(--brand); transform: rotate(45deg); transition: transform 0.2s; margin-right: 6px; }
    .prog-acc.is-open .prog-acc-chev { transform: rotate(-135deg); }
    .prog-acc-body { display: none; padding: 0 2px 18px; }
    .prog-acc.is-open .prog-acc-body { display: block; }
  }

  /* ═══════════════════════════════════════════
     NEWS & EVENTS INDEX
     ═══════════════════════════════════════════ */
  .news-index-section { padding: 64px 0; }
  .news-index-section--alt {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  /* ═══════════════════════════════════════════
     RESPONSIVE: TABLET (1024px)
     ═══════════════════════════════════════════ */
  @media (max-width: 1024px) {
    .prog-audiences { grid-template-columns: 1fr; }
    .event-grid { grid-template-columns: 1fr; }
  }

  /* ═══════════════════════════════════════════
     RESPONSIVE: MOBILE (768px)
     ═══════════════════════════════════════════ */
  @media (max-width: 768px) {
    /* People grids are flex with fixed-width cards → stack 1-up at phone width.
       Switch to real grid so staff/board pair 2-up and SAB goes 3-up (mobile-length pass 2026-06-08). */
    .staff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 14px; align-items: start; }
    .staff-card { padding: 0; }
    .staff-photo { width: 104px; height: 104px; margin-bottom: 12px; }
    .sab-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 10px; }
    .sab-photo { width: 78px; height: 78px; }
  }

  /* ═══════════════════════════════════════════
     TOPIC CARDS — Learn & Lead
     ═══════════════════════════════════════════ */
  .topic-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
  /* Learn & Lead — hero spine + program model + soft per-topic CTA */
  .ll-spine {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2.6vw, 1.7rem);
    font-weight: 700;
    color: #fff;
    margin: 14px 0 0;
    max-width: 640px;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
  }
  /* Learn→Lead two-step now uses the shared .split-grid editorial pattern (harmonised with Programs) — old .ll-model/.ll-step removed 2026-06-07 */
  .ll-ask {
    display: inline-block;
    margin-top: 24px;
    color: var(--brand);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.2s;
  }
  .ll-ask:hover { border-bottom-color: var(--brand); }

  /* de-telled panel: soft fill + accent top-rule, no kit-border (site register) */
  .topic-card {
    display: flex;
    flex-direction: column;
    padding: 26px 24px;
    border-radius: var(--r-lg);
    border-top: 3px solid var(--brand);
    text-decoration: none;
    color: var(--ink);
    transition: transform 0.25s, box-shadow 0.25s;
    background: var(--brand-pale);
  }
  .topic-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(6,6,62,0.07);
  }
  .topic-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 10px;
    line-height: 1.25;
  }
  .topic-card p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0 0 18px;
    flex: 1;
  }
  @media (max-width: 1024px) {
    .topic-cards { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 640px) {
    .topic-cards { grid-template-columns: 1fr; }
  }

  /* ═══════════════════════════════════════════
     FEATURE PHOTOS — real images in section bodies
     ═══════════════════════════════════════════ */
  .feature-photo {
    display: block;
    max-width: 100%;
    max-height: 460px;
    width: auto;
    height: auto;
    margin: 28px auto;
    border-radius: var(--r-lg);
    box-shadow: 0 6px 24px rgba(6,6,62,0.10);
  }
  .feature-photo--banner {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
  }

  /* ═══════════════════════════════════════════
     COHERENCE CARDS — chapter models & curriculum programs
     ═══════════════════════════════════════════ */
  .cc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 28px 0 8px;
  }
  /* de-telled panel: soft fill + accent top-rule, no kit-border, no icon chip */
  .cc-card {
    background: var(--brand-pale);
    border-radius: var(--r-lg);
    border-top: 3px solid var(--brand);
    padding: 30px 28px;
    overflow: hidden;
    transition: box-shadow 0.18s, transform 0.18s;
  }
  /* interactive variant — only where the whole card is a real link */
  a.cc-card { display: block; text-decoration: none; color: inherit; }
  a.cc-card:hover {
    box-shadow: 0 10px 30px rgba(6,6,62,0.12);
    transform: translateY(-3px);
  }
  a.cc-card:hover .cc-go { gap: 11px; color: var(--brand-mid); }
  .cc-go {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.86rem;
    color: var(--brand);
    text-decoration: none;
    transition: gap 0.18s, color 0.18s;
  }
  a.cc-go:hover { gap: 11px; color: var(--brand-mid); }
  .cc-img {
    margin: -30px -28px 22px;
    height: 116px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
  }
  .cc-img img { max-width: 100%; max-height: 100%; width: auto; object-fit: contain; display: block; }
  .home-connect { background: var(--brand-pale); padding: clamp(48px, 6vw, 80px) 0; }
  .connect-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 28px; align-items: center; }
  .connect-grid .section-h { font-size: 1.6rem; margin-bottom: 4px; }
  .connect-form { background: #fff; border-radius: var(--r-lg); padding: clamp(26px, 3.5vw, 40px); box-shadow: 0 10px 30px rgba(6,6,62,0.08); }
  .connect-form > p { color: var(--ink-soft); margin: 8px 0 20px; }
  .connect-donate {
    background: linear-gradient(160deg, var(--navy) 0%, var(--brand) 100%);
    color: #fff;
    border-radius: var(--r-lg);
    padding: clamp(28px, 3.5vw, 40px);
  }
  .connect-donate .section-h { color: #fff; }
  .connect-intro { color: rgba(255,255,255,0.85); margin: 8px 0 0; }
  .connect-gifts { margin: 14px 0 24px 18px; color: rgba(255,255,255,0.85); font-size: 0.96rem; line-height: 1.85; }
  .connect-trust { margin: 20px 0 0; font-size: 0.76rem; color: rgba(255,255,255,0.62); }
  .grecaptcha-badge { visibility: hidden !important; }
  .ft-recaptcha { margin-top: 16px; font-size: 0.7rem; color: rgba(255,255,255,0.42); line-height: 1.5; }
  .ft-recaptcha a { color: rgba(255,255,255,0.6); text-decoration: underline; }
  @media (max-width: 760px) { .connect-grid { grid-template-columns: 1fr; } }
  .cc-card h3 {
    font-family: var(--font-serif);
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 4px;
  }
  .cc-meta {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-mid);
    margin: 0 0 12px;
  }
  .cc-card p {
    font-size: 0.94rem;
    color: var(--ink-soft);
    line-height: 1.7;
    margin: 0;
  }
  .cc-card p + p { margin-top: 12px; }

  /* ═══════════════════════════════════════════
     QUOTE BAND — single pull-quote on navy
     ═══════════════════════════════════════════ */
  .quote-band {
    background: var(--navy-mid);
    color: white;
    padding: 72px 0;
  }
  .quote-band .wrap { max-width: 760px; text-align: center; }
  .pq-mark {
    font-family: var(--font-serif);
    font-size: 3.4rem;
    line-height: 0.4;
    color: #fde9c4;
    display: block;
    margin-bottom: 8px;
  }
  .pq {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.25rem, 2.4vw, 1.6rem);
    line-height: 1.5;
    margin: 0 0 22px;
  }
  .pq-who {
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.62);
  }
  /* ═══════════════════════════════════════════
     LP STEPS — numbered process with circled numbers
     ═══════════════════════════════════════════ */
  .lp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
  }
  .lp-step { text-align: center; }
  .lp-step-n {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    box-shadow: 0 4px 14px rgba(6,6,62,0.18);
  }
  .lp-step h3 {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
  }
  .lp-step p {
    font-size: 1.02rem;
    color: var(--ink-soft);
    line-height: 1.7;
    max-width: 340px;
    margin: 0 auto;
  }
  .cg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .cg-list {
    color: var(--ink-soft);
    margin: 18px 0 30px 20px;
    font-size: 1.08rem;
    line-height: 1.95;
  }
  .cg-photo img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--r-lg);
    box-shadow: 0 8px 30px rgba(6,6,62,0.14);
    display: block;
  }
  @media (max-width: 760px) {
    .cg-grid { grid-template-columns: 1fr; gap: 28px; }
  }

  @media (max-width: 760px) {
    .cc-grid { grid-template-columns: 1fr; gap: 18px; }
    .lp-steps { grid-template-columns: 1fr; gap: 30px; max-width: 360px; margin: 0 auto; }
    .quote-band { padding: 56px 0; }
  }

  /* ═══════════════════════════════════════════
     ANCHOR OFFSET — clear the sticky header (~101px)
     when jumping to a #topic section
     ═══════════════════════════════════════════ */
  .lp-section[id] { scroll-margin-top: 116px; }

  /* ═══════════════════════════════════════════
     TOPIC RESOURCES — external help links per topic
     ═══════════════════════════════════════════ */
  .topic-resources {
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
  }
  .topic-resources .res-label {
    font-family: var(--font-sans);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--brand);
    margin: 0 0 14px;
  }
  .topic-resources ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    max-width: 640px;
  }
  .topic-resources li { margin: 0; line-height: 1.4; }
  .topic-resources a {
    color: var(--ink-soft);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: color 0.15s, border-color 0.15s;
  }
  .topic-resources a:hover { color: var(--brand); border-color: var(--brand); }
  .topic-resources a::after {
    content: " \2197";
    color: var(--ink-muted);
    font-weight: 400;
    font-size: 0.85em;
  }
  .topic-resources .res-src {
    color: var(--ink-soft);
    font-weight: 400;
    font-size: 0.92em;
  }

  /* Programs — quiet self-route row beneath the closing form */
  .self-route {
    max-width: 620px;
    margin: 26px auto 0;
    text-align: center;
    font-size: 0.92rem;
    color: var(--ink-soft);
  }
  .self-route a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
  }
  .self-route a:hover { border-bottom-color: var(--brand); }

  /* Programs — topic chips read as links via a trailing arrow */
  .tag-arr {
    color: var(--brand);
    opacity: 0.75;
    transition: opacity 0.2s, transform 0.2s;
    display: inline-block;
  }
  .tag:hover .tag-arr { opacity: 1; transform: translateX(2px); }

  /* For Funders — annual impact band (current-year numbers) */
  .annual-impact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 8px;
  }
  .ai-stat { text-align: center; }
  .ai-n {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--brand);
    line-height: 1;
  }
  .ai-l {
    margin-top: 10px;
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.4;
  }
  .ai-l span { display: block; font-size: 0.8rem; opacity: 0.82; margin-top: 4px; }
  .ai-note {
    text-align: center;
    max-width: 680px;
    margin: 32px auto 0;
    font-size: 0.92rem;
    color: var(--ink-soft);
    font-style: italic;
  }
  @media (max-width: 720px) {
    .annual-impact { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  }

  /* Programs — split hero: text left, image right */
  .page-hero--split { padding: 64px 0; }
  .hero-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 52px;
    align-items: stretch;
  }
  .hero-split-text { max-width: 600px; align-self: center; }
  .hero-split-media {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.34);
    min-height: 340px;
  }
  .hero-split-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  @media (max-width: 860px) {
    .hero-split { grid-template-columns: 1fr; gap: 28px; }
    .hero-split-text { max-width: none; }
    .hero-split-media { min-height: 280px; }
  }

  /* Programs — slim proof strip under the hero intro */
  .hero-proof {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    max-width: 620px;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
  }
  .hero-proof .sep { opacity: 0.45; margin: 0 9px; }

  /* Programs — editorial split for the two delivery modes (borderless, centre rule) */
  .split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 28px 0 8px;
  }
  .split-col { padding: 6px 48px; }
  .split-col::before {
    content: '';
    display: block;
    width: 44px;
    height: 3px;
    background: var(--brand);
    border-radius: 2px;
    margin-bottom: 18px;
  }
  .split-col:first-child { padding-left: 0; }
  .split-col:last-child { padding-right: 0; }
  .split-col + .split-col { border-left: 1px solid var(--border); }
  .split-col h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--ink);
    margin: 0 0 14px;
  }
  .split-col p:not(.cc-meta) {
    font-size: 0.97rem;
    color: var(--ink-soft);
    line-height: 1.7;
    margin: 0;
  }
  @media (max-width: 760px) {
    .split-grid { grid-template-columns: 1fr; }
    .split-col { padding: 0; }
    .split-col + .split-col {
      border-left: 0;
      border-top: 1px solid var(--border);
      padding-top: 26px;
      margin-top: 26px;
    }
  }

  /* Programs — "Two ways" delivery modes on a navy band */
  .modes-band {
    background: linear-gradient(160deg, var(--navy) 0%, var(--brand-mid) 100%);
    padding: clamp(56px, 7vw, 84px) 0;
  }
  .modes-band .section-h { color: #fff; }
  .modes-band .split-col::before { background: rgba(255, 255, 255, 0.55); }
  .modes-band .split-col h3 { color: #fff; }
  .modes-band .split-col p:not(.cc-meta) { color: rgba(255, 255, 255, 0.82); }
  .modes-band .split-col + .split-col { border-left-color: rgba(255, 255, 255, 0.18); }
  .modes-band .cc-go { color: #fff; }
  .modes-band .cc-go:hover { color: rgba(255, 255, 255, 0.78); }
