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

:root {
  --forest:    #1A3A2A;
  --savanna:   #2E6B4F;
  --gold:      #F2C14E;
  --terra:     #e8895a;
  --mist:      #A8C5B0;
  --warm:      #FAFAF7;
  --dark-text: #1A3A2A;
  --body-text: #3A5A4A;
  --light-text:#6A8A7A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  background: var(--warm);
  color: var(--dark-text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--forest);
  color: var(--mist);
  font-size: 11px;
  padding: 7px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a { color: var(--mist); text-decoration: none; }
.topbar a:hover { color: var(--terra); }
.topbar-links { display: flex; gap: 20px; }

/* ── NAVBAR ── */
nav {
  background: var(--warm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(26,58,42,0.1);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
}

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark { width: 48px; height: 48px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 25px; font-weight: 700; color: var(--forest); line-height: 1; }
.logo-sub { font-size: 16px; color: var(--light-text); letter-spacing: 0.05em; margin-top: 2px; }

.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-item { position: relative; }

.nav-link {
  display: flex; align-items: center; gap: 5px;
  font-size: 16px; font-weight: 500;
  color: var(--dark-text); text-decoration: none;
  padding: 10px 16px; border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap; cursor: pointer; background: none; border: none;
}
.nav-link:hover, .nav-item:hover > .nav-link { background: rgba(46,107,79,0.08); color: var(--savanna); }
.nav-link.nav-active { background: rgba(46,107,79,0.1); color: var(--savanna); font-weight: 600; }

.nav-donate {
  background: var(--terra); color: var(--forest) !important;
  font-weight: 600 !important; border-radius: 6px;
  padding: 9px 20px !important; transition: background 0.2s !important;
}
.nav-donate:hover { background: #fb9f72 !important; color: var(--forest) !important; }

/* ── HERO (split-screen) ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 90vh;
  padding: 0; /* override generic section padding */
}

/* Left: text panel — no stats, so less bottom padding */
.hero-text {
  background: var(--warm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px 64px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(46,107,79,0.08); border: 1px solid rgba(46,107,79,0.18);
  color: var(--savanna); font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 28px; width: fit-content;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--savanna); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }

.hero h1 { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 700; color: var(--forest); line-height: 1.12; margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--terra); }
.hero-desc { font-size: 18px; color: var(--body-text); line-height: 1.75; margin-bottom: 40px; max-width: 460px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary { background: var(--terra); color: var(--forest); font-size: 14px; font-weight: 600; padding: 14px 30px; border-radius: 8px; text-decoration: none; transition: background 0.2s, transform 0.15s; display: inline-block; }
.btn-primary:hover { background: #eda468; transform: translateY(-1px); }
/* btn-outline — for dark/overlay backgrounds */
.btn-outline { background: transparent; color: #fff; font-size: 14px; font-weight: 500; padding: 14px 30px; border-radius: 8px; border: 1.5px solid rgba(255,255,255,0.35); text-decoration: none; transition: border-color 0.2s, background 0.2s, transform 0.15s; display: inline-block; }
.btn-outline:hover { border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.07); transform: translateY(-1px); }
/* btn-outline-dark — for light backgrounds */
.btn-outline-dark { background: transparent; color: var(--forest); font-size: 13px; font-weight: 500; padding: 14px 30px; border-radius: 8px; border: 1.5px solid rgba(26,58,42,0.3); text-decoration: none; transition: border-color 0.2s, background 0.2s, transform 0.15s; display: inline-block; }
.btn-outline-dark:hover { border-color: var(--savanna); background: rgba(26,58,42,0.05); transform: translateY(-1px); }

/* Stats bar — spans both columns as the bottom row of the hero grid */
.hero-stats {
  grid-column: 1 / -1;
  display: flex;
  background: var(--warm);
  border-top: 1px solid rgba(26,58,42,0.12);
}
.hero-stats > div {
  flex: 1;
  text-align: center;
  padding: 28px 20px;
}
.hero-stats > div + div { border-left: 1px solid rgba(26,58,42,0.1); }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--forest); line-height: 1; }
.hero-stat-label { font-size: 11px; color: var(--light-text); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.08em; }

/* Right: image carousel — height matches left text column via grid stretch */
.hero-carousel { position: relative; overflow: hidden; }
.hero-carousel-track { display: flex; height: 100%; transition: transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.hero-carousel-slide { flex: 0 0 100%; height: 100%; }
.hero-carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-carousel-prev,
.hero-carousel-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.85); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; line-height: 1; color: var(--forest); z-index: 2;
  transition: background 0.2s;
}
.hero-carousel-prev { left: 16px; }
.hero-carousel-next { right: 16px; }
.hero-carousel-prev:hover, .hero-carousel-next:hover { background: #fff; }
.hero-carousel-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.hero-carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.5); border: none; cursor: pointer; padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.hero-carousel-dot.active { background: var(--terra); transform: scale(1.35); }

