@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,400;0,700;0,900;1,400&family=Nunito+Sans:wght@300;400;600;700;800&display=swap');

:root {
  --green-900: #0f3d0f;
  --green-800: #1a5c1a;
  --green-700: #237023;
  --green-600: #2d8a2d;
  --green-500: #3da83d;
  --green-400: #5cbd5c;
  --green-300: #8ed18e;
  --green-200: #c2e8c2;
  --green-100: #e6f5e6;
  --green-50:  #f2faf2;
  --gold:      #b8892a;
  --gold-light:#f5e6c2;
  --off-white: #fafef8;
  --text-dark: #1a2b1a;
  --text-mid:  #3d5c3d;
  --text-light:#6b8c6b;
  --border:    #d4e8d4;
  --shadow:    0 4px 24px rgba(45,138,45,0.10);
  --shadow-lg: 0 12px 48px rgba(45,138,45,0.15);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.7;
}

/* ─── NAV ─── */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 52px; width: auto; }
.nav-logo-text { line-height: 1.25; }
.nav-logo-text .name {
  font-family: 'Merriweather', serif;
  font-weight: 700; font-size: 1rem;
  color: var(--green-700);
  display: block;
}
.nav-logo-text .sub {
  font-size: 0.72rem; color: var(--text-light);
  font-weight: 600; letter-spacing: 0.05em;
}
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  text-decoration: none; color: var(--text-mid);
  font-weight: 600; font-size: 0.88rem;
  padding: 0.5rem 0.85rem; border-radius: 6px;
  transition: all 0.2s; letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--green-100); color: var(--green-700);
}
.nav-cta {
  background: var(--green-600) !important;
  color: #fff !important; padding: 0.5rem 1.2rem !important;
  border-radius: 24px !important;
}
.nav-cta:hover { background: var(--green-700) !important; }
.nav-hamburger { display: none; cursor: pointer; padding: 8px; border: none; background: none; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text-dark); margin: 5px 0; border-radius: 2px; transition: 0.3s; }

/* ─── DROPDOWN ─── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: none; border: none; cursor: pointer;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600; font-size: 0.88rem;
  color: var(--text-mid); padding: 0.5rem 0.85rem; border-radius: 6px;
  transition: all 0.2s; letter-spacing: 0.02em;
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active { background: var(--green-100); color: var(--green-700); }
.dropdown-arrow { font-size: 0.6rem; transition: transform 0.2s; display: inline-block; }
.nav-dropdown.dropdown-open .dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: #fff; border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border: 1px solid var(--border);
  min-width: 175px; padding: 0.4rem 0;
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s;
  z-index: 200;
}
.nav-dropdown.dropdown-open .nav-dropdown-menu {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 0.6rem 1.1rem;
  font-size: 0.86rem; font-weight: 600;
  color: var(--text-mid); border-radius: 0;
  white-space: nowrap; text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu a:hover { background: var(--green-50); color: var(--green-700); }

/* ─── TOP BAR ─── */
.topbar {
  background: var(--green-800);
  color: #fff; font-size: 0.78rem; font-weight: 600;
  padding: 6px 2rem;
  display: flex; justify-content: flex-end; align-items: center; gap: 2rem;
}
.topbar a { color: #c2e8c2; text-decoration: none; }
.topbar a:hover { color: #fff; }

/* ─── HERO ─── */
.hero {
  position: relative; overflow: hidden;
  min-height: 580px; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.45);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,61,15,0.85) 0%, rgba(45,138,45,0.55) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 5rem 2rem;
  color: #fff;
}
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.35rem 1rem; border-radius: 20px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 1.25rem; color: #c2e8c2;
}
.hero h1 {
  font-family: 'Merriweather', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900; line-height: 1.2;
  margin-bottom: 1.25rem; max-width: 720px;
}
.hero h1 em { font-style: normal; color: #8ed18e; }
.hero p {
  font-size: 1.1rem; max-width: 580px;
  color: rgba(255,255,255,0.88); margin-bottom: 2rem; font-weight: 400;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.8rem; border-radius: 32px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.92rem; font-weight: 700;
  text-decoration: none; transition: all 0.25s; cursor: pointer; border: none;
}
.btn-primary { background: var(--green-500); color: #fff; }
.btn-primary:hover { background: var(--green-400); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(61,168,61,0.35); }
.btn-white { background: #fff; color: var(--green-700); }
.btn-white:hover { background: var(--green-100); transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-green-outline { background: transparent; color: var(--green-700); border: 2px solid var(--green-500); }
.btn-green-outline:hover { background: var(--green-100); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #9a7220; transform: translateY(-2px); }

/* ─── SECTIONS ─── */
.section { padding: 5rem 2rem; }
.section-sm { padding: 3rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--green-600);
  margin-bottom: 0.75rem; display: block;
}
.section-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900; line-height: 1.25;
  color: var(--green-900); margin-bottom: 1rem;
}
.section-title em { font-style: normal; color: var(--green-600); }
.section-sub {
  font-size: 1.05rem; color: var(--text-mid);
  max-width: 640px; line-height: 1.75;
}
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }
.divider { width: 48px; height: 4px; background: var(--green-500); border-radius: 2px; margin-bottom: 1rem; }
.divider.center { margin: 0 auto 1rem; }

/* ─── CARDS ─── */
.card {
  background: #fff; border-radius: 16px;
  box-shadow: var(--shadow); overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 1.5rem; }
.card-tag {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green-600);
  margin-bottom: 0.6rem; display: block;
}
.card-title {
  font-family: 'Merriweather', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--green-900); margin-bottom: 0.75rem; line-height: 1.4;
}
.card-text { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; }

