  @import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,500&display=swap');

  :root {
    --cream: #FBF6EC;
    --paper: #F3E8CE;
    --marigold: #E8871E;
    --marigold-deep: #C96A12;
    --teal: #0F5C5C;
    --teal-deep: #0A4646;
    --indigo: #16323E;
    --forest: #1B7A4A;
    --slate: #5B6B72;
    --ink: #1E2A2F;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  img, svg { display: block; max-width: 100%; }
  .display { font-family: 'Baloo 2', sans-serif; }

  :focus-visible {
    outline: 3px solid var(--marigold);
    outline-offset: 3px;
  }

  .wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

  /* ---------- NAV ---------- */
  header.site {
    position: sticky; top: 0; z-index: 100;
    background: rgba(251,246,236,0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(22,50,62,0.08);
  }
  .nav-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 28px;
    max-width: 1180px; margin: 0 auto;
  }
  .brand { display: flex; align-items: center; gap: 10px; }
  .brand svg { width: 34px; height: 34px; }
  .brand span { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 21px; color: var(--indigo); letter-spacing: 0.01em; }

  nav.links { display: flex; align-items: center; gap: 30px; }
  nav.links a {
    font-size: 14.5px; font-weight: 500; color: var(--indigo);
    position: relative; padding: 4px 0;
  }
  nav.links a::after {
    content: ""; position: absolute; left: 0; bottom: -2px;
    width: 0; height: 2px; background: var(--marigold);
    transition: width 0.25s ease;
  }
  nav.links a:hover::after { width: 100%; }
  nav.links a.current::after { width: 100%; }

  .nav-cta {
    display: flex; align-items: center; gap: 8px;
    background: var(--teal); color: var(--cream) !important;
    padding: 10px 18px; border-radius: 30px;
    font-size: 13.5px; font-weight: 600;
    white-space: nowrap;
  }
  .nav-cta:hover { background: var(--teal-deep); }
  .nav-cta::after { display: none; }

  .menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }

  @media (max-width: 880px) {
    nav.links {
      display: none;
      position: absolute; top: 100%; left: 0; right: 0;
      background: var(--cream);
      flex-direction: column; align-items: flex-start; gap: 0;
      padding: 10px 28px 18px;
      border-bottom: 1px solid rgba(22,50,62,0.08);
    }
    nav.links.open { display: flex; }
    nav.links a { padding: 12px 0; width: 100%; }
    .menu-toggle { display: block; }
  }

  /* ---------- PAGE HERO (interior pages) ---------- */
  .page-hero {
    padding: 64px 28px 60px;
    max-width: 1180px; margin: 0 auto;
  }
  .page-hero .eyebrow {
    display: inline-block;
    font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--marigold-deep);
    background: rgba(232,135,30,0.12);
    padding: 6px 14px; border-radius: 20px;
    margin-bottom: 20px;
  }
  .page-hero h1 {
    font-size: clamp(32px, 4.2vw, 50px);
    line-height: 1.1;
    color: var(--indigo);
    font-weight: 800;
    margin-bottom: 18px;
    max-width: 16ch;
  }
  .page-hero p.lead {
    font-size: 17px; line-height: 1.65; color: var(--slate);
    max-width: 56ch;
  }

  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 26px; border-radius: 30px;
    font-weight: 600; font-size: 15px; cursor: pointer; border: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
  }
  .btn:hover { transform: translateY(-2px); }
  .btn-primary { background: var(--marigold); color: #fff; box-shadow: 0 8px 20px rgba(232,135,30,0.28); }
  .btn-primary:hover { background: var(--marigold-deep); }
  .btn-ghost { background: transparent; color: var(--indigo); border: 1.5px solid rgba(22,50,62,0.25); }
  .btn-ghost:hover { border-color: var(--indigo); }

  /* ---------- HOMEPAGE HERO (index.html only) ---------- */
  .hero {
    position: relative;
    padding: 76px 28px 0;
    max-width: 1180px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 44px;
  }
  .hero-copy { max-width: 760px; }
  .hero-copy .eyebrow {
    display: inline-block;
    font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--marigold-deep);
    background: rgba(232,135,30,0.12);
    padding: 6px 14px; border-radius: 20px;
    margin-bottom: 20px;
  }
  .hero-copy h1 {
    font-size: clamp(36px, 4.6vw, 58px);
    line-height: 1.08;
    color: var(--indigo);
    font-weight: 800;
    margin-bottom: 22px;
    max-width: 11ch;
  }
  .hero-copy p.lead {
    font-size: 17px; line-height: 1.65; color: var(--slate);
    max-width: 46ch; margin-bottom: 30px;
  }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

  .status-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--slate);
  }
  .status-badge .dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--forest);
    box-shadow: 0 0 0 4px rgba(27,122,74,0.15);
  }

  /* ---------- HERO BANNER (signature element, index.html only) ---------- */
  .hero-scene {
    position: relative;
    width: 100%;
    aspect-ratio: 2.5 / 1;
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(180deg, #FFF4DA 0%, #FFDCA3 26%, #F9BA7C 48%, #F2996A 66%, #E87C4E 84%, #DE6A3E 100%);
  }
  .hero-scene svg { position: absolute; inset: 0; width: 100%; height: 100%; }

  .sun-rays { animation: fadeIn 1.4s ease 0.4s both; }
  .sun {
    animation: rise 1.7s cubic-bezier(.2,.8,.2,1) both;
    transform-origin: center;
  }
  .sun-glow {
    animation: pulse 4.5s ease-in-out infinite;
    animation-delay: 1.7s;
    transform-origin: center;
  }
  .hills-back { animation: fadeUp 1s ease 0.2s both; }
  .hills-front { animation: fadeUp 1s ease 0.4s both; }
  .village { animation: fadeUp 0.9s ease 0.6s both; }
  .fields { animation: fadeUp 0.9s ease 0.75s both; }
  .people { animation: fadeUp 0.9s ease 0.95s both; }
  .birds { animation: fadeIn 1.2s ease 1.5s both; }

  @keyframes rise {
    from { transform: translateY(90px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  @keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
  }
  @keyframes fadeUp {
    from { transform: translateY(16px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

  @media (prefers-reduced-motion: reduce) {
    .sun, .sun-glow, .hills-back, .hills-front, .village, .fields, .people, .birds, .sun-rays { animation: none !important; }
  }

  @media (max-width: 900px) {
    .hero { padding-top: 44px; }
    .hero-scene { aspect-ratio: 1.15 / 1; }
  }


  /* ---------- SECTION SHELLS ---------- */
  section { padding: 90px 28px; }
  .section-inner { max-width: 1180px; margin: 0 auto; }
  .section-head { max-width: 620px; margin-bottom: 56px; }
  .section-head .kicker {
    font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 12px; display: block;
  }
  .section-head h2 {
    font-size: clamp(28px, 3.2vw, 40px); color: var(--indigo); margin-bottom: 16px; line-height: 1.15;
  }
  .section-head p { color: var(--slate); font-size: 16px; line-height: 1.6; }

  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }
  @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

  .pillars-bg { background: var(--paper); }

  /* ---------- FOUR PILLARS (shared card style) ---------- */
  .pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .pillar {
    background: #fff; border-radius: 20px; padding: 30px 24px;
    border-top: 5px solid var(--pillar-color, var(--marigold));
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .pillar:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(22,50,62,0.09); }
  .pillar .icon-badge {
    width: 52px; height: 52px; border-radius: 14px;
    background: color-mix(in srgb, var(--pillar-color) 14%, white);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }
  .pillar .icon-badge svg { width: 26px; height: 26px; }
  .pillar h3 { font-family: 'Baloo 2', sans-serif; font-size: 19px; color: var(--indigo); margin-bottom: 10px; }
  .pillar p { font-size: 14px; line-height: 1.6; color: var(--slate); }

  @media (max-width: 980px) { .pillar-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) { .pillar-grid { grid-template-columns: 1fr; } }

  /* ---------- FLOW / PROCESS ---------- */
  .flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 18px; }
  .flow-node {
    background: #fff; border-radius: 20px; padding: 28px 24px; text-align: center;
    box-shadow: 0 10px 26px rgba(22,50,62,0.06);
  }
  .flow-node .node-icon {
    width: 56px; height: 56px; border-radius: 50%; background: var(--indigo);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
  }
  .flow-node .node-icon svg { width: 26px; height: 26px; }
  .flow-node h4 { font-family: 'Baloo 2', sans-serif; font-size: 17px; color: var(--indigo); margin-bottom: 8px; }
  .flow-node p { font-size: 13.5px; color: var(--slate); line-height: 1.55; }
  .flow-arrow { color: var(--marigold); font-size: 22px; }

  @media (max-width: 880px) {
    .flow { grid-template-columns: 1fr; }
    .flow-arrow { transform: rotate(90deg); margin: 0 auto; }
  }

  .contact-strip {
    margin-top: 44px;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
    background: var(--indigo); color: var(--cream);
    border-radius: 20px; padding: 28px 34px;
  }
  .contact-strip .num { font-family: 'Baloo 2', sans-serif; font-size: 26px; font-weight: 700; }
  .contact-strip .lbl { font-size: 12.5px; color: rgba(251,246,236,0.65); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }

  /* ---------- GET INVOLVED CARDS ---------- */
  .involve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .involve-card { border-radius: 24px; padding: 40px 34px; color: #fff; position: relative; overflow: hidden; }
  .involve-card.volunteer { background: linear-gradient(135deg, var(--teal), var(--teal-deep)); }
  .involve-card.partner { background: linear-gradient(135deg, var(--marigold), var(--marigold-deep)); }
  .involve-card h3 { font-family: 'Baloo 2', sans-serif; font-size: 24px; margin-bottom: 14px; }
  .involve-card p { font-size: 14.5px; line-height: 1.65; opacity: 0.92; margin-bottom: 26px; max-width: 40ch; }
  .involve-card .btn-white {
    background: #fff; color: var(--indigo); padding: 12px 22px; border-radius: 30px;
    font-weight: 600; font-size: 14px; display: inline-flex; gap: 8px; align-items: center;
  }
  .involve-card .btn-white:hover { background: var(--cream); }
  @media (max-width: 880px) { .involve-grid { grid-template-columns: 1fr; } }

  /* ---------- FORMS ---------- */
  .form-card {
    background: #fff; border-radius: 24px; padding: 40px; box-shadow: 0 10px 30px rgba(22,50,62,0.07);
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
  .form-field { display: flex; flex-direction: column; gap: 7px; }
  .form-field.full { grid-column: 1 / -1; }
  .form-field label { font-size: 13.5px; font-weight: 600; color: var(--indigo); }
  .form-field input, .form-field select, .form-field textarea {
    border: 1.5px solid rgba(22,50,62,0.15); border-radius: 12px; padding: 12px 14px;
    font-family: 'Poppins', sans-serif; font-size: 14.5px; color: var(--ink); background: var(--cream);
  }
  .form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: none; border-color: var(--marigold);
  }
  .form-field textarea { resize: vertical; min-height: 100px; }
  @media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

  /* ---------- INFO CARDS (generic reusable) ---------- */
  .info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .info-card {
    background: #fff; border-radius: 20px; padding: 28px 24px;
    box-shadow: 0 8px 22px rgba(22,50,62,0.06);
  }
  .info-card .icon-badge {
    width: 48px; height: 48px; border-radius: 12px; background: rgba(232,135,30,0.12);
    display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  }
  .info-card .icon-badge svg { width: 22px; height: 22px; }
  .info-card h3 { font-family: 'Baloo 2', sans-serif; font-size: 18px; color: var(--indigo); margin-bottom: 8px; }
  .info-card p { font-size: 14px; line-height: 1.6; color: var(--slate); }
  @media (max-width: 900px) { .info-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) { .info-grid { grid-template-columns: 1fr; } }

  /* ---------- INFO GRID VARIANTS (proper responsive, no inline overrides) ---------- */
  .info-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  .info-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
  @media (max-width: 700px) {
    .info-grid-2 { grid-template-columns: 1fr; }
    .info-grid-4 { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 520px) {
    .info-grid-4 { grid-template-columns: 1fr; }
  }

  /* ---------- EXPANDABLE TEXT (avoids long text walls on mobile) ---------- */
  .clamp-text {
    display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 4;
    overflow: hidden;
  }
  .clamp-text.expanded { display: block; -webkit-line-clamp: unset; overflow: visible; }
  .read-more-btn {
    background: none; border: none; padding: 10px 0 0; margin: 0;
    color: var(--marigold-deep); font-weight: 600; font-size: 13.5px;
    cursor: pointer; font-family: 'Poppins', sans-serif;
  }
  .read-more-btn:hover { text-decoration: underline; }

  /* ---------- FOOTER ---------- */
  footer { background: var(--indigo); color: var(--cream); padding: 64px 28px 32px; }

  .footer-grid {
    max-width: 1180px; margin: 0 auto;
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
    padding-bottom: 40px; border-bottom: 1px solid rgba(251,246,236,0.14);
  }
  .footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
  .footer-brand span { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 20px; }
  .footer-grid p.tag { font-size: 13.5px; color: rgba(251,246,236,0.65); max-width: 30ch; line-height: 1.6; }
  .foot-col h5 { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(251,246,236,0.55); margin-bottom: 16px; }
  .foot-col a { display: block; font-size: 14px; margin-bottom: 11px; color: rgba(251,246,236,0.88); }
  .foot-col a:hover { color: var(--marigold); }
  .foot-bottom {
    max-width: 1180px; margin: 0 auto; padding-top: 24px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    font-size: 12.5px; color: rgba(251,246,236,0.5);
  }
  @media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
