:root {
  --green: #0b6b3a;
  --green-dark: #07522c;
  --orange: #f47b20;
  --orange-light: #ffb067;
  --neutral-100: #ffffff;
  --neutral-200: #f5f7f8;
  --neutral-300: #e6ecea;
  --neutral-700: #1f2a2a;
  --neutral-600: #3a4a45;
  --shadow: 0 12px 28px rgba(16, 54, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Open Sans", sans-serif;
  color: var(--neutral-700);
  background: var(--neutral-100);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.navbar {
  background: var(--neutral-100);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 6px 16px rgba(15, 33, 24, 0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 16px rgba(11, 107, 58, 0.16);
}

.logo-mark {
  background: var(--green);
  color: var(--neutral-100);
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 12px;
  letter-spacing: 0.5px;
}

.brand-name {
  font-weight: 700;
  margin: 0;
}

.brand-tag {
  margin: 0;
  color: var(--neutral-600);
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 500;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-links a {
  color: var(--neutral-600);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--orange);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.hero {
  background: linear-gradient(120deg, rgba(11, 107, 58, 0.08), rgba(244, 123, 32, 0.1));
  padding: 90px 0 70px;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin: 10px 0 18px;
}

.lead {
  font-size: 1.05rem;
  color: var(--neutral-600);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16rem;
  font-size: 0.7rem;
  color: var(--orange);
  font-weight: 700;
  margin: 0 0 12px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0 28px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.hero-metrics h3 {
  margin: 0;
  color: var(--green);
  font-size: 1.4rem;
}

.hero-metrics p {
  margin: 6px 0 0;
  color: var(--neutral-600);
  font-size: 0.9rem;
}

.hero-card {
  background: var(--neutral-100);
  padding: 30px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-image {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 18px;
  box-shadow: 0 12px 24px rgba(20, 40, 28, 0.12);
}

.page-hero {
  background: linear-gradient(120deg, rgba(11, 107, 58, 0.08), rgba(244, 123, 32, 0.12));
  padding: 70px 0 60px;
}

.muted {
  background: var(--neutral-200);
}

.hero-card ul {
  padding-left: 18px;
  margin: 18px 0 24px;
}

.hero-card li {
  margin-bottom: 8px;
}

.section {
  padding: 80px 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.section h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.about {
  background: var(--neutral-200);
}

.about-card {
  background: var(--neutral-100);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.pill-grid span {
  background: rgba(11, 107, 58, 0.08);
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.card {
  background: var(--neutral-100);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(20, 40, 28, 0.08);
  border: 1px solid rgba(11, 107, 58, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(20, 40, 28, 0.14);
}

.card h3 {
  margin-top: 0;
  color: var(--green);
}

.program-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
  background: var(--neutral-200);
}

.impact {
  background: var(--neutral-200);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.stat {
  background: var(--neutral-100);
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: center;
}

.stat h3 {
  margin: 0 0 8px;
  font-size: 1.8rem;
  color: var(--orange);
}

/* ---- Section headings ---- */
.section-heading {
  font-size: 1.6rem;
  margin-bottom: 6px;
  color: var(--green-dark);
}
.section-subheading {
  color: var(--text-muted, #666);
  margin-bottom: 32px;
  font-size: 1rem;
}

/* ---- Partners logo grid ---- */
.partners-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 260px));
  gap: 24px;
  justify-content: start;
}

.partner-entry {
  background: var(--neutral-100);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 28px 20px 22px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 210px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.partner-entry:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 24px rgba(15, 33, 24, 0.13);
}
.partner-logo-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
  flex-shrink: 0;
}
.partner-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.partner-initial {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
}
.partner-entry h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--green-dark);
}
.partner-entry p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted, #666);
}

/* ---- Story cards (Impact page) ---- */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.story-card {
  background: var(--neutral-100);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 24px rgba(15, 33, 24, 0.13);
}
.story-card-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  display: block;
}

.story-card-video video {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  display: block;
  background: #000;
}
.story-card-body {
  padding: 22px 20px;
}
.story-card-body h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--green);
}
.story-card-body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-card {
  background: var(--neutral-100);
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 28px rgba(15, 33, 24, 0.15);
}

.gallery-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(11, 107, 58, 0.2), rgba(244, 123, 32, 0.25));
}

/* ---- Featured Event Section ---- */
.featured-event-section {
  background: var(--neutral-200);
}

