@tailwind base;
@tailwind components;
@tailwind utilities;
    
    
    :root {
      --earth:     #3a2e1e;
      --sienna:    #7c4a2d;
      --clay:      #b8652a;
      --sand:      #d9aa72;
      --bone:      #f4ede0;
      --cream:     #faf6ef;
      --sky:       #3d6b8c;
      --text:      #1e1810;
      --text-mid:  #4a3d2e;
      --text-soft: #7a6a55;
      --white:     #ffffff;
      --nav-h:     72px;
      --max:       1180px;
      --gutter:    clamp(1.5rem, 5vw, 4rem);
      --section:   clamp(4rem, 8vw, 7rem);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Nunito', sans-serif;
      background: var(--cream);
      color: var(--text);
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      height: var(--nav-h);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 var(--gutter);
      background: rgba(250,246,239,0.93);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(120,80,40,0.10);
      transition: box-shadow 0.3s;
    }
    nav.scrolled { box-shadow: 0 2px 24px rgba(60,30,10,0.10); }

    .nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
    .nav-logo-mark {
      width: 38px; height: 38px; border-radius: 50%;
      background: linear-gradient(135deg, var(--clay), var(--sienna));
      display: grid; place-items: center;
      font-family: 'Playfair Display', serif;
      color: var(--white); font-size: 1rem; font-weight: 800; flex-shrink: 0;
    }
    .nav-logo-text strong {
      display: block; font-family: 'Playfair Display', serif;
      font-size: 0.85rem; font-weight: 700; color: var(--earth); letter-spacing: 0.02em;
    }
    .nav-logo-text span {
      font-size: 0.68rem; color: var(--text-soft); letter-spacing: 0.08em; text-transform: uppercase;
    }

    .nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
    .nav-links a {
      text-decoration: none; color: var(--text-mid);
      font-size: 0.875rem; font-weight: 500; transition: color 0.2s; position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 1.5px;
      background: var(--clay); transform: scaleX(0); transition: transform 0.25s; transform-origin: left;
    }
    .nav-links a:hover { color: var(--clay); }
    .nav-links a:hover::after { transform: scaleX(1); }

    .btn-donate-nav {
      display: inline-block; padding: 0.5rem 1.25rem;
      background: var(--clay); color: var(--white) !important;
      border-radius: 100px; font-weight: 600; font-size: 0.85rem;
      text-decoration: none; transition: background 0.2s, transform 0.15s;
    }
    .btn-donate-nav:hover { background: var(--sienna); transform: translateY(-1px); }
    .btn-donate-nav::after { display: none !important; }

    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 4px; background: none; border: none;
    }
    .hamburger span { width: 24px; height: 2px; background: var(--earth); border-radius: 2px; display: block; }

    /* ── HERO ── */
    #home {
      position: relative;
      min-height: 100svh;
      padding-top: var(--nav-h);
      overflow: hidden;
      display: flex;
      align-items: stretch;
    }

    /* Full-bleed video stack */
    .hero-video-stage {
      position: absolute; inset: 0; z-index: 0;
    }

    /* Each video slide */
    .vslide {
      position: absolute; inset: 0;
      opacity: 0;
      transition: opacity 1.2s ease;
    }
    .vslide.active { opacity: 1; }

    .vslide video {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center;
      display: block;
    }

    /* Because we use free Pexels/Pixabay embed URLs the browser fetches the mp4.
       As a reliable fallback we paint a rich cinematic gradient + texture per slide. */
    .vslide-poster {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
    }
    .vs1 .vslide-poster { background: linear-gradient(160deg,#1e0d04 0%,#5a3318 40%,#a0622a 70%,#c4892e 100%); }
    .vs2 .vslide-poster { background: linear-gradient(160deg,#0a1a2a 0%,#163550 40%,#2a5c7a 70%,#3d7a9a 100%); }
    .vs3 .vslide-poster { background: linear-gradient(160deg,#0f1e0c 0%,#203a18 40%,#3a6030 70%,#5a8040 100%); }
    .vs4 .vslide-poster { background: linear-gradient(160deg,#1c1408 0%,#3a2c12 40%,#604820 70%,#806030 100%); }

    /* Grain texture overlay */
    .vslide-poster::after {
      content: '';
      position: absolute; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
      opacity: 0.45;
      mix-blend-mode: overlay;
    }

    /* Overlay: dark vignette + left fade for text legibility */
    .hero-overlay {
      position: absolute; inset: 0; z-index: 1;
      background:
        linear-gradient(to right,  rgba(20,12,5,0.88) 0%, rgba(20,12,5,0.55) 48%, rgba(20,12,5,0.15) 100%),
        linear-gradient(to top,    rgba(20,12,5,0.60) 0%, transparent 55%);
    }

    /* Hero content */
    .hero-content {
      position: relative; z-index: 2;
      display: flex; flex-direction: column; justify-content: center;
      width: 100%; max-width: var(--max); margin: 0 auto;
      padding: var(--section) var(--gutter);
    }

    .hero-h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 5.5vw, 5rem);
      font-weight: 800; line-height: 1.06;
      color: var(--bone);
      max-width: 680px;
      margin-bottom: 1.5rem;
    }
    .hero-h1 em { color: var(--sand); font-style: italic; }

    .hero-sub {
      font-size: 1.05rem; color: rgba(244,237,224,0.75);
      line-height: 1.8; max-width: 520px;
      font-weight: 300; margin-bottom: 2.5rem;
    }


    /* Slide caption — bottom centre */
    .hero-caption-bar {
      position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
      background: linear-gradient(to top, rgba(20,12,5,0.82) 0%, transparent 100%);
      padding: 3rem var(--gutter) 1.5rem;
      display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
    }
    .slide-text-area { flex: 1; }
    .slide-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1rem, 1.8vw, 1.3rem);
      font-style: italic; color: var(--bone); line-height: 1.45;
      opacity: 0; transform: translateY(10px);
      transition: opacity 0.6s 0.3s ease, transform 0.6s 0.3s ease;
    }
    .slide-title.shown { opacity: 1; transform: none; }
    .slide-sub {
      font-size: 0.72rem; letter-spacing: 0.11em; text-transform: uppercase;
      color: var(--sand); margin-top: 0.35rem;
      opacity: 0; transition: opacity 0.5s 0.5s;
    }
    .slide-sub.shown { opacity: 1; }

    /* Dots */
    .carousel-dots {
      display: flex; gap: 0.5rem; align-items: center; flex-shrink: 0;
    }
    .carousel-dot {
      width: 28px; height: 3px; border-radius: 2px; border: none;
      background: rgba(244,237,224,0.28); cursor: pointer;
      transition: background 0.3s, width 0.3s; padding: 0;
    }
    .carousel-dot.active { background: var(--sand); width: 44px; }

    /* Progress bar per slide */
    .slide-progress {
      position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
      background: rgba(255,255,255,0.08); z-index: 4;
    }
    .slide-progress-bar {
      height: 100%; background: var(--sand);
      width: 0%; transition: width 0s linear;
    }
    .slide-progress-bar.running {
      width: 100%;
      transition: width 7s linear;
    }

    /* Buttons */
    .btn-primary {
      display: inline-block; padding: 0.88rem 2rem;
      background: var(--clay); color: var(--white);
      border-radius: 100px; font-weight: 600; font-size: 0.9rem;
      text-decoration: none; transition: all 0.2s; letter-spacing: 0.02em;
    }
    .btn-primary:hover { background: var(--sienna); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,74,45,0.35); }

    .btn-outline-light {
      display: inline-block; padding: 0.88rem 2rem;
      border: 1.5px solid rgba(244,237,224,0.45); color: var(--bone);
      border-radius: 100px; font-weight: 600; font-size: 0.9rem;
      text-decoration: none; transition: all 0.2s;
    }
    .btn-outline-light:hover { background: rgba(244,237,224,0.12); transform: translateY(-2px); }

    .btn-secondary {
      display: inline-block; padding: 0.85rem 1.9rem;
      border: 1.5px solid var(--clay); color: var(--clay);
      border-radius: 100px; font-weight: 600; font-size: 0.88rem;
      text-decoration: none; transition: all 0.2s;
    }
    .btn-secondary:hover { background: var(--clay); color: var(--white); transform: translateY(-2px); }

    /* ── IMPACT STRIP ── */
    .impact-strip { background: var(--earth); padding: 3rem var(--gutter); }
    .impact-strip-inner {
      max-width: var(--max); margin: 0 auto;
      display: grid; grid-template-columns: repeat(4,1fr);
      gap: 1.5rem; text-align: center;
    }
    .impact-item strong {
      display: block; font-family: 'Playfair Display', serif;
      font-size: 2.2rem; font-weight: 800; color: var(--sand);
    }
    .impact-item p { font-size: 0.8rem; color: rgba(244,237,224,0.55); margin-top: 0.2rem; }

    /* ── SECTION BASE ── */
    section { padding: var(--section) var(--gutter); }
    .container { max-width: var(--max); margin: 0 auto; }

    .section-h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.9rem, 3.8vw, 2.9rem);
      font-weight: 800; line-height: 1.15; color: var(--earth);
      margin-bottom: 1rem;
    }
    .section-h2 em { color: var(--clay); font-style: italic; }
    .section-lead {
      font-size: 1rem; color: var(--text-mid); font-weight: 300;
      max-width: 560px; line-height: 1.8;
    }

    /* ── ABOUT ── */
    #about { background: var(--cream); }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: clamp(2.5rem,5vw,5.5rem); align-items: center; margin-top: 3rem;
    }
    .about-visual { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4/5; }
    .about-visual-inner {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, var(--sienna) 0%, var(--earth) 60%, #2a4f6a 100%);
    }
    .about-visual-dots {
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(217,170,114,0.28) 1px, transparent 1px);
      background-size: 28px 28px;
    }
    .about-visual-badge {
      position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
      background: rgba(250,246,239,0.08); backdrop-filter: blur(14px);
      border: 1px solid rgba(217,170,114,0.20); border-radius: 12px;
      padding: 1.1rem 1.4rem; color: var(--bone);
    }
    .about-visual-badge strong {
      display: block; font-family: 'Playfair Display', serif; font-size: 1.4rem;
    }
    .about-visual-badge span { font-size: 0.78rem; opacity: 0.68; }

    .about-content p { color: var(--text-mid); line-height: 1.8; margin-bottom: 0.9rem; }
    .about-content p:last-child { margin-bottom: 0; }
    .values-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.75rem; }
    .value-pill {
      background: var(--bone); border-radius: 100px;
      padding: 0.38rem 1rem; font-size: 0.8rem; font-weight: 600; color: var(--sienna);
      border: 1px solid rgba(184,101,42,0.15);
    }

    /* ── MISSION / VISION ── */
    .mv-band { background: var(--earth); padding: var(--section) var(--gutter); }
    .mv-inner {
      max-width: var(--max); margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    }
    .mv-label {
      font-size: 2rem; font-weight: 700; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--sand);
      display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.9rem;
    }
    .mv-block h3 {
      font-family: 'Playfair Display', serif; font-size: 1.45rem;
      font-weight: 700; color: var(--bone); line-height: 1.3; margin-bottom: 0.7rem;
    }
    .mv-block p { font-size: 0.92rem; color: rgba(244,237,224,0.62); line-height: 1.8; }

    /* ── PROGRAMS ── */
    #programs { background: var(--bone); }
    .programs-intro { margin-bottom: 3rem; }
    .programs-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.4rem; }
    .program-card {
      background: var(--cream); border-radius: 16px; padding: 2rem 2.1rem;
      border: 1px solid rgba(184,101,42,0.09);
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    }
    .program-card:hover {
      transform: translateY(-4px); box-shadow: 0 14px 40px rgba(58,46,30,0.09);
      border-color: rgba(184,101,42,0.22);
    }
    .program-num {
      font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 800;
      line-height: 1; margin-bottom: 0.75rem;
    }
    .program-num.c1 { color: rgba(184,101,42,0.18); }
    .program-num.c2 { color: rgba(92,122,90,0.18); }
    .program-num.c3 { color: rgba(61,107,140,0.18); }
    .program-num.c4 { color: rgba(124,74,45,0.18); }
    .program-card h3 {
      font-family: 'Playfair Display', serif; font-size: 1.15rem;
      font-weight: 700; color: var(--earth); margin-bottom: 0.65rem;
    }
    .program-card p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.75; margin-bottom: 0.9rem; }
    .program-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; }
    .tag {
      font-size: 0.7rem; font-weight: 600; letter-spacing: 0.04em;
      padding: 0.28rem 0.7rem; border-radius: 100px;
      background: var(--bone); color: var(--sienna);
      border: 1px solid rgba(124,74,45,0.16);
    }

    /* ── FOUNDER ── */
    #founder { background: var(--cream); }
    .founder-grid {
      display: grid; grid-template-columns: 5fr 7fr;
      gap: 4.5rem; align-items: center; margin-top: 3rem;
    }
    .founder-card {
      background: var(--earth); border-radius: 20px;
      padding: 2.75rem 2.25rem; color: var(--bone); position: relative; overflow: hidden;
    }
    .founder-card::before {
      content: '\201C'; position: absolute; top: -2rem; right: 1.2rem;
      font-family: 'Playfair Display', serif; font-size: 11rem;
      color: rgba(217,170,114,0.09); line-height: 1;
    }
    .founder-card blockquote {
      font-family: 'Playfair Display', serif; font-style: italic;
      font-size: 1.05rem; line-height: 1.72; position: relative; z-index: 1; margin-bottom: 1.4rem;
    }
    .founder-card cite { font-size: 0.8rem; color: var(--sand); font-style: normal; font-weight: 600; }
    .founder-meta {
      margin-top: 1.3rem; padding-top: 1.2rem;
      border-top: 1px solid rgba(217,170,114,0.14);
      font-size: 0.78rem; color: rgba(244,237,224,0.45);
    }
    .founder-meta strong { color: var(--sand); }
    .founder-text h2 { margin-bottom: 1rem; }
    .founder-text p { color: var(--text-mid); line-height: 1.8; margin-bottom: 0.9rem; }
    .philosophy { list-style: none; margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.65rem; }
    .philosophy li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.9rem; color: var(--text-mid); }
    .philosophy li::before { content: '\2014'; color: var(--clay); flex-shrink: 0; }

    /* ── GET INVOLVED ── */
    #get-involved { background: var(--bone); }
    .involved-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; margin-top: 3rem; }
    .involved-card {
      background: var(--cream); border-radius: 16px; padding: 2rem 2.1rem;
      display: flex; flex-direction: column; border: 1px solid rgba(184,101,42,0.09);
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .involved-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(58,46,30,0.08); }
    .involved-card h3 {
      font-family: 'Playfair Display', serif; font-size: 1.1rem;
      font-weight: 700; color: var(--earth); margin-bottom: 0.65rem;
    }
    .involved-card p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.75; flex: 1; margin-bottom: 1.4rem; }

    /* ── DONATE ── */
    #donate { background: var(--earth); padding: var(--section) var(--gutter); }
    .donate-inner {
      max-width: var(--max); margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
    }
    .donate-left .section-h2 { color: var(--bone); }
    .donate-lead { font-size: 0.95rem; color: rgba(244,237,224,0.60); line-height: 1.8; max-width: 420px; margin-bottom: 2rem; }
    .donation-tiers { display: flex; flex-direction: column; gap: 0.65rem; }
    .tier {
      display: flex; align-items: center; gap: 1rem;
      background: rgba(255,255,255,0.06); border-radius: 10px;
      padding: 0.9rem 1.2rem; border: 1px solid rgba(217,170,114,0.10);
    }
    .tier-amount {
      font-family: 'Playfair Display', serif; font-size: 1.25rem;
      font-weight: 800; color: var(--sand); min-width: 4rem;
    }
    .tier-desc { font-size: 0.83rem; color: rgba(244,237,224,0.62); line-height: 1.4; }
    .in-kind {
      background: rgba(255,255,255,0.05); border-radius: 14px;
      padding: 1.75rem; border: 1px solid rgba(217,170,114,0.10); margin-bottom: 1.5rem;
    }
    .in-kind h4 {
      font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--sand); margin-bottom: 0.9rem;
    }
    .in-kind-pills { display: flex; flex-wrap: wrap; gap: 0.45rem; }
    .in-kind-pills span {
      font-size: 0.8rem; color: rgba(244,237,224,0.68);
      background: rgba(255,255,255,0.06); border-radius: 100px;
      padding: 0.28rem 0.85rem; border: 1px solid rgba(217,170,114,0.12);
    }
    .donate-note { font-size: 0.83rem; color: rgba(244,237,224,0.42); font-style: italic; }
    .donate-note a { color: var(--sand); }

    /* ── VOLUNTEER ── */
    #volunteer { background: var(--cream); }
    .volunteer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 3rem; }
    .vol-h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--earth); margin-bottom: 0.9rem; }
    .benefit-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }
    .benefit-list li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.9rem; color: var(--text-mid); }
    .benefit-list li::before { content: '+'; color: var(--clay); font-weight: 700; }
    .skills-row { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.5rem; }
    .prereqs {
      background: var(--bone); border-radius: 12px; padding: 1.4rem 1.6rem;
      border: 1px solid rgba(184,101,42,0.10);
    }
    .prereqs h4 {
      font-size: 0.76rem; font-weight: 700; letter-spacing: 0.11em;
      text-transform: uppercase; color: var(--clay); margin-bottom: 0.7rem;
    }
    .prereqs ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
    .prereqs ul li { font-size: 0.85rem; color: var(--text-soft); padding-left: 0.75rem; border-left: 2px solid rgba(184,101,42,0.2); }

    .step { display: flex; gap: 1.15rem; align-items: flex-start; margin-bottom: 1.4rem; }
    .step-num {
      width: 34px; height: 34px; border-radius: 50%; background: var(--clay);
      color: var(--white); display: grid; place-items: center;
      font-size: 0.78rem; font-weight: 700; flex-shrink: 0;
    }
    .step-text strong { display: block; font-size: 0.9rem; color: var(--earth); margin-bottom: 0.2rem; }
    .step-text span { font-size: 0.84rem; color: var(--text-soft); }
    .step-text a { color: var(--clay); }
    .consent-box {
      background: var(--bone); border-radius: 10px;
      padding: 1.1rem 1.4rem; border-left: 3px solid var(--clay); margin-top: 0.25rem;
    }
    .consent-box h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--clay); margin-bottom: 0.5rem; }
    .consent-box ul { list-style: none; display: flex; flex-direction: column; gap: 0.3rem; }
    .consent-box li { font-size: 0.82rem; color: var(--text-soft); }
    .consent-box li::before { content: '\2014 '; }

    /* ── CONTACT ── */
    #contact { background: var(--bone); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 3rem; }
    .contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--earth); margin-bottom: 1.4rem; }
    .contact-detail { display: flex; align-items: flex-start; gap: 0.9rem; margin-bottom: 1.1rem; }
    .contact-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--clay); flex-shrink: 0; margin-top: 0.55rem; }
    .contact-dt strong { display: block; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--clay); margin-bottom: 0.15rem; }
    .contact-dt span { font-size: 0.9rem; color: var(--text-mid); }
    .contact-dt a { color: var(--sky); text-decoration: none; }
    .contact-dt a:hover { text-decoration: underline; }
    .contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--earth); margin-bottom: 1.4rem; }
    .form-group { margin-bottom: 1.1rem; }
    .form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-mid); margin-bottom: 0.4rem; letter-spacing: 0.04em; }
    .form-group input, .form-group textarea, .form-group select {
      width: 100%; padding: 0.78rem 1rem;
      border: 1.5px solid rgba(58,46,30,0.13); border-radius: 10px;
      background: var(--cream); color: var(--text);
      font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
      transition: border-color 0.2s, box-shadow 0.2s; outline: none;
    }
    .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
      border-color: var(--clay); box-shadow: 0 0 0 3px rgba(184,101,42,0.10);
    }
    .form-group textarea { min-height: 110px; resize: vertical; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
    .btn-submit {
      background: var(--clay); color: var(--white); border: none; border-radius: 100px;
      padding: 0.85rem 2.1rem; font-family: 'DM Sans', sans-serif;
      font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: all 0.2s;
    }
    .btn-submit:hover { background: var(--sienna); transform: translateY(-2px); }
    .form-success { display: none; margin-top: 1rem; padding: 0.75rem 1rem; background: #e8f5e4; border-radius: 10px; font-size: 0.84rem; color: #2a5a25; }

    /* ── FOOTER ── */
    footer { background: #18110a; color: rgba(244,237,224,0.52); padding: 4rem var(--gutter) 2rem; }
    .footer-inner {
      max-width: var(--max); margin: 0 auto;
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem; margin-bottom: 3rem;
    }
    .footer-brand .nav-logo-text strong { color: var(--sand); }
    .footer-brand p { font-size: 0.84rem; line-height: 1.75; margin-top: 1rem; color: #e8f5e4; max-width: 250px; }
    .footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--sand); margin-bottom: 0.9rem; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
    .footer-col ul a { text-decoration: none; color: #e8f5e4; font-size: 0.84rem; transition: color 0.2s; }
    .footer-col ul a:hover { color: var(--sand); }
    .footer-bottom {
      max-width: var(--max); margin: 0 auto; padding-top: 1.5rem;
      border-top: 1px solid rgba(244,237,224,0.07);
      display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
      font-size: 0.75rem; color: #e8f5e4;
    }

    /* ── FADE IN ── */
    .fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .fade-in.visible { opacity: 1; transform: none; }
    .fade-in.d1 { transition-delay: 0.1s; }
    .fade-in.d2 { transition-delay: 0.2s; }
    .fade-in.d3 { transition-delay: 0.3s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 960px) {
      .impact-strip-inner { grid-template-columns: repeat(2,1fr); }
      .about-grid { grid-template-columns: 1fr; }
      .about-visual { aspect-ratio: 16/9; }
      .mv-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .programs-grid { grid-template-columns: 1fr; }
      .founder-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .involved-grid { grid-template-columns: 1fr; }
      .donate-inner { grid-template-columns: 1fr; gap: 3rem; }
      .volunteer-grid { grid-template-columns: 1fr; gap: 3rem; }
      .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .hero-h1 { font-size: clamp(2.2rem, 7vw, 3.5rem); }
    }
    @media (max-width: 640px) {
      .nav-links { display: none; }
      .nav-links.open {
        display: flex; flex-direction: column;
        position: fixed; top: var(--nav-h); left: 0; right: 0;
        background: var(--cream); padding: 1.5rem var(--gutter);
        border-bottom: 1px solid rgba(120,80,40,0.10);
        gap: 1.25rem; box-shadow: 0 8px 24px rgba(60,30,10,0.08);
      }
      .hamburger { display: flex; }
      .footer-inner { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .hero-caption-bar { padding: 2rem var(--gutter) 1.2rem; }
    }


        /* .nav-link::after { content:''; position:absolute; bottom:-3px; left:0; right:0; height:1.5px; background:#b8652a; transform:scaleX(0); transition:transform .25s; transform-origin:left; }
    .nav-link:hover::after { transform:scaleX(1); }
    @media(max-width:768px){ .mobile-menu.open{display:flex;} } */