/* ── PAGE HERO (inner pages) — full-width overlay ── */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(26,58,42,0.85) 0%,
    rgba(26,58,42,0.65) 60%,
    rgba(26,58,42,0.4) 100%);
}
.page-hero-content {
  position: relative; z-index: 1;
  padding: 80px 48px;
  max-width: 680px;
}
.page-hero-content h1 { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 18px; }
.page-hero-content h1 em { font-style: normal; color: var(--terra); }
.page-hero-content p { font-size: 15px; color: var(--mist); line-height: 1.75; max-width: 520px; }
.page-hero-content .section-label { color: var(--mist); }
/* Remove old image column — no longer used */
.page-hero-image { display: none; }

/* ── MISSION STRIP ── */
.mission-strip { background: var(--terra); padding: 28px 48px; display: flex; align-items: center; gap: 20px; }
.mission-strip-icon { width: 48px; height: 48px; background: var(--forest); border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.mission-strip p { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: var(--forest); line-height: 1.4; }
.mission-strip span { font-family: 'DM Sans', sans-serif; font-weight: 400; font-size: 13px; color: rgba(26,58,42,0.7); display: block; margin-top: 2px; }

/* ── SECTION SHARED ── */
section { padding: 88px 48px; }
.section-label { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--savanna); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.section-label::before { content: ''; display: block; width: 28px; height: 2px; background: var(--terra); }
.section-title { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; color: var(--forest); line-height: 1.2; margin-bottom: 16px; }
.section-desc { font-size: 14px; color: var(--body-text); line-height: 1.8; max-width: 560px; }

/* ── ABOUT ── */
.about { background: var(--warm); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-image { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; background: var(--mist); position: relative; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-badge { position: absolute; bottom: 20px; left: 20px; background: var(--forest); color: #fff; border-radius: 10px; padding: 14px 18px; }
.about-badge-num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--terra); line-height: 1; }
.about-badge-text { font-size: 11px; color: var(--mist); margin-top: 3px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.value-card { background: #fff; border: 1px solid rgba(26,58,42,0.08); border-radius: 10px; padding: 16px; transition: border-color 0.2s, transform 0.2s; }
.value-card:hover { border-color: var(--savanna); transform: translateY(-2px); }
.value-dot { width: 10px; height: 10px; border-radius: 50%; margin-bottom: 10px; }
.value-name { font-size: 13px; font-weight: 600; color: var(--forest); }
.value-desc { font-size: 11px; color: var(--light-text); margin-top: 4px; line-height: 1.5; }

/* ── WHAT WE DO ── */
.what-we-do { background: var(--forest); }
.what-we-do .section-label { color: var(--mist); }
.what-we-do .section-label::before { background: var(--terra); }
.what-we-do .section-title { color: #fff; }
.what-we-do .section-desc { color: var(--mist); }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.program-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(168,197,176,0.15); border-radius: 14px; padding: 32px 28px; transition: background 0.2s, border-color 0.2s, transform 0.2s; position: relative; overflow: hidden; }
.program-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--terra); transform: scaleX(0); transition: transform 0.3s; transform-origin: left; }
.program-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(168,197,176,0.3); transform: translateY(-4px); }
.program-card:hover::after { transform: scaleX(1); }
.program-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 24px; }
.program-title { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.program-desc { font-size: 12px; color: var(--mist); line-height: 1.75; margin-bottom: 20px; }
.program-link { font-size: 12px; font-weight: 600; color: var(--terra); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.program-link:hover { gap: 10px; }

/* ── IMPACT ── */
.impact { background: var(--savanna); }
.impact .section-label { color: rgba(168,197,176,0.8); }
.impact .section-label::before { background: var(--terra); }
.impact .section-title { color: #fff; }
.impact-numbers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 52px; background: rgba(255,255,255,0.1); border-radius: 14px; overflow: hidden; }
.impact-stat { background: rgba(26,58,42,0.3); padding: 40px 28px; text-align: center; transition: background 0.2s; }
.impact-stat:hover { background: rgba(26,58,42,0.5); }
.impact-num { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; color: var(--terra); line-height: 1; }
.impact-label { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 8px; text-transform: uppercase; letter-spacing: 0.08em; }


/* ── PILLARS ── */
.pillars { background: var(--forest); }
.pillars .section-label { color: var(--mist); }
.pillars .section-label::before { background: var(--terra); }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; }
.pillar-card { border-radius: 14px; padding: 28px 22px; border: 1.5px solid rgba(168,197,176,0.15); transition: transform 0.2s, border-color 0.2s; position: relative; }
.pillar-card:hover { transform: translateY(-4px); border-color: var(--mist); }
.pillar-num, .pillar-number { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; line-height: 1; color: rgba(255,255,255,0.15); position: absolute; top: 16px; right: 20px; }
.pillar-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 20px; }
.pillar-title { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 8px; line-height: 1.3; }
.pillar-desc { font-size: 12px; color: var(--mist); line-height: 1.7; }
.p1 { background: rgba(255,255,255,0.04); }
.p2 { background: rgba(242,193,78,0.08); }
.p3 { background: rgba(232,137,90,0.08); }
.p4 { background: rgba(168,197,176,0.1); }