/* ─── GRID ─── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* ─── STAT BLOCKS ─── */
.stats-bar {
  background: var(--green-800); color: #fff;
  padding: 3rem 2rem;
}
.stats-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: 'Merriweather', serif;
  font-size: 2.8rem; font-weight: 900;
  color: #8ed18e; line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.78); font-weight: 600; line-height: 1.4; }

/* ─── PROGRAM CARDS ─── */
.program-card {
  background: #fff; border-radius: 16px;
  border: 1px solid var(--border);
  padding: 1.75rem; transition: all 0.25s;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.program-card:hover {
  border-color: var(--green-400);
  box-shadow: var(--shadow-lg); transform: translateY(-3px);
}
.program-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--green-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.program-title {
  font-family: 'Merriweather', serif;
  font-weight: 700; font-size: 1rem;
  color: var(--green-900); line-height: 1.35;
}
.program-text { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; flex: 1; }

/* ─── TEAM ─── */
.team-card {
  background: #fff; border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow);
  text-align: center; transition: all 0.25s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-img-wrap { position: relative; padding-top: 100%; overflow: hidden; }
.team-img-wrap img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.team-info { padding: 1.25rem 1rem; }
.team-name {
  font-family: 'Merriweather', serif;
  font-weight: 700; font-size: 1rem;
  color: var(--green-900); margin-bottom: 0.3rem;
}
.team-role { font-size: 0.8rem; color: var(--green-600); font-weight: 700; letter-spacing: 0.05em; }

/* ─── QUOTE ─── */
.quote-block {
  background: var(--green-50);
  border-left: 4px solid var(--green-500);
  border-radius: 0 12px 12px 0;
  padding: 1.5rem 2rem; margin: 1.5rem 0;
  font-style: italic; font-size: 1rem; color: var(--text-mid);
}

/* ─── TIMELINE / LIST ─── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.check-list li { display: flex; gap: 0.75rem; font-size: 0.95rem; color: var(--text-mid); }
.check-list li::before {
  content: "✓"; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green-600); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800; margin-top: 2px;
}

/* ─── BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  color: #fff; text-align: center; padding: 5rem 2rem;
}
.cta-banner h2 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900;
  margin-bottom: 1rem;
}
.cta-banner p { font-size: 1.05rem; opacity: 0.9; max-width: 560px; margin: 0 auto 2rem; }

/* ─── FOOTER ─── */
footer {
  background: var(--green-900); color: rgba(255,255,255,0.82);
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 64px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.65); }
.footer-col h4 {
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green-300);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  text-decoration: none; color: rgba(255,255,255,0.68);
  font-size: 0.88rem; transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-contact-item { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.9rem; font-size: 0.88rem; }
.footer-contact-item .ico { font-size: 1rem; margin-top: 1px; color: var(--green-300); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.75); text-decoration: none; }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 0.5rem; font-size: 0.8rem; color: rgba(255,255,255,0.45);
}
.reg-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.reg-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px; padding: 0.3rem 0.7rem;
  font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.6);
}

