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

:root {
  --teal: #079b87;
  --teal-2: #0cab97;
  --teal-dark: #087f71;
  --orange: #f4a40b;
  --ink: #172824;
  --muted: #5d6d69;
  --line: #dcefeb;
  --soft: #f7fcfa;
  --white: #fff;
  --shadow: 0 18px 44px rgba(27, 72, 65, .09);
  --max: 1280px;
}

body {
  min-width: 320px;
  font-family: "Nunito", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 118px;
  background:
    radial-gradient(circle at -85px 55%, transparent 0 180px, rgba(7,155,135,.14) 181px 182px, transparent 183px),
    #fff;
}

.container {
  width: min(var(--max), calc(100% - 128px));
  margin-inline: auto;
}

.dot-field {
  position: absolute;
  width: 130px;
  height: 190px;
  pointer-events: none;
  opacity: .45;
  background-image: radial-gradient(var(--teal-2) 1.35px, transparent 1.35px);
  background-size: 12px 12px;
}

.dot-a { left: -34px; top: 170px; }
.dot-b { right: -14px; top: 760px; height: 128px; }
.dot-c { left: 94px; top: 900px; height: 106px; background-image: radial-gradient(var(--orange) 1.25px, transparent 1.25px); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 14px 0;
  background: transparent;
  transition: padding .22s ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
}

.site-header.is-scrolled .nav,
.site-header.menu-open .nav {
  background: rgba(255,255,255,.96);
  border-color: rgba(220, 239, 235, .96);
  box-shadow: 0 14px 34px rgba(23, 40, 36, .08);
  backdrop-filter: blur(12px);
  border-radius: 24px;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 24px;
  background: transparent;
  transition: background .22s ease, border-color .22s ease, box-shadow .22s ease, backdrop-filter .22s ease;
}

.brand { width: 120px; flex: 0 0 auto; }
.brand img { width: 99px; mix-blend-mode: multiply; }

.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  list-style: none;
  flex: 1;
}

.menu a {
  position: relative;
  display: inline-flex;
  padding: 11px 0;
  font-size: 13px;
  font-weight: 800;
  color: #1d2624;
}

.menu a.active { color: var(--teal); }
.menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: var(--teal);
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 25px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.button.primary { color: #fff; background: var(--teal); box-shadow: 0 12px 24px rgba(7,155,135,.16); }
.button.outline { color: var(--teal); border-color: var(--teal); background: #fff; }
.button.orange { color: #fff; background: var(--orange); }

.mobile-toggle { display: none; }

.page-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
  gap: 72px;
  align-items: center;
  padding: 44px 0 78px;
}

.page-hero.compact { grid-template-columns: 1fr; padding-bottom: 46px; }
.eyebrow {
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1, h2, h3 { color: var(--teal); line-height: 1.18; font-weight: 900; }
h1 { max-width: 650px; font-size: clamp(38px, 4vw, 56px); }
h2 { font-size: clamp(26px, 2.4vw, 34px); }
h3 { font-size: 21px; }

.lead {
  max-width: 650px;
  margin-top: 20px;
  color: #3d4f4b;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
}

.swirl {
  width: 76px;
  height: 24px;
  margin-top: 30px;
  color: var(--teal);
}

.hero-card {
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 22px;
  width: 54px;
  height: 235px;
  background: var(--teal);
  border-radius: 14px 0 0 14px;
  z-index: 0;
}

.hero-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 395px;
  object-fit: cover;
  border-radius: 21px;
  box-shadow: var(--shadow);
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -18px;
  width: 180px;
  height: 215px;
  border: 1.5px solid rgba(7,155,135,.24);
  border-radius: 18px;
  z-index: 0;
}

.section { position: relative; z-index: 1; padding: 34px 0 72px; }
.section-head { margin-bottom: 30px; }
.section-head.center { text-align: center; }
.section-head.center .lead { margin-inline: auto; }

.impact-strip,
.mission-box,
.contact-layout,
.join-card {
  background: #fff;
  border: 1px solid rgba(21,107,94,.08);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 30px 18px;
}

.impact-item {
  text-align: center;
  border-right: 1px solid rgba(20,80,73,.15);
}

.impact-item:last-child { border-right: 0; }
.impact-item svg { width: 38px; height: 38px; color: var(--teal); stroke-width: 1.8; }
.impact-item strong { display: block; margin-top: 8px; color: var(--teal); font-size: 20px; font-weight: 900; }
.impact-item span { display: block; color: var(--muted); font-size: 12px; font-weight: 700; }

.mission-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 480px);
  gap: 54px;
  align-items: center;
  padding: 38px 45px;
}