/* ── PROGRAMS CARDS ── */
.prog-section { background: #fff; padding: 80px 48px; }
.prog-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.prog-card { cursor: pointer; border-radius: 10px; overflow: hidden; background: #fff; border: 2px solid transparent; transition: border-color 0.25s, box-shadow 0.25s; }
.prog-card:hover { box-shadow: 0 8px 32px rgba(26,58,42,0.13); }
.prog-card.active { border-color: var(--forest); }
.prog-card-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.prog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.prog-card:hover .prog-card-img img { transform: scale(1.05); }
.prog-card-tag { position: absolute; bottom: 10px; left: 10px; background: rgba(26,58,42,0.82); color: #fff; font-size: 10px; font-weight: 600; padding: 4px 10px; border-radius: 4px; letter-spacing: 0.04em; backdrop-filter: blur(4px); }
.prog-card-footer { padding: 14px 16px 16px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.prog-card-title { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: var(--forest); margin: 0; line-height: 1.2; }
.prog-card-arrow { font-size: 22px; color: rgba(26,58,42,0.35); transition: transform 0.3s, color 0.25s; line-height: 1; flex-shrink: 0; }
.prog-card.active .prog-card-arrow { transform: rotate(90deg); color: var(--terra); }
/* Expanding detail panel */
.prog-expand { display: none; margin-top: 4px; background: #fff; border-radius: 12px; border: 1px solid rgba(26,58,42,0.1); box-shadow: 0 8px 40px rgba(26,58,42,0.1); overflow: hidden; }
.prog-expand.active { display: grid; grid-template-columns: 380px 1fr; min-height: 380px; animation: progFadeIn 0.3s ease; }
@keyframes progFadeIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.prog-panel-image { position: relative; overflow: hidden; }
.prog-panel-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prog-panel-image-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(26,58,42,0.35), transparent); }
.prog-panel-content { padding: 40px 36px; }
.prog-panel-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--savanna); margin-bottom: 8px; }
.prog-panel-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--forest); margin-bottom: 12px; line-height: 1.25; }
.prog-panel-desc { font-size: 13px; color: #4a6358; line-height: 1.85; margin-bottom: 24px; }
.prog-services { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.prog-service { background: var(--warm); border-radius: 10px; padding: 13px 15px; border-left: 3px solid var(--terra); }
.prog-service.accent-green { border-left-color: var(--savanna); }
.prog-service.accent-terra { border-left-color: var(--terra); }
.prog-service.accent-mist { border-left-color: var(--mist); }
.prog-service-name { font-size: 12px; font-weight: 600; color: var(--forest); margin-bottom: 3px; }
.prog-service-desc { font-size: 11px; color: #5a7a69; line-height: 1.6; }

/* ── PILLARS ACCORDION ── */
.pillar-accordion-list { display: flex; flex-direction: column; gap: 12px; margin-top: 48px; }
.pillar-accordion-item { background: rgba(255,255,255,0.05); border: 1.5px solid rgba(168,197,176,0.15); border-radius: 14px; overflow: hidden; transition: border-color 0.25s; }
.pillar-accordion-item.open { border-color: rgba(168,197,176,0.4); background: rgba(255,255,255,0.08); }
.pillar-accordion-header { display: flex; align-items: center; gap: 20px; padding: 24px 28px; cursor: pointer; user-select: none; }
.pillar-accordion-num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: rgba(255,255,255,0.15); min-width: 52px; line-height: 1; }
.pillar-accordion-title { font-size: 18px; font-weight: 600; color: #fff; flex: 1; }
.pillar-accordion-chevron { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid rgba(168,197,176,0.4); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--mist); font-weight: 300; transition: transform 0.3s, border-color 0.25s, color 0.25s; line-height: 1; flex-shrink: 0; }
.pillar-accordion-item.open .pillar-accordion-chevron { transform: rotate(45deg); border-color: var(--terra); color: var(--terra); }
.pillar-accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; padding: 0 28px; }
.pillar-accordion-item.open .pillar-accordion-body { max-height: 300px; padding: 0 28px 24px; }
.pillar-accordion-body p { font-size: 13px; color: var(--mist); line-height: 1.9; padding-left: 72px; }

/* ── GET INVOLVED ── */
.get-involved { background: #fff; }
.involve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.involve-card { border-radius: 14px; overflow: hidden; border: 1px solid rgba(26,58,42,0.08); transition: transform 0.2s, box-shadow 0.2s; }
.involve-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,58,42,0.1); }
.involve-header { padding: 32px 28px 24px; position: relative; }
.involve-title { font-size: 20px; font-weight: 700; font-family: 'Playfair Display', serif; margin-top: 14px; margin-bottom: 10px; }
.involve-desc { font-size: 12px; line-height: 1.75; }
.involve-body { padding: 0 28px 28px; }
.involve-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; text-decoration: none; padding: 10px 20px; border-radius: 7px; margin-top: 20px; transition: opacity 0.2s, transform 0.15s; }
.involve-link:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── TIMELINE ── */
.timeline { background: var(--warm); }
.timeline-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 52px; position: relative; }
.timeline-grid::before { content: ''; position: absolute; top: 28px; left: 16.5%; right: 16.5%; height: 2px; background: linear-gradient(to right, var(--savanna), var(--terra), var(--terra)); }
.timeline-item { padding: 0 24px; position: relative; }
.timeline-dot { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; margin-bottom: 24px; border: 3px solid var(--warm); box-shadow: 0 0 0 2px var(--savanna); }
.timeline-year { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--savanna); margin-bottom: 8px; }
.timeline-phase { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--forest); margin-bottom: 12px; }
.timeline-items { list-style: none; }
.timeline-items li { font-size: 12px; color: var(--body-text); padding: 5px 0 5px 14px; border-left: 2px solid var(--mist); margin-bottom: 4px; line-height: 1.5; }