.featured-event-header {
  margin-bottom: 32px;
}

.featured-event-badge {
  display: inline-block;
  background: var(--green);
  color: var(--neutral-100);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.featured-event-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--neutral-700);
  margin: 0 0 6px;
  line-height: 1.25;
}

.featured-event-date {
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 10px;
}

.featured-event-desc {
  color: var(--neutral-600);
  max-width: 600px;
  line-height: 1.6;
  margin: 0;
}

.featured-event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.featured-media-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--neutral-300);
}

.featured-media-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.featured-media-card.featured-media-lead {
  grid-column: span 2;
}

.featured-media-card.featured-media-lead img {
  height: 330px;
}

.featured-media-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 14px 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
  color: #fff;
  font-size: 0.82rem;
  line-height: 1.4;
}

.cta {
  background: var(--green);
  color: var(--neutral-100);
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer {
  background: #0f2b1a;
  color: var(--neutral-100);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
}

.footer .logo-img {
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
  box-shadow: 0 10px 20px rgba(11, 107, 58, 0.2);
}

.footer a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(960px, 92%);
  background: var(--neutral-100);
  box-shadow: 0 20px 40px rgba(11, 32, 21, 0.18);
  border-radius: 18px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 20;
  border: 1px solid rgba(11, 107, 58, 0.12);
}

.sticky-cta strong {
  display: block;
  color: var(--green);
}

.sticky-cta span {
  color: var(--neutral-600);
  font-size: 0.95rem;
}

