:root {
    --teal: #0E7C7B;
    --teal-dark: #085A5A;
    --teal-light: #E1F5EE;
    --teal-mid: #1D9E75;
    --gold: #E8A820;
    --gold-dark: #C48A00;
    --gold-light: #FFF8E6;
    --white: #FFFFFF;
    --off-white: #F8F6F1;
    --text-dark: #1A2235;
    --text-mid: #445068;
    --text-light: #6B7A99;
    --border: #E2E8F0;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%;
    height: 80px;
  }
  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo img { height: 52px; width: auto; }
  .nav-links { display: flex; align-items: center; gap: 2rem; }
  .nav-links a {
    font-size: 0.92rem; font-weight: 500; color: var(--text-mid);
    text-decoration: none; letter-spacing: 0.02em;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--teal); }
  .nav-links a.active { color: var(--teal); }
  .btn-donate-nav {
    background: var(--gold); color: var(--text-dark) !important;
    padding: 0.55rem 1.4rem; border-radius: 50px;
    font-weight: 600; font-size: 0.9rem !important;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.15s !important;
    box-shadow: 0 2px 8px rgba(232,168,32,0.35);
  }
  .btn-donate-nav:hover { background: var(--gold-dark) !important; transform: translateY(-1px); }

  /* ── PAGE SECTIONS ── */
  section { display: none; }
  section.active { display: block; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
  }
  .hero-left {
    padding: 6rem 5% 6rem 8%;
    position: relative; z-index: 2;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--teal-light); color: var(--teal-dark);
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 50px; margin-bottom: 1.5rem;
  }
  /* eyebrow dot only before middle separators via content tweak — handled in HTML */
  .hero-eyebrow::before { display: none; }
  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 4.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
  }
  .hero h1 em { font-style: normal; color: var(--gold); }
  .hero-teal { color: var(--teal); }
  .hero p {
    font-size: 1.1rem; color: var(--text-mid);
    max-width: 480px; margin-bottom: 2.5rem; line-height: 1.8;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .hero-subhead {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 2rem !important;
    margin-top: -0.5rem;
  }
  .hero-subhead span { color: var(--teal); }
  .hero-subhead em { font-style: normal; color: var(--gold-dark); }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold); color: var(--text-dark);
    font-family: var(--sans); font-weight: 600; font-size: 1rem;
    padding: 0.85rem 2rem; border-radius: 50px; border: none; cursor: pointer;
    text-decoration: none; transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(232,168,32,0.4);
  }
  .btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,168,32,0.5); }
  .btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--teal);
    font-family: var(--sans); font-weight: 600; font-size: 1rem;
    padding: 0.85rem 2rem; border-radius: 50px;
    border: 2px solid var(--teal); cursor: pointer;
    text-decoration: none; transition: all 0.2s;
  }
  .btn-secondary:hover { background: var(--teal); color: white; transform: translateY(-2px); }
  .hero-right {
    position: relative; height: 100vh; overflow: hidden;
  }
  .hero-right img {
    width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
    display: block;
    transform: none;
  }
  .hero-right::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to right, white 0%, transparent 18%);
  }
  .hero-stats {
    display: inline-flex; gap: 1px; margin-top: 2rem;
    background: var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
  }
  .stat-box {
    padding: 1rem 1.5rem; text-align: center;
    background: var(--off-white);
  }
  .stat-box:not(:last-child) { border-right: 1px solid var(--border); }
  .stat-num { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--teal); line-height: 1; }
  .stat-lbl { font-size: 0.72rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-top: 4px; }

  /* ── PILLARS ── */
  .section-pad { padding: 6rem 8%; }
  .section-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
  .section-tag {
    display: inline-block;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 0.75rem;
  }
  .section-header h2 {
    font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700;
    color: var(--text-dark); line-height: 1.2; margin-bottom: 1rem;
  }
  .section-header p { font-size: 1.05rem; color: var(--text-mid); line-height: 1.8; }

  .pillars { background: var(--off-white); }
  .pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .pillar-card {
    background: white; border-radius: 20px;
    overflow: hidden; box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
  .pillar-img { position: relative; height: 240px; overflow: hidden; }
  .pillar-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
  .pillar-card:hover .pillar-img img { transform: scale(1.04); }
  .pillar-badge {
    position: absolute; top: 1rem; left: 1rem;
    background: var(--teal); color: white;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 50px;
  }
  .pillar-body { padding: 1.75rem; }
  .pillar-body h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
  .pillar-body p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1.25rem; }
  .pillar-tags { display: flex; flex-wrap: wrap; gap: 8px; }
  .tag-pill {
    font-size: 0.75rem; font-weight: 500; color: var(--teal-dark);
    background: var(--teal-light); padding: 4px 10px; border-radius: 50px;
  }

  /* ── IMPACT QUOTE ── */
  .impact-quote {
    background: var(--teal-dark);
    padding: 6rem 8%; position: relative; overflow: hidden;
  }
  .impact-quote::before {
    content: '"';
    position: absolute; top: -2rem; left: 6%;
    font-family: var(--serif); font-size: 20rem; font-weight: 900;
    color: rgba(255,255,255,0.05); line-height: 1; pointer-events: none;
  }
  .impact-quote blockquote {
    max-width: 780px; margin: 0 auto; text-align: center;
    font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 400; color: white; line-height: 1.6;
    font-style: italic;
  }
  .impact-quote cite {
    display: block; margin-top: 1.5rem;
    font-family: var(--sans); font-style: normal;
    font-size: 0.9rem; font-weight: 500;
    color: rgba(255,255,255,0.6); letter-spacing: 0.08em;
  }
  .gold-bar {
    width: 60px; height: 3px; background: var(--gold);
    margin: 1.5rem auto 0; border-radius: 2px;
  }

  /* ── HOW WE HELP / GOOD WORKS ── */
  .good-works { background: white; }
  .gw-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .gw-img { border-radius: 20px; overflow: hidden; height: 520px; }
  .gw-img img { width: 100%; height: 100%; object-fit: cover; }
  .gw-content h2 {
    font-family: var(--serif); font-size: clamp(1.8rem, 2.8vw, 2.8rem); font-weight: 700;
    color: var(--text-dark); line-height: 1.2; margin-bottom: 1rem;
  }
  .gw-content p { font-size: 1rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 1.5rem; }
  .gw-items { display: flex; flex-direction: column; gap: 1rem; }
  .gw-item {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1rem 1.25rem; background: var(--off-white); border-radius: var(--radius);
    transition: background 0.2s;
  }
  .gw-item:hover { background: var(--teal-light); }
  .gw-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--teal); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 1.1rem;
  }
  .gw-item-text h4 { font-weight: 600; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 2px; }
  .gw-item-text p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }

  /* ── DONATE CTA ── */
  .donate-cta {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    padding: 6rem 8%; text-align: center; position: relative; overflow: hidden;
  }
  .donate-cta::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px; border-radius: 50%;
    background: rgba(255,255,255,0.05);
  }
  .donate-cta h2 {
    font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 700; color: white; line-height: 1.2; margin-bottom: 1rem;
  }
  .donate-cta p { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 2.5rem; }
  .donate-amounts { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
  .amount-btn {
    background: rgba(255,255,255,0.15); color: white;
    border: 2px solid rgba(255,255,255,0.4); border-radius: 50px;
    font-family: var(--sans); font-size: 1rem; font-weight: 600;
    padding: 0.65rem 1.75rem; cursor: pointer; transition: all 0.2s;
  }
  .amount-btn:hover, .amount-btn.selected {
    background: var(--gold); color: var(--text-dark); border-color: var(--gold);
  }
  .btn-donate-big {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gold); color: var(--text-dark);
    font-family: var(--sans); font-weight: 700; font-size: 1.15rem;
    padding: 1rem 3rem; border-radius: 50px; border: none; cursor: pointer;
    text-decoration: none; transition: all 0.2s;
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  }
  .btn-donate-big:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.3); }
  .donate-note { margin-top: 1rem; font-size: 0.82rem; color: rgba(255,255,255,0.55); }

  /* ── ABOUT PAGE ── */
  .about-hero {
    background: var(--teal-dark); padding: 9rem 8% 5rem;
    position: relative; overflow: hidden;
  }
  .about-hero::before {
    content: '';
    position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    background: url('https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?w=1400&q=60') center/cover no-repeat;
    opacity: 0.12;
  }
  .about-hero-inner { position: relative; z-index: 2; max-width: 700px; }
  .about-hero h1 {
    font-family: var(--serif); font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 900; color: white; line-height: 1.1; margin-bottom: 1.25rem;
  }
  .about-hero p { font-size: 1.15rem; color: rgba(255,255,255,0.8); line-height: 1.8; }

  .about-mission {
    padding: 6rem 8%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  }
  .about-mission h2 {
    font-family: var(--serif); font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight: 700; margin-bottom: 1.25rem; line-height: 1.25;
  }
  .about-mission p { font-size: 1rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 1rem; }
  .scripture-box {
    background: var(--teal-light); border-left: 4px solid var(--teal);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.5rem 1.75rem; margin-top: 1.5rem;
    font-family: var(--serif); font-style: italic;
    font-size: 1.05rem; color: var(--teal-dark); line-height: 1.7;
  }
  .scripture-box cite { font-size: 0.82rem; font-style: normal; font-weight: 600; display: block; margin-top: 0.5rem; }

  .pillars-visual {
    background: var(--off-white); border-radius: 20px; padding: 2rem;
    display: flex; flex-direction: column; gap: 1.5rem;
  }
  .pillar-row {
    background: white; border-radius: var(--radius); padding: 1.25rem 1.5rem;
    display: flex; align-items: center; gap: 1rem; box-shadow: var(--shadow);
  }
  .pillar-dot {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--teal); color: white;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 1.2rem; font-weight: 700;
    flex-shrink: 0;
  }
  .pillar-row h4 { font-weight: 600; font-size: 1rem; color: var(--text-dark); }
  .pillar-row p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.5; margin-top: 2px; }

  /* ── TEAM BIOS ── */
  .team-section { padding: 6rem 8%; background: white; }
  .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 3.5rem; }
  .bio-card {
    border-radius: 20px; overflow: hidden;
    box-shadow: var(--shadow); transition: transform 0.3s;
    background: white;
  }
  .bio-card:hover { transform: translateY(-5px); }
  .bio-img { height: 280px; background: var(--teal-light); position: relative; overflow: hidden; }
  .bio-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

  /* Desktop fix: prevent headshots from being over-cropped when the
     3-column grid makes .bio-img wider than its fixed 280px height.
     Using aspect-ratio instead lets the box scale proportionally,
     so faces/hair are never clipped, at any screen width.
     Only applies at the same breakpoint the grid already uses (901px+),
     so mobile is completely unaffected. */
  @media (min-width: 901px) {
    .bio-img {
      height: auto;
      aspect-ratio: 4 / 5;
    }
  }
  .bio-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal) 100%);
  }
  .bio-initials {
    font-family: var(--serif); font-size: 5rem; font-weight: 700;
    color: rgba(255,255,255,0.7);
  }
  .bio-body { padding: 1.75rem; }
  .bio-body h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; margin-bottom: 0.2rem; }
  .bio-role {
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 1rem;
  }
  .bio-body p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; }
  .bio-forthcoming {
    font-size: 0.85rem; color: var(--text-light); font-style: italic;
    background: var(--off-white); border-radius: 8px; padding: 0.75rem 1rem;
    margin-top: 0.5rem;
  }

  /* ── HOW IT WORKS ── */
  .how-section { padding: 6rem 8%; background: var(--off-white); }
  .how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
  .how-card {
    background: white; border-radius: 20px; padding: 2rem 1.5rem;
    text-align: center; box-shadow: var(--shadow); position: relative;
  }
  .how-num {
    position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--gold); color: var(--text-dark);
    font-weight: 700; font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(232,168,32,0.4);
  }
  .how-icon { font-size: 2.2rem; margin: 0.5rem 0 1rem; }
  .how-card h4 { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
  .how-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }

  /* ── CONTACT ── */
  .contact-section {
    padding: 6rem 8%; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
    background: white;
  }
  .contact-left h2 {
    font-family: var(--serif); font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight: 700; margin-bottom: 1rem; line-height: 1.25;
  }
  .contact-left p { font-size: 1rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 2rem; }
  .contact-info { display: flex; flex-direction: column; gap: 1rem; }
  .contact-item { display: flex; gap: 1rem; align-items: center; }
  .contact-item-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--teal-light); color: var(--teal);
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
  }
  .contact-item-text p { font-size: 0.82rem; color: var(--text-light); margin-bottom: 2px; }
  .contact-item-text strong { font-size: 0.95rem; color: var(--text-dark); }

  .contact-form { background: var(--off-white); border-radius: 20px; padding: 2.5rem; }
  .form-group { margin-bottom: 1.25rem; }
  .form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; }
  .form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--border);
    border-radius: var(--radius); font-family: var(--sans); font-size: 0.95rem;
    color: var(--text-dark); background: white; transition: border-color 0.2s;
    outline: none; appearance: none;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--teal);
  }
  .form-group textarea { height: 120px; resize: vertical; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .btn-submit {
    width: 100%; background: var(--teal); color: white;
    border: none; border-radius: 50px; padding: 0.9rem;
    font-family: var(--sans); font-size: 1rem; font-weight: 600;
    cursor: pointer; transition: all 0.2s; margin-top: 0.5rem;
  }
  .btn-submit:hover { background: var(--teal-dark); transform: translateY(-1px); }

  /* ── FOOTER ── */
  footer {
    background: var(--text-dark); color: rgba(255,255,255,0.7);
    padding: 4rem 8% 2rem;
  }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-brand img { height: 88px; width: auto; margin-bottom: 1rem; }
  .footer-brand p { font-size: 0.88rem; line-height: 1.8; max-width: 300px; color: rgba(255,255,255,0.55); }
  .footer-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: white; margin-bottom: 1rem; }
  .footer-col a {
    display: block; color: rgba(255,255,255,0.55); text-decoration: none;
    font-size: 0.88rem; margin-bottom: 0.6rem; transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--gold); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.8rem; color: rgba(255,255,255,0.35);
  }
  .footer-verse {
    font-family: var(--serif); font-style: italic;
    font-size: 0.88rem; color: rgba(255,255,255,0.4);
  }

  /* ── PROGRAMS PAGE ── */
  .programs-hero {
    background: var(--off-white); padding: 9rem 8% 5rem;
    border-bottom: 1px solid var(--border);
  }
  .programs-hero h1 {
    font-family: var(--serif); font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 900; color: var(--text-dark); line-height: 1.1; margin-bottom: 1rem;
  }
  .programs-hero p { font-size: 1.15rem; color: var(--text-mid); max-width: 600px; line-height: 1.8; }
  .programs-grid { padding: 5rem 8%; display: grid; gap: 5rem; }
  .program-block {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  }
  .program-block.reverse { direction: rtl; }
  .program-block.reverse > * { direction: ltr; }
  .program-img { border-radius: 20px; overflow: hidden; height: 400px; }
  .program-img img { width: 100%; height: 100%; object-fit: cover; }
  .program-text h3 {
    font-family: var(--serif); font-size: 2rem; font-weight: 700;
    color: var(--text-dark); margin-bottom: 0.75rem; line-height: 1.25;
  }
  .program-text .prog-tag {
    display: inline-block; background: var(--gold-light); color: var(--gold-dark);
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 50px; margin-bottom: 1rem;
  }
  .program-text p { font-size: 0.98rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 1.5rem; }
  .program-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .program-list li {
    font-size: 0.9rem; color: var(--text-mid);
    display: flex; align-items: center; gap: 0.6rem;
  }
  .program-list li::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--teal); flex-shrink: 0;
  }

  /* ── DONATE PAGE ── */
  .donate-page { padding: 9rem 8% 6rem; }
  .donate-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
  .donate-left h1 {
    font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 900; line-height: 1.15; margin-bottom: 1rem; color: var(--text-dark);
  }
  .donate-left p { font-size: 1rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 1.5rem; }
  .impact-items { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
  .impact-item {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1rem 1.25rem;
    background: var(--off-white); border-radius: var(--radius);
  }
  .impact-amount {
    font-family: var(--serif); font-size: 1.4rem; font-weight: 700;
    color: var(--teal); min-width: 70px;
  }
  .impact-item p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }
  .donate-form-box {
    background: white; border-radius: 24px; padding: 2.5rem;
    box-shadow: var(--shadow-lg); border: 1px solid var(--border);
    position: sticky; top: 90px;
  }
  .donate-form-box h2 {
    font-family: var(--serif); font-size: 1.6rem; font-weight: 700;
    margin-bottom: 0.5rem; color: var(--text-dark);
  }
  .donate-form-box .sub { font-size: 0.88rem; color: var(--text-light); margin-bottom: 1.75rem; }
  .freq-tabs { display: flex; background: var(--off-white); border-radius: 50px; padding: 4px; margin-bottom: 1.5rem; }
  .freq-tab {
    flex: 1; text-align: center; padding: 0.55rem;
    border-radius: 50px; font-size: 0.85rem; font-weight: 600;
    color: var(--text-mid); cursor: pointer; transition: all 0.2s; border: none; background: none;
    font-family: var(--sans);
  }
  .freq-tab.active { background: white; color: var(--teal); box-shadow: var(--shadow); }
  .amount-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 1.25rem; }
  .amount-choice {
    border: 2px solid var(--border); border-radius: var(--radius); padding: 0.75rem;
    text-align: center; cursor: pointer; transition: all 0.2s;
    font-family: var(--sans);
    background: none;
  }
  .amount-choice:hover { border-color: var(--teal); }
  .amount-choice.selected { border-color: var(--teal); background: var(--teal-light); }
  .amount-choice .amt { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--text-dark); display: block; }
  .amount-choice .amt-lbl { font-size: 0.7rem; color: var(--text-light); display: block; margin-top: 2px; }
  .custom-input-wrap { margin-bottom: 1.5rem; }
  .custom-input-wrap label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; }
  .custom-input-inner { position: relative; }
  .custom-input-inner span {
    position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
    font-weight: 600; color: var(--text-mid);
  }
  .custom-input-inner input {
    width: 100%; padding: 0.75rem 1rem 0.75rem 1.75rem;
    border: 1.5px solid var(--border); border-radius: var(--radius);
    font-family: var(--sans); font-size: 1rem; color: var(--text-dark); background: white;
    outline: none; transition: border-color 0.2s;
  }
  .custom-input-inner input:focus { border-color: var(--teal); }
  .secure-note {
    display: flex; align-items: center; gap: 8px; justify-content: center;
    margin-top: 1rem; font-size: 0.78rem; color: var(--text-light);
  }
  .secure-note::before { content: '🔒'; font-size: 0.9rem; }

  /* Animations */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .fade-up { animation: fadeUp 0.6s ease both; }
  .fade-up-2 { animation: fadeUp 0.6s 0.15s ease both; }
  .fade-up-3 { animation: fadeUp 0.6s 0.3s ease both; }

  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-right { height: 400px; }
    .pillar-grid, .team-grid { grid-template-columns: 1fr; }
    .gw-grid, .about-mission, .contact-section, .donate-page-grid, .program-block { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .how-grid { grid-template-columns: repeat(2,1fr); }
    .program-block.reverse { direction: ltr; }
  }

  /* ════════════ MOBILE NAVIGATION (hamburger) ════════════ */
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    padding: 8px;
    background: none; border: none; cursor: pointer;
  }
  .nav-toggle span {
    display: block; height: 2.5px; width: 100%;
    background: var(--text-dark); border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  @media (max-width: 820px) {
    nav { padding: 0 6%; height: 68px; }
    .nav-logo img { height: 42px; }
    .nav-toggle { display: flex; }
    .nav-links {
      position: fixed;
      top: 68px; left: 0; right: 0;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      box-shadow: var(--shadow-lg);
      padding: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }
    .nav-links.open { max-height: calc(100vh - 68px); overflow-y: auto; }
    .nav-links a {
      padding: 1rem 6%;
      font-size: 1rem;
      border-bottom: 1px solid var(--border);
    }
    .btn-donate-nav {
      margin: 0.75rem 6% 1rem;
      text-align: center;
      border-bottom: none !important;
    }
  }

  /* ════════════ SMALL SCREENS (phones) ════════════ */
  @media (max-width: 600px) {
    .section-pad { padding: 4rem 6%; }
    .section-header { margin-bottom: 2.5rem; }
    .hero { padding-top: 68px; }
    .hero-left { padding: 3rem 6%; }
    .hero-right { height: 280px; }
    .hero-right::after { background: linear-gradient(to bottom, transparent 70%, white 100%); }
    .hero-actions { width: 100%; }
    .hero-actions .btn-primary, .hero-actions .btn-secondary {
      flex: 1 1 auto; justify-content: center;
    }
    .hero-stats { display: flex; width: 100%; flex-wrap: wrap; }
    .stat-box { flex: 1 1 30%; padding: 0.85rem 0.5rem; }
    .impact-quote, .donate-cta, .how-section, .team-section,
    .about-mission, .contact-section, .programs-grid {
      padding-left: 6%; padding-right: 6%;
    }
    .impact-quote, .donate-cta { padding-top: 4rem; padding-bottom: 4rem; }
    .about-hero, .programs-hero { padding: 7rem 6% 3.5rem; }
    .about-mission { padding-top: 4rem; padding-bottom: 4rem; gap: 2.5rem; }
    .how-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; align-items: center; }
    .contact-form, .donate-form-box { padding: 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .donate-page { padding: 7rem 6% 4rem; }
    .donate-page-grid { gap: 2.5rem; }
    .donate-form-box { position: static; }
    .program-block { gap: 2rem; }
    .program-img, .gw-img { height: 260px; }
    .volunteer-banner { flex-wrap: wrap; text-align: center; padding: 0.6rem 6% !important; }
  }

  @media (max-width: 400px) {
    .hero h1 { font-size: 2.2rem; }
    .stat-num { font-size: 1.4rem; }
    .amount-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-logo img { height: 36px; }
    .donate-amounts { gap: 0.6rem; }
    .amount-btn { padding: 0.6rem 1.25rem; }
  }
.bio-quote { font-family: var(--serif); font-style: italic; color: var(--teal); border-left: 3px solid var(--gold); padding-left: 1rem; margin-top: 1.1rem; font-size: 0.95rem; }

/* Mission & Vision boxes */
.mv-grid { display:grid; grid-template-columns:1fr 1fr; gap:3rem; max-width:1100px; margin:0 auto; }
@media (max-width:768px){ .mv-grid { grid-template-columns:1fr; gap:1.5rem; } }

/* Good News article grid */
.news-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
@media (max-width:900px){ .news-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px){ .news-grid { grid-template-columns:1fr; } }

/* Reusable two-column section (stacks on mobile) */
.two-col { display:grid; grid-template-columns:1fr 1fr; gap:3rem; max-width:1100px; margin:0 auto; align-items:center; }
@media (max-width:768px){ .two-col { grid-template-columns:1fr; gap:2rem; } }