/* ── ANNUAL REPORTS ── */
.annual-reports { background: var(--forest); }
.annual-reports .section-label { color: var(--mist); }
.annual-reports .section-label::before { background: var(--terra); }
.annual-reports .section-title { color: #fff; }
.annual-reports .section-desc { color: var(--mist); }
.reports-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.report-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(168,197,176,0.15); border-radius: 12px; padding: 28px; transition: background 0.2s, transform 0.2s; }
.report-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.report-year { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--terra); line-height: 1; margin-bottom: 12px; }
.report-title { font-size: 14px; font-weight: 500; color: #fff; margin-bottom: 8px; }
.report-desc { font-size: 12px; color: var(--mist); line-height: 1.6; margin-bottom: 20px; }
.report-link { font-size: 12px; font-weight: 600; color: var(--terra); text-decoration: none; display: flex; align-items: center; gap: 6px; }
.report-link:hover { gap: 10px; }

/* ── PARTNERS ── */
.partners { background: #fff; padding: 52px 48px; }
.partners-label { text-align: center; font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--light-text); margin-bottom: 36px; }
.partners-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center; }
.partner-chip { background: var(--warm); border: 1px solid rgba(26,58,42,0.1); border-radius: 8px; padding: 10px 18px; font-size: 12px; font-weight: 500; color: var(--body-text); }
.partner-chip-link{text-decoration: none; color: var(--body-text); }
.partner-chip:hover{background: var(--terra); }

