/* ─── TOKENS ──────────────────────────────────────────────── */
  :root {
    --gray:      #363636;
    --orange:    #D9593C;
    --wine:      #803723;
    --terracota: #B75C3C;
    --cream:     #FAF7F4;
    --light:     #F3EDE7;
    --white:     #FFFFFF;
    --canela:    'Georgia', 'Times New Roman', serif;
    --poppins:   'Poppins', sans-serif;
    --max:       1180px;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--poppins); color: var(--gray); background: var(--cream); -webkit-font-smoothing: antialiased; }
  img  { display: block; width: 100%; }
  a    { text-decoration: none; color: inherit; }
  .container { max-width: var(--max); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
  .tag { display: inline-block; font-size: .67rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; color: var(--terracota); margin-bottom: .85rem; }

  /* ─── BUTTONS ─────────────────────────────────────────────── */
  .btn {
    display: inline-flex; align-items: center; gap: .45rem;
    font-family: var(--poppins); font-size: .79rem; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase;
    padding: .9rem 2rem; border-radius: 2px;
    transition: all .22s ease; cursor: pointer; border: none;
  }
  .btn-primary      { background: var(--orange);  color: #fff; }
  .btn-primary:hover{ background: var(--wine); }
  .btn-wine         { background: var(--wine);    color: #fff; }
  .btn-wine:hover   { background: #5a2515; }
  .btn-dark         { background: var(--gray);    color: #fff; }
  .btn-dark:hover   { background: #222; }
  .btn-outline      { background: transparent; color: var(--gray); border: 1.5px solid rgba(54,54,54,.28); }
  .btn-outline:hover{ border-color: var(--orange); color: var(--orange); }
  .btn-ghost-light  { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
  .btn-ghost-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }
  .btn-white        { background: #fff; color: var(--orange); }
  .btn-white:hover  { background: var(--cream); }

  /* ─── NAV (legacy — replaced by header.css) ──────────────── */
  /* NOTE: rule removed — nav tag now lives inside .site-header */

  /* ─── ANIMATIONS ─────────────────────────────────────────── */
  .fade-up    { opacity: 0; transform: translateY(26px);  transition: opacity .65s ease, transform .65s ease; }
  .fade-left  { opacity: 0; transform: translateX(-26px); transition: opacity .65s ease, transform .65s ease; }
  .fade-right { opacity: 0; transform: translateX(26px);  transition: opacity .65s ease, transform .65s ease; }
  .fade-up.visible, .fade-left.visible, .fade-right.visible { opacity: 1; transform: none; }

  /* ═══════════════════════════════════════════════════════════
     HERO
  ══════════════════════════════════════════════════════════ */
  #hero {
    min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
    background: var(--cream); overflow: hidden;
  }
  .hero-content {
    display: flex; flex-direction: column; justify-content: center;
    padding: clamp(3rem, 8vw, 7rem) clamp(1.5rem, 4vw, 3.5rem) clamp(3rem, 6vw, 5rem) clamp(1.25rem, 6vw, 5rem);
  }
  .hero-breadcrumb {
    display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
    font-size: .68rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
    color: rgba(54,54,54,.4); margin-bottom: 2rem;
  }
  .hero-breadcrumb a { color: inherit; transition: color .2s; }
  .hero-breadcrumb a:hover { color: var(--orange); }
  .hero-breadcrumb .sep { color: var(--orange); opacity: .6; }
  .hero-breadcrumb .current { color: var(--orange); opacity: .9; }

  .hero-eyebrow { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.1rem; }
  .hero-eyebrow::before { content:''; width: 36px; height: 2px; background: var(--orange); flex-shrink: 0; }
  .hero-eyebrow span { font-size: .67rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); }

  .hero-title {
    font-family: var(--canela); font-size: clamp(2.6rem, 5.5vw, 4.8rem);
    font-weight: normal; line-height: 1.06; color: var(--gray); margin-bottom: 1.4rem;
  }
  .hero-title em { font-style: italic; color: var(--terracota); }

  .hero-intro {
    font-size: clamp(.88rem, 1.5vw, 1.02rem); line-height: 1.78;
    color: var(--gray); opacity: .7; max-width: 430px; margin-bottom: 2.5rem;
  }

  /* Hero visual */
  .hero-visual { position: relative; overflow: hidden; }
  .hero-visual-inner {
    width: 100%; height: 100%; min-height: 580px;
    background: linear-gradient(155deg, #5c2718 0%, #2a1008 55%, #1a0804 100%);
    position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  }
  .hero-visual-inner::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 65% 55% at 65% 30%, rgba(217,89,60,.25), transparent),
      radial-gradient(ellipse 40% 45% at 20% 75%, rgba(183,92,60,.15), transparent);
  }
  .hero-visual-pattern {
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
      45deg, transparent, transparent 48px,
      rgba(255,255,255,.016) 48px, rgba(255,255,255,.016) 49px
    );
  }
  .hero-illustration {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -54%);
    width: 260px; opacity: .09; pointer-events: none;
  }
  /* Floating impact counter */
  .hero-counter {
    position: absolute; top: 2.5rem; right: 2.5rem; z-index: 3;
    background: rgba(250,247,244,.1); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.15); border-radius: 4px;
    padding: 1.1rem 1.5rem; text-align: center;
  }
  .hero-counter strong {
    display: block; font-family: var(--canela); font-size: 2.2rem;
    color: #fff; font-weight: normal; line-height: 1; margin-bottom: .2rem;
  }
  .hero-counter span { font-size: .64rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); }
  .hero-visual-caption {
    position: relative; z-index: 2; padding: 2rem 2.5rem;
  }
  .hero-visual-caption p {
    font-family: var(--canela); font-size: 1.1rem; font-style: italic;
    color: rgba(255,255,255,.72); line-height: 1.5; max-width: 280px; margin-bottom: .6rem;
  }
  .hero-visual-caption span {
    font-size: .65rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
    color: var(--terracota); display: flex; align-items: center; gap: .5rem;
  }
  .hero-visual-caption span::before { content:''; width: 18px; height: 1px; background: var(--terracota); }

  /* ═══════════════════════════════════════════════════════════
     FIRST YEAR SNAPSHOT
  ══════════════════════════════════════════════════════════ */
  #snapshot {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--gray); color: var(--white); overflow: hidden;
    position: relative;
  }
  #snapshot::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(217,89,60,.1), transparent);
    pointer-events: none;
  }
  .snapshot-header { text-align: center; margin-bottom: 3.5rem; position: relative; z-index: 1; }
  .snapshot-header .tag { color: var(--terracota); }
  .snapshot-header h2 {
    font-family: var(--canela); font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: normal; color: var(--white); line-height: 1.1;
  }

  .snapshot-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: rgba(255,255,255,.08);
    border-radius: 4px; overflow: hidden; position: relative; z-index: 1;
  }
  .snapshot-card {
    background: rgba(255,255,255,.04); padding: 2.5rem 2rem;
    display: flex; flex-direction: column; align-items: flex-start;
    transition: background .25s;
    position: relative; overflow: hidden;
  }
  .snapshot-card:hover { background: rgba(255,255,255,.08); }
  .snapshot-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--orange); transform: scaleX(0);
    transform-origin: left; transition: transform .35s ease;
  }
  .snapshot-card:hover::after { transform: scaleX(1); }
  .snapshot-card:nth-child(2)::after { background: var(--terracota); }
  .snapshot-card:nth-child(3)::after { background: var(--wine); }
  .snapshot-card:nth-child(4)::after { background: rgba(255,255,255,.4); }

  .sc-number {
    font-family: var(--canela); font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: normal; color: var(--orange); line-height: 1;
    margin-bottom: .75rem;
  }
  .snapshot-card:nth-child(2) .sc-number { color: var(--terracota); }
  .snapshot-card:nth-child(3) .sc-number { color: #c06840; }
  .snapshot-card:nth-child(4) .sc-number { color: rgba(255,255,255,.85); }

  .sc-label { font-size: .88rem; line-height: 1.65; color: rgba(255,255,255,.6); }
  .sc-label strong { color: rgba(255,255,255,.85); font-weight: 600; }

  /* ═══════════════════════════════════════════════════════════
     VOICES FROM OUR COMMUNITY
  ══════════════════════════════════════════════════════════ */
  #voices {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--white);
  }
  .voices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: stretch; }

  /* Left: visual block */
  .voices-visual { position: relative; }
  .voices-photo-main {
    height: 100%; min-height: 480px; border-radius: 4px; overflow: hidden;
    position: relative;
    background: linear-gradient(155deg, #5c2818 0%, #2a1008 100%);
  }
  .voices-photo-main::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 55% at 60% 35%, rgba(217,89,60,.22), transparent);
  }
  /* Illustration placeholder */
  .voices-photo-main svg {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 180px; opacity: .1;
  }
  .voices-photo-label {
    position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; z-index: 2;
  }
  .voices-photo-label h3 {
    font-family: var(--canela); font-size: 1.5rem; font-weight: normal; font-style: italic;
    color: rgba(255,255,255,.82); line-height: 1.3; margin-bottom: .4rem;
  }
  .voices-photo-label span {
    font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: var(--terracota); display: flex; align-items: center; gap: .45rem;
  }
  .voices-photo-label span::before { content:''; width: 16px; height: 1px; background: var(--terracota); }

  /* Right: testimonials column */
  .voices-right { display: flex; flex-direction: column; gap: 1.5rem; justify-content: center; }
  .voices-header { margin-bottom: .5rem; }
  .voices-header h2 {
    font-family: var(--canela); font-size: clamp(2rem, 4vw, 3rem);
    font-weight: normal; color: var(--gray); line-height: 1.15;
  }
  .voices-intro {
    font-size: .9rem; line-height: 1.78; color: var(--gray); opacity: .65;
    margin-bottom: 1rem;
  }

  .testimony-card {
    border-radius: 4px; overflow: hidden;
    display: grid; grid-template-columns: 4px 1fr;
    background: var(--light);
    transition: box-shadow .25s, transform .22s;
  }
  .testimony-card:hover { box-shadow: 0 8px 28px rgba(54,54,54,.09); transform: translateX(3px); }
  .testimony-accent { background: var(--orange); }
  .testimony-card:nth-child(3) .testimony-accent { background: var(--terracota); }
  .testimony-card:nth-child(4) .testimony-accent { background: var(--wine); }
  .testimony-body { padding: 1.75rem 1.75rem 1.75rem 1.5rem; }

  .testimony-quote-mark {
    font-family: var(--canela); font-size: 2.5rem; color: var(--orange);
    opacity: .25; line-height: 1; display: block; margin-bottom: .25rem;
  }
  .testimony-card:nth-child(3) .testimony-quote-mark { color: var(--terracota); }
  .testimony-card:nth-child(4) .testimony-quote-mark { color: var(--wine); }

  .testimony-text {
    font-family: var(--canela); font-size: .97rem; font-style: italic;
    color: var(--gray); line-height: 1.65; margin-bottom: 1.1rem;
  }
  .testimony-author { display: flex; align-items: center; gap: .75rem; }
  .testimony-avatar {
    width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--terracota), var(--wine));
  }
  .testimony-name { font-size: .8rem; font-weight: 600; color: var(--gray); margin-bottom: .15rem; }
  .testimony-role { font-size: .7rem; color: var(--gray); opacity: .5; letter-spacing: .04em; }

  /* Context note */
  .voices-context {
    padding: 1.25rem 1.5rem; background: var(--cream);
    border-radius: 4px; border-left: 3px solid var(--orange);
    font-size: .82rem; line-height: 1.72; color: var(--gray); opacity: .72;
  }

  /* ═══════════════════════════════════════════════════════════
     YOUR SUPPORT MAKES THIS POSSIBLE
  ══════════════════════════════════════════════════════════ */
  #support {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--cream);
  }
  .support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .support-text .tag { margin-bottom: 1rem; }
  .support-text h2 {
    font-family: var(--canela); font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: normal; color: var(--gray); line-height: 1.15; margin-bottom: 1.25rem;
  }
  .support-text > p {
    font-size: .92rem; line-height: 1.8; color: var(--gray); opacity: .68; margin-bottom: 2rem;
  }
  .support-checklist { list-style: none; display: flex; flex-direction: column; gap: .85rem; }
  .support-checklist li {
    display: flex; align-items: center; gap: 1rem;
    font-size: .92rem; color: var(--gray); font-weight: 500;
  }
  .sc-check {
    width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
    background: var(--orange); display: flex; align-items: center; justify-content: center;
  }
  .support-checklist li:nth-child(2) .sc-check { background: var(--terracota); }
  .support-checklist li:nth-child(3) .sc-check { background: var(--wine); }
  .support-checklist li:nth-child(4) .sc-check { background: var(--gray); }
  .sc-check svg { width: 12px; height: 12px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

  /* Support visual: stacked stats */
  .support-visual { display: flex; flex-direction: column; gap: 1rem; }
  .sv-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .sv-card {
    border-radius: 4px; padding: 1.75rem 1.5rem;
    display: flex; flex-direction: column; align-items: flex-start;
  }
  .sv-card.c-orange { background: var(--orange); }
  .sv-card.c-wine   { background: var(--wine); }
  .sv-card.c-dark   { background: #1f0e08; }
  .sv-card.c-light  { background: var(--white); border: 1px solid rgba(54,54,54,.1); }
  .sv-card.c-terra  { background: var(--terracota); }
  .sv-num {
    font-family: var(--canela); font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: normal; line-height: 1; margin-bottom: .4rem;
  }
  .sv-card.c-orange .sv-num,
  .sv-card.c-wine   .sv-num,
  .sv-card.c-dark   .sv-num,
  .sv-card.c-terra  .sv-num  { color: rgba(255,255,255,.9); }
  .sv-card.c-light  .sv-num  { color: var(--orange); }
  .sv-lbl { font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
  .sv-card.c-orange .sv-lbl,
  .sv-card.c-wine   .sv-lbl,
  .sv-card.c-dark   .sv-lbl,
  .sv-card.c-terra  .sv-lbl  { color: rgba(255,255,255,.6); }
  .sv-card.c-light  .sv-lbl  { color: var(--gray); opacity: .55; }
  .sv-card.c-dark.wide { grid-column: span 2; flex-direction: row; align-items: center; gap: 1.5rem; }
  .sv-card.c-dark.wide p { font-family: var(--canela); font-size: 1rem; font-style: italic; color: rgba(255,255,255,.65); line-height: 1.5; }

  /* ═══════════════════════════════════════════════════════════
     HOW TO DONATE
  ══════════════════════════════════════════════════════════ */
  #donate {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--white);
  }
  .donate-header { text-align: center; margin-bottom: 3.5rem; }
  .donate-header h2 {
    font-family: var(--canela); font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: normal; color: var(--gray); line-height: 1.1; margin-bottom: .75rem;
  }
  .donate-header p { font-size: .9rem; line-height: 1.75; color: var(--gray); opacity: .6; max-width: 440px; margin: 0 auto; }

  .donate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

  /* Steps flow */
  .donate-steps { display: flex; flex-direction: column; gap: 0; }
  .donate-step {
    display: grid; grid-template-columns: 48px 1fr;
    gap: 1.25rem; align-items: flex-start;
    position: relative;
  }
  .donate-step:not(:last-child)::before {
    content: ''; position: absolute; left: 23px; top: 52px; bottom: -28px;
    width: 2px; background: rgba(54,54,54,.1);
  }
  .donate-step { padding-bottom: 2rem; }
  .donate-step:last-child { padding-bottom: 0; }

  .ds-num {
    width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--canela); font-size: 1.1rem; font-style: italic;
    color: #fff; font-weight: normal; position: relative; z-index: 1;
  }
  .donate-step:nth-child(1) .ds-num { background: var(--orange); }
  .donate-step:nth-child(2) .ds-num { background: var(--terracota); }
  .donate-step:nth-child(3) .ds-num { background: var(--wine); }
  .donate-step:nth-child(4) .ds-num { background: var(--gray); }

  .ds-body h3 { font-size: .92rem; font-weight: 700; color: var(--gray); margin-bottom: .35rem; }
  .ds-body p  { font-size: .84rem; line-height: 1.7; color: var(--gray); opacity: .62; }

  /* Donation options column */
  .donate-options { display: flex; flex-direction: column; gap: 1.25rem; }
  .donate-option {
    border-radius: 4px; overflow: hidden; border: 1.5px solid rgba(54,54,54,.12);
    transition: border-color .22s, box-shadow .22s;
  }
  .donate-option:hover { border-color: var(--orange); box-shadow: 0 6px 24px rgba(217,89,60,.1); }
  .donate-option:last-child { border-color: var(--wine); }
  .donate-option:last-child:hover { border-color: var(--wine); box-shadow: 0 6px 24px rgba(128,55,35,.12); }

  .do-header {
    padding: 1.25rem 1.5rem;
    display: flex; align-items: center; gap: 1rem;
    border-bottom: 1px solid rgba(54,54,54,.08);
  }
  .do-icon {
    width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
  }
  .do-icon.orange { background: rgba(217,89,60,.1); }
  .do-icon.wine   { background: rgba(128,55,35,.1); }
  .do-header h3 { font-size: .92rem; font-weight: 700; color: var(--gray); margin-bottom: .15rem; }
  .do-header p  { font-size: .75rem; color: var(--gray); opacity: .55; }

  .do-body { padding: 1.25rem 1.5rem; }
  .do-body p { font-size: .84rem; line-height: 1.7; color: var(--gray); opacity: .65; margin-bottom: 1.1rem; }
  .do-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.25rem; }
  .do-tag {
    font-size: .68rem; font-weight: 600; padding: .28rem .75rem; border-radius: 100px;
    background: var(--light); color: var(--gray); opacity: .8;
    border: 1px solid rgba(54,54,54,.1);
  }

  /* ═══════════════════════════════════════════════════════════
     MORE WAYS TO SUPPORT
  ══════════════════════════════════════════════════════════ */
  #more-ways {
    padding: clamp(4rem, 7vw, 7rem) 0;
    background: var(--orange);
  }
  .more-ways-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 2.5rem; flex-wrap: wrap;
  }
  .mw-text .tag { color: rgba(255,255,255,.7); letter-spacing: .17em; }
  .mw-text h2 {
    font-family: var(--canela); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: normal; color: var(--white); line-height: 1.2; margin-bottom: .7rem;
  }
  .mw-text p { font-size: .92rem; line-height: 1.75; color: rgba(255,255,255,.75); max-width: 440px; }
  .mw-cta { flex-shrink: 0; }

  /* ═══════════════════════════════════════════════════════════
     FINAL CTA
  ══════════════════════════════════════════════════════════ */
  #cta-final {
    padding: clamp(5rem, 10vw, 10rem) 0;
    background: linear-gradient(135deg, #2a1008 0%, #1a0804 100%);
    text-align: center; position: relative; overflow: hidden;
  }
  #cta-final::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(217,89,60,.18), transparent);
  }
  /* Large decorative text */
  #cta-final::after {
    content: 'IMPACT';
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-family: var(--canela); font-size: clamp(8rem, 20vw, 18rem); font-style: italic;
    color: rgba(255,255,255,.025); line-height: 1; pointer-events: none; white-space: nowrap;
  }
  .cta-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
  .cta-inner .tag { color: var(--terracota); }
  .cta-inner h2 {
    font-family: var(--canela); font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: normal; font-style: italic; color: var(--white);
    line-height: 1.15; margin-bottom: 1rem;
  }
  .cta-inner h2 em { font-style: normal; color: var(--terracota); }
  .cta-text { font-size: .95rem; line-height: 1.8; color: rgba(255,255,255,.58); margin-bottom: 2.75rem; max-width: 520px; margin-left: auto; margin-right: auto; }
  .cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

  /* ─── FOOTER ─────────────────────────────────────────────── */
  footer { background: #1a0a04; color: var(--white); padding: clamp(3rem, 6vw, 5rem) 0 2rem; }
  .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
  .footer-logo { font-family: var(--canela); font-size: 1.4rem; color: var(--white); line-height: 1.2; margin-bottom: .75rem; }
  .footer-logo span { display: block; font-family: var(--poppins); font-size: .6rem; font-style: normal; letter-spacing: .18em; text-transform: uppercase; color: var(--terracota); margin-top: 4px; }
  .footer-tagline { font-size: .82rem; line-height: 1.7; color: rgba(255,255,255,.45); max-width: 220px; }
  .footer-col h4 { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 1rem; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: .55rem; }
  .footer-col a { font-size: .83rem; color: rgba(255,255,255,.55); transition: color .2s; }
  .footer-col a:hover { color: var(--orange); }
  .social-links { display: flex; gap: .65rem; margin-bottom: 1.25rem; }
  .social-link { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; font-size: .75rem; color: rgba(255,255,255,.6); transition: background .2s; }
  .social-link:hover { background: var(--orange); color: var(--white); }
  .footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.07); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
  .footer-copy { font-size: .74rem; color: rgba(255,255,255,.28); }
  .footer-mission { font-family: var(--canela); font-size: .72rem; font-style: italic; color: rgba(255,255,255,.22); }

  /* ─── RESPONSIVE ─────────────────────────────────────────── */
  @media (max-width: 960px) {
    #hero { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero-content { padding: 5rem 1.5rem 3.5rem; }
    .snapshot-grid { grid-template-columns: 1fr 1fr; }
    .voices-grid, .support-grid, .donate-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .voices-photo-main { min-height: 300px; }
    .more-ways-inner { flex-direction: column; align-items: flex-start; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 600px) {
    /* .nav-links / nav .btn handled by header.css */
    .snapshot-grid { grid-template-columns: 1fr; }
    .sv-row { grid-template-columns: 1fr; }
    .sv-card.c-dark.wide { grid-column: span 1; flex-direction: column; }
    .footer-top { grid-template-columns: 1fr; }
    .cta-btns { flex-direction: column; align-items: center; }
  }