/* ─── IMPACT PATHWAY ─── */
.pathway {
  display: flex; align-items: center; gap: 0; flex-wrap: wrap;
  background: var(--green-50); border-radius: 16px; overflow: hidden;
}
.pathway-step {
  flex: 1; min-width: 160px; padding: 1.5rem;
  text-align: center; position: relative;
}
.pathway-step:not(:last-child)::after {
  content: "→";
  position: absolute; right: -12px; top: 50%; transform: translateY(-50%);
  color: var(--green-400); font-size: 1.5rem; z-index: 1;
}
.pathway-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green-600); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; margin: 0 auto 0.75rem;
}
.pathway-text { font-size: 0.85rem; font-weight: 600; color: var(--text-mid); line-height: 1.4; }

/* ─── GOVERNANCE BADGES ─── */
.gov-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem;
}
.gov-item {
  background: var(--green-50); border-radius: 12px;
  border: 1px solid var(--border);
  padding: 1.25rem; text-align: center;
}
.gov-item .gov-label { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-600); margin-bottom: 0.35rem; }
.gov-item .gov-val { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  color: #fff; padding: 4rem 2rem;
  text-align: center;
}
.page-hero .breadcrumb {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green-300); margin-bottom: 1rem;
}
.page-hero h1 {
  font-family: 'Merriweather', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  margin-bottom: 0.75rem;
}
.page-hero p { font-size: 1.05rem; opacity: 0.85; max-width: 600px; margin: 0 auto; }

/* ─── NEWSLETTER TICKER ─── */
.news-ticker {
  background: var(--green-100);
  border-bottom: 1px solid var(--green-200);
  padding: 0;
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}
.ticker-label {
  background: var(--green-700);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 1;
}
.ticker-track-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: tickerScroll 40s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-800);
  border-right: 1px solid var(--green-300);
  white-space: nowrap;
}
.ticker-item a { color: var(--green-700); text-decoration: none; font-weight: 700; }
.ticker-item a:hover { text-decoration: underline; }
.ticker-item--upcoming { color: var(--green-900); }
.ticker-badge-upcoming {
  background: #e65100; color: #fff;
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.15rem 0.55rem;
  border-radius: 20px; flex-shrink: 0;
}
.ticker-meta { color: var(--text-light); font-weight: 500; font-size: 0.75rem; }
.ticker-dot { color: var(--green-500); font-size: 0.5rem; }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── MINI CALENDAR WIDGET ─── */
.cal-widget {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  align-items: stretch;
}
.cal-toggle-btn {
  writing-mode: vertical-rl;
  background: var(--green-700);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 1rem 0.5rem;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 10px 0 0 10px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
  box-shadow: -3px 0 12px rgba(0,0,0,0.15);
}
.cal-toggle-btn:hover { background: var(--green-800); }
.cal-panel {
  width: 280px;
  background: #fff;
  border-left: 3px solid var(--green-500);
  box-shadow: -6px 0 32px rgba(0,0,0,0.12);
  overflow-y: auto;
  max-height: 85vh;
  transition: width 0.3s ease, opacity 0.3s ease;
}
.cal-panel.hidden { width: 0; opacity: 0; overflow: hidden; }
.cal-header {
  background: var(--green-700);
  color: #fff;
  padding: 1rem;
  text-align: center;
}
.cal-header h4 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}
.cal-header p { font-size: 0.72rem; opacity: 0.8; }
.cal-grid { padding: 0.75rem; }
.cal-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 0.35rem;
}
.cal-day-name {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-light);
  padding: 0.25rem 0;
}
.cal-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-date {
  text-align: center;
  padding: 0.35rem 0;
  font-size: 0.75rem;
  border-radius: 6px;
  cursor: default;
  color: var(--text-mid);
  font-weight: 600;
  position: relative;
}
.cal-date.empty { color: transparent; }
.cal-date.today {
  background: var(--green-600);
  color: #fff;
  font-weight: 800;
}
.cal-date.has-event {
  cursor: pointer;
  background: var(--green-100);
  color: var(--green-800);
  font-weight: 800;
}
.cal-date.has-event:hover { background: var(--green-200); }
.cal-date.has-event.completed { background: var(--green-200); color: var(--green-700); }
.cal-date.has-event.upcoming { background: #fff3cd; color: #856404; border: 1px solid #ffc107; }
.cal-date::after {
  content: '';
  display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  margin: 1px auto 0;
}
.cal-date.has-event.completed::after { background: var(--green-500); }
.cal-date.has-event.upcoming::after { background: #ffc107; }
.cal-events-list { padding: 0.75rem; border-top: 1px solid var(--border); }
.cal-events-list h5 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 0.6rem;
}
.cal-event-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.7rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--green-50);
  text-decoration: none;
}
.cal-event-item:last-child { border-bottom: none; margin-bottom: 0; }
.cal-event-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}
.cal-event-dot.completed { background: var(--green-500); }
.cal-event-dot.upcoming { background: #ffc107; }
.cal-event-info .date { font-size: 0.68rem; color: var(--text-light); font-weight: 600; }
.cal-event-info .title { font-size: 0.8rem; color: var(--text-dark); font-weight: 700; line-height: 1.3; }
.cal-event-info .title:hover { color: var(--green-600); }

/* ─── UPDATES / BLOG ─── */
.update-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}
.update-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.update-card-img { width: 100%; height: 200px; object-fit: cover; }
.update-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.6rem; }
.update-meta { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.update-tag {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green-600);
  background: var(--green-100); padding: 0.2rem 0.6rem;
  border-radius: 20px;
}
.update-date { font-size: 0.78rem; color: var(--text-light); font-weight: 600; }
.update-title {
  font-family: 'Merriweather', serif;
  font-weight: 700; font-size: 1.05rem;
  color: var(--green-900); line-height: 1.4;
  text-decoration: none; display: block;
}
.update-title:hover { color: var(--green-600); }
.update-excerpt { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; flex: 1; }
.update-read-more { font-size: 0.82rem; font-weight: 700; color: var(--green-600); text-decoration: none; margin-top: auto; }
.update-read-more:hover { color: var(--green-800); }