/* ── STORIES & UPDATES ── */
.stories { background: var(--warm); }

/* Section header row: title left, "View all" link right */
.stories-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.stories-all-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--savanna);
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 4px;
  border-bottom: 1.5px solid var(--savanna);
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}
.stories-all-link:hover { color: var(--forest); border-color: var(--forest); gap: 10px; }

/* ── Featured story card (horizontal) ── */
.story-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(26,58,42,0.07);
  box-shadow: 0 4px 32px rgba(26,58,42,0.06);
  margin-bottom: 24px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.story-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(26,58,42,0.11);
}
.story-featured-img {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}
.story-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.45s ease;
}
.story-featured:hover .story-featured-img img { transform: scale(1.04); }
.story-featured-content {
  padding: 44px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-featured-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 6px;
}
.story-featured-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.25;
  margin-bottom: 16px;
}
.story-featured-desc {
  font-size: 13px;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* ── Story meta: tag pill + date ── */
.story-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.story-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.story-tag--education  { background: rgba(46,107,79,0.1);  color: var(--savanna); }
.story-tag--health     { background: rgba(232,137,90,0.12); color: #c06030; }
.story-tag--community  { background: rgba(242,193,78,0.18); color: #9a7a10; }
.story-tag--water      { background: rgba(168,197,176,0.25); color: #2e6b4f; }
.story-date {
  font-size: 11px;
  color: var(--light-text);
}

/* ── Read-more link ── */
.story-read-more {
  font-size: 12px;
  font-weight: 600;
  color: var(--savanna);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color 0.2s;
}
.story-read-more:hover { gap: 10px; color: var(--forest); }

/* ── Three smaller story cards ── */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.story-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(26,58,42,0.07);
  box-shadow: 0 2px 16px rgba(26,58,42,0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(26,58,42,0.1);
}
.story-card-img {
  height: 190px;
  overflow: hidden;
  flex-shrink: 0;
}
.story-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.story-card:hover .story-card-img img { transform: scale(1.05); }
.story-card-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.story-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.3;
  margin-bottom: 10px;
}
.story-card-desc {
  font-size: 12px;
  color: var(--body-text);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
}

/* ── NEWSLETTER ── */
.newsletter { background: var(--terra); padding: 72px 48px; text-align: center; }
.newsletter h2 { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.newsletter p { font-size: 14px; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.newsletter-form { display: flex; gap: 0; max-width: 460px; margin: 0 auto; border-radius: 8px; overflow: hidden; border: 2px solid rgba(255,255,255,0.3); }
.newsletter-form input { flex: 1; border: none; background: rgba(255,255,255,0.15); color: #fff; font-size: 13px; padding: 14px 18px; outline: none; font-family: 'DM Sans', sans-serif; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form button { background: var(--forest); color: var(--terra); border: none; font-size: 13px; font-weight: 600; padding: 14px 24px; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background 0.2s; }
.newsletter-form button:hover { background: #0f2419; }

/* ── FOOTER ── */
footer { background: #0f2419; padding: 60px 48px 28px; color: var(--mist); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--terra); margin-bottom: 14px; }
.footer-desc { font-size: 12px; color: rgba(168,197,176,0.7); line-height: 1.75; margin-bottom: 20px; }
.footer-contact { font-size: 12px; color: var(--mist); line-height: 2; }
.footer-contact a { color: var(--mist); text-decoration: none; }
.footer-contact a:hover { color: var(--terra); }
.footer-col h4 { font-size: 12px; font-weight: 600; color: #fff; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 12px; color: rgba(168,197,176,0.7); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--terra); }
.footer-bottom { border-top: 1px solid rgba(168,197,176,0.12); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 11px; color: rgba(168,197,176,0.5); }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 32px; height: 32px; border-radius: 6px; background: rgba(168,197,176,0.1); border: 1px solid rgba(168,197,176,0.15); display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--mist); font-size: 12px; transition: background 0.2s, color 0.2s; }
.social-btn:hover { background: var(--terra); color: var(--forest); border-color: var(--terra); }

/* ── CONTACT FORM ── */
.contact-section { background: var(--warm); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--forest); margin-bottom: 16px; }
.contact-info p { font-size: 13px; color: var(--body-text); line-height: 1.8; margin-bottom: 28px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.contact-detail-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(46,107,79,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
.contact-detail-text { font-size: 13px; color: var(--body-text); line-height: 1.6; }
.contact-detail-text strong { display: block; color: var(--forest); font-weight: 600; margin-bottom: 2px; }
.contact-form-wrap { background: #fff; border-radius: 16px; padding: 40px; border: 1px solid rgba(26,58,42,0.07); }
.contact-form-wrap h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--forest); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--forest); margin-bottom: 6px; letter-spacing: 0.03em; }
.form-group input, .form-group select, .form-group textarea { width: 100%; border: 1.5px solid rgba(26,58,42,0.15); border-radius: 8px; padding: 12px 14px; font-size: 13px; font-family: 'DM Sans', sans-serif; color: var(--dark-text); background: var(--warm); transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--savanna); background: #fff; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { background: var(--savanna); color: #fff; border: none; font-size: 13px; font-weight: 600; padding: 14px 32px; border-radius: 8px; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background 0.2s, transform 0.15s; width: 100%; margin-top: 4px; }
.form-submit:hover { background: var(--forest); transform: translateY(-1px); }

/* ── HAMBURGER ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--forest); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav open state */
.nav-menu.nav-open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0; right: 0;
  background: var(--warm);
  padding: 12px 20px 20px;
  border-bottom: 1px solid rgba(26,58,42,0.1);
  box-shadow: 0 8px 24px rgba(26,58,42,0.1);
  z-index: 999;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  /* Hero split-screen stacks vertically on mobile */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 72px 24px 48px; }
  .hero h1 { font-size: 34px; }
  .hero-stats > div { padding: 20px 12px; }
  .hero-stat-num { font-size: 26px; }
  .hero-carousel { height: 300px; }
  section { padding: 60px 20px; }
  .topbar { padding: 7px 20px; }
  .about-grid, .programs-grid, .pillars-grid, .involve-grid, .timeline-grid, .contact-grid { grid-template-columns: 1fr; }
  .impact-numbers { grid-template-columns: 1fr 1fr; }
  .reports-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .mission-strip { padding: 20px; flex-direction: column; text-align: center; }
  .partners { padding: 40px 20px; }
  .newsletter { padding: 52px 20px; }
  footer { padding: 52px 20px 24px; }
  .timeline-grid::before { display: none; }
  .page-hero { min-height: 50vh; }
  .page-hero-content { padding: 60px 20px; }
  .page-hero-content h1 { font-size: 34px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  /* Programs cards */
  .prog-section { padding: 60px 20px; }
  .prog-cards-grid { grid-template-columns: 1fr; }
  .prog-expand.active { grid-template-columns: 1fr; }
  .prog-panel-image { min-height: 220px; }
  .prog-panel-content { padding: 24px 20px; }
  .prog-services { grid-template-columns: 1fr; }
  .pillar-accordion-body p { padding-left: 20px; }
  /* Stories */
  .story-featured { grid-template-columns: 1fr; }
  .story-featured-img { min-height: 240px; }
  .story-featured-content { padding: 28px 24px; }
  .story-featured-title { font-size: 22px; }
  .stories-grid { grid-template-columns: 1fr; }
  .stories-header { flex-direction: column; align-items: flex-start; }
}
