/* ── TOKENS ── */
  :root {
    --forest:   #1a4a2e;
    --moss:     #2d6a4f;
    --sage:     #52b788;
    --cream:    #f8f4ed;
    --yellow:   #fad501;
    --parchment:#ede8df;
    --ink:      #1c1c1c;
    --mist:     #6b7c6e;
    --gold:     #c9a84c;
    --white:    #ffffff;

    --display: 'Cormorant Garamond', Georgia, serif;
    --body:    'Inter', sans-serif;
    --serif-bold: 'Playfair Display', Georgia, serif;

    --radius: 2px;
    --transition: 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--body); color: var(--ink); background: var(--white); overflow-x: hidden; width: 100%; }
img, svg, video { max-width: 100%; height: auto; }

  /* ── UTILITY ── */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  .btn-primary {
    display: inline-block; padding: 12px 28px;
    background: var(--forest); color: var(--white);
    font-family: var(--body); font-size: 13px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
    border: 2px solid var(--forest); cursor: pointer;
    transition: var(--transition);
  }
  .btn-primary:hover { background: transparent; color: var(--forest); }
  .btn-outline {
    display: inline-block; padding: 12px 28px;
    background: transparent; color: var(--forest);
    font-family: var(--body); font-size: 13px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
    border: 2px solid var(--forest); cursor: pointer;
    transition: var(--transition);
  }
  .btn-outline:hover { background: var(--forest); color: var(--white); }
  .btn-ghost {
    display: inline-block; padding: 12px 28px;
    background: transparent; color: var(--white);
    font-family: var(--body); font-size: 13px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
    border: 2px solid rgba(255,255,255,0.6); cursor: pointer;
    transition: var(--transition);
  }
  .btn-ghost:hover { background: var(--white); color: var(--forest); border-color: var(--white); }
  .section-eyebrow {
    font-family: var(--body); font-size: 11px; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage);
    margin-bottom: 12px; display: block;
  }
  .section-title {
    font-family: var(--display); font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600; line-height: 1.15; color: var(--forest);
  }
  .divider-line {
    width: 48px; height: 3px; background: var(--gold); margin: 20px 0 28px;
  }

  /* ── TOP BAR ── */
  .top-bar {
    background: var(--forest); color: rgba(255,255,255,0.82);
    font-size: 12px; font-family: var(--body); letter-spacing: 0.03em;
    padding: 8px 0;
  }
  .top-bar .container {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
  }
  .top-bar-left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
  .top-bar-left a { color: rgba(255,255,255,0.8); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
  .top-bar-left a:hover { color: var(--sage); }
  .top-bar-right { display: flex; align-items: center; gap: 10px; }
  .social-icon {
    width: 28px; height: 28px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.8); text-decoration: none; font-size: 11px;
    transition: var(--transition);
  }
  .social-icon:hover { background: var(--yellow); border-color: var(--yellow); color: black; }
  .top-bar-ctas { display: flex; gap: 8px; margin-left: 16px; }
  .top-btn {
    padding: 4px 14px; font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; text-decoration: none; cursor: pointer; transition: var(--transition);
  }
  .top-btn-donate { background: var(--yellow); color: var(--ink); }
  .top-btn-donate:hover { background: #e0b85a; }
  .top-btn-partner { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.4); }
  .top-btn-partner:hover { background: rgba(255,255,255,0.1); }

  /* ── MAIN HEADER ── */
  .main-header {
    background: var(--white); border-bottom: 1px solid var(--parchment);
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  }
  .main-header .container {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 12px; padding-bottom: 12px;
  }
  .logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
  .logo img { height: 56px; width: auto; }
  .logo-text { display: flex; flex-direction: column; }
  .logo-abbr {
    font-family: var(--serif-bold); font-size: 22px; font-weight: 900;
    color: var(--forest); line-height: 1; letter-spacing: 0.04em;
  }
  .logo-full {
    font-family: var(--body); font-size: 9px; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--mist);
    line-height: 1.4;
  }
  nav { display: flex; align-items: center; gap: 4px; }
  nav a {
    font-family: var(--body); font-size: 12.5px; font-weight: 500;
    color: var(--ink); text-decoration: none; padding: 8px 10px;
    letter-spacing: 0.02em; transition: color 0.2s; white-space: nowrap;
    position: relative;
  }
  nav a::after {
    content: ''; position: absolute; bottom: 4px; left: 10px; right: 10px;
    height: 2px; background: var(--sage); transform: scaleX(0);
    transition: transform 0.25s ease; transform-origin: left;
  }
  nav a:hover { color: var(--forest); }
  nav a:hover::after { transform: scaleX(1); }
  .nav-cta { margin-left: 12px; }
  .nav-cta-mobile { display: none; }

  /* ── MOBILE NAV TOGGLE ── */
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: none; border: none; cursor: pointer;
    padding: 0; margin-left: 8px; z-index: 201; position: relative;
  }
  .nav-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--forest); transition: var(--transition);
  }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(26,74,46,0.5);
    z-index: 99; opacity: 0;
    transition: opacity 0.3s ease;
  }
  .nav-overlay.active { display: block; opacity: 1; }

  @media (max-width: 1024px) {
    .nav-toggle { display: flex; }
    .nav-cta { display: none; }
    nav {
      position: fixed; top: 0; right: -400px;
      width: 280px; height: 100vh;
      background: var(--white);
      flex-direction: column; align-items: flex-start;
      padding: 96px 28px 28px; gap: 0;
      box-shadow: -8px 0 30px rgba(0,0,0,0.14);
      transition: right 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
      z-index: 190; overflow-y: auto;
    }
    nav.active { right: 0; }
    nav a {
      width: 100%; padding: 14px 0;
      border-bottom: 1px solid var(--parchment); font-size: 14px;
    }
    nav a::after { display: none; }
    .nav-cta-mobile { display: inline-block; margin-top: 20px; width: fit-content; }
  }
  @media (max-width: 480px) {
    nav { width: 82%; }
  }

  /* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 540px;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.slider-track { height: 100%; }

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.75s ease;
}

/* Full-bleed background image per slide */
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.slide.active::before { transform: scale(1); }