/* ─── GALLERY ALBUM CARDS ─── */
.gallery-album-card {
  text-decoration: none; color: inherit;
  background: #fff; border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  display: block;
}
.gallery-album-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-album-img-wrap {
  position: relative; padding-top: 62%; overflow: hidden;
}
.gallery-album-img-wrap img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.35s;
}
.gallery-album-card:hover .gallery-album-img-wrap img { transform: scale(1.05); }
.gallery-album-img-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green-200), var(--green-100));
}
.gallery-album-count {
  position: absolute; bottom: 0.75rem; right: 0.75rem;
  background: rgba(0,0,0,0.58); color: #fff;
  font-size: 0.72rem; font-weight: 700;
  padding: 0.2rem 0.6rem; border-radius: 20px;
}
.gallery-album-info { padding: 1.25rem 1.5rem 1.5rem; }
.gallery-album-date { font-size: 0.73rem; color: var(--text-light); font-weight: 600; margin-bottom: 0.35rem; }
.gallery-album-title {
  font-family: 'Merriweather', serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--green-900); line-height: 1.35; margin-bottom: 0.5rem;
}
.gallery-album-desc { font-size: 0.85rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 0.6rem; }
.gallery-album-link-label { font-size: 0.8rem; font-weight: 700; color: var(--green-600); }

/* ─── GALLERY SINGLE (masonry + hero) ─── */
.gallery-single-hero { min-height: 340px; display: flex; flex-direction: column; justify-content: flex-end; }
.gallery-masonry { columns: 3; column-gap: 1rem; }
.gallery-masonry .gallery-item { break-inside: avoid; margin-bottom: 1rem; cursor: pointer; }
@media (max-width: 900px) { .gallery-masonry { columns: 2; } }
@media (max-width: 480px) { .gallery-masonry { columns: 1; } }

