/*
Theme Name: Hands4Hope LA
Theme URI: https://hands4hope.org
Description: Hands4Hope LA child theme for GeneratePress. Carries the approved A2 editorial design system (the "facsimile" of the signed-off mockup). Handoff-ready: no premium plugins, no personal licenses. All design tokens and section styles are documented and version-controlled.
Author: Nick Lanoil, Maverick
Template: generatepress
Version: 0.3.0
Requires at least: 6.0
Tested up to: 6.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: h4h
*/

/* =====================================================================
   HANDS4HOPE LA — A2 DESIGN SYSTEM
   Ported wholesale from the approved mockup (index/homepage-a-arch).
   Do not restyle by eye. This CSS is the source of truth for the look.
   Fonts (Montserrat / Source Sans 3 / Caveat) are enqueued in functions.php.
   Tokens live in :root, below.
   ===================================================================== */
:root {
    --navy: #17395C;
    --navy-dark: #0F263E;
    --gold: #E9A13B;
    --hand-red: #D6402B;
    --hand-purple: #7B4FA0;
    --hand-green: #4C8F4C;
    --hand-orange: #E88024;
    --hand-blue: #2B6CB8;
    --text: #22303F;
    --text-soft: #5A6878;
    --bg: #FFFFFF;
    --bg-soft: #F7F5F1;
    --line: #E5E3DD;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; animation: none !important; }
  }
  body {
    font-family: 'Source Sans 3', system-ui, sans-serif;
    background: var(--bg); color: var(--text);
    font-size: 17px; line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; display: block; }
  .wrap { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
  .narrow { max-width: 720px; margin: 0 auto; padding: 0 32px; }

  .skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 100;
    background: var(--navy); color: #fff; padding: 12px 20px;
    font-weight: 700; text-decoration: none;
  }
  .skip-link:focus { left: 16px; top: 16px; }
  a:focus-visible, button:focus-visible, input:focus-visible {
    outline: 3px solid transparent; outline-offset: 3px; border-radius: 2px;
    box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--navy);
  }

  h1, h2, h3 { font-family: 'Montserrat', sans-serif; }

  .btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 50px; padding: 13px 32px;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15.5px;
    text-transform: uppercase; text-decoration: none;
    border: none; cursor: pointer; transition: background-color .15s ease;
  }
  .btn-gold { background: var(--gold); color: var(--navy-dark); }
  .btn-gold:hover { background: #D18E2C; }
  .btn-navy { background: var(--navy); color: #fff; }
  .btn-navy:hover { background: var(--navy-dark); }
  .btn-white { background: #fff; color: var(--navy); }
  .btn-white:hover { background: #EFEAE0; }

  /* Photo language: straight crops + captions. No masks, no blobs. */
  figure { margin: 0; }
  figcaption {
    font-size: 13.5px; color: var(--text-soft); padding-top: 10px;
    border-top: 2px solid var(--gold); margin-top: 0; display: inline-block;
  }
  .ph { position: relative; overflow: hidden; background: var(--bg-soft); }
  .ph img { width: 100%; height: 100%; object-fit: cover; }
  .swap {
    position: absolute; top: 10px; left: 10px; z-index: 5;
    font-size: 11px; font-weight: 700; letter-spacing: .03em;
    background: #FFF176; color: #7A1F1F;
    border: 2px dashed #D6402B; padding: 6px 10px;
    transform: rotate(-2deg); box-shadow: 2px 3px 8px rgba(0,0,0,.25);
  }
  .swap::before { content: "NOTE TO TEAM: "; font-weight: 800; }
  .visually-hidden {
    position: absolute; width: 1px; height: 1px; overflow: hidden;
    clip: rect(0 0 0 0); white-space: nowrap;
  }
  .chip {
    display: inline-block; font-size: 11.5px; font-weight: 700;
    background: #FFF176; color: #7A1F1F;
    border: 2px dashed #D6402B; padding: 6px 12px; letter-spacing: .02em;
    transform: rotate(-1deg); box-shadow: 2px 3px 8px rgba(0,0,0,.2);
  }
  .chip::before { content: "NOTE TO TEAM: "; font-weight: 800; }
  .concept-note {
    background: #22303F; color: #fff; font-size: 12.5px;
    text-align: center; padding: 7px 16px;
  }

  /* Header */
  header { background: var(--navy); }
  .nav {
    display: flex; align-items: center; gap: 8px; min-height: 80px;
    padding-left: max(32px, calc((100vw - 1280px) / 2));
  }
  .brand { display: flex; align-items: center; gap: 12px; text-decoration: none; padding: 8px 0; margin-right: 24px; }
  .brand img { width: 46px; height: 46px; background: #fff; border-radius: 50%; padding: 3px; flex: none; }
  .brand .name {
    font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 20px;
    color: #fff; white-space: nowrap;
  }
  nav.menu { display: flex; gap: 30px; margin-left: auto; margin-right: 26px; }
  nav.menu a {
    color: #fff; text-decoration: none; white-space: nowrap;
    font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14.5px; padding: 10px 0;
  }
  nav.menu a:hover { text-decoration: underline; text-underline-offset: 6px; }
  .lang-toggle {
    background: transparent; border: none; color: #fff;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13.5px;
    padding: 10px 8px; margin-right: 18px; cursor: pointer; min-height: 44px;
    text-decoration: underline; text-underline-offset: 5px; white-space: nowrap;
    text-decoration-color: rgba(255,255,255,.5);
  }
  .lang-toggle:hover { text-decoration-color: #fff; }
  .menu-btn {
    display: none; background: transparent; border: none; cursor: pointer;
    width: 46px; height: 44px; padding: 10px; margin-left: auto; margin-right: 4px;
    flex-direction: column; justify-content: center; gap: 5px;
  }
  .menu-btn span { display: block; height: 3px; background: #fff; border-radius: 2px; }
  .mobile-menu {
    background: var(--navy-dark); padding: 18px 32px 26px;
    display: flex; flex-direction: column; gap: 4px;
  }
  .mobile-menu[hidden] { display: none; }
  @media (min-width: 1001px) { .mobile-menu { display: none !important; } }
  .mobile-menu a {
    color: #fff; text-decoration: none; font-family: 'Montserrat', sans-serif;
    font-weight: 600; font-size: 17px; padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .mobile-menu a.btn { border-bottom: none; }
  .donate-tab {
    background: var(--gold); color: var(--navy-dark);
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px;
    text-decoration: none; align-self: stretch; white-space: nowrap;
    display: flex; align-items: center; padding: 0 clamp(32px, 3.5vw, 56px);
  }
  .donate-tab:hover { background: #D18E2C; }

  /* HERO */
  .hero { background: var(--navy); color: #fff; }
  .hero-grid {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 45% 55%; align-items: stretch;
    padding-bottom: clamp(40px, 4.5vw, 72px);
  }
  .hero-copy { padding: clamp(56px, 7vw, 104px) 48px clamp(56px, 7vw, 104px) 32px; align-self: center; }
  .hero h1 {
    font-weight: 800; text-transform: uppercase;
    font-size: clamp(34px, 4.2vw, 56px); line-height: 1.07;
  }
  .hero h1 .gold { color: var(--gold); }
  .hero .sub { margin-top: 20px; font-size: 18px; color: rgba(255,255,255,.85); max-width: 26em; }
  .hero-ctas { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
  .hero .ph { min-height: 480px; height: 100%; }
  .hero .ph img { filter: saturate(1.08) contrast(1.04); }
  .hero-caption {
    position: absolute; left: 0; bottom: 0; right: 0;
    background: linear-gradient(transparent, rgba(15,38,62,.82));
    color: #fff; font-size: 13.5px; padding: 40px 20px 14px;
  }

  /* Belief line */
  .belief { padding: clamp(72px, 9vw, 128px) 0; }
  .belief p {
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: clamp(26px, 3.4vw, 44px); line-height: 1.22; color: var(--navy);
    letter-spacing: -.01em;
  }
  .belief p em { font-style: normal; color: var(--hand-red); }
  .belief .attribution { margin-top: 18px; font-size: 15px; color: var(--text-soft); font-family: 'Source Sans 3', sans-serif; font-weight: 400; }

  /* Mission: statement scale, shared left edge */
  .mission { padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 6vw, 80px); }
  .mission h2 {
    font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
    color: var(--hand-red); font-weight: 700; font-family: 'Montserrat', sans-serif;
  }
  .mission .statement {
    margin-top: 18px; max-width: 30em;
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: clamp(22px, 2.6vw, 32px); line-height: 1.4; color: var(--navy);
    letter-spacing: -.01em;
  }
  .mission .statement em { font-style: normal; color: var(--hand-red); }

  /* Full-bleed strip */
  .strip { position: relative; }
  .strip .ph { height: min(56vh, 520px); }
  .belief-overlay {
    position: absolute; inset: 0; display: flex; align-items: center;
    background: linear-gradient(100deg, rgba(15,38,62,.86) 0%, rgba(15,38,62,.52) 42%, rgba(15,38,62,.12) 72%, rgba(15,38,62,0) 100%);
    padding: 0 max(32px, calc((100vw - 1160px) / 2));
  }
  .belief-overlay p {
    font-family: 'Montserrat', sans-serif; font-weight: 800; color: #fff;
    font-size: clamp(28px, 3.8vw, 50px); line-height: 1.2; max-width: 16em;
    text-shadow: 0 2px 22px rgba(15,38,62,.55);
  }
  .strip figcaption { left: auto; right: max(32px, calc((100vw - 1160px) / 2)); }
  .belief-overlay em { font-style: normal; color: var(--gold); }
  .strip figcaption {
    position: absolute; left: max(32px, calc((100vw - 1160px) / 2)); bottom: 22px;
    background: rgba(255,255,255,.95); color: var(--text);
    border-top: none; border-left: 3px solid var(--gold);
    padding: 10px 16px; font-size: 14px; max-width: 420px;
  }

  /* Boutique: asymmetric editorial */
  .boutique { padding: clamp(56px, 7vw, 96px) 0; }
  .boutique-grid { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
  .boutique h2 {
    font-weight: 800; font-size: clamp(26px, 3vw, 38px); line-height: 1.16; color: var(--navy);
    max-width: 15em;
  }
  .boutique h2 em { font-style: normal; color: var(--hand-red); }
  .boutique .lead { margin-top: 22px; font-size: 18px; color: var(--text); max-width: 34em; }
  .fam { margin-top: 30px; border-top: 1px solid var(--line); }
  .fam-row { display: flex; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
  .fam-row .k {
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px;
    color: var(--navy); min-width: 11em;
  }
  .fam-row .v { font-size: 15.5px; color: var(--text-soft); }
  .boutique .ph { aspect-ratio: 4/5; }

  /* Programs: quieter cards */
  .programs { background: #fff; padding: clamp(56px, 7vw, 96px) 0; }
  .sec-h {
    font-weight: 800; text-transform: uppercase;
    font-size: clamp(24px, 2.8vw, 34px); color: var(--navy);
  }
  .sec-sub { margin-top: 14px; font-size: 17px; color: var(--text-soft); max-width: 40em; }
  .prog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 44px; }
  .prog { text-decoration: none; color: inherit; }
  .prog { transition: transform .18s ease; }
  .prog:hover { transform: translateY(-6px); }
  .prog .ph { aspect-ratio: 4/3.3; margin-bottom: 18px; border-bottom: 6px solid var(--navy); }
  .prog.pc-red .ph { border-color: var(--hand-red); }
  .prog.pc-purple .ph { border-color: var(--hand-purple); }
  .prog.pc-green .ph { border-color: var(--hand-green); }
  .prog.pc-orange .ph { border-color: var(--hand-orange); }
  .prog h3 {
    font-weight: 800; font-size: 20px; text-transform: uppercase; color: var(--navy);
    display: flex; align-items: center; gap: 10px;
  }
  .prog h3 .tick { width: 22px; height: 6px; flex: none; }
  .prog p { margin-top: 8px; font-size: 15px; color: var(--text-soft); }
  .prog .note { margin-top: 8px; font-size: 13.5px; font-weight: 700; }

  /* Money on super drive: pipeline */
  .pipeline { padding: clamp(72px, 9vw, 128px) 0; }
  .pipeline .kicker {
    font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
    color: var(--hand-red); font-weight: 700; font-family: 'Montserrat', sans-serif;
  }
  .pipeline h2 {
    margin-top: 12px; font-weight: 800;
    font-size: clamp(26px, 3.2vw, 40px); line-height: 1.15; color: var(--navy); max-width: 18em;
  }
  .steps { margin-top: 44px; max-width: 780px; }
  .steps-photo { max-width: 360px; margin-top: 40px; }
  @media (min-width: 1001px) {
    .pipeline .wrap { position: relative; }
    .steps-photo { position: absolute; right: 32px; top: 140px; }
  }
  .step-row { display: flex; gap: 30px; padding: 26px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
  .step-row:first-child { border-top: 2px solid var(--navy); }
  .step-n {
    font-family: 'Montserrat', sans-serif; font-weight: 800;
    font-size: clamp(38px, 4vw, 54px); line-height: 1; min-width: 1.5em;
  }
  .step-row h3 { font-size: 19px; font-weight: 700; color: var(--navy); }
  .step-row p { margin-top: 6px; font-size: 15.5px; color: var(--text-soft); max-width: 36em; }
  .protagonist {
    display: grid; grid-template-columns: 4fr 8fr; gap: clamp(32px, 4vw, 64px);
    align-items: center; margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--line);
  }
  .protagonist .kick {
    font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
    color: var(--hand-red); font-weight: 700; font-family: 'Montserrat', sans-serif;
  }
  .protagonist h3 {
    margin-top: 12px; font-weight: 800; font-size: clamp(21px, 2.3vw, 28px);
    color: var(--navy); line-height: 1.25;
  }
  .protagonist p { margin-top: 12px; font-size: 16px; color: var(--text-soft); max-width: 36em; }
  .gift-table { margin-top: 56px; border-top: 2px solid var(--navy); max-width: 760px; }
  a.amt {
    text-decoration: none; background: var(--navy); color: #fff !important;
    padding: 8px 16px; transition: background-color .15s;
    font-size: 22px !important; min-width: 0 !important;
  }
  a.amt:hover { background: var(--hand-red); }
  .case-block {
    background: var(--bg-soft); border: 1px solid var(--line);
    padding: clamp(32px, 4vw, 56px); margin-top: 56px;
  }
  .case-credit { font-size: 17px; color: var(--navy); }
  .ucla-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 4vw, 56px); margin-top: 28px;
  }
  .ustat { border-top: 5px solid var(--navy); padding-top: 18px; }
  .ustat .n {
    font-family: 'Montserrat', sans-serif; font-weight: 800;
    font-size: clamp(30px, 3.2vw, 44px); color: var(--navy); line-height: 1;
    font-variant-numeric: tabular-nums;
  }
  .ustat .l { margin-top: 8px; font-size: 15px; font-weight: 600; color: var(--text); }
  .ustat .story { margin-top: 6px; font-size: 14.5px; font-style: italic; color: var(--text-soft); }
  .trust-strip-inner { margin-top: 40px; border-top: 1px solid var(--line); padding-top: 28px; }
  .trust-strip-inner > p { font-size: 14px; font-weight: 600; color: var(--text-soft); margin-bottom: 16px; }
  .logo-marquee { overflow: hidden; position: relative; }
  .logo-marquee::before, .logo-marquee::after {
    content: ""; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2;
  }
  .logo-marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-soft), transparent); }
  .logo-marquee::after { right: 0; background: linear-gradient(270deg, var(--bg-soft), transparent); }
  .logo-track {
    display: flex; gap: 14px; width: max-content;
    animation: marquee 36s linear infinite;
  }
  .logo-marquee:hover .logo-track { animation-play-state: paused; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @media (prefers-reduced-motion: reduce) {
    .logo-track { animation: none; flex-wrap: wrap; width: auto; }
    .logo-track span:nth-child(n+13) { display: none; }
  }
  .logo-track span {
    background: #fff; border: 1px solid var(--line); height: 150px; width: 290px; flex: none;
    display: flex; align-items: center; justify-content: center; padding: 20px 26px;
  }
  @media (max-width: 700px) { .logo-track span { height: 104px; width: 200px; } }
  .logo-track img { max-height: 100%; max-width: 100%; width: auto; height: auto; object-fit: contain; }
  .trust-strip-inner a.more { font-size: 14px; font-weight: 700; color: var(--navy); }
  .case-cta { margin-top: 36px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
  .case-cta .micro { font-size: 13.5px; color: var(--text-soft); max-width: 30em; }
  @media (max-width: 700px) { .ucla-row { grid-template-columns: 1fr; gap: 24px; } }
  .trust-strip { margin-top: 56px; }
  .trust-strip p {
    font-size: 14px; font-weight: 600; color: var(--text-soft); margin-bottom: 18px;
  }
  .trust-strip .logos { display: flex; gap: 34px; align-items: center; flex-wrap: wrap; }
  .trust-strip img { height: 44px; width: auto; filter: grayscale(1); opacity: .72; }
  .trust-strip a.more { font-size: 14px; font-weight: 700; color: var(--navy); }
  .gift-row {
    display: flex; gap: 24px; align-items: baseline;
    padding: 18px 0; border-bottom: 1px solid var(--line);
  }
  .gift-row .amt {
    font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 26px;
    color: var(--navy); min-width: 3.6em;
  }
  .gift-row .what { font-size: 16.5px; }
  .gift-fine { margin-top: 14px; font-size: 13px; color: var(--text-soft); font-style: italic; }
  .pipeline .cta-row { margin-top: 36px; }

  /* Posters: one real artifact, featured */
  .posters { background: var(--navy); color: #fff; padding: clamp(72px, 9vw, 120px) 0; }
  .posters-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
  .posters .ph { aspect-ratio: 4/5; background: #24466B; }
  .posters .kicker {
    font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
    color: var(--gold); font-weight: 700; font-family: 'Montserrat', sans-serif;
  }
  .posters blockquote {
    margin-top: 20px; font-family: 'Caveat', cursive; font-weight: 600;
    font-size: clamp(30px, 3.6vw, 44px); line-height: 1.25; color: #fff;
  }
  .posters .who { margin-top: 16px; font-size: 15px; color: rgba(255,255,255,.7); }
  .posters .more { margin-top: 30px; font-size: 15px; color: rgba(255,255,255,.85); max-width: 34em; }
  .posters .chip { margin-top: 20px; }

  /* Showcase */
  .showcase { padding: clamp(56px, 7vw, 96px) 0; }
  .showcase-grid { display: grid; grid-template-columns: 6fr 6fr; gap: clamp(40px, 5vw, 72px); align-items: center; }
  .credit-tag {
    display: inline-block; background: var(--hand-purple); color: #fff;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12px;
    text-transform: uppercase; letter-spacing: .05em; padding: 6px 12px; margin-bottom: 16px;
  }
  .showcase h2 { font-weight: 800; font-size: clamp(24px, 2.8vw, 34px); color: var(--navy); }
  .showcase p { margin-top: 14px; font-size: 16.5px; color: var(--text-soft); max-width: 32em; }
  .showcase .btn { margin-top: 26px; }
  .film-card {
    background: #1B1B1F; position: relative; aspect-ratio: 16/9;
    display: flex; align-items: center; justify-content: center; text-decoration: none;
  }
  .film-card .play { position: relative; z-index: 2; transition: transform .15s ease; }
  .film-card:hover .play { transform: scale(1.08); }
  .film-card .film-meta {
    position: absolute; z-index: 2; left: 16px; bottom: 12px; color: #fff;
    font-size: 13.5px; font-weight: 600; text-shadow: 0 1px 8px rgba(0,0,0,.7);
  }
  .film-card .play {
    width: 70px; height: 70px; border-radius: 50%;
    background: var(--gold); display: flex; align-items: center; justify-content: center;
  }
  .film-card .play::after {
    content: ""; display: block; margin-left: 6px;
    border-left: 20px solid var(--navy-dark);
    border-top: 13px solid transparent; border-bottom: 13px solid transparent;
  }
  .film-meta {
    position: absolute; left: 16px; bottom: 12px; color: rgba(255,255,255,.85);
    font-size: 13px; font-weight: 600;
  }

  /* Pathways */
  .involved { background: var(--bg-soft); padding: clamp(72px, 9vw, 120px) 0; }
  .path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 44px; }
  .path { background: #fff; border: 1px solid var(--line); padding: 34px 30px; display: flex; flex-direction: column; min-height: 250px; }
  .path h3 { font-weight: 700; font-size: 18px; text-transform: uppercase; color: var(--navy); }
  .path p { margin-top: 10px; flex: 1; font-size: 15px; color: var(--text-soft); }
  .path .btn { align-self: flex-start; margin-top: 22px; }
  .path.donor { background: var(--navy); border-color: var(--navy); }
  .path.donor h3 { color: var(--gold); }
  .path.donor p { color: rgba(255,255,255,.85); }

  .event-row {
    display: flex; gap: 28px; align-items: center; margin-top: 44px;
    border: 1px solid var(--line); background: #fff; padding: 26px 32px; flex-wrap: wrap;
  }
  .event-row .date {
    font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase;
    color: var(--hand-red); font-size: 14px; letter-spacing: .08em;
  }
  .event-row h3 { font-size: 20px; font-weight: 700; color: var(--navy); }
  .event-row p { color: var(--text-soft); font-size: 15px; }
  .event-row .grow { flex: 1; min-width: 240px; }

  /* Footer */
  footer { background: var(--navy-dark); color: #fff; padding: 72px 0 36px; }
  .foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 48px; }
  footer h4 {
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px;
    text-transform: uppercase; margin-bottom: 18px; color: var(--gold);
  }
  footer a { color: #fff; text-decoration: none; }
  footer a:hover { text-decoration: underline; }
  footer li { list-style: none; margin-bottom: 11px; font-size: 15px; }
  .foot-brand { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 20px; margin-bottom: 14px; }
  .foot-legal { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.8); }
  .news label { display: block; font-size: 14.5px; margin-bottom: 8px; }
  .news input {
    width: 100%; min-height: 48px; padding: 0 16px;
    border: none; font-family: inherit; font-size: 15px; margin-bottom: 12px;
  }
  .news .btn { width: 100%; }
  .foot-bottom {
    border-top: 1px solid rgba(255,255,255,.2); margin-top: 52px; padding-top: 22px;
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px;
    color: rgba(255,255,255,.65);
  }
  .foot-bottom a { color: rgba(255,255,255,.85); }

  @media (max-width: 1000px) {
    nav.menu { display: none; }
    .menu-btn { display: flex; }
    .lang-toggle { margin-left: 0; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero .ph { min-height: 340px; }
    .hero-copy { padding: 52px 32px; }
    .boutique-grid, .posters-grid, .showcase-grid, .valley-grid { grid-template-columns: 1fr; gap: 40px; }
    .protagonist { grid-template-columns: 1fr; gap: 28px; }
    .protagonist .ph { max-width: 380px; }
    .fam-row { flex-direction: column; gap: 4px; }
    .fam-row .k { min-width: 0; }
    .prog-grid { grid-template-columns: repeat(2, 1fr); }
    .tag-grid, .tag-grid-2 { grid-template-columns: 1fr; }
    .pipe-grid { grid-template-columns: 1fr; }
    .path-grid { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 560px) { .prog-grid { grid-template-columns: 1fr; } }
  /* Four pillars */
  .pillars { background: #fff; padding: 0 0 clamp(56px, 7vw, 88px); }
  .pillars .kick {
    font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
    color: var(--hand-red); font-weight: 700; font-family: 'Montserrat', sans-serif;
  }
  .pillars h2 { margin-top: 12px; font-weight: 800; font-size: clamp(24px, 2.8vw, 34px); color: var(--navy); }
  .pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 44px; }
  .pillar { text-align: center; }
  .pillar .hand { width: 76px; height: 91px; margin: 0 auto; display: block; }
  .pillar h3 { margin-top: 14px; font-weight: 800; font-size: 17px; text-transform: uppercase; color: var(--navy); }
  .pillar p { margin-top: 8px; font-size: 14.5px; color: var(--text-soft); }
  .pillars .fine { margin-top: 30px; font-size: 13px; color: var(--text-soft); font-style: italic; text-align: center; }

  /* Name tags */
  .tag-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .tag-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin-left: auto; margin-right: auto; }
  .tag-grid-2 .nametag:nth-child(1) { transform: rotate(1deg); }
  .tag-grid-2 .nametag:nth-child(2) { transform: rotate(-1.3deg); }
  .nametag .translation { display: block; margin-top: 6px; font-size: 13px; font-style: italic; color: #6B7684; }
  .nametag {
    background: #FDFCF8; border-radius: 12px; overflow: hidden;
    box-shadow: 0 12px 26px rgba(0,0,0,.3); transform: rotate(-1.6deg);
  }
  .nametag:nth-child(2) { transform: rotate(1.2deg); }
  .nametag:nth-child(3) { transform: rotate(-0.7deg); }
  .nametag .head { background: var(--hand-red); color: #fff; text-align: center; padding: 12px 10px 9px; }
  .nametag .head .hello { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 19px; letter-spacing: .04em; }
  .nametag .head .small { font-size: 10.5px; font-weight: 600; margin-top: 1px; }
  .nametag .kid-name {
    font-family: 'Caveat', cursive; font-weight: 600; font-size: 38px; color: #1E2B39;
    text-align: center; padding: 10px 14px 6px; border-bottom: 1px dashed #C9C2B4; margin: 0 18px;
  }
  .nametag .quote {
    font-family: 'Source Sans 3', sans-serif; font-weight: 400; font-size: 15.5px; line-height: 1.55;
    color: #33404E; padding: 14px 22px 24px; text-align: center;
  }

  /* Valley map */
  .valley { background: var(--bg-soft); padding: clamp(56px, 7vw, 96px) 0; }
  .valley-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
  .valley .kick {
    font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
    color: var(--hand-red); font-weight: 700; font-family: 'Montserrat', sans-serif;
  }
  .valley h2 { margin-top: 12px; font-weight: 800; font-size: clamp(24px, 2.8vw, 34px); color: var(--navy); }
  .valley .body { margin-top: 16px; font-size: 16.5px; color: var(--text-soft); max-width: 30em; }
  .valley .map-note { margin-top: 18px; font-size: 13.5px; color: var(--text-soft); font-style: italic; }
  .map-svg { width: 100%; height: auto; display: block; }
  .map-list { display: none; list-style: none; margin-top: 8px; }
  .map-list li { display: flex; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 15.5px; }
  .map-list .dot { width: 13px; height: 13px; border-radius: 50%; flex: none; }
  @media (max-width: 640px) {
    .map-svg { display: none; }
    .map-list { display: block; }
    .brand .name { font-size: 16px; }
    .brand img { width: 40px; height: 40px; }
    .lang-toggle { font-size: 12px; margin-right: 6px; padding: 10px 4px; }
    .donate-tab { padding: 0 16px; font-size: 14px; }
    .nav { padding-left: 16px; gap: 4px; }
  }
  @media (max-width: 420px) {
    .brand .name { display: none; }
  }

  body.clean .swap, body.clean .chip, body.clean .concept-note { display: none !important; }
  @media (max-width: 1000px) {
    .valley-grid { grid-template-columns: 1fr !important; gap: 36px; }
    .protagonist { grid-template-columns: 1fr !important; gap: 28px; }
    .protagonist .ph { max-width: 380px; }
  }
  @media (max-width: 640px) {
    .fam-row { flex-direction: column; gap: 4px; }
    .fam-row .k { min-width: 0; }
  }

/* ===== A2 VARIANT: Editorial + rounded photography (Angelica hybrid) ===== */
.hero .ph { border-radius: 300px 300px 18px 18px; overflow: hidden; }
.hero .ph .swap { top: 26px; left: 50%; transform: translateX(-50%) rotate(-2deg); width: max-content; max-width: 80%; }
.hero-caption { border-radius: 0 0 18px 18px; }
.btn { border-radius: 8px; }
.donate-tab { border-radius: 0; }
.prog .ph { border-radius: 16px; overflow: hidden; }
.film-card { border-radius: 18px; overflow: hidden; }
.pipeline figure img, .pipeline .ph img { border-radius: 16px; }
.case-block { border-radius: 20px; }

/* ===== MOBILE PACING PASS (feedback: "drags on" on phone) ===== */
@media (max-width: 700px) {
  .pillars, .programs, .showcase, .valley, .pipeline, .posters, .involved { padding-top: 44px !important; padding-bottom: 44px !important; }
  .hero .ph { min-height: 300px; }
  .strip .ph { height: 300px; }
  .mission { padding-top: 44px !important; padding-bottom: 44px !important; }
  .statement { font-size: 22px !important; }
  .prog-grid { gap: 20px; margin-top: 28px; }
  .pillar-grid { gap: 16px; margin-top: 24px; }
  .tag-grid { gap: 14px !important; margin-top: 24px !important; }
  .path-grid { gap: 16px; margin-top: 28px; }
  .case-block { padding: 24px 18px; margin-top: 36px; }
  .ucla-row { gap: 18px !important; margin-top: 18px; }
  .showcase-grid, .hero-grid { row-gap: 20px; }
  .pipeline figure { margin-top: 18px; }
  .hero-copy { padding-top: 36px !important; padding-bottom: 24px !important; }
  /* structural pacing: stop single-file stacking */
  .prog-grid { grid-template-columns: 1fr 1fr !important; }
  .prog .ph { aspect-ratio: 1/0.95; }
  .prog h3 { font-size: 16px; }
  .prog p { font-size: 13.5px; }
  .prog .note { font-size: 12px; }
  .pillar-grid { grid-template-columns: 1fr 1fr !important; }
  .pillar { padding: 18px 12px 16px; }
  .pillar .hand { width: 52px; height: 62px; }
  .pillar h3 { font-size: 15px; }
  .pillar p { font-size: 13px; }
  .tag-grid, .tag-grid-2 { display: flex !important; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px !important; padding-bottom: 12px; max-width: none !important; -webkit-overflow-scrolling: touch; }
  .nametag { min-width: 250px; flex: 0 0 250px; scroll-snap-align: center; }
  .swap { font-size: 9.5px; padding: 4px 8px; }
  /* pipeline compression */
  .step-row { gap: 16px; padding: 14px 0; }
  .step-row p { font-size: 14px; }
  .step-n { font-size: 26px !important; }
  .pipeline figure img, .pipeline .ph img { max-height: 240px; width: 100%; object-fit: cover; }
  .gift-table { margin-top: 28px; }
  .gift-row { padding: 12px 0 !important; }
  .fam-row { padding: 10px 0 !important; }
  .map-list li, .map-list > * { padding-top: 8px !important; padding-bottom: 8px !important; }
  .path { min-height: 0 !important; padding: 22px 20px !important; }
  footer .wrap { padding-top: 36px !important; padding-bottom: 20px !important; }
  footer nav, footer div { gap: 8px; }
  .protagonist img { width: 220px !important; height: 220px !important; margin: 0 auto; display: block; }
}

/* Programs nav dropdown */
.navdrop { position: relative; display: inline-block; }
.navdrop > a { display: inline-block; }
.dropmenu { display: none; position: absolute; top: 100%; left: -8px; background: #fff; min-width: 320px; box-shadow: 0 10px 30px rgba(15,38,62,.25); border-radius: 0 0 10px 10px; padding: 8px 0; z-index: 60; }
.navdrop:hover .dropmenu, .navdrop:focus-within .dropmenu { display: block; }
.dropmenu a { display: block; padding: 11px 18px; color: var(--navy) !important; font-size: 14.5px; text-decoration: none; font-weight: 600; }
.dropmenu a:hover, .dropmenu a:focus-visible { background: var(--bg-soft); color: var(--hand-red) !important; }
@media (max-width: 1000px) { .dropmenu { display: none !important; } }


/* =====================================================================
   INTERIOR PAGE STYLES (Programs, Stories, About, Get Involved,
   Partnerships, Contact). Appended for v0.3.0. Shared design-system
   tokens/rules live above. These are page-specific sections only.
   ===================================================================== */

/* --- [programs] --- */
/* ===== PROGRAMS PAGE ===== */
.hero.pgh h1 { font-size: clamp(30px, 3.6vw, 46px); }
.hero.pgh .ph { min-height: 420px; }
.deep { padding: clamp(48px, 6vw, 84px) 0; }
.deep + .deep { padding-top: 0; }
.deep .wrap { display: grid; grid-template-columns: 6fr 6fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.deep.flip .wrap > .txt { order: 2; }
.deep .ph { border-radius: 18px; overflow: hidden; aspect-ratio: 4/3.4; }
.deep .tick { display: inline-block; width: 26px; height: 7px; margin-bottom: 12px; }
.deep h2 { font-weight: 800; text-transform: uppercase; font-size: clamp(22px, 2.6vw, 32px); color: var(--navy); }
.deep .body { margin-top: 14px; font-size: 16.5px; color: var(--text-soft); max-width: 34em; }
.deep .fact { margin-top: 12px; font-size: 14px; font-weight: 700; color: var(--hand-red); }
.famband { background: var(--navy); color: #fff; padding: clamp(56px, 7vw, 96px) 0; }
.famband .wrap { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.famband h2 { font-weight: 800; font-size: clamp(24px, 2.8vw, 36px); line-height: 1.2; }
.famband h2 em { font-style: normal; color: var(--gold); }
.famband .row { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.famband .row .k { font-weight: 700; min-width: 150px; }
.famband .row .v { color: rgba(255,255,255,.85); font-size: 15px; }
.famband .ph { border-radius: 18px; overflow: hidden; background: none; }
.famband .ph img { border-radius: 18px; }
.famband figcaption { margin-top: 10px; font-size: 13.5px; color: rgba(255,255,255,.7); }
.logistics { background: var(--bg-soft); padding: clamp(40px, 5vw, 64px) 0; }
.logistics .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.logi { border-top: 4px solid var(--gold); padding-top: 12px; }
.logi:nth-child(2) { border-color: var(--hand-red); }
.logi:nth-child(3) { border-color: var(--hand-blue); }
.logi:nth-child(4) { border-color: var(--hand-green); }
.logi .big { font-family: Montserrat, sans-serif; font-weight: 800; font-size: 17px; color: var(--navy); }
.logi .sm { margin-top: 5px; font-size: 13.5px; color: var(--text-soft); }
@media (max-width: 900px) {
  .deep .wrap, .famband .wrap { grid-template-columns: 1fr; }
  .deep.flip .wrap > .txt { order: 0; }
  .deep .ph { aspect-ratio: 4/3; }
  .logistics .wrap { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 700px) {
  .deep { padding: 36px 0; }
  .deep + .deep { padding-top: 0; }
  .famband { padding: 44px 0 !important; }
  .hero.pgh .ph { min-height: 280px; }
}

/* --- [programs] --- */
/* Hero tiering: story page (rect photo, arch reserved for homepage) */
.hero.pgh .ph { border-radius: 18px !important; min-height: 380px; }
.hero.pgh .ph .swap { top: 14px; left: 14px; transform: rotate(-2deg); }
.hero.pgh .hero-grid { padding-top: clamp(24px, 3vw, 44px); }
.hero.pgh .ph { height: min(64vh, 580px); min-height: 0; }
.hero.pgh .ph img { width: 100%; height: 100%; object-fit: cover; }

/* --- [programs] --- */
/* Program directory */
.pdir { padding: clamp(48px, 6vw, 84px) 0; background: var(--bg-soft); }
.pdir-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 34px; }
.pcard { background: #fff; border: 1px solid var(--line); border-top: 5px solid var(--navy); border-radius: 12px; padding: 24px 24px 22px; display: flex; flex-direction: column; gap: 8px; }
.pcard h3 { font-weight: 800; font-size: 18px; color: var(--navy); }
.pcard p { font-size: 14.5px; color: var(--text-soft); flex: 1; }
.pcard .pbtn { align-self: flex-start; margin-top: 8px; padding: 10px 22px; font-size: 14px; }
@media (max-width: 700px) { .pdir-grid { grid-template-columns: 1fr; gap: 14px; } }

/* --- [stories] --- */
/* ===== STORIES PAGE ===== */
.hero.pgh h1 { font-size: clamp(30px, 3.6vw, 46px); }
.hero.pgh .ph { min-height: 420px; }
.storyblock { padding: clamp(56px, 7vw, 96px) 0; }
.storyblock .wrap { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.storyblock.alt { background: var(--bg-soft); }
.storyblock.alt .wrap > figure { order: 2; }
.storyblock h2 { font-weight: 800; font-size: clamp(22px, 2.6vw, 32px); color: var(--navy); }
.storyblock .body { margin-top: 14px; font-size: 16.5px; color: var(--text-soft); max-width: 36em; }
.storyblock .quote { margin-top: 16px; font-size: 18px; font-weight: 600; color: var(--navy); border-left: 4px solid var(--gold); padding-left: 16px; max-width: 30em; }
.storyblock .ph { border-radius: 18px; overflow: hidden; background: none; }
.storyblock .ph img { border-radius: 18px; }
.storyblock figcaption { margin-top: 10px; font-size: 13.5px; color: var(--text-soft); }
.films { background: var(--navy); color: #fff; padding: clamp(56px, 7vw, 96px) 0; }
.films h2 { font-weight: 800; font-size: clamp(24px, 2.8vw, 36px); }
.films h2 em { font-style: normal; color: var(--gold); }
.films .lede { margin-top: 12px; color: rgba(255,255,255,.85); max-width: 40em; }
.film-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 36px; }
.filmcard { background: rgba(255,255,255,.06); border-radius: 16px; overflow: hidden; text-decoration: none; color: inherit; display: block; }
.filmcard h3 { color: #fff; }
.filmcard:hover .pl span { transform: scale(1.08); }
.filmcard .pl span { transition: transform .15s ease; }
.filmcard .th { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.filmcard .th img { width: 100%; height: 100%; object-fit: cover; }
.filmcard .th .pl { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.filmcard .th .pl span { width: 58px; height: 58px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; }
.filmcard .th .pl svg { margin-left: 4px; }
.filmcard .meta { padding: 18px 20px 20px; }
.filmcard h3 { font-weight: 700; font-size: 18px; }
.filmcard p { margin-top: 6px; font-size: 14px; color: rgba(255,255,255,.75); }
.bignum { padding: clamp(56px, 7vw, 96px) 0; }
.bignum h2 { font-weight: 800; font-size: clamp(22px, 2.6vw, 32px); color: var(--navy); }
.bignum .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 36px; }
.bn { border-top: 5px solid var(--navy); padding-top: 14px; }
.bn:nth-child(4n+1) { border-color: var(--gold); }
.bn:nth-child(4n+2) { border-color: var(--hand-red); }
.bn:nth-child(4n+3) { border-color: var(--hand-blue); }
.bn:nth-child(4n+4) { border-color: var(--hand-green); }
.bn .n { font-family: Montserrat, sans-serif; font-weight: 800; font-size: clamp(26px, 2.6vw, 38px); color: var(--navy); font-variant-numeric: tabular-nums; }
.bn .l { margin-top: 6px; font-size: 14px; color: var(--text-soft); }
@media (max-width: 900px) {
  .storyblock .wrap { grid-template-columns: 1fr; }
  .storyblock.alt .wrap > figure { order: 0; }
  .film-grid { grid-template-columns: 1fr; }
  .bignum .grid { grid-template-columns: 1fr 1fr; gap: 18px; }
}
@media (max-width: 700px) {
  .storyblock, .films, .bignum { padding: 40px 0 !important; }
  .hero.pgh .ph { min-height: 280px; }
}

/* --- [stories,about] --- */
/* Hero tiering: story page (rect photo, arch reserved for homepage) */
.hero.pgh .ph { border-radius: 18px !important; min-height: 380px; }
.hero.pgh .ph .swap { top: 14px; left: 14px; transform: rotate(-2deg); }
.hero.pgh .hero-grid { padding-top: clamp(24px, 3vw, 44px); }

/* --- [stories] --- */
/* Stories opener: full-bleed */
.pgstrip { position: relative; }
.pgstrip .ph { height: min(64vh, 600px); }
.pgstrip .ov { position: absolute; inset: 0; display: flex; align-items: flex-end; background: linear-gradient(180deg, rgba(15,38,62,.15) 30%, rgba(15,38,62,.82) 100%); }
.pgstrip .ov .wrap { width: 100%; padding-bottom: clamp(28px, 4vw, 52px); }
.pgstrip h1 { font-weight: 800; text-transform: uppercase; color: #fff; font-size: clamp(30px, 3.8vw, 48px); line-height: 1.08; }
.pgstrip .sub { margin-top: 12px; color: rgba(255,255,255,.88); font-size: 17px; max-width: 44em; }
.pgstrip .swap { top: 14px; left: 14px; }
@media (max-width: 700px) { .pgstrip .ph { height: 420px; } .pgstrip .sub { font-size: 15px; } }

/* --- [about] --- */
.hero.pgh h1 { font-size: clamp(30px, 3.6vw, 46px); }
.hero.pgh .ph { min-height: 420px; }
.block { padding: clamp(56px, 7vw, 96px) 0; }
.block.soft { background: var(--bg-soft); }
.block h2 { font-weight: 800; text-transform: uppercase; font-size: clamp(22px, 2.6vw, 32px); color: var(--navy); }
.block .body { margin-top: 14px; font-size: 16.5px; color: var(--text-soft); max-width: 42em; }
.split .wrap { display: grid; grid-template-columns: 6fr 6fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.split .ph { border-radius: 18px; overflow: hidden; background: none; }
.split .ph img { border-radius: 18px; }
@media (max-width: 900px) { .split .wrap { grid-template-columns: 1fr; } }
@media (max-width: 700px) { .block { padding: 40px 0 !important; } .hero.pgh .ph { min-height: 280px; } }

.staff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 36px; }
.staffer { text-align: center; }
.staffer .pic { border-radius: 16px; overflow: hidden; aspect-ratio: 3/3.4; }
.staffer .pic img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.staffer h3 { margin-top: 12px; font-weight: 700; font-size: 16px; color: var(--navy); }
.staffer p { font-size: 13.5px; color: var(--text-soft); }
.timeline { margin-top: 30px; border-top: 2px solid var(--navy); max-width: 720px; }
.tl-row { display: flex; gap: 22px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.tl-row .yr { font-family: Montserrat, sans-serif; font-weight: 800; color: var(--hand-red); min-width: 64px; }
.tl-row .ev { color: var(--text-soft); font-size: 15.5px; }
@media (max-width: 700px) { .staff-grid { grid-template-columns: 1fr 1fr; gap: 14px; } }

/* --- [about] --- */
/* About opener: editorial statement, no photo */
.hero.nofig { padding: clamp(64px, 8vw, 120px) 0; }
.hero.nofig h1 { font-weight: 800; text-transform: uppercase; font-size: clamp(34px, 4.6vw, 62px); line-height: 1.06; max-width: 14em; }
.hero.nofig .sub { margin-top: 22px; font-size: 18px; color: rgba(255,255,255,.85); max-width: 40em; }
@media (max-width: 700px) { .hero.nofig { padding: 48px 0; } }

/* --- [get-involved] --- */
.hero.pgh h1 { font-size: clamp(30px, 3.6vw, 46px); }
.hero.pgh .ph { min-height: 420px; }
.block { padding: clamp(56px, 7vw, 96px) 0; }
.block.soft { background: var(--bg-soft); }
.block h2 { font-weight: 800; text-transform: uppercase; font-size: clamp(22px, 2.6vw, 32px); color: var(--navy); }
.block .body { margin-top: 14px; font-size: 16.5px; color: var(--text-soft); max-width: 42em; }
.split .wrap { display: grid; grid-template-columns: 6fr 6fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.split .ph { border-radius: 18px; overflow: hidden; background: none; }
.split .ph img { border-radius: 18px; }
@media (max-width: 900px) { .split .wrap { grid-template-columns: 1fr; } }
@media (max-width: 700px) { .block { padding: 40px 0 !important; } .hero.pgh .ph { min-height: 280px; } }

.role-list { margin-top: 26px; border-top: 2px solid var(--navy); max-width: 640px; }
.role { display: flex; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.role .k { font-weight: 700; color: var(--navy); min-width: 170px; }
.role .v { font-size: 15px; color: var(--text-soft); }
.gi-gifts { margin-top: 26px; border-top: 2px solid var(--navy); max-width: 640px; }

/* --- [get-involved] --- */
/* Hero tiering: utility page (compact) */
.hero.pgh .ph { border-radius: 18px !important; min-height: 300px; }
.hero.pgh .ph .swap { top: 14px; left: 14px; transform: rotate(-2deg); }
.hero.pgh .hero-copy { padding-top: clamp(40px, 5vw, 64px); padding-bottom: clamp(40px, 5vw, 64px); }
@media (max-width: 700px) { .hero.pgh .ph { min-height: 220px; } }
.hero.pgh .hero-grid { padding-top: clamp(24px, 3vw, 44px); }
.hero.pgh .ph { height: min(64vh, 580px); min-height: 0; }
.hero.pgh .ph img { width: 100%; height: 100%; object-fit: cover; }

/* --- [get-involved] --- */
/* Get Involved opener: mirrored split */
@media (min-width: 1001px) {
  .hero.flip .hero-grid { grid-template-columns: 55% 45%; }
  .hero.flip .hero-copy { order: 2; padding-left: 48px; padding-right: 32px; }
  .hero.flip figure.ph { order: 1; }
}

/* --- [partnerships] --- */
.hero.pgh h1 { font-size: clamp(30px, 3.6vw, 46px); }
.hero.pgh .ph { min-height: 420px; }
.block { padding: clamp(56px, 7vw, 96px) 0; }
.block.soft { background: var(--bg-soft); }
.block h2 { font-weight: 800; text-transform: uppercase; font-size: clamp(22px, 2.6vw, 32px); color: var(--navy); }
.block .body { margin-top: 14px; font-size: 16.5px; color: var(--text-soft); max-width: 42em; }
.split .wrap { display: grid; grid-template-columns: 6fr 6fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.split .ph { border-radius: 18px; overflow: hidden; background: none; }
.split .ph img { border-radius: 18px; }
@media (max-width: 900px) { .split .wrap { grid-template-columns: 1fr; } }
@media (max-width: 700px) { .block { padding: 40px 0 !important; } .hero.pgh .ph { min-height: 280px; } }

.funder-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 34px; }
.funder { background: #fff; border: 1px solid var(--line); border-radius: 12px; height: 96px; display: flex; align-items: center; justify-content: center; padding: 14px 18px; }
.funder img { max-height: 100%; max-width: 100%; object-fit: contain; }
.feat-funders { margin-top: 30px; border-top: 2px solid var(--navy); max-width: 720px; }
.ff-row { display: flex; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.ff-row .k { font-weight: 700; color: var(--navy); min-width: 240px; }
.ff-row .v { font-size: 15px; color: var(--text-soft); }
@media (max-width: 900px) { .funder-grid { grid-template-columns: repeat(2, 1fr); } .ff-row { flex-direction: column; gap: 4px; } }

/* --- [partnerships,contact] --- */
/* Hero tiering: utility page (compact) */
.hero.pgh .ph { border-radius: 18px !important; min-height: 300px; }
.hero.pgh .ph .swap { top: 14px; left: 14px; transform: rotate(-2deg); }
.hero.pgh .hero-copy { padding-top: clamp(40px, 5vw, 64px); padding-bottom: clamp(40px, 5vw, 64px); }
@media (max-width: 700px) { .hero.pgh .ph { min-height: 220px; } }
.hero.pgh .hero-grid { padding-top: clamp(24px, 3vw, 44px); }

/* --- [partnerships] --- */
/* Partnerships opener: compact band */
.hero.nofig { padding: clamp(48px, 6vw, 80px) 0; }
.hero.nofig h1 { font-weight: 800; text-transform: uppercase; font-size: clamp(30px, 3.6vw, 46px); line-height: 1.08; max-width: 16em; }
.hero.nofig .sub { margin-top: 16px; font-size: 17px; color: rgba(255,255,255,.85); max-width: 40em; }
@media (max-width: 700px) { .hero.nofig { padding: 40px 0; } }

/* --- [contact] --- */
.hero.pgh h1 { font-size: clamp(30px, 3.6vw, 46px); }
.hero.pgh .ph { min-height: 420px; }
.block { padding: clamp(56px, 7vw, 96px) 0; }
.block.soft { background: var(--bg-soft); }
.block h2 { font-weight: 800; text-transform: uppercase; font-size: clamp(22px, 2.6vw, 32px); color: var(--navy); }
.block .body { margin-top: 14px; font-size: 16.5px; color: var(--text-soft); max-width: 42em; }
.split .wrap { display: grid; grid-template-columns: 6fr 6fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.split .ph { border-radius: 18px; overflow: hidden; background: none; }
.split .ph img { border-radius: 18px; }
@media (max-width: 900px) { .split .wrap { grid-template-columns: 1fr; } }
@media (max-width: 700px) { .block { padding: 40px 0 !important; } .hero.pgh .ph { min-height: 280px; } }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 36px; max-width: 900px; }
.ccard { border: 1px solid var(--line); border-radius: 16px; padding: 28px; }
.ccard h3 { font-weight: 800; color: var(--navy); font-size: 18px; }
.ccard p { margin-top: 8px; font-size: 15.5px; color: var(--text-soft); line-height: 1.6; }
.ccard a { color: var(--navy); font-weight: 700; }
.big-contact { margin-top: 40px; }
.big-contact a { font-family: Montserrat, sans-serif; font-weight: 800; font-size: clamp(22px, 3vw, 34px); color: #fff; text-decoration-color: var(--gold); text-underline-offset: 6px; }
.big-contact a:hover { color: var(--gold); }
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }

/* --- [contact] --- */
/* Contact opener: compact utility */
.hero.nofig { padding: clamp(48px, 6vw, 80px) 0; }
.hero.nofig h1 { font-weight: 800; text-transform: uppercase; font-size: clamp(30px, 3.6vw, 46px); line-height: 1.08; }
.hero.nofig .sub { margin-top: 16px; font-size: 17px; color: rgba(255,255,255,.85); max-width: 38em; }
.hero.nofig .big-contact { margin-top: 28px; }
@media (max-width: 700px) { .hero.nofig { padding: 40px 0; } }