.slide[data-bg="1"]::before { background-image: url(../img/heritage.png); }
.slide[data-bg="2"]::before { background-image: url(../img/women.png); }
.slide[data-bg="4"]::before { background-image: url(../img/bg.png); }

.slide.active { opacity: 1; z-index: 2; }

/* Uniform dark overlay — no gradient, just a clean semi-transparent layer */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 12, 0.75);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 3;
  max-width: 640px;
  padding: 0 max(32px, calc((100vw - 1200px)/2 + 32px));
  color: #fff;
}

.slide-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.slide-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: #c9a84c;
  flex-shrink: 0;
}

.slide-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 18px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.slide-headline em {
  font-style: italic;
  color: #e8c96e;
}

.slide-sub {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  margin-bottom: 30px;
  max-width: 480px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.slide-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Removed .slide-visual — images are now full-bleed via ::before */

/* Nav buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.25);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(6px);
}

.slider-btn:hover {
  background: rgba(201,168,76,0.75);
  border-color: #c9a84c;
}

.slider-prev { left: 24px; }
.slider-next { right: 24px; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  padding: 0;
}

.slider-dot.active {
  background: #c9a84c;
  transform: scale(1.35);
}

/* Progress bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.12);
  z-index: 10;
}

.slider-progress-bar {
  height: 100%;
  background: #c9a84c;
  width: 0%;
}

@media (max-width: 768px) {
  .hero-slider { height: 480px; }
  .slide-content { padding: 0 20px; }
  .slider-btn { display: none; }
}

  /* ── HERO ── */
  .hero {
    min-height: 90vh;
    /* background:
    linear-gradient(
      135deg,
      rgba(12, 63, 39, 0.90) 0%,
      rgba(13, 51, 32, 0.90) 60%,
      rgba(17, 43, 30, 0.90) 100%
    ),
    url('../img/bg.png'); */

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2352b788' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
  }
  .hero-content { padding: 80px 60px 80px 0; position: relative; z-index: 1; }
  .hero-eyebrow {
    font-family: var(--body); font-size: 11px; font-weight: 600;
    letter-spacing: 0.25em; text-transform: uppercase; color: var(--sage);
    display: flex; align-items: center; gap: 12px; margin-bottom: 28px;
  }
  .hero-eyebrow::before { content: ''; flex: 0 0 32px; height: 1px; background: var(--sage); }
  .hero-headline {
    font-family: var(--display); font-size: clamp(2.4rem, 3.5vw, 4rem);
    font-weight: 600; line-height: 1.1; color: var(--forest);
    margin-bottom: 24px; font-style: italic;
  }
  .hero-headline em { font-style: normal; color: var(--yellow); }
  .hero-sub {
    font-family: var(--body); font-size: 15px; line-height: 1.75;
    color: #4a5a50; margin-bottom: 40px; max-width: 520px;
  }
  .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
  .hero-visual {
    position: relative; height: 100%;
    display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
    gap: 8px; padding: 40px 15px 40px 40px; min-height: 580px;
  }
  .hero-img {
    border-radius: 4px; overflow: hidden; position: relative;
  }
  .img-women {
  grid-column: 1 / -1;
    }
  .hero-img:nth-child(1) { grid-row: span 2; }
  .hero-img-inner {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-img-placeholder {
    color: rgba(255,255,255,0.3); font-size: 13px; font-family: var(--body);
    letter-spacing: 0.1em; text-transform: uppercase; text-align: center; padding: 20px;
  }
  /* Decorative arch */
  .hero-arch {
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 300px; height: 150px;
    border: 2px solid rgba(82,183,136,0.15); border-bottom: none;
    border-radius: 150px 150px 0 0;
    pointer-events: none;
  }
  /* Collage images using gradients to simulate photos */
  .img-heritage {
    background: linear-gradient(160deg, #2d4a3e 0%, #1a4a2e 50%, #0d3320 100%);
  }
  .img-community {
    background: linear-gradient(135deg, #2a5240 0%, #1e3d2f 100%);
  }
  .img-women {
    background: linear-gradient(135deg, #234736 0%, #193529 100%);
  }

  /* ── HERO: interactive touches ── */
  /* .hero-img-inner { transition: transform 8s ease-out; }
  .hero-visual:hover .hero-img-inner { transform: scale(1.08); }
  .hero-img:nth-child(1) .hero-img-inner { animation: kenBurns1 16s ease-in-out infinite alternate; }
  .hero-img:nth-child(2) .hero-img-inner { animation: kenBurns2 18s ease-in-out infinite alternate; animation-delay: 0.6s; }
  .hero-img:nth-child(3) .hero-img-inner { animation: kenBurns1 20s ease-in-out infinite alternate; animation-delay: 1.2s; }
  @keyframes kenBurns1 { from { transform: scale(1) translate(0,0); } to { transform: scale(1.12) translate(-1.5%, -1%); } }
  @keyframes kenBurns2 { from { transform: scale(1.05) translate(0,0); } to { transform: scale(1.16) translate(1.5%, 1%); } } */

  .hero-float-badge {
    position: absolute; top: 36px; right: 10px; z-index: 2;
    background: rgba(248,244,237,0.97); padding: 18px 22px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.25); border-radius: 2px;
    display: flex; align-items: center; gap: 14px;
    animation: floatBadge 5s ease-in-out infinite;
  }
  @keyframes floatBadge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
  .hero-float-badge-icon {
    width: 40px; height: 40px; border-radius: 50%; flex: 0 0 40px;
    background: rgba(45,106,79,0.1); color: var(--forest);
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  }
  .hero-float-badge-num { font-family: var(--display); font-size: 1.5rem; font-weight: 700; color: var(--forest); line-height: 1; }
  .hero-float-badge-label { font-family: var(--body); font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mist); margin-top: 2px; }

  .hero-eyebrow, .hero-headline, .hero-sub, .hero-ctas {
    opacity: 0; transform: translateY(16px); animation: heroFadeUp 0.9s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
  }
  .hero-eyebrow { animation-delay: 0.1s; }
  .hero-headline { animation-delay: 0.28s; }
  .hero-sub { animation-delay: 0.46s; }
  .hero-ctas { animation-delay: 0.64s; }
  @keyframes heroFadeUp { to { opacity: 1; transform: translateY(0); } }

  .hero-scroll-cue {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    font-family: var(--body); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.5);
  }
  .hero-scroll-cue-line { width: 3px; height: 30px; background: rgba(255,255,255,0.3); position: relative; overflow: hidden; }
  .hero-scroll-cue-line::after {
    content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
    background: var(--yellow); animation: scrollCueDrop 2s ease-in-out infinite;
  }
  @keyframes scrollCueDrop { 0% { top: -100%; } 60% { top: 100%; } 100% { top: 100%; } }

  @media (max-width: 1024px) { .hero-scroll-cue { display: none; } }
  @media (prefers-reduced-motion: reduce) {
    .hero-img-inner, .hero-float-badge, .hero-eyebrow, .hero-headline, .hero-sub, .hero-ctas, .hero-scroll-cue-line::after {
      animation: none !important; opacity: 1 !important; transform: none !important;
    }
  }
  /* ── IMPACT NUMBERS ── */
  .impact {
    background: var(--parchment); padding: 72px 0;
    position: relative; overflow: hidden;
  }
  .impact::before {
    content: 'IMPACT';
    position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
    font-family: var(--serif-bold); font-size: 160px; font-weight: 900;
    color: rgba(45,106,79,0.04); line-height: 1; pointer-events: none;
    letter-spacing: 0.04em;
  }
  .impact-header { text-align: center; margin-bottom: 56px; }
  .impact-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0; border: 1px solid rgba(45,106,79,0.12);
  }
  .impact-item {
    text-align: center; padding: 40px 24px;
    border-right: 1px solid rgba(45,106,79,0.12);
    position: relative; transition: background var(--transition);
  }
  .impact-item:nth-child(3), .impact-item:nth-child(6) { border-right: none; }
  .impact-item:nth-child(4), .impact-item:nth-child(5), .impact-item:nth-child(6) {
    border-top: 1px solid rgba(45,106,79,0.12);
  }
  .impact-item:hover { background: rgba(82,183,136,0.06); }
  .impact-num {
    font-family: var(--display); font-size: 4rem; font-weight: 700;
    color: var(--forest); line-height: 1; display: block; margin-bottom: 8px;
  }
  .impact-label {
    font-family: var(--body); font-size: 12px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--mist);
  }
  .impact-cta { text-align: center; margin-top: 48px; }

  /* ── ABOUT ── */
  .about { padding: 100px 0; background: var(--white); }
  .about .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .about-visual {
    position: relative;
  }
  .about-img-main {
    width: 100%; aspect-ratio: 4/5;
    background: linear-gradient(160deg, var(--forest) 0%, var(--moss) 60%, #3a8a62 100%);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
  }
  .about-img-accent {
    position: absolute; bottom: -32px; right: -32px;
    width: 180px; aspect-ratio: 1;
    background: var(--parchment);
    border: 4px solid var(--white);
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 20px;
  }
  .about-accent-num {
    font-family: var(--display); font-size: 2.4rem; font-weight: 700;
    color: var(--forest); display: block; line-height: 1;
  }
  .about-accent-text {
    font-family: var(--body); font-size: 10px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--mist);
    margin-top: 6px;
  }
  .about-content {}
  .about-body {
    font-family: var(--body); font-size: 15px; line-height: 1.8; color: #4a5a50;
    margin-bottom: 16px;
  }
  .about-pillars {
    display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 36px;
  }
  .about-pillar {
    padding: 6px 14px; background: var(--parchment);
    font-family: var(--body); font-size: 11px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--forest);
    border: 1px solid rgba(45,106,79,0.15);
  }

  .leadership { background: var(--cream); padding: 100px 0; }
  .leadership .container {
    display: grid; grid-template-columns: 360px 1fr; gap: 72px; align-items: start;
  }
  @media (max-width: 900px) { .leadership .container { grid-template-columns: 1fr; gap: 48px; } }
  .leader-photo-wrap { position: relative; }
  .leader-photo {
    width: 100%; aspect-ratio: 3/4;
    border-radius: 2px; display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.25); font-family: var(--body); font-size: 11px;
    letter-spacing: 0.12em; text-transform: uppercase; text-align: center; padding: 24px;
  }
  .leader-name-tag {
    position: absolute; bottom: -28px; left: 28px; right: 28px;
    background: var(--white); padding: 18px 22px;
    box-shadow: 0 14px 36px rgba(0,0,0,0.12); border-radius: 2px;
  }
  .leader-name-tag .lname {
    font-family: var(--display); font-size: 1.25rem; font-weight: 700; color: var(--forest); line-height: 1.2;
  }
  .leader-name-tag .lrole {
    font-family: var(--body); font-size: 10.5px; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--mist); margin-top: 4px;
  }
  .leadership-content { padding-top: 4px; }
  .leader-quote {
    font-family: var(--display); font-style: italic; font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    line-height: 1.5; color: var(--forest); margin: 20px 0 28px; position: relative; font-weight: 600;
  }
  .leader-quote::before {
    content: '\201C'; color: var(--sage); font-size: 1.4em; margin-right: 0.05em;
    font-style: normal;
  }
  .leader-body {
    font-family: var(--body); font-size: 14.5px; line-height: 1.8; color: #4a5a50; margin-bottom: 44px; max-width: 640px;
  }
  .leader-pillars {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  }
  @media (max-width: 700px) { .leader-pillars { grid-template-columns: 1fr; gap: 24px; } }
  .leader-pillar { border-top: 2px solid var(--sage); padding-top: 16px; }
  .leader-pillar h4 {
    font-family: var(--display); font-size: 1.1rem; font-weight: 600; color: var(--forest); margin-bottom: 8px;
  }
  .leader-pillar p {
    font-family: var(--body); font-size: 13px; line-height: 1.7; color: var(--mist);
  }

  /* ── OUR WORK (picture-based) ── */
  .work { background: var(--forest); padding: 100px 0; }
  .work-header { text-align: center; margin-bottom: 64px; }
  .work-header .section-title { color: var(--white); }
  .work-header .section-eyebrow { color: var(--sage); }
  .work-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  }
  @media (max-width: 1024px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
  .work-card {
    position: relative; overflow: hidden; border-radius: 4px;
    aspect-ratio: 3/4; cursor: default;
    background: linear-gradient(155deg, #2a5240 0%, #173225 100%);
  }
  .work-card-photo {
    position: absolute; inset: 0;
    background: linear-gradient(155deg, #2a5240 0%, #173225 100%);
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .work-card:hover .work-card-photo { transform: scale(1.08); }
  .work-card-photo-note {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.2); font-family: var(--body); font-size: 10px;
    letter-spacing: 0.1em; text-transform: uppercase; text-align: center; padding: 16px;
  }
  .work-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(13,40,24,0.15) 0%, rgba(13,40,24,0.80) 100%);
    transition: background 0.4s ease; z-index: 1;
  }
  .work-card:hover::after { background: linear-gradient(180deg, rgba(13,40,24,0.35) 0%, rgba(13,40,24,0.95) 65%); }
  .work-card-body {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 24px 22px; z-index: 2;
    transform: translateY(8px); transition: transform 0.4s ease;
  }
  .work-card:hover .work-card-body { transform: translateY(0); }
  .work-card-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(82,183,136,0.18); border: 1px solid rgba(82,183,136,0.4);
    display: flex; align-items: center; justify-content: center;
    color: var(--sage); font-size: 1.05rem; margin-bottom: 14px;
    transition: var(--transition);
  }
  .work-card:hover .work-card-icon { background: var(--yellow); color: var(--forest); }
  .work-name {
    font-family: var(--display); font-size: 1.2rem; font-weight: 600;
    color: var(--white); margin-bottom: 8px; line-height: 1.25;
  }
  .work-desc {
    font-family: var(--body); font-size: 12.5px; color: rgba(255,255,255,0.6);
    line-height: 1.6; max-height: 0; opacity: 0; overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
  }
  .work-card:hover .work-desc { max-height: 100px; opacity: 1; margin-top: 4px; }
  .work-card-num {
    position: absolute; top: 18px; right: 18px; z-index: 2;
    font-family: var(--display); font-size: 0.78rem; font-weight: 600;
    color: rgba(255,255,255,0.45); letter-spacing: 0.05em;
  }
  .work-cta { text-align: center; margin-top: 56px; }
  .btn-sage {
    display: inline-block; padding: 14px 36px;
    background: transparent; color: var(--yellow);
    font-family: var(--body); font-size: 13px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
    border: 2px solid var(--yellow); transition: var(--transition);
  }
  .btn-sage:hover { background: var(--yellow); color: var(--forest); }

  /* ── PROJECTS ── */
  .projects { padding: 100px 0; background: var(--cream); }
  .projects-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
  .projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .project-card {
    background: var(--white); overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
  }
  .project-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
  .project-img {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--moss) 0%, var(--forest) 100%);
    display: flex; align-items: flex-end; padding: 20px;
  }
  .project-tag {
    font-family: var(--body); font-size: 10px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    background: var(--yellow); color: var(--forest); padding: 4px 10px;
  }
  .project-body { padding: 28px; }
  .project-title {
    font-family: var(--display); font-size: 1.3rem; font-weight: 600;
    color: var(--forest); margin-bottom: 10px; line-height: 1.3;
  }
  .project-desc {
    font-family: var(--body); font-size: 13.5px; color: var(--mist);
    line-height: 1.7; margin-bottom: 20px;
  }
  .project-link {
    font-family: var(--body); font-size: 12px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--forest); text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
    transition: gap 0.2s;
  }
  .project-link:hover { gap: 10px; }
  .projects-cta { text-align: center; margin-top: 48px; }

  /* ── STORIES ── */
   .stories .section-title {
    color: var(--white);
}
  .stories { padding: 100px 0; background:url('../img/project-bg.png'); background-attachment: fixed; position: relative; overflow: hidden; }
  .stories::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}