/* ─── UPDATE CARD PLACEHOLDER ─── */
.update-card-img-placeholder {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, var(--green-200), var(--green-100));
}

/* ─── GALLERY ─── */
.gallery-grid {
  columns: 4;
  column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; display: block;
  transition: transform 0.35s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(15,61,15,0.65);
  display: flex; align-items: flex-end;
  padding: 1rem;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-caption { font-size: 0.8rem; color: #fff; font-weight: 600; line-height: 1.4; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: #fff; font-size: 2rem; cursor: pointer;
  background: rgba(255,255,255,0.1); border: none;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ─── EVENTS PAGE ─── */
.year-nav { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem; }
.month-btn {
  padding: 0.5rem 1.1rem; border-radius: 24px;
  border: 2px solid var(--border);
  background: #fff; color: var(--text-mid);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
}
.month-btn:hover, .month-btn.active {
  background: var(--green-600);
  border-color: var(--green-600);
  color: #fff;
}
.month-btn.has-events { border-color: var(--green-400); color: var(--green-700); }
.month-btn.has-events.active { background: var(--green-600); color: #fff; }

.event-card {
  background: #fff; border-radius: 16px;
  border: 1px solid var(--border);
  padding: 1.5rem;
  display: flex; gap: 1.25rem;
  align-items: flex-start;
  transition: all 0.25s;
  text-decoration: none; color: inherit;
}
.event-card:hover { border-color: var(--green-400); box-shadow: var(--shadow); transform: translateY(-2px); }
.event-date-block {
  flex-shrink: 0;
  width: 56px; text-align: center;
  background: var(--green-50);
  border-radius: 10px; padding: 0.5rem 0.25rem;
  border: 1px solid var(--border);
}
.event-date-block .day {
  font-family: 'Merriweather', serif;
  font-size: 1.6rem; font-weight: 900;
  color: var(--green-700); line-height: 1;
}
.event-date-block .mon {
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-light); margin-top: 0.2rem;
}
.event-card.completed .event-date-block { background: var(--green-100); border-color: var(--green-300); }
.event-card.upcoming .event-date-block { background: #fff8e1; border-color: #ffd54f; }
.event-card.upcoming .event-date-block .day { color: #e65100; }
.event-info { flex: 1; }
.event-type-badge {
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 20px; padding: 0.2rem 0.65rem;
  display: inline-block; margin-bottom: 0.5rem;
}
.badge-health { background: #e8f5e9; color: #2e7d32; }
.badge-education { background: #e3f2fd; color: #1565c0; }
.badge-eag { background: var(--green-100); color: var(--green-700); }
.badge-climate { background: #f1f8e9; color: #558b2f; }
.badge-community { background: #fce4ec; color: #880e4f; }
.badge-governance { background: #f3e5f5; color: #6a1b9a; }
.badge-women { background: #fff3e0; color: #e65100; }
.badge-meeting { background: var(--green-50); color: var(--green-700); }
.event-info h3 {
  font-family: 'Merriweather', serif;
  font-weight: 700; font-size: 1rem;
  color: var(--green-900); line-height: 1.35;
  margin-bottom: 0.4rem;
}
.event-info p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.65; }
.event-status {
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 0.5rem; display: inline-flex;
  align-items: center; gap: 0.3rem;
}
.event-status.done { color: var(--green-600); }
.event-status.upcoming { color: #e65100; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 1rem; border-bottom: 1px solid var(--border); gap: 0.25rem; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: block; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; }
  .nav-dropdown-menu {
    position: static; opacity: 1; pointer-events: none;
    transform: none; box-shadow: none; border: none;
    display: none; background: var(--green-50);
    border-radius: 8px; padding: 0.25rem 0; margin-top: 0.2rem;
  }
  .nav-dropdown.dropdown-open .nav-dropdown-menu { display: block; pointer-events: all; }
  .nav-dropdown-menu a { padding: 0.55rem 1.5rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .pathway-step:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gov-grid { grid-template-columns: repeat(2,1fr); }
  .topbar { font-size: 0.72rem; gap: 1rem; }
}
@media (max-width: 480px) {
  .grid-4, .stats-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.9rem; }
  .section { padding: 3.5rem 1.25rem; }
}