.sticky-cta-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-close {
  border: none;
  background: rgba(11, 107, 58, 0.08);
  color: var(--green);
  border-radius: 999px;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cta-close:hover {
  background: rgba(11, 107, 58, 0.16);
}

.btn {
  background: var(--orange);
  color: var(--neutral-100);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(244, 123, 32, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: rgba(11, 107, 58, 0.4);
}

.btn-outline:hover {
  background: rgba(11, 107, 58, 0.08);
  box-shadow: none;
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.text-link {
  font-weight: 600;
  color: var(--green);
  transition: color 0.2s ease;
}

.text-link:hover {
  color: var(--orange);
}

.info-card {
  background: var(--neutral-100);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 12px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--neutral-600);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--neutral-300);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244, 123, 32, 0.2);
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.form-status {
  margin-top: 14px;
  color: var(--green);
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE — Tablet (≤ 900px)
   ============================================= */
@media (max-width: 900px) {
  .section {
    padding: 60px 0;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .hero {
    padding: 60px 0 50px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .partners-logo-grid {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 18px;
  }

  .stories-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
  }

  .featured-event-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-media-card.featured-media-lead {
    grid-column: 1 / -1;
  }

  .featured-media-card.featured-media-lead img {
    height: 260px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .page-hero {
    padding: 50px 0 40px;
  }

  .hub-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .hub-stat-value {
    font-size: 2rem;
  }
}

/* =============================================
   RESPONSIVE — Mobile nav (≤ 768px)
   ============================================= */
@media (max-width: 768px) {
  .navbar .container {
    padding: 14px 0;
    position: relative;
  }

  .nav-toggle {
    display: flex;
  }

  .brand-tag {
    display: none;
  }

  .logo-img {
    width: 42px;
    height: 42px;
  }

  .brand {
    gap: 10px;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 4%;
    right: 4%;
    background: var(--neutral-100);
    border-radius: 18px;
    padding: 20px 22px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 20px 40px rgba(15, 33, 24, 0.15);
    gap: 4px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.25s ease;
    z-index: 30;
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 1rem;
    transition: background 0.2s ease;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(11, 107, 58, 0.06);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links .btn.btn-small {
    margin-top: 8px;
    text-align: center;
    justify-content: center;
  }

  /* Nav dropdown — flatten on mobile */
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 1rem;
  }

  .nav-dropdown-toggle:hover {
    background: rgba(11, 107, 58, 0.06);
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    min-width: unset;
    display: none;
    border-radius: 0;
  }

  .nav-dropdown-menu.open {
    display: block;
  }

  .nav-dropdown-menu a {
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.95rem;
  }

  /* Hamburger animation when open */
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* =============================================
   RESPONSIVE — Mobile (≤ 600px)
   ============================================= */
@media (max-width: 600px) {
  html {
    font-size: 15px;
  }

  .container {
    width: 90%;
  }

  /* Hero */
  .hero {
    padding: 40px 0 36px;
  }

  .hero h1 {
    font-size: 1.75rem;
    line-height: 1.25;
  }

  .lead {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin: 20px 0 24px;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    text-align: center;
  }

  .hero-metrics h3 {
    font-size: 1.15rem;
  }

  .hero-metrics p {
    font-size: 0.75rem;
  }

  .hero-card {
    padding: 22px;
    border-radius: 18px;
  }

  .hero-image {
    border-radius: 14px;
  }

  /* Page hero */
  .page-hero {
    padding: 36px 0 28px;
  }

  .page-hero h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  /* Sections */
  .section {
    padding: 44px 0;
  }

  .section h2 {
    font-size: 1.45rem;
  }

  .eyebrow {
    font-size: 0.65rem;
  }

  /* Cards */
  .card-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .card {
    padding: 20px;
    border-radius: 14px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat {
    padding: 18px 14px;
    border-radius: 12px;
  }

  .stat h3 {
    font-size: 1.4rem;
  }

  /* Partners grid */
  .partners-logo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .partner-entry {
    padding: 20px 14px 16px;
  }
  .partner-logo-wrap {
    width: 56px;
    height: 56px;
  }
  .partner-initial {
    font-size: 1.3rem;
  }

  /* Story cards */
  .stories-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .story-card-image img {
    aspect-ratio: 16 / 10;
  }
  .story-card-video video {
    aspect-ratio: 16 / 9;
  }
  .story-card-body {
    padding: 16px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .gallery-card {
    padding: 12px;
    border-radius: 14px;
  }

  .gallery-card h4 {
    font-size: 0.85rem;
    margin: 0;
  }

  .gallery-image {
    height: 120px;
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .featured-event-grid {
    grid-template-columns: 1fr;
  }

  .featured-media-card.featured-media-lead {
    grid-column: span 1;
  }

  .featured-media-card.featured-media-lead img {
    height: 220px;
  }

  .featured-media-card img {
    height: 180px;
  }

  .featured-event-title {
    font-size: 1.4rem;
  }

  /* About section */
  .about-card {
    padding: 22px;
  }

  .pill-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .pill-grid span {
    font-size: 0.78rem;
    padding: 8px 10px;
  }

  /* Info card */
  .info-card {
    padding: 22px;
    border-radius: 16px;
  }

  /* CTA section */
  .cta {
    padding: 44px 0;
  }

  .cta-inner {
    gap: 18px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }

  /* Buttons */
  .btn {
    padding: 14px 20px;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }

  .btn-outline {
    width: 100%;
  }

  /* Sticky CTA */
  .sticky-cta {
    bottom: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .sticky-cta strong {
    font-size: 0.9rem;
  }

  .sticky-cta span {
    font-size: 0.82rem;
  }

  .sticky-cta-actions {
    display: flex;
    gap: 8px;
  }

  .sticky-cta-actions .btn.btn-small {
    flex: 1;
    text-align: center;
    justify-content: center;
  }

  /* Footer */
  .footer {
    padding: 40px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer .logo-img {
    width: 52px;
    height: 52px;
  }

  .footer-bottom {
    margin-top: 24px;
    font-size: 0.8rem;
  }

  /* Contact form */
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 14px;
    font-size: 16px; /* prevents iOS zoom on focus */
  }

  .social-links {
    gap: 10px;
  }

  /* Checklist */
  .checklist li {
    font-size: 0.95rem;
  }

  /* Donate methods */
  .donate-methods-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .donate-method-card {
    padding: 24px 20px;
  }

  .donate-icon {
    font-size: 2rem;
  }

  /* Team grid */
  .team-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .team-card {
    padding: 24px 20px;
  }

  .team-avatar {
    width: 60px;
    height: 60px;
  }

  .team-initial {
    font-size: 1.5rem;
  }

  /* Hub zone grid */
  .hub-zone-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hub-zone-card {
    padding: 22px 20px;
  }

  /* Site plan sketch */
  .site-plan-sketch {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .site-plan-zone {
    padding: 20px 18px;
  }

  /* Hub stats strip */
  .hub-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .hub-stat-value {
    font-size: 1.8rem;
  }

  /* Impact grid */
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Timeline */
  .timeline {
    padding-left: 50px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-marker {
    left: -50px;
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  .timeline-item h3 {
    font-size: 1.05rem;
  }

  /* Policy content */
  .policy-content h2 {
    font-size: 1.2rem;
    margin-top: 32px;
  }
}

/* =============================================
   RESPONSIVE — Very small screens (≤ 380px)
   ============================================= */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
  }

  .hero-metrics h3 {
    font-size: 1rem;
  }

  .hero-metrics p {
    font-size: 0.7rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .pill-grid {
    grid-template-columns: 1fr;
  }

  .brand-name {
    font-size: 0.85rem;
  }

  .logo-img {
    width: 36px;
    height: 36px;
  }
}

/* =============================================
   NAV DROPDOWN (More menu)
   ============================================= */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  color: var(--neutral-600);
  cursor: pointer;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active {
  color: var(--green);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--neutral-100);
  border-radius: 14px;
  padding: 10px 0;
  min-width: 200px;
  box-shadow: 0 16px 32px rgba(15, 33, 24, 0.15);
  border: 1px solid rgba(11, 107, 58, 0.08);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 50;
}

.nav-dropdown-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--neutral-600);
  font-weight: 500;
  font-size: 0.92rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown-menu a:hover {
  background: rgba(11, 107, 58, 0.06);
  color: var(--green);
}

.nav-dropdown-menu a.active {
  color: var(--green);
  font-weight: 600;
}

/* =============================================
   DONATE BUTTON (NAV CTA)
   ============================================= */
.btn-donate {
  background: var(--orange);
  color: var(--neutral-100) !important;
  font-weight: 700;
}
.btn-donate:hover {
  background: #e06a10;
  box-shadow: 0 8px 18px rgba(244, 123, 32, 0.35);
}

/* =============================================
   COST TAGS (Donate page)
   ============================================= */
.cost-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(244, 123, 32, 0.1);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
}

/* =============================================
   DONATE METHODS GRID
   ============================================= */
.donate-hero {
  background: linear-gradient(120deg, rgba(244, 123, 32, 0.08), rgba(11, 107, 58, 0.1));
}

.donate-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.donate-method-card {
  background: var(--neutral-100);
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 107, 58, 0.08);
}

.donate-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.donate-method-card h3 {
  color: var(--green);
  margin: 0 0 10px;
}

.donate-detail {
  background: var(--neutral-200);
  padding: 16px;
  border-radius: 12px;
  margin: 14px 0;
  font-size: 0.92rem;
  line-height: 1.8;
}

.highlight-value {
  color: var(--orange);
  font-weight: 700;
}

.donate-note {
  font-size: 0.85rem;
  color: var(--neutral-600);
  margin-top: 12px;
}

.donate-method-card ul {
  padding-left: 18px;
  margin: 14px 0;
}

.donate-method-card li {
  margin-bottom: 8px;
}

/* =============================================
   CHECKLIST STYLE
   ============================================= */
.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 1.1rem;
}

/* =============================================
   INFO CARD (used on donate, partner, team pages)
   ============================================= */
.info-card {
  background: var(--neutral-100);
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--green);
}

.info-card h3 {
  color: var(--green);
  margin-top: 0;
}

.info-card p {
  margin-bottom: 14px;
}

/* =============================================
   TEAM GRID (Team page)
   ============================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.team-card {
  background: var(--neutral-100);
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(11, 107, 58, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 28px rgba(20, 40, 28, 0.14);
}

.team-avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--green);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.team-avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-initial {
  font-size: 2rem;
  font-weight: 700;
  color: var(--neutral-100);
}

@media (max-width: 640px) {
  .team-avatar {
    width: 82px;
    height: 82px;
  }
}

.team-card h3 {
  margin: 0 0 6px;
  color: var(--neutral-700);
}

.team-role {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.88rem;
  margin: 0 0 12px;
}

.team-card p:last-child {
  font-size: 0.92rem;
  color: var(--neutral-600);
  margin: 0;
}

.team-note {
  margin-top: 28px;
  padding: 16px 20px;
  background: rgba(244, 123, 32, 0.06);
  border-radius: 12px;
  font-size: 0.92rem;
  color: var(--neutral-600);
}

/* =============================================
   HUB ZONE GRID (Future Plans page)
   ============================================= */
.future-hero {
  background: linear-gradient(120deg, rgba(11, 107, 58, 0.1), rgba(244, 123, 32, 0.06));
}

.future-concept-image-wrap {
  padding-top: 22px;
  padding-bottom: 6px;
}

.future-concept-image-card {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 107, 58, 0.08);
  background: #fff;
}

.future-concept-image {
  width: 100%;
  display: block;
  max-height: 560px;
  object-fit: cover;
}

.future-concept-image-wrap + .section {
  padding-top: 24px;
}

.hub-zone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.hub-zone-card {
  background: var(--neutral-100);
  padding: 28px 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 107, 58, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hub-zone-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 28px rgba(20, 40, 28, 0.14);
}

.hub-zone-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.hub-zone-card h3 {
  color: var(--green);
  margin: 0 0 10px;
}

.hub-zone-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--neutral-600);
}

/* =============================================
   SITE PLAN SKETCH (Future Plans page)
   ============================================= */
.site-plan-sketch {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.site-plan-zone {
  padding: 28px 24px;
  border-radius: 18px;
  border: 2px dashed;
}

.site-plan-zone.farm {
  border-color: #4caf50;
  background: rgba(76, 175, 80, 0.06);
}

.site-plan-zone.sports {
  border-color: var(--orange);
  background: rgba(244, 123, 32, 0.06);
}

.site-plan-zone.community {
  border-color: var(--green);
  background: rgba(11, 107, 58, 0.06);
}

.site-plan-zone h4 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.site-plan-zone ul {
  padding-left: 18px;
  margin: 0;
}

.site-plan-zone li {
  margin-bottom: 6px;
  font-size: 0.92rem;
  color: var(--neutral-600);
}

/* =============================================
   TIMELINE (Future Plans page)
   ============================================= */
.timeline {
  position: relative;
  padding-left: 60px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(11, 107, 58, 0.15);
  border-radius: 999px;
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
}

.timeline-marker {
  position: absolute;
  left: -60px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--neutral-100);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(11, 107, 58, 0.25);
}

.timeline-item h3 {
  margin: 0 0 8px;
  color: var(--green);
}

.timeline-item p {
  margin: 0 0 6px;
  font-size: 0.95rem;
  color: var(--neutral-600);
}

.timeline-date {
  font-weight: 700;
  color: var(--orange) !important;
  font-size: 0.85rem !important;
}

/* =============================================
   FLAGSHIP BADGE (Future Plans hero)
   ============================================= */
.flagship-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--neutral-100);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* =============================================
   VISION BLOCK (Future Plans page)
   ============================================= */
.vision-block {
  background: var(--neutral-200);
}

.vision-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.vision-inner h2 {
  font-size: 1.75rem;
  color: var(--neutral-700);
  margin-bottom: 20px;
}

.vision-inner p {
  color: var(--neutral-600);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.vision-inner p:last-child {
  margin-bottom: 0;
}

/* =============================================
   HUB STATS STRIP (Future Plans page)
   ============================================= */
.hub-stats-strip {
  background: var(--green);
  padding: 44px 0;
}

.hub-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.hub-stat-value {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--neutral-100);
  line-height: 1;
  margin-bottom: 8px;
}

.hub-stat-label {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}

/* =============================================
   EXPECTED IMPACT GRID (Future Plans page)
   ============================================= */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.impact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--neutral-100);
  padding: 20px 22px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.impact-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 24px rgba(15, 33, 24, 0.12);
}