.stories > * {
    position: relative;
    z-index: 2;
}
  .story-card{
    background: var(--white); padding: 24px; position: relative;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06); transition: var(--transition);
  }
  .stories-header { text-align: center; margin-bottom: 64px; position: relative; }
  .stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .story-card { position: relative; }
  .story-num {
    font-family: var(--display); font-size: 5rem; font-weight: 700;
    color: rgba(45,106,79,0.08); line-height: 1; position: absolute;
    top: -16px; left: -8px; pointer-events: none;
  }
  .story-content { padding: 24px 0 0 0; position: relative; }
  .story-eyebrow {
    font-family: var(--body); font-size: 10px; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage);
    margin-bottom: 12px;
  }
  .story-headline {
    font-family: var(--display); font-size: 1.4rem; font-weight: 600;
    color: var(--forest); line-height: 1.25; margin-bottom: 14px;
    font-style: italic;
  }
  .story-text {
    font-family: var(--body); font-size: 13.5px; color: var(--mist);
    line-height: 1.75; margin-bottom: 20px;
  }
  .story-link {
    font-family: var(--body); font-size: 12px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--forest); text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .story-link:hover { gap: 10px; }
  .stories-cta { text-align: center; margin-top: 56px;  }
  .stories-cta a { background: var(--yellow); border-color: var(--yellow); }

  /* ── PARTNERS (infinite scroll marquee) ── */
  .partners { background: var(--parchment); padding: 80px 0; }
  .partners-header { text-align: center; margin-bottom: 56px; }
  .partner-row { margin-bottom: 40px; }
  .partner-row-label {
    font-family: var(--body); font-size: 10px; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--mist);
    margin-bottom: 20px; display: flex; align-items: center; gap: 16px;
    max-width: 1200px; margin-left: auto; margin-right: auto; padding: 0 24px;
  }
  .partner-row-label::before, .partner-row-label::after {
    content: ''; flex: 1; height: 1px; background: rgba(45,106,79,0.15);
  }
  .partner-marquee {
    width: 100%; overflow: hidden; position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }
  .partner-track {
    display: flex; gap: 20px; width: max-content;
    animation: partnerScroll 32s linear infinite;
  }
  .partner-row:nth-child(odd) .partner-track { animation-direction: reverse; }
  .partner-marquee:hover .partner-track { animation-play-state: paused; }
  @keyframes partnerScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .partner-logo {
    flex: 0 0 auto; width: 140px; height: 64px; background: var(--white);
    border: 1px solid rgba(45,106,79,0.1);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--body); font-size: 11px; font-weight: 600;
    letter-spacing: 0.06em; color: var(--mist); text-align: center;
    padding: 8px; transition: var(--transition);
  }
  .partner-logo:hover { border-color: var(--sage); color: var(--forest); }
  .partners-cta { text-align: center; margin-top: 40px; }
  @media (prefers-reduced-motion: reduce) {
    .partner-track { animation: none; }
    .partner-marquee { overflow-x: auto; }
  }

  /* ── MEDIA ── */
  .media { padding: 100px 0; background: var(--white); }
  .media-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
  .media-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 24px; }
  .media-card {
    border: 1px solid var(--parchment); padding: 28px;
    transition: var(--transition);
  }
  .media-card:hover { border-color: var(--sage); box-shadow: 0 4px 20px rgba(45,106,79,0.08); }
  .media-type {
    font-family: var(--body); font-size: 10px; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage);
    margin-bottom: 14px;
  }
  .media-title {
    font-family: var(--display); font-size: 1.25rem; font-weight: 600;
    color: var(--forest); line-height: 1.3; margin-bottom: 10px;
  }
  .media-date {
    font-family: var(--body); font-size: 12px; color: var(--mist);
    margin-bottom: 12px;
  }
  .media-excerpt {
    font-family: var(--body); font-size: 13px; color: var(--mist);
    line-height: 1.7;
  }
  .media-card.featured { background: var(--parchment); }

  /* ── CSR ── */
  .csr {
    padding: 100px 0; position: relative; overflow: hidden;
    background: linear-gradient(160deg, #0d2818 0%, var(--forest) 40%, #1a5a3f 100%);
  }
  .csr-arch {
    position: absolute; top: -60px; right: -60px;
    width: 400px; height: 400px;
    border: 80px solid rgba(82,183,136,0.06);
    border-radius: 50%; pointer-events: none;
  }
  .csr-arch2 {
    position: absolute; bottom: -80px; left: 20%;
    width: 300px; height: 300px;
    border: 60px solid rgba(82,183,136,0.04);
    border-radius: 50%; pointer-events: none;
  }
  .csr .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
  .csr-content {}
  .csr-content .section-eyebrow { color: var(--sage); }
  .csr-content .section-title { color: var(--white); }
  .csr-body {
    font-family: var(--body); font-size: 15px; color: rgba(255,255,255,0.68);
    line-height: 1.8; margin-bottom: 32px;
  }
  .csr-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
  .csr-features {
    display: grid; gap: 20px;
  }
  .csr-feature {
    display: flex; gap: 20px; align-items: flex-start;
  }
  .csr-feature-icon {
    width: 48px; height: 48px; flex: 0 0 48px;
    background: rgba(82,183,136,0.12);
    border: 1px solid rgba(82,183,136,0.2);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--yellow);
  }
  .csr-feature-text h4 {
    font-family: var(--display); font-size: 1.1rem; font-weight: 600;
    color: var(--white); margin-bottom: 4px;
  }
  .csr-feature-text p {
    font-family: var(--body); font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6;
  }

  /* ── GET INVOLVED ── */
  .involved { padding: 100px 0; background: var(--cream); }
  .involved-header { text-align: center; margin-bottom: 64px; }
  .involved-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .involved-card {
    background: var(--white); padding: 40px 28px; text-align: center;
    border-bottom: 3px solid transparent; transition: var(--transition);
  }
  .involved-card:hover { border-bottom-color: var(--sage); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
  .involved-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(82,183,136,0.1); border: 1px solid rgba(45,106,79,0.15);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 22px; font-size: 1.5rem; color: var(--forest);
    transition: var(--transition);
  }
  .involved-card:hover .involved-icon { background: var(--sage); color: var(--white); border-color: var(--sage); }
  .involved-title {
    font-family: var(--display); font-size: 1.4rem; font-weight: 600;
    color: var(--forest); margin-bottom: 12px;
  }
  .involved-text {
    font-family: var(--body); font-size: 13px; color: var(--mist);
    line-height: 1.7;
  }
  .involved-cta { text-align: center; margin-top: 56px; }

  /* ── CONTACT CTA ── */
  .contact-cta {
    padding: 80px 0; background: var(--parchment);
    text-align: center; border-top: 3px solid var(--sage);
  }
  .contact-cta .section-title { margin-bottom: 16px; }
  .contact-cta p {
    font-family: var(--body); font-size: 16px; color: var(--mist);
    max-width: 540px; margin: 0 auto 40px; line-height: 1.7;
  }
  .contact-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

  /* ── FOOTER ── */
  footer { background: var(--ink); color: rgba(255,255,255,0.6); }
  .footer-main {
    padding: 72px 0 48px;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  }
  .footer-brand {}
  .footer-logo {
    font-family: var(--serif-bold); font-size: 24px; font-weight: 900;
    color: var(--white); letter-spacing: 0.04em; margin-bottom: 16px;
  }
  .footer-tagline {
    font-family: var(--display); font-size: 0.95rem; font-style: italic;
    color: rgba(255,255,255,0.4); line-height: 1.6; margin-bottom: 24px;
  }
  .footer-socials { display: flex; gap: 10px; }
  .footer-social {
    width: 36px; height: 36px; border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); text-decoration: none; font-size: 12px;
    transition: var(--transition);
  }
  .footer-social:hover { background: var(--sage); border-color: var(--sage); color: var(--forest); }
  .footer-col h4 {
    font-family: var(--body); font-size: 11px; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--white);
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    font-family: var(--body); font-size: 13px; color: rgba(255,255,255,0.5);
    text-decoration: none; transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: var(--sage); }
  .footer-contact-item {
    font-family: var(--body); font-size: 13px; color: rgba(255,255,255,0.5);
    line-height: 1.6; margin-bottom: 12px;
  }
  .footer-contact-item a { color: rgba(255,255,255,0.5); text-decoration: none; }
  .footer-contact-item a:hover { color: var(--sage); }
  .footer-newsletter input {
    width: 100%; padding: 10px 14px; background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1); color: var(--white);
    font-family: var(--body); font-size: 13px; margin-bottom: 10px;
    outline: none; transition: border-color 0.2s;
  }
  .footer-newsletter input::placeholder { color: rgba(255,255,255,0.3); }
  .footer-newsletter input:focus { border-color: var(--sage); }
  .footer-newsletter button {
    width: 100%; padding: 10px 14px;
    background: var(--yellow); color: var(--forest);
    font-family: var(--body); font-size: 12px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    border: none; cursor: pointer; transition: var(--transition);
  }
  .footer-newsletter button:hover { background: var(--moss); color: var(--white); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0; display: flex; align-items: center; justify-content: space-between;
    font-family: var(--body); font-size: 12px; color: rgba(255,255,255,0.3);
    flex-wrap: wrap; gap: 12px;
  }
  .footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; }
  .footer-bottom a:hover { color: var(--sage); }
  .footer-bottom-links { display: flex; gap: 20px; }

  /* ── SCROLL ANIMATIONS ── */
  .fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .fade-up.visible { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) { .fade-up { opacity: 1; transform: none; } }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .work-grid { grid-template-columns: repeat(2, 1fr); }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-content { padding: 60px 24px; }
    .hero-visual { display: none; }
    .about .container { grid-template-columns: 1fr; gap: 48px; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
    .csr .container { grid-template-columns: 1fr; gap: 48px; }
  }
  @media (max-width: 768px) {
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-grid, .stories-grid { grid-template-columns: 1fr; }
    .involved-grid { grid-template-columns: repeat(2, 1fr); }
    .media-grid { grid-template-columns: 1fr; }
    .projects-header, .media-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .footer-main { grid-template-columns: 1fr; }
    .top-bar .container { flex-direction: column; gap: 8px; }
  }
  /* ===== INNER PAGE BANNER ===== */
  .page-banner {
    position: relative; padding: 180px 0 90px; overflow: hidden;
    background: linear-gradient(160deg, #0d2818 0%, var(--forest) 45%, #1a5a3f 100%);
  }
  .page-banner-arch {
    position: absolute; top: -80px; right: -80px; width: 420px; height: 420px;
    border: 80px solid rgba(82,183,136,0.06); border-radius: 50%; pointer-events: none;
  }
  .page-banner-arch2 {
    position: absolute; bottom: -100px; left: 10%; width: 280px; height: 280px;
    border: 60px solid rgba(82,183,136,0.05); border-radius: 50%; pointer-events: none;
  }
  .breadcrumb {
    position: relative; z-index: 1;
    font-family: var(--body); font-size: 12px; letter-spacing: 0.06em;
    color: rgba(255,255,255,0.55); margin-bottom: 18px;
  }
  .breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
  .breadcrumb a:hover { color: var(--sage); }
  .breadcrumb span { color: var(--yellow); }
  .page-banner-eyebrow {
    position: relative; z-index: 1;
    font-family: var(--body); font-size: 11px; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage);
    margin-bottom: 14px; display: block;
  }
  .page-banner h1 {
    position: relative; z-index: 1;
    font-family: var(--display); font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 600; color: var(--white); line-height: 1.15; max-width: 760px;
  }
  .page-banner h1 em { color: var(--yellow); font-style: italic; }
  .page-banner p {
    position: relative; z-index: 1;
    font-family: var(--body); font-size: 15px; color: rgba(255,255,255,0.65);
    max-width: 620px; margin-top: 18px; line-height: 1.7;
  }

  /* ===== GENERIC CONTENT SECTIONS ===== */
  .content-section { padding: 90px 0; }
  .content-section.bg-cream { background: var(--cream); }
  .content-section.bg-parchment { background: var(--parchment); }
  .content-narrow { max-width: 800px; margin: 0 auto; }
  .content-narrow .section-eyebrow, .content-narrow .section-title { display: block; }
  .content-narrow p, .prose p {
    font-family: var(--body); font-size: 15px; color: var(--mist);
    line-height: 1.85; margin-bottom: 20px;
  }
  .prose h3 {
    font-family: var(--display); font-size: 1.5rem; font-weight: 600;
    color: var(--forest); margin: 36px 0 14px;
  }
  .two-col {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
  }
  .init-card img{width: 100%; height: 300px; object-fit: cover;}
  .section-head { margin-bottom: 48px; }
  .section-head.center { text-align: center; }

  /* ===== INITIATIVE CARDS (deep-dive) ===== */
  .init-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
  .init-card {
    background: var(--white); border: 1px solid var(--parchment);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05); transition: var(--transition);
    display: flex; flex-direction: column;
  }
  .init-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.1); transform: translateY(-4px); }
  .init-card-head {
    padding: 22px 26px; background: linear-gradient(135deg, var(--moss), var(--forest));
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
  }
  .init-card-tag {
    font-family: var(--body); font-size: 10px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase; color: var(--yellow);
  }
  .init-card-date { font-family: var(--body); font-size: 11px; color: rgba(255,255,255,0.55); }
  .init-card-title {
    font-family: var(--display); font-size: 1.35rem; font-weight: 600;
    color: var(--white); margin-top: 8px; line-height: 1.3;
  }
  .init-card-body { padding: 26px; flex: 1; }
  .init-card-body p {
    font-family: var(--body); font-size: 13.5px; color: var(--mist); line-height: 1.75;
  }

  /* ===== TIMELINE / FULL-WIDTH FEATURE ROWS ===== */
  .feature-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
    padding: 64px 0; border-bottom: 1px solid var(--parchment);
  }
  .feature-row:last-child { border-bottom: none; }
  .feature-row.reverse .feature-visual { order: 2; }
  .feature-visual {
    aspect-ratio: 4/3; background: linear-gradient(135deg, var(--moss) 0%, var(--forest) 100%);
    position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center;
  }
  .feature-visual img { width: 100%; height: 100%; object-fit: cover; }
  .feature-num {
    position: absolute; top: 16px; left: 16px;
    font-family: var(--display); font-size: 0.85rem; color: var(--white);
    background: rgba(0,0,0,0.35); padding: 4px 12px; letter-spacing: 0.08em;
  }
  .feature-tag {
    font-family: var(--body); font-size: 10.5px; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage);
    margin-bottom: 14px; display: block;
  }
  .feature-title {
    font-family: var(--display); font-size: 1.7rem; font-weight: 600;
    color: var(--forest); line-height: 1.25; margin-bottom: 16px;
  }
  .feature-text {
    font-family: var(--body); font-size: 13.5px; color: var(--mist); line-height: 1.8;
  }

  /* ===== STAT STRIP ===== */
  .stat-strip {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 32px;
    background: var(--forest); padding: 56px 0; text-align: center;
  }
  .stat-strip .impact-num, .stat-item .impact-num { color: var(--yellow); }
  .stat-item { color: var(--white); }
  .stat-item .stat-num {
    font-family: var(--display); font-size: 2.6rem; font-weight: 700; color: var(--yellow); display: block;
  }
  .stat-item .stat-label {
    font-family: var(--body); font-size: 11.5px; letter-spacing: 0.06em;
    text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 8px; display: block;
  }

  /* ===== SDG GRID ===== */
  .sdg-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 14px; }
  .sdg-item {
    aspect-ratio: 1/1; display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: var(--white); font-family: var(--body); font-weight: 700; font-size: 0.95rem;
    text-align: center; padding: 10px; line-height: 1.25;
  }
  .sdg-item span { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; margin-top: 4px; }

  /* ===== REACH LIST ===== */
  .reach-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px 32px; }
  .reach-grid div {
    font-family: var(--body); font-size: 13.5px; color: var(--ink);
    padding: 10px 0; border-bottom: 1px dashed var(--parchment);
  }

  /* ===== INTERACTIVE IMPACT MAP ===== */
  /* ===== INTERACTIVE IMPACT MAP ===== */
