:root {
  --green: #1d9b4d;
  --green-700: #0e5d2c;
  --teal: #1aa3b0;
  --orange: #ff8a1e;
  --purple: #6b51d8;
  --pink: #ff4f86;
  --dark: #0c1b12;
  --ink: #1f2a24;
  --text: #243128;
  --muted: #5b6a61;
  --bg: #faf8f2;
  --card: #fff;
  --ring: rgba(0, 0, 0, .06);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.kicker {
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 .5rem;
}

.text-center {
  text-align: center;
}

.small {
  font-size: .9rem;
  color: var(--muted);
}

.tiny {
  font-size: .8rem;
  color: var(--muted);
}

.accent {
  color: var(--green-700);
  font-weight: 700;
}

/* ── Grid helpers ── */
.grid-2 {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.2fr .9fr;
}

@media (max-width: 640px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  border-radius: 999px;
  padding: .9rem 1.2rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: .2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-700);
}

.btn-secondary {
  background: #f6f6f6;
  border-color: #e6e6e6;
  color: #19231d;
}

.btn-secondary:hover {
  background: #eaeaea;
}

.btn-outline {
  border-color: #e3e3e3;
  color: #1b261f;
  background: #fff;
  padding: .7rem 1rem;
}

.btn-donate {
  background: #0b8a3a;
  color: #fff;
  border-radius: 10px;
  padding: .6rem 1rem;
}

.btn-donate:hover {
  background: #07682c;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #ececec;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: inherit;
  text-decoration: none;
}

.brand img {
  height: 44px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  color: #2b713c;
  font-size: 1rem;
}

.brand-text em {
  font-style: normal;
  color: #6b7c71;
  font-size: .8rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1rem;
}

.main-nav a {
  color: #1e2b23;
  text-decoration: none;
  font-weight: 600;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--green);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: .25rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #2b3a31;
  margin: .3rem 0;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    inset: 64px 0 auto 0;
    background: #fff;
    padding: 1rem 5%;
    border-bottom: 1px solid #eee;
    transform: translateY(-120%);
    transition: .3s;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-toggle {
    display: block;
  }
}

/* ── Hero ── */
.hero {
  position: relative;
  background: linear-gradient(90deg, #0e2a1c 0%, rgba(10, 30, 20, .88) 48%, rgba(0, 0, 0, .2) 100%);
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(.1) brightness(.9);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0d2a1c 0%, rgba(13, 42, 28, .7) 55%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 84px 0 72px;
  max-width: 680px;
}

.hero h1 {
  margin: 0 0 .25rem;
}

.hero .eyebrow {
  display: block;
  font-weight: 800;
  letter-spacing: .015em;
  font-size: 2rem;
}

.hero .display {
  display: block;
  color: #baf7c7;
  font-weight: 900;
  letter-spacing: .01em;
  font-size: 3.2rem;
}

.hero .lead {
  font-size: 1.05rem;
  color: #e8f4ec;
  max-width: 44ch;
  margin: .6rem 0 1.2rem;
}

.hero-ctas {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

/* ── Why ── */
.why {
  background: #fff;
  padding: 56px 0;
}

.card-media img {
  border-radius: var(--radius);
  box-shadow: 0 20px 40px var(--ring);
}

/* ── Vision / Mission ── */
.vision-mission {
  background: #f7f5ef;
  padding: 42px 0;
}

.vision-mission .cards {
  display: flex;
  flex-direction: row;
  gap: 1.4rem;
}

@media (max-width: 600px) {
  .vision-mission .cards {
    flex-direction: column;
  }
}

.card {
  background: var(--card);
  padding: 1.2rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 16px var(--ring);
  border: 1px solid #eee;
  flex: 1;
}

.card-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.icon-circle {
  width: 80px;
  height: 80px;
  background: #1D9B4D;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

#vision-bg {
  background: #ff8a1e;
}

#img-partner {
  background: #ff8a1e;
}

#img-heart {
  background: hotpink;
}

#our-vision {
  color: #1D9B4D;
}

#our-mission {
  color: #ff8a1e;
}

/* ── Ecosystem ── */
.ecosystem {
  padding: 56px 0;
  background: #fff;
}

/* ── Outreach ── */
.outreach {
  background: #fff;
  padding: 56px 0;
}

.outreach .outreach-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem;
}

.outreach .outreach-gallery img {
  border-radius: 12px;
  box-shadow: 0 10px 20px var(--ring);
}

.checklist {
  margin: 0 0 1rem 0;
  padding: 0 0 0 1.2rem;
}

.checklist li {
  margin: .35rem 0;
}

.checklist li::marker {
  content: "✔  ";
  color: var(--green);
}

/* ── CTA Tiles ── */
.cta-tiles {
  background: #f7f5ef;
  padding: 42px 0;
}

.tiles {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

@media (max-width: 600px) {
  .tiles {
    flex-direction: column;
  }
}

.tile {
  flex: 1;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 1.1rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 18px var(--ring);
  display: flex;
  flex-direction: column;
  gap: .4rem;
  transition: transform .2s;
}

.tile:hover {
  transform: translateY(-2px);
}

.tile .btn {
  align-self: flex-start;
  margin-top: .2rem;
}

/* ── Footer ── */
.site-footer {
  background: #0c2016;
  color: #d7e6dc;
  margin-top: 0;
}


.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 1.5rem;
  padding: 32px 0;
}

@media (max-width: 980px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer a {
  color: #d7e6dc;
}

.footer-grid img {
  height: 42px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: 0;
  padding: 0;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #2a402f;
  border-radius: 8px;
  color: #d7e6dc;
  transition: background .2s, border-color .2s;
}

.social-row a:hover {
  background: #1a3525;
  border-color: #3d5c46;
}

.legal {
  border-top: 1px solid #183524;
  padding: 12px 0 18px;
}

.newsletter-form {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  border-radius: 10px;
  border: 1px solid #2a402f;
  background: #0f271b;
  color: #e6f3ea;
  padding: .7rem;
}

.newsletter-form button {
  border-radius: 10px;
}

.nl-msg {
  margin: .25rem 0 0;
}