.impact-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.impact-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--neutral-600);
  line-height: 1.5;
}

/* =============================================
   POLICY CONTENT (Safeguarding & Privacy pages)
   ============================================= */
.policy-content {
  max-width: 800px;
}

.policy-content h2 {
  color: var(--green);
  margin-top: 40px;
  margin-bottom: 14px;
  font-size: 1.4rem;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  margin-bottom: 14px;
  line-height: 1.7;
}

.policy-content .card-grid {
  margin: 24px 0;
}

.policy-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--neutral-300);
  color: var(--neutral-600);
  font-size: 0.88rem;
}

/* =============================================
   FOOTER 4-COLUMN UPDATE
   ============================================= */
.footer h4 {
  color: var(--neutral-100);
  margin: 0 0 14px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06rem;
}

/* =============================================
   TOUCH & ACCESSIBILITY
   ============================================= */
@media (hover: none) {
  .card:hover {
    transform: none;
    box-shadow: 0 10px 22px rgba(20, 40, 28, 0.08);
  }

  .gallery-card:hover {
    transform: none;
  }

  .btn:hover {
    transform: none;
    box-shadow: none;
  }
}

/* Tap target minimum 44px for mobile */
@media (max-width: 768px) {
  .nav-links a,
  .footer a,
  .social-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}