.impact-map-layout { display: grid; grid-template-columns: 1fr 300px; gap: 32px; align-items: start; }
.impact-map {
  width: 100%; height: 480px;
  border: 1px solid var(--parchment);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  background: var(--cream);
  z-index:99;
}
.impact-map .leaflet-control-attribution {
  font-family: var(--body); font-size: 10px;
}
.impact-map-legend {
  border: 1px solid var(--parchment); background: var(--cream);
  padding: 22px; max-height: 480px; overflow-y: auto;
}
.impact-map-legend h4 {
  font-family: var(--display); font-size: 1.05rem; color: var(--forest);
  margin-bottom: 14px;
}
.impact-map-pin {
  display: flex; align-items: center; gap: 10px;
  width: 100%; text-align: left; background: none; border: none;
  padding: 9px 8px; cursor: pointer; font-family: var(--body);
  font-size: 12.5px; color: var(--ink); border-bottom: 1px dashed var(--parchment);
  transition: var(--transition);
}
.impact-map-pin:last-child { border-bottom: none; }
.impact-map-pin:hover, .impact-map-pin.active { color: var(--forest); background: rgba(82,183,136,0.08); }
.impact-map-pin-dot {
  width: 9px; height: 9px; border-radius: 50%; flex: 0 0 9px;
  background: var(--gold); border: 1px solid var(--forest);
}
.ksch-map-marker {
  width: 18px; height: 18px; border-radius: 50% 50% 50% 0;
  background: var(--forest); border: 2px solid var(--gold);
  transform: rotate(-45deg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.35);
}
.ksch-map-popup { font-family: var(--body); }
.ksch-map-popup h5 {
  font-family: var(--display); font-size: 1.05rem; font-weight: 600;
  color: var(--forest); margin-bottom: 4px;
}
.ksch-map-popup p {
  font-size: 12.5px; color: var(--mist); line-height: 1.6; margin: 0;
}
.leaflet-popup-content-wrapper { border-radius: 2px; }
@media (max-width: 900px) {
  .impact-map-layout { grid-template-columns: 1fr; }
  .impact-map-legend { max-height: none; }
  .impact-map { height: 380px; }
}

  /* ===== LEADER MESSAGE BLOCK (reuse leadership look, generalized) ===== */
  .msg-block { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: start; margin-bottom: 72px; }
  .msg-block:last-child { margin-bottom: 0; }
  .msg-photo { aspect-ratio: 3/4; background: linear-gradient(155deg,var(--moss),var(--forest)); overflow: hidden; }
  .msg-photo img { width: 100%; height: 100%; object-fit: cover; }
  .msg-name { font-family: var(--display); font-size: 1.1rem; font-weight: 600; color: var(--forest); margin-top: 14px; }
  .msg-role { font-family: var(--body); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mist); margin-top: 2px; }
  .msg-quote {
    font-family: var(--display); font-style: italic; font-size: 1.3rem; color: var(--forest);
    line-height: 1.5; margin-bottom: 18px;
  }

  /* ===== TESTIMONIAL / CLIENT GRID ===== */
  .clients-grid {
    display: grid; grid-template-columns: repeat(6,1fr); gap: 18px;
  }
  .clients-grid .partner-logo { width: auto; }
  .testimonial-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
  .testimonial-card {
    background: var(--white); border: 1px solid var(--parchment); padding: 28px;
  }
  .testimonial-card .quote-icon { color: var(--gold); font-size: 1.6rem; font-family: var(--display); margin-bottom: 10px; }
  .testimonial-card p { font-family: var(--body); font-size: 13px; color: var(--mist); line-height: 1.75; margin-bottom: 16px; }
  .testimonial-source { font-family: var(--body); font-size: 11.5px; font-weight: 600; color: var(--forest); letter-spacing: 0.04em; }

  /* ===== AWARD / RECOGNITION CARD ===== */
  .award-grid { display: grid;   grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
  .award-card { background: var(--white); padding: 32px 28px; border-top: 3px solid var(--gold); }
   .award-card img{width: 100%; object-fit: cover;}
  /* .award-card .award-icon { font-size: 1.6rem; color: var(--gold); margin-bottom: 16px; } */
  .award-card h4 { font-family: var(--display); font-size: 1.2rem; font-weight: 600; color: var(--forest); margin-bottom: 10px; }
  .award-card p { font-family: var(--body); font-size: 13px; color: var(--mist); line-height: 1.7; text-align: justify; }

  /* ===== CONTACT PAGE ===== */
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
  .contact-info-list { display: grid; gap: 24px; margin-top: 32px; }
  .contact-info-item { display: flex; gap: 18px; align-items: flex-start; }
  .contact-info-icon {
    width: 46px; height: 46px; flex: 0 0 46px; border-radius: 2px;
    background: rgba(82,183,136,0.1); border: 1px solid rgba(45,106,79,0.15);
    display: flex; align-items: center; justify-content: center; color: var(--forest); font-size: 1.1rem;
  }
  .contact-info-item h4 { font-family: var(--display); font-size: 1.05rem; color: var(--forest); margin-bottom: 4px; }
  .contact-info-item p, .contact-info-item a { font-family: var(--body); font-size: 13.5px; color: var(--mist); text-decoration: none; line-height: 1.6; }
  .contact-form { display: grid; gap: 16px; }
  .contact-form input, .contact-form textarea, .contact-form select {
    width: 100%; padding: 13px 16px; border: 1px solid var(--parchment); background: var(--cream);
    font-family: var(--body); font-size: 13.5px; color: var(--ink); outline: none; transition: border-color .2s;
  }
  .contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--sage); }
  .contact-form textarea { resize: vertical; min-height: 130px; }
  .contact-map { width: 100%; height: 380px; border: 0; filter: grayscale(0.3); }

  /* ===== RESPONSIVE ADDITIONS ===== */
  @media (max-width: 1024px) {
    .init-grid { grid-template-columns: 1fr; }
    .feature-row, .feature-row.reverse .feature-visual { grid-template-columns: 1fr; }
    .feature-row { grid-template-columns: 1fr; }
    .feature-row.reverse .feature-visual { order: 0; }
    .stat-strip { grid-template-columns: repeat(2,1fr); }
    .sdg-grid { grid-template-columns: repeat(4,1fr); }
    .reach-grid { grid-template-columns: repeat(2,1fr); }
    .msg-block { grid-template-columns: 1fr; }
    .msg-photo { max-width: 240px; }
    .clients-grid { grid-template-columns: repeat(4,1fr); }
    .testimonial-grid, .award-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .two-col { grid-template-columns: 1fr; gap: 32px; }
  }
  @media (max-width: 768px) {
    .page-banner { padding: 140px 0 64px; }
    .sdg-grid { grid-template-columns: repeat(2,1fr); }
    .reach-grid { grid-template-columns: 1fr 1fr; }
    .clients-grid { grid-template-columns: repeat(2,1fr); }
  }