.mission-box img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 14px;
}

.check-list { margin-top: 20px; list-style: none; }
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #344642;
  font-weight: 700;
  margin-top: 13px;
}
.check-list svg { flex: 0 0 auto; width: 19px; height: 19px; color: var(--teal); margin-top: 2px; }

.about-mini-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.about-mini-icons span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 12px;
  color: var(--teal);
  background: #eef9f6;
  border: 1px solid rgba(7,155,135,.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.about-mini-icons svg {
  width: 15px;
  height: 15px;
}

.pillar-list { display: grid; gap: 28px; }
.pillar-row {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(21,107,94,.08);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(27,72,65,.07);
}
.pillar-row img { width: 100%; height: 190px; object-fit: cover; border-radius: 11px; }
.pillar-row p { margin-top: 12px; color: #3d4f4b; font-weight: 600; }

.theme-icon-panel {
  display: grid;
  place-items: center;
  width: 100%;
  height: 190px;
  color: var(--teal);
  background: #eef9f6;
  border: 1px solid rgba(7,155,135,.14);
  border-radius: 11px;
}

.theme-icon-panel svg {
  width: 74px;
  height: 74px;
  stroke-width: 1.4;
}

.mini-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 18px;
  margin: 17px 0 12px;
  list-style: none;
}
.mini-list li {
  display: flex;
  gap: 8px;
  color: #52635f;
  font-size: 13px;
  font-weight: 700;
}
.mini-list svg { width: 15px; height: 15px; color: var(--teal); margin-top: 3px; }

.filters { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.filter {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 21px;
  color: var(--teal);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}
.filter.active { color: #fff; background: var(--teal); border-color: var(--teal); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 360px;
  gap: 34px;
  align-items: start;
}

.featured-news {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(21,107,94,.08);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.featured-news img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.featured-news .body { padding: 30px; }
.featured-news h2 { margin-top: 10px; color: #152723; }
.featured-news p { margin: 14px 0 22px; color: #52635f; font-weight: 700; }

.side-panel {
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(21,107,94,.08);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(27,72,65,.07);
}

.side-panel + .side-panel { margin-top: 22px; }
.side-panel h3 { margin-bottom: 18px; color: #152723; font-size: 18px; }

.category-list,
.document-list { list-style: none; }
.category-list li,
.document-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  color: #52635f;
  border-bottom: 1px solid rgba(20,80,73,.1);
  font-size: 13px;
  font-weight: 800;
}
.category-list li:last-child,
.document-list li:last-child { border-bottom: 0; }
.category-list span { color: var(--teal); }

.news-list {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.news-list.no-offset {
  margin-top: 0;
}

.news-item {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(21,107,94,.08);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(27,72,65,.06);
}

.news-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 9px;
}

.news-item h3 { margin-top: 8px; color: #152723; font-size: 20px; }
.news-item p { margin: 9px 0 14px; color: #52635f; font-size: 13px; font-weight: 700; }

.newsletter-box {
  margin-top: 34px;
  padding: 30px;
  color: #fff;
  background: linear-gradient(105deg, var(--teal), #08aa95);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.newsletter-box h2 { color: #fff; }
.newsletter-box p { margin: 10px 0 20px; font-weight: 700; opacity: .92; }
.newsletter-form { display: flex; gap: 12px; max-width: 620px; }
.newsletter-form input {
  flex: 1;
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 7px;
  font: inherit;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.document-card {
  display: grid;
  gap: 18px;
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(21,107,94,.08);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(27,72,65,.07);
}

.document-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--teal);
  background: #eef9f6;
  border-radius: 12px;
}
.document-icon svg { width: 32px; height: 32px; stroke-width: 1.7; }
.document-card h3 { color: #152723; }
.document-card p { color: #52635f; font-size: 13px; font-weight: 700; }
.document-meta { display: flex; gap: 10px; flex-wrap: wrap; color: var(--teal); font-size: 12px; font-weight: 900; }

.values-grid,
.figures-grid,
.donation-grid,
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.donation-choice-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.payment-methods span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--teal);
  background: #eef9f6;
  border: 1px solid rgba(7,155,135,.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.theme-donation-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.theme-donation-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: #f8fcfb;
  border: 1px solid rgba(21,107,94,.1);
  border-radius: 10px;
}

.theme-donation-row strong {
  display: block;
  color: #152723;
  font-size: 15px;
  font-weight: 900;
}

.theme-donation-row span {
  display: block;
  margin-top: 4px;
  color: #52635f;
  font-size: 12px;
  font-weight: 700;
}

.stripe-note {
  margin-top: 18px;
  padding: 14px 16px;
  color: #52635f;
  background: #fff8ed;
  border: 1px solid rgba(244,164,11,.24);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
}

.value-card,
.figure-card,
.donation-card,
.location-card {
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(21,107,94,.08);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(27,72,65,.07);
}

.value-card svg,
.figure-card svg,
.donation-card svg,
.location-card svg {
  width: 42px;
  height: 42px;
  color: var(--teal);
  stroke-width: 1.7;
}

.value-card h3,
.donation-card h3,
.location-card h3 {
  margin-top: 16px;
  color: #152723;
}

.value-card p,
.donation-card p,
.location-card p {
  margin-top: 10px;
  color: #52635f;
  font-size: 13px;
  font-weight: 700;
}

.figure-card strong {
  display: block;
  margin-top: 16px;
  color: var(--teal);
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.figure-card span {
  display: block;
  margin-top: 8px;
  color: #52635f;
  font-weight: 800;
}

.program-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.project-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.project-meta svg { width: 14px; height: 14px; }

.map-panel {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  margin-bottom: 34px;
  padding: 32px;
  background:
    radial-gradient(circle at 24% 45%, rgba(244,164,11,.22) 0 9px, transparent 10px),
    radial-gradient(circle at 44% 54%, rgba(7,155,135,.26) 0 10px, transparent 11px),
    radial-gradient(circle at 58% 38%, rgba(7,155,135,.22) 0 8px, transparent 9px),
    linear-gradient(135deg, #f7fcfa, #fff);
  border: 1px solid rgba(21,107,94,.1);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.map-panel::before {
  content: "";
  position: absolute;
  inset: 45px 60px 35px;
  border: 2px dashed rgba(7,155,135,.22);
  border-radius: 48% 52% 42% 58%;
}

.map-panel h2,
.map-panel p,
.map-legend { position: relative; z-index: 1; }

.map-panel p {
  max-width: 560px;
  margin-top: 12px;
  color: #52635f;
  font-weight: 700;
}

.map-legend {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 12px;
  color: var(--teal);
  background: #eef9f6;
  border: 1px solid rgba(7,155,135,.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.detail-meta svg { width: 15px; height: 15px; }

.detail-cover {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: -24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.detail-cover img {
  width: 100%;
  height: min(560px, 48vw);
  min-height: 320px;
  object-fit: cover;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: start;
}

.article-body {
  color: #344642;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.82;
}

.article-body h2 {
  margin: 32px 0 12px;
  color: var(--teal);
}

.article-body p + p { margin-top: 16px; }

.quote-box {
  margin: 28px 0;
  padding: 26px;
  color: #152723;
  background: #fff8ed;
  border-left: 5px solid var(--orange);
  border-radius: 12px;
  font-size: 19px;
  line-height: 1.55;
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(27,72,65,.07);
}

.gallery-grid img:first-child {
  grid-row: span 2;
  height: 498px;
}

.info-panel {
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(21,107,94,.08);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(27,72,65,.07);
}

.info-panel + .info-panel { margin-top: 20px; }
.info-panel h3 { color: #152723; margin-bottom: 16px; }
.info-list { display: grid; gap: 14px; list-style: none; }
.info-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  color: #52635f;
  font-size: 13px;
  font-weight: 800;
}
.info-list svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}

.progress-bar {
  overflow: hidden;
  height: 10px;
  margin: 12px 0 8px;
  background: #e4f1ee;
  border-radius: 999px;
}

.progress-bar span {
  display: block;
  height: 100%;
  width: 64%;
  background: var(--teal);
  border-radius: inherit;
}

.content-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(21,107,94,.08);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(27,72,65,.07);
}
.content-card img { width: 100%; height: 185px; object-fit: cover; }
.content-card .body { padding: 22px; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 900;
}
.tag::before { content: ""; width: 4px; height: 13px; background: var(--teal); border-radius: 99px; }
.content-card h3 { margin-top: 12px; color: #1a2926; font-size: 18px; }
.content-card p { margin: 10px 0 18px; color: #52635f; font-size: 13px; font-weight: 700; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}
.text-link svg { width: 15px; height: 15px; }

.join-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.join-card { padding: 34px 28px; text-align: center; }
.join-card svg { width: 52px; height: 52px; color: var(--teal); stroke-width: 1.6; }
.join-card h3 { margin-top: 18px; }
.join-card p { margin: 12px 0 22px; color: #52635f; font-weight: 700; }

.support-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 34px;
  border-radius: 12px;
  background: rgba(255,255,255,.2);
  box-shadow: var(--shadow);
}
.support-item {
  padding: 25px;
  background: linear-gradient(105deg, var(--teal), #08aa95);
  color: #fff;
}
.support-item svg { width: 35px; height: 35px; }
.support-item strong { display: block; margin-top: 12px; font-size: 17px; font-weight: 900; }
.support-item span { display: block; margin-top: 5px; font-size: 13px; font-weight: 700; opacity: .9; }

.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 46px;
  padding: 38px;
}
.contact-list { list-style: none; margin-top: 24px; }
.contact-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 18px;
  color: #52635f;
  font-weight: 700;
}
.contact-list svg { color: var(--teal); width: 25px; height: 25px; }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-grid label { display: grid; gap: 8px; color: #2d3b38; font-size: 13px; font-weight: 900; }
.form-grid input, .form-grid textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
.form-grid textarea { min-height: 145px; resize: vertical; }
.form-grid .full { grid-column: 1 / -1; }

.cms-section {
  position: relative;
  z-index: 1;
  padding: 34px 0 72px;
}

.cms-section-soft { background: #f7fcfa; }
.cms-section-accent { background: #fff8ed; }

.cms-section-head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.cms-rich {
  max-width: 850px;
  margin-inline: auto;
}

.cms-content {
  color: #344642;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.82;
}

.cms-content p + p,
.cms-content ul,
.cms-content ol,
.cms-content blockquote,
.cms-content table { margin-top: 16px; }

.cms-content ul,
.cms-content ol { padding-left: 22px; }

.cms-content h2,
.cms-content h3,
.cms-content h4 { margin: 26px 0 10px; }

.cms-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.cms-split,
.cms-card-feature {
  display: grid;
  grid-template-columns: minmax(280px, 480px) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.cms-split.is-reversed {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
}

.cms-split.is-reversed .cms-media { order: 2; }

.cms-media img,
.cms-card-feature > img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.cms-card-feature {
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(21,107,94,.08);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.cms-side-card {
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(21,107,94,.08);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.cms-side-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 11px;
  margin-bottom: 20px;
}

.cms-side-card h3 {
  color: #152723;
}

.cms-side-card p:not(.eyebrow) {
  margin-top: 10px;
  color: #52635f;
  font-size: 13px;
  font-weight: 700;
}

.cms-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.cms-cards-list {
  display: grid;
  gap: 18px;
}

.cms-card {
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(21,107,94,.08);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(27,72,65,.07);
}

.cms-card img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 18px;
}

.cms-card svg {
  width: 42px;
  height: 42px;
  color: var(--teal);
  stroke-width: 1.7;
}

.cms-card h3 {
  margin-top: 14px;
  color: #152723;
}

.cms-card p {
  margin: 10px 0 16px;
  color: #52635f;
  font-size: 13px;
  font-weight: 700;
}

.cms-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  color: #fff;
  background: linear-gradient(105deg, var(--teal), #08aa95);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.cms-cta h2,
.cms-cta .eyebrow,
.cms-cta .cms-content { color: #fff; }

.cms-cta .button.outline {
  color: #fff;
  border-color: rgba(255,255,255,.7);
  background: transparent;
}

.site-footer {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 26px 0 34px;
  background: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .7fr .75fr .95fr;
  gap: 70px;
  padding-bottom: 42px;
}
.footer-logo img { width: 130px; mix-blend-mode: multiply; }
.footer-col h3 { margin-bottom: 18px; color: #1b2926; font-size: 14px; font-weight: 900; }
.footer-col ul { list-style: none; }
.footer-col li + li { margin-top: 12px; }
.footer-col a, .footer-col p { color: #5f6d6a; font-size: 14px; font-weight: 700; }
.socials { display: flex; gap: 20px; margin-top: 20px; color: var(--teal); }
.socials a { color: var(--teal); font-size: 14px; font-weight: 900; }
.copyright { text-align: center; color: #5f6d6a; font-size: 13px; font-weight: 700; }
.footer-mark {
  position: absolute;
  right: -52px;
  bottom: -4px;
  width: 306px;
  height: 188px;
  opacity: .1;
  filter: grayscale(1);
  mix-blend-mode: multiply;
  object-fit: contain;
}

@media (max-width: 1180px) {
  .container { width: min(var(--max), calc(100% - 48px)); }
  .nav { width: min(var(--max), calc(100% - 48px)); gap: 20px; }
  .menu { gap: 18px; }
  .menu a { font-size: 12px; }
  .button { padding-inline: 20px; }
  .page-hero, .mission-box, .contact-layout { grid-template-columns: 1fr; }
  .hero-card { max-width: 650px; }
  .cards-grid, .join-grid, .documents-grid, .values-grid, .figures-grid, .donation-grid, .location-grid { grid-template-columns: repeat(2, 1fr); }
  .news-layout, .detail-layout { grid-template-columns: 1fr; }
  .cms-split,
  .cms-split.is-reversed,
  .cms-card-feature,
  .cms-cta { grid-template-columns: 1fr; }
  .cms-split.is-reversed .cms-media { order: 0; }
  .cms-cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .page { padding-top: 98px; }
  .site-header { padding: 10px 0; }
  .nav { align-items: center; border-radius: 18px; }
  .brand { width: 86px; }
  .brand img { width: 82px; }
  .menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
  }
  .site-header:focus-within .menu,
  .menu.open { display: grid; gap: 4px; justify-items: start; }
  .mobile-toggle {
    display: grid;
    place-items: center;
    width: 42px;
    height: 38px;
    color: var(--teal);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
  }
  .donate-top { display: none; }
  .impact-strip { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .impact-item:nth-child(2) { border-right: 0; }
  .pillar-row { grid-template-columns: 1fr; }
  .support-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  .container, .nav { width: min(var(--max), calc(100% - 28px)); }
  .page-hero { gap: 34px; padding: 34px 0 54px; }
  h1 { font-size: 36px; }
  .hero-card img { height: 310px; }
  .impact-strip, .cards-grid, .join-grid, .form-grid, .documents-grid, .values-grid, .figures-grid, .donation-grid, .location-grid, .map-legend, .gallery-grid { grid-template-columns: 1fr; }
  .cms-cards-grid { grid-template-columns: 1fr; }
  .cms-card-feature,
  .cms-cta { padding: 24px 18px; }
  .cms-media img,
  .cms-card-feature > img { height: 260px; }
  .featured-news img { height: 245px; }
  .news-item { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .detail-cover img { height: 320px; }
  .gallery-grid img,
  .gallery-grid img:first-child { height: 250px; grid-row: auto; }
  .impact-item { border-right: 0; border-bottom: 1px solid rgba(20,80,73,.15); padding-bottom: 20px; }
  .impact-item:last-child { border-bottom: 0; }
  .mission-box, .contact-layout { padding: 24px 18px; }
  .mission-box img { height: 245px; }
  .mini-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .dot-field { display: none; }
}

@media (max-width: 420px) {
  .container, .nav { width: min(var(--max), calc(100% - 20px)); }
  .nav { padding: 8px 10px; }
  h1 { font-size: 32px; }
  h2 { font-size: 25px; }
  .button { min-height: 42px; padding-inline: 16px; }
  .page-hero { padding-top: 26px; }
  .hero-card img,
  .detail-cover img,
  .featured-news img { height: 260px; }
  .project-card,
  .news-item { grid-template-columns: 1fr; }
  .content-card img,
  .project-card img,
  .news-item img { height: 210px; }
}
