:root {
  --brand-1: #0b4f44;
  --brand-2: #0e7c66;
  --brand-3: #22a06b;
  --accent: #86d19f;
  --ink: #1f2937;
  --muted: #6b7280;
  --bg-soft: #eff8f2;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Rubik', sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background: #fff;
}

a { text-decoration: none; color: inherit; }
.container { width: min(1140px, 92vw); margin: 0 auto; }

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(90deg, rgba(11, 79, 68, 0.96) 0%, rgba(14, 124, 102, 0.94) 60%, rgba(34, 160, 107, 0.92) 100%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 26px rgba(11, 79, 68, 0.35);
  transition: 220ms ease;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 72px;
  transition: min-height 220ms ease;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  letter-spacing: .4px;
}

.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: block;
  object-fit: contain;
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(255, 255, 255, .85);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
  padding: 4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #f3e8ff;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 2px;
}

.lang-btn {
  border: 1px solid rgba(255,255,255,.55);
  background: transparent;
  color: #eefdf4;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: .75rem;
  font-weight: 700;
  cursor: pointer;
}

.lang-btn.active {
  background: #ffffff;
  color: #0b4f44;
  border-color: #ffffff;
}

.nav-menu a {
  position: relative;
  transition: color 180ms ease;
}

.nav-menu a:not(.btn-mini)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: #d9f2e2;
  transition: width 180ms ease;
}

.nav-menu a:hover { color: #fff; }
.nav-menu a:not(.btn-mini):hover::after { width: 100%; }

.nav-menu a.active {
  color: #ffffff;
  font-weight: 600;
}

.nav-menu a.active:not(.btn-mini)::after {
  width: 100%;
}

.btn-mini {
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 999px;
  padding: 5px 11px;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.6rem;
}

.navbar.navbar-scrolled {
  box-shadow: 0 8px 18px rgba(11, 79, 68, 0.28);
}

.navbar.navbar-scrolled .nav-wrap {
  min-height: 62px;
}

.nav-progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
}

.nav-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #d8f4e5, #86d19f);
  box-shadow: 0 0 10px rgba(134, 209, 159, 0.55);
}

.hero {
  min-height: 86vh;
  background:
    radial-gradient(circle at 20% 20%, rgba(134,209,159,.32), transparent 40%),
    linear-gradient(130deg, #0b4f44 5%, #0e7c66 45%, #22a06b 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 110px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: center;
}

.hero h1 { font-size: clamp(2.1rem, 5vw, 3rem); margin: 8px 0; line-height: 1.2; }
.hero p { color: rgba(255,255,255,.92); }
.hero-tag { font-weight: 700; letter-spacing: .08em; }
.hero-sub { font-style: italic; margin-bottom: 10px; }
.hero-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  padding: 18px;
}

.hero-card ul { margin: 10px 0 0 18px; padding: 0; }
.hero-cta { margin-top: 16px; display: flex; gap: 10px; flex-wrap: wrap; }

.hero-visual-wrap {
  position: relative;
  min-height: 430px;
}

.hero-card-main {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  padding: 12px;
}

.hero-card-main img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

.hero-float {
  position: absolute;
  max-width: 260px;
  background: rgba(11, 79, 68, 0.74);
  border: 1px solid rgba(217, 242, 226, 0.3);
}

.hero-float h4 {
  margin: 0 0 4px;
  color: #f4fff8;
}

.hero-float p {
  margin: 0;
  color: #d9f2e2;
  font-size: .92rem;
}

.hero-float-top {
  top: -16px;
  right: -20px;
}

.hero-float-bottom {
  left: -18px;
  bottom: -20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
}

.btn-brand { background: var(--accent); border-color: var(--accent); color: #111827; }
.btn-brand:hover { background: #158f73; border-color: #158f73; color: #fff; }
.btn-outline { border-color: rgba(255,255,255,.7); color: #fff; }
.btn-outline-dark { border-color: #0e7c66; color: #0e7c66; }
.btn-outline-dark:hover { background: #0e7c66; color: #fff; }

.badge-soft {
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: .82rem;
}

.stats {
  margin-top: -38px;
  position: relative;
  z-index: 3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.stat-card {
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(16, 24, 40, .07);
}

.stat-card h3 { color: var(--brand-2); font-weight: 700; margin: 0; font-size: 1.7rem; }
.stat-card p { margin: 6px 0 0; color: var(--muted); }

.section { padding: 76px 0; }
.section-soft { background: var(--bg-soft); }
.section-title { margin-bottom: 28px; }
.section-title small {
  color: var(--brand-2);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.section-title h2 { margin: 7px 0 0; }

.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 14px;
}

.about-slider-card {
  border: 1px solid #cfe6da;
  border-radius: 16px;
  padding: 12px;
  background:
    radial-gradient(circle at 12% 12%, rgba(34,160,107,.12), transparent 32%),
    linear-gradient(145deg, #f6fcf8, #ffffff);
}

.about-slider-window {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 460px;
  background: #0b4f44;
}

.about-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 420ms ease, transform 420ms ease;
}

.about-slide.active {
  opacity: 1;
  transform: scale(1);
}

.about-slide img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  display: block;
}

.about-slide figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 10px;
  padding: 8px 10px;
  color: #ecfff4;
  font-weight: 500;
  background: linear-gradient(90deg, rgba(11,79,68,.86), rgba(14,124,102,.7));
}

.about-slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(8, 58, 50, 0.55);
  color: #ecfff4;
  cursor: pointer;
  z-index: 2;
}

.about-slide-btn.prev { left: 10px; }
.about-slide-btn.next { right: 10px; }

.about-slide-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.about-slide-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: #b9dcca;
  cursor: pointer;
}

.about-slide-dots .dot.active {
  background: #0e7c66;
  width: 22px;
}

.about-readmore {
  margin-top: 10px;
  border: 1px solid #b7dec9;
  background: #f4fbf7;
  color: #0b4f44;
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 600;
  cursor: pointer;
}

.about-link {
  display: inline-flex;
}

.about-hero {
  min-height: 72vh;
  padding: 96px 0 56px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: center;
}

.about-hero-card {
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 16px;
  background: rgba(255,255,255,.14);
  padding: 10px;
}

.about-hero-card img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.ec-hero {
  min-height: 74vh;
  padding: 96px 0 58px;
  background:
    radial-gradient(circle at 88% 18%, rgba(134,209,159,.22), transparent 34%),
    radial-gradient(circle at 10% 80%, rgba(34,160,107,.18), transparent 30%),
    linear-gradient(130deg, #0b4f44 2%, #0e7c66 48%, #22a06b 100%);
}

.ec-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: center;
}

.ec-hero-card {
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 16px;
  padding: 10px;
  background: rgba(255,255,255,.14);
}

.ec-hero-card img {
  width: 100%;
  display: block;
  border-radius: 12px;
  min-height: 320px;
  object-fit: cover;
}

.ec-quick-tags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ec-quick-tags span {
  border: 1px solid rgba(255,255,255,.38);
  background: rgba(255,255,255,.1);
  color: #eefdf4;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: .78rem;
}

.ec-hero-collage {
  position: relative;
  min-height: 380px;
}

.ec-photo-main,
.ec-photo-side {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255,255,255,.32);
  box-shadow: 0 18px 40px rgba(5, 32, 27, .3);
}

.ec-photo-main {
  height: 380px;
}

.ec-photo-side {
  position: absolute;
  width: 44%;
  right: -8px;
  bottom: -28px;
  height: 210px;
}

.ec-floating-note {
  position: absolute;
  left: -12px;
  top: -14px;
  max-width: 240px;
  border-radius: 14px;
  padding: 12px;
  background: rgba(11, 79, 68, .84);
  border: 1px solid rgba(217,242,226,.35);
  color: #ecfff4;
}

.ec-floating-note h4 {
  margin: 0 0 5px;
}

.ec-floating-note p {
  margin: 0;
  font-size: .9rem;
}

.ec-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.ec-insight {
  margin-top: -16px;
}

.ec-tracks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.ec-journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ec-journey .project-card span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(14,124,102,.12);
  color: #0b4f44;
  font-size: .8rem;
  font-weight: 700;
}

.ec-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ec-path::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 46px;
  height: 2px;
  background: linear-gradient(90deg, #0e7c66, #7fc9a2, #0e7c66);
}

.ec-path-item {
  position: relative;
  z-index: 1;
}

.ec-path-item::before {
  content: "";
  position: absolute;
  top: 37px;
  left: 24px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #0e7c66;
  border: 2px solid #d9f2e2;
}

.ec-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.ec-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #d6e8df;
}

.ec-gallery-mosaic {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ec-gallery-mosaic .wide {
  grid-column: span 2;
}

.sk-hero {
  min-height: 74vh;
  padding: 96px 0 58px;
  background:
    radial-gradient(circle at 85% 15%, rgba(134,209,159,.25), transparent 34%),
    radial-gradient(circle at 12% 82%, rgba(34,160,107,.2), transparent 30%),
    linear-gradient(132deg, #0b4f44 0%, #0e7c66 48%, #22a06b 100%);
}

.sk-page .section-title h2 {
  letter-spacing: -0.01em;
}

.sk-page .section {
  padding-top: 82px;
  padding-bottom: 82px;
}

.sk-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: center;
}

.sk-page .sk-hero article:first-child {
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  padding: 22px;
}

.sk-tags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sk-tags span {
  border: 1px solid rgba(255,255,255,.38);
  background: rgba(255,255,255,.1);
  color: #eefdf4;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: .78rem;
}

.sk-hero-note {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed rgba(255,255,255,.3);
  color: #d6f3e4;
  font-size: .92rem;
}

.sk-visual {
  position: relative;
  min-height: 390px;
}

.sk-main,
.sk-side {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255,255,255,.32);
  box-shadow: 0 18px 40px rgba(5, 32, 27, .3);
}

.sk-main {
  height: 390px;
}

.sk-side {
  position: absolute;
  width: 44%;
  right: -8px;
  bottom: -28px;
  height: 220px;
}

.sk-note {
  position: absolute;
  left: -12px;
  top: -14px;
  max-width: 240px;
  border-radius: 14px;
  padding: 12px;
  background: rgba(11, 79, 68, .84);
  border: 1px solid rgba(217,242,226,.35);
  color: #ecfff4;
}

.sk-note h4 {
  margin: 0 0 5px;
}

.sk-note p {
  margin: 0;
  font-size: .9rem;
}

.sk-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.sk-stat {
  border-top: 3px solid #22a06b;
}

.sk-card {
  border: 1px solid #cfe6da;
  background: linear-gradient(160deg, #ffffff, #f4fbf7);
  box-shadow: 0 10px 22px rgba(7, 35, 30, 0.08);
}

.sk-card h3 {
  color: #0b4f44;
}

.sk-pillars,
.sk-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.sk-phases .project-card span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(14,124,102,.12);
  color: #0b4f44;
  font-size: .8rem;
  font-weight: 700;
}

.sk-phases .sk-card {
  position: relative;
}

.sk-phases .sk-card::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #0e7c66;
}

.sk-outcomes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

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

.sk-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #d6e8df;
}

.sk-gallery .wide {
  grid-column: span 2;
}

.sc-hero {
  min-height: 74vh;
  padding: 96px 0 58px;
  background:
    radial-gradient(circle at 86% 16%, rgba(134,209,159,.24), transparent 34%),
    radial-gradient(circle at 12% 84%, rgba(34,160,107,.2), transparent 30%),
    linear-gradient(132deg, #0b4f44 0%, #0e7c66 48%, #22a06b 100%);
}

.sc-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: center;
}

.sc-tags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sc-tags span {
  border: 1px solid rgba(255,255,255,.38);
  background: rgba(255,255,255,.1);
  color: #eefdf4;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: .78rem;
}

.sc-visual {
  position: relative;
  min-height: 390px;
}

.sc-main,
.sc-side {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255,255,255,.32);
  box-shadow: 0 18px 40px rgba(5, 32, 27, .3);
}

.sc-main {
  height: 390px;
}

.sc-side {
  position: absolute;
  width: 44%;
  right: -8px;
  bottom: -28px;
  height: 220px;
}

.sc-note {
  position: absolute;
  left: -12px;
  top: -14px;
  max-width: 240px;
  border-radius: 14px;
  padding: 12px;
  background: rgba(11, 79, 68, .84);
  border: 1px solid rgba(217,242,226,.35);
  color: #ecfff4;
}

.sc-note h4 {
  margin: 0 0 5px;
}

.sc-note p {
  margin: 0;
  font-size: .9rem;
}

.sc-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.sc-pillars,
.sc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.sc-steps .project-card span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(14,124,102,.12);
  color: #0b4f44;
  font-size: .8rem;
  font-weight: 700;
}

.sc-outcomes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

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

.sc-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #d6e8df;
}

.sc-gallery .wide {
  grid-column: span 2;
}

.fs-hero {
  min-height: 74vh;
  padding: 96px 0 58px;
  background:
    radial-gradient(circle at 86% 16%, rgba(134,209,159,.24), transparent 34%),
    radial-gradient(circle at 12% 84%, rgba(34,160,107,.2), transparent 30%),
    linear-gradient(132deg, #0b4f44 0%, #0e7c66 48%, #22a06b 100%);
}

.fs-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: center;
}

.fs-tags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fs-tags span {
  border: 1px solid rgba(255,255,255,.38);
  background: rgba(255,255,255,.1);
  color: #eefdf4;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: .78rem;
}

.fs-visual {
  position: relative;
  min-height: 390px;
}

.fs-main,
.fs-side {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255,255,255,.32);
  box-shadow: 0 18px 40px rgba(5, 32, 27, .3);
}

.fs-main {
  height: 390px;
}

.fs-side {
  position: absolute;
  width: 44%;
  right: -8px;
  bottom: -28px;
  height: 220px;
}

.fs-note {
  position: absolute;
  left: -12px;
  top: -14px;
  max-width: 240px;
  border-radius: 14px;
  padding: 12px;
  background: rgba(11, 79, 68, .84);
  border: 1px solid rgba(217,242,226,.35);
  color: #ecfff4;
}

.fs-note h4 {
  margin: 0 0 5px;
}

.fs-note p {
  margin: 0;
  font-size: .9rem;
}

.fs-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.fs-focus,
.fs-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.fs-steps .project-card span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(14,124,102,.12);
  color: #0b4f44;
  font-size: .8rem;
  font-weight: 700;
}

.fs-outcomes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

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

.fs-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #d6e8df;
}

.fs-gallery .wide {
  grid-column: span 2;
}

.pd-hero {
  min-height: 74vh;
  padding: 96px 0 58px;
  background:
    radial-gradient(circle at 86% 16%, rgba(134,209,159,.24), transparent 34%),
    radial-gradient(circle at 12% 84%, rgba(34,160,107,.2), transparent 30%),
    linear-gradient(132deg, #0b4f44 0%, #0e7c66 48%, #22a06b 100%);
}

.pd-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: center;
}

.pd-tags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pd-tags span {
  border: 1px solid rgba(255,255,255,.38);
  background: rgba(255,255,255,.1);
  color: #eefdf4;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: .78rem;
}

.pd-visual {
  position: relative;
  min-height: 390px;
}

.pd-main,
.pd-side {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255,255,255,.32);
  box-shadow: 0 18px 40px rgba(5, 32, 27, .3);
}

.pd-main { height: 390px; }

.pd-side {
  position: absolute;
  width: 44%;
  right: -8px;
  bottom: -28px;
  height: 220px;
}

.pd-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.pd-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

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

.pd-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #d6e8df;
}

.pd-gallery .wide { grid-column: span 2; }

.sk-page .about-cta {
  border: 1px solid #cae4d7;
  background:
    radial-gradient(circle at 12% 10%, rgba(34,160,107,.12), transparent 36%),
    linear-gradient(140deg, #f7fffb, #edf8f2);
}

.about-story-grid,
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.about-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.impact-metric {
  border: 1px solid #d6e8df;
  border-radius: 14px;
  background: linear-gradient(155deg, #ffffff, #f0faf4);
  padding: 16px;
}

.impact-metric h3 {
  margin: 0 0 6px;
  font-size: 2rem;
  line-height: 1;
  color: #0e7c66;
}

.impact-metric p {
  margin: 0;
}

.about-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.about-process .project-card span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(14,124,102,.12);
  color: #0b4f44;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-faq {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid #d6e8df;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  border: 0;
  background: #f6fcf8;
  color: #0b4f44;
  font: inherit;
  font-weight: 600;
  padding: 12px 14px;
  cursor: pointer;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-a p {
  margin: 0;
  padding: 12px 14px 14px;
}

.faq-item.open .faq-a {
  max-height: 160px;
}

.about-cta {
  text-align: center;
  border: 1px solid #d6e8df;
  border-radius: 18px;
  padding: 24px;
  background: linear-gradient(150deg, #f7fffb, #eef8f2);
}

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

.milestone-timeline {
  position: relative;
  display: grid;
  gap: 14px;
}

.milestone-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  bottom: 6px;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(#7fc9a2, #0e7c66, #7fc9a2);
}

.milestone-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
}

.milestone-year {
  grid-column: 2;
  justify-self: center;
  z-index: 1;
  background: #0e7c66;
  color: #fff;
  border: 3px solid #d9f2e2;
  border-radius: 999px;
  min-width: 74px;
  text-align: center;
  padding: 6px 10px;
  font-size: .78rem;
  font-weight: 700;
}

.milestone-card {
  border: 1px solid #d6e8df;
  border-radius: 14px;
  background: #fff;
  padding: 14px;
  box-shadow: 0 8px 20px rgba(2, 32, 71, .08);
}

.milestone-card h3 {
  margin: 0 0 6px;
  color: #0b4f44;
  font-size: 1.02rem;
}

.milestone-card p {
  margin: 0;
}

.milestone-item:nth-child(odd) .milestone-card {
  grid-column: 1;
}

.milestone-item:nth-child(even) .milestone-card {
  grid-column: 3;
}

.feature-card,
.service-card,
.project-card,
.contact-card {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  padding: 18px;
  transition: .25s ease;
}

.feature-card:hover,
.service-card:hover,
.project-card:hover,
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(2, 32, 71, .12);
}

.card-clickable {
  cursor: pointer;
}

.feature-card h3,
.service-card h3,
.project-card h3,
.contact-card h3 { margin: 0 0 7px; }

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.filter-btn {
  border: 1px solid #b7dec9;
  background: #fff;
  color: #0b4f44;
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.filter-btn.active {
  background: #0e7c66;
  border-color: #0e7c66;
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 14px;
}

.achievement-modern {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 14px;
}

.achievement-hero-card,
.achievement-timeline-card,
.achievement-impact-card {
  border: 1px solid #d2e7dd;
  border-radius: 16px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(7, 35, 30, 0.08);
}

.achievement-hero-card {
  background:
    radial-gradient(circle at 92% 8%, rgba(34,160,107,.12), transparent 35%),
    linear-gradient(160deg, #ffffff, #f4fbf7);
}

.achievement-chip {
  display: inline-flex;
  border: 1px solid rgba(14,124,102,.35);
  border-radius: 999px;
  background: rgba(14,124,102,.1);
  color: #0b4f44;
  padding: 4px 10px;
  font-size: .76rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.achievement-hero-card h3,
.achievement-timeline-card h3,
.achievement-impact-card h3 {
  margin: 0 0 8px;
  color: #0b4f44;
}

.achievement-metrics {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.achievement-metrics div {
  border: 1px solid #d6e8df;
  border-radius: 12px;
  padding: 10px;
  background: #fff;
  text-align: center;
}

.achievement-metrics strong {
  display: block;
  font-size: 1.28rem;
  color: #0e7c66;
  line-height: 1.1;
}

.achievement-metrics span {
  font-size: .78rem;
  color: #51696a;
}

.achievement-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.achievement-timeline li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 8px;
  align-items: start;
  border: 1px solid #d6e8df;
  border-radius: 10px;
  padding: 8px;
  background: #fbfefc;
}

.achievement-timeline .year {
  display: inline-flex;
  justify-content: center;
  border-radius: 999px;
  background: #0e7c66;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 8px;
}

.achievement-timeline p {
  margin: 0;
}

.impact-list {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.impact-list p {
  margin: 0;
  border: 1px solid #d6e8df;
  border-radius: 10px;
  padding: 9px;
  background: #fbfefc;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.news-card-link {
  display: block;
}

.news-card-link article {
  height: 100%;
}

.news-card-link:focus-visible article {
  outline: 3px solid rgba(14,124,102,.45);
  outline-offset: 2px;
}

.news-tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(14,124,102,.3);
  color: #0b4f44;
  background: rgba(14,124,102,.1);
  border-radius: 999px;
  padding: 3px 9px;
  font-size: .76rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.news-meta {
  display: inline-block;
  margin-top: 8px;
  color: var(--muted);
}

.news-hero {
  min-height: 70vh;
  padding: 96px 0 60px;
  background:
    radial-gradient(circle at 82% 16%, rgba(134,209,159,.24), transparent 32%),
    radial-gradient(circle at 16% 86%, rgba(34,160,107,.2), transparent 30%),
    linear-gradient(130deg, #0b4f44 0%, #0e7c66 48%, #22a06b 100%);
}

.news-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 20px;
  align-items: center;
}

.news-meta-row {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.news-meta-row span {
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.12);
  color: #effff6;
  border-radius: 999px;
  padding: 5px 11px;
  font-size: .78rem;
}

.news-kicker {
  font-weight: 700;
}

.news-hero-visual {
  position: relative;
  min-height: 390px;
}

.news-cover-main,
.news-cover-side {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255,255,255,.34);
  box-shadow: 0 18px 40px rgba(5, 32, 27, .3);
}

.news-cover-main {
  height: 390px;
}

.news-cover-side {
  position: absolute;
  width: 42%;
  right: -8px;
  bottom: -22px;
  height: 220px;
}

.news-article-layout {
  display: grid;
  grid-template-columns: 1.15fr .55fr;
  gap: 14px;
  align-items: start;
}

.news-article-body,
.news-sidebar-card {
  border: 1px solid #d6e8df;
  border-radius: 16px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(7, 35, 30, 0.08);
}

.news-article-body .lead {
  margin-top: 0;
  font-size: 1.04rem;
  color: #365455;
}

.news-article-body h2 {
  color: #0b4f44;
  margin: 20px 0 7px;
}

.news-article-body p {
  margin: 0;
}

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

.news-highlight-list {
  margin: 0;
  padding-left: 18px;
}

.news-highlight-list li + li {
  margin-top: 7px;
}

.news-pullquote {
  margin: 16px 0;
  border-left: 4px solid #0e7c66;
  padding: 10px 14px;
  background: #f4fbf7;
  color: #1e4f44;
  border-radius: 0 12px 12px 0;
  font-style: italic;
}

.news-impact-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.news-sidebar {
  display: grid;
  gap: 12px;
}

.news-sidebar-card h3 {
  margin: 0 0 8px;
  color: #0b4f44;
}

.news-sidebar-card p {
  margin: 0;
}

.news-sidebar-card p + p {
  margin-top: 6px;
}

.news-side-link {
  display: block;
  color: #0e7c66;
  font-weight: 500;
}

.news-side-link + .news-side-link {
  margin-top: 8px;
}

.news-side-link:hover {
  color: #0b4f44;
  text-decoration: underline;
}

.news-gallery-large {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.news-gallery-large img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #d6e8df;
}

.news-gallery-large .wide {
  grid-column: span 2;
}

.sm-hero {
  min-height: 64vh;
  padding: 96px 0 56px;
  background:
    radial-gradient(circle at 86% 14%, rgba(134,209,159,.24), transparent 36%),
    radial-gradient(circle at 12% 86%, rgba(34,160,107,.2), transparent 32%),
    linear-gradient(132deg, #0b4f44 0%, #0e7c66 48%, #22a06b 100%);
}

.sm-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  align-items: center;
}

.sm-hero-card {
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 16px;
  background: rgba(255,255,255,.12);
  padding: 16px;
  backdrop-filter: blur(6px);
}

.sm-hero-card h3 {
  margin: 0 0 6px;
  color: #f3fff8;
}

.sm-hero-card p {
  margin: 0 0 10px;
}

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

.sm-card {
  border: 1px solid #d6e8df;
  border-radius: 14px;
  background: linear-gradient(150deg, #ffffff, #f4fbf7);
  padding: 14px;
  box-shadow: 0 10px 24px rgba(7, 35, 30, 0.08);
}

.sm-card h3 {
  margin: 0 0 8px;
  color: #0b4f44;
}

.sm-card a {
  color: #0e7c66;
  font-weight: 600;
  word-break: break-word;
}

.sm-card a:hover {
  text-decoration: underline;
}

.partner-modern-shell {
  border: 1px solid #d4e9df;
  border-radius: 18px;
  padding: 18px;
  background:
    radial-gradient(circle at 12% 8%, rgba(34,160,107,.1), transparent 36%),
    linear-gradient(145deg, #ffffff, #f3fbf7);
}

.partner-spotlight {
  border: 1px solid #d2e7dd;
  border-radius: 14px;
  padding: 14px;
  background: #fff;
  margin-bottom: 12px;
}

.partner-spotlight h3 {
  margin: 0 0 6px;
  color: #0b4f44;
}

.partner-spotlight p {
  margin: 0;
  color: #426061;
}

.partner-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.partner-stat-row span {
  border: 1px solid #d6e8df;
  border-radius: 999px;
  padding: 5px 10px;
  background: #f8fdfa;
  font-size: .78rem;
  color: #375556;
}

.partner-stat-row strong {
  color: #0e7c66;
}

.partner-marquee {
  overflow: hidden;
  border: 1px solid #d2e7dd;
  border-radius: 14px;
  background: #fff;
  padding: 8px;
}

.partner-marquee-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: partner-scroll 36s linear infinite;
}

.partner-marquee:hover .partner-marquee-track {
  animation-play-state: paused;
}

.partner-logo-card {
  border: 1px solid #d6e8df;
  border-radius: 12px;
  background: #fff;
  min-height: 100px;
  display: grid;
  place-items: center;
  padding: 10px;
  transition: 220ms ease;
}

.partner-logo-card img {
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .84;
  transition: 220ms ease;
}

.partner-logo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(7, 35, 30, 0.12);
}

.partner-logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes partner-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-45%); }
}

@media (prefers-reduced-motion: reduce) {
  .partner-marquee-track {
    animation: none;
  }
}

.testimonial-shell {
  border: 1px solid #cde4d8;
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 10%, rgba(34,160,107,.14), transparent 34%),
    radial-gradient(circle at 10% 92%, rgba(134,209,159,.2), transparent 36%),
    linear-gradient(140deg, #ffffff, #f2fbf6);
  padding: 24px;
  box-shadow: 0 16px 34px rgba(7, 35, 30, 0.08);
}

.testimonial-intro {
  margin-bottom: 14px;
}

.testimonial-intro h3 {
  margin: 0 0 5px;
  color: #0b4f44;
}

.testimonial-intro p {
  margin: 0;
  color: #466566;
  max-width: 760px;
}

.testimonial-item {
  display: none;
  border: 1px solid #d6e8df;
  border-radius: 16px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 10px 22px rgba(7, 35, 30, 0.06);
  animation: testimonial-fade 320ms ease;
}

.testimonial-item.active {
  display: block;
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.quote-mark {
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: #0e7c66;
}

.testimonial-stars {
  letter-spacing: .1em;
  color: #e2a93b;
  font-size: .92rem;
}

.testimonial-item p {
  font-size: 1.08rem;
  margin: 0;
  color: #2b4546;
}

.testimonial-author {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
  color: #f2fff8;
  background: linear-gradient(135deg, #0b4f44, #22a06b);
}

.testimonial-author h4 {
  margin: 0;
  color: #0b4f44;
}

.testimonial-author small {
  color: #5f797a;
}

.testimonial-bottom {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.testimonial-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: #b8dccc;
  cursor: pointer;
  transition: 200ms ease;
}

.t-dot.active {
  width: 26px;
  background: linear-gradient(90deg, #0e7c66, #22a06b);
}

.testimonial-controls {
  display: flex;
  gap: 8px;
}

.t-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid #9fcfb8;
  background: #f7fffb;
  color: #0b4f44;
  cursor: pointer;
  font-size: 1.05rem;
  transition: 180ms ease;
}

.t-btn:hover {
  transform: translateY(-1px);
  background: #0e7c66;
  color: #fff;
}

@keyframes testimonial-fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.donation-shell {
  border: 1px solid #cde4d8;
  border-radius: 22px;
  background:
    radial-gradient(circle at 10% 8%, rgba(134,209,159,.2), transparent 34%),
    radial-gradient(circle at 94% 92%, rgba(34,160,107,.18), transparent 32%),
    linear-gradient(145deg, #ffffff, #f3fbf7);
  padding: 18px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 14px;
}

.donation-story {
  border: 1px solid #d2e7dd;
  border-radius: 16px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(7, 35, 30, 0.08);
}

.donation-story h3 {
  margin: 10px 0 6px;
  color: #0b4f44;
}

.donation-story p {
  margin: 0;
  color: #456465;
}

.donation-impact-row {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.donation-impact-card {
  border: 1px solid #d6e8df;
  border-radius: 12px;
  background: #fbfefc;
  padding: 12px;
}

.donation-impact-card h4 {
  margin: 0 0 6px;
  color: #0e7c66;
}

.donation-impact-card p {
  margin: 0;
  font-size: .92rem;
}

.donation-trust {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.donation-trust span {
  border: 1px solid #b7dec9;
  border-radius: 999px;
  background: #f8fdfa;
  color: #2f5051;
  padding: 6px 10px;
  font-size: .76rem;
  font-weight: 500;
}

.donation-form-stack {
  display: grid;
  gap: 10px;
}

.donation-form {
  border: 1px solid #d2e7dd;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(7, 35, 30, 0.08);
}

.donation-form-head h3 {
  margin: 0 0 5px;
  color: #0b4f44;
}

.donation-form-head p {
  margin: 0 0 8px;
  color: #557173;
  font-size: .92rem;
}

.donation-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 6px;
}

.amount-btn {
  border: 1px solid #b7dec9;
  background: #f7fffb;
  color: #0b4f44;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: 180ms ease;
}

.amount-btn:hover {
  transform: translateY(-1px);
  border-color: #0e7c66;
}

.amount-btn.active {
  background: linear-gradient(120deg, #0e7c66, #22a06b);
  border-color: #0e7c66;
  color: #fff;
}

.donation-note-card {
  border: 1px solid #d2e7dd;
  border-radius: 14px;
  background: linear-gradient(145deg, #ffffff, #f4fbf7);
  padding: 14px;
}

.donation-note-card h4 {
  margin: 0 0 5px;
  color: #0b4f44;
}

.donation-note-card p {
  margin: 0 0 10px;
  color: #486566;
}

.project-card ul { margin: 0; padding-left: 18px; }
.project-card li + li { margin-top: 7px; }

.team-grid article { text-align: center; }
.team-grid p { margin: 0; color: var(--muted); }

.team-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.team-tab-btn {
  border: 1px solid #b7dec9;
  background: #fff;
  color: #0b4f44;
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.team-tab-btn.active {
  background: #0e7c66;
  border-color: #0e7c66;
  color: #fff;
}

.team-panels {
  border: 1px solid #d6e8df;
  border-radius: 16px;
  background: linear-gradient(160deg, #ffffff, #f4fbf7);
  padding: 14px;
}

.team-panel {
  display: none;
}

.team-panel.active {
  display: block;
}

.team-highlight-card {
  border: 1px solid #d2e7dd;
  border-radius: 14px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(7, 35, 30, 0.08);
}

.team-highlight-card h3 {
  margin: 0 0 8px;
  color: #0b4f44;
}

.team-highlight-card p {
  margin: 0;
}

.team-highlight-card p + p {
  margin-top: 6px;
}

.badge-tag {
  background: rgba(14,124,102,.14);
  color: var(--brand-1);
  border: 1px solid rgba(14,124,102,.35);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: .78rem;
  font-weight: 500;
}

.dpd-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

label { display: block; margin: 8px 0 4px; font-weight: 500; }
input, textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 10px;
  font: inherit;
}

.feedback {
  min-height: 1.3rem;
  margin-top: 8px;
  color: var(--muted);
}

.footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 20%, rgba(134, 209, 159, 0.22), transparent 36%),
    radial-gradient(circle at 88% 82%, rgba(34, 160, 107, 0.34), transparent 38%),
    linear-gradient(125deg, #062e28 0%, #0a453b 38%, #0e7c66 100%);
  color: #d9f2e2;
  padding: 56px 0 22px;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 22%);
  pointer-events: none;
  z-index: 0;
}

.footer-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(2px);
}

.footer-orb-a {
  width: 260px;
  height: 260px;
  left: -96px;
  top: -120px;
  background: rgba(134, 209, 159, 0.22);
}

.footer-orb-b {
  width: 290px;
  height: 290px;
  right: -116px;
  bottom: -146px;
  background: rgba(134, 209, 159, 0.16);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 14px;
}

.footer-grid article {
  position: relative;
  border: 1px solid rgba(217, 242, 226, 0.24);
  border-radius: 16px;
  padding: 16px;
  background: linear-gradient(155deg, rgba(255,255,255,.11), rgba(255,255,255,.03));
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 30px rgba(2, 18, 15, 0.28);
}

.footer-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}

.footer-grid h3,
.footer-grid h4 {
  margin: 0 0 9px;
  color: #f2fff8;
  letter-spacing: .01em;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin: 0;
  color: #daf3e5;
}

.footer-grid a {
  width: fit-content;
  transition: 180ms ease;
}

.footer-grid a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(217, 242, 226, 0.5);
  background: linear-gradient(135deg, rgba(255,255,255,.2), rgba(255,255,255,.08));
  box-shadow: 0 8px 18px rgba(3, 24, 20, 0.28);
  transition: 200ms ease;
}

.social-links a:hover {
  transform: translateY(-2px) scale(1.04);
  background: linear-gradient(135deg, rgba(255,255,255,.28), rgba(255,255,255,.16));
}

.social-links svg {
  width: 16px;
  height: 16px;
  fill: #ecfff4;
}

.footer-grid p + p,
.footer-grid a + a {
  margin-top: 6px;
}

.footer-top {
  margin-top: 12px;
  width: fit-content;
  border: 1px solid rgba(217, 242, 226, 0.5);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255,255,255,.05);
  transition: 200ms ease;
}

.footer-top:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  border-top: 1px solid rgba(217, 242, 226, 0.24);
  padding-top: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom p {
  margin: 0;
  color: #cceede;
  letter-spacing: .02em;
}

@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .achievement-modern,
  .contact-grid,
  .donation-shell { grid-template-columns: 1fr; }

  .timeline-grid,
  .cards-grid,
  .stats-grid,
  .news-grid,
  .donation-impact-row,
  .news-impact-grid,
  .news-gallery-large,
  .about-story-grid,
  .about-pillars,
  .about-impact-grid,
  .about-process,
  .ec-stats,
  .ec-journey,
  .ec-gallery,
  .ec-tracks,
  .ec-path,
  .sk-metrics,
  .sk-pillars,
  .sk-phases,
  .sk-outcomes,
  .sk-gallery,
  .sc-metrics,
  .sc-pillars,
  .sc-steps,
  .sc-outcomes,
  .sc-gallery,
  .fs-metrics,
  .fs-focus,
  .fs-steps,
  .fs-outcomes,
  .fs-gallery,
  .pd-grid-4,
  .pd-grid-3,
  .pd-gallery { grid-template-columns: repeat(2, 1fr); }

  .achievement-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-visual-wrap {
    min-height: auto;
    margin-top: 8px;
  }

  .news-hero-grid,
  .news-article-layout,
  .sm-hero-grid {
    grid-template-columns: 1fr;
  }

  .news-hero-visual {
    min-height: auto;
  }

  .news-cover-side {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .milestone-timeline::before {
    left: 36px;
    transform: none;
  }

  .milestone-item {
    grid-template-columns: 72px 1fr;
    gap: 10px;
  }

  .milestone-year {
    grid-column: 1;
  }

  .milestone-item .milestone-card,
  .milestone-item:nth-child(odd) .milestone-card,
  .milestone-item:nth-child(even) .milestone-card {
    grid-column: 2;
  }

  .hero-float {
    position: static;
    max-width: none;
    margin-top: 10px;
  }

  .ec-path::before {
    display: none;
  }

  .ec-photo-side,
  .ec-floating-note {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .sk-side,
  .sk-note {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .sc-side,
  .sc-note {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .fs-side,
  .fs-note {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .pd-side {
    position: static;
    width: 100%;
    margin-top: 10px;
  }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: absolute;
    top: 72px;
    right: 4vw;
    background: #0b4f44;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 12px;
    padding: 12px;
    min-width: 180px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu.show { display: flex; }
  .timeline-grid,
  .cards-grid,
  .stats-grid,
  .news-grid,
  .sm-grid,
  .donation-impact-row,
  .news-impact-grid,
  .news-gallery-large,
  .about-story-grid,
  .about-pillars,
  .about-impact-grid,
  .about-process,
  .ec-stats,
  .ec-journey,
  .ec-gallery,
  .ec-tracks,
  .ec-path,
  .sk-metrics,
  .sk-pillars,
  .sk-phases,
  .sk-outcomes,
  .sk-gallery,
  .sc-metrics,
  .sc-pillars,
  .sc-steps,
  .sc-outcomes,
  .sc-gallery,
  .fs-metrics,
  .fs-focus,
  .fs-steps,
  .fs-outcomes,
  .fs-gallery,
  .pd-grid-4,
  .pd-grid-3,
  .pd-gallery { grid-template-columns: 1fr; }

  .achievement-metrics {
    grid-template-columns: 1fr;
  }

  .achievement-timeline li {
    grid-template-columns: 1fr;
  }

  .footer-grid { grid-template-columns: 1fr; }

  .about-hero-grid { grid-template-columns: 1fr; }
  .ec-hero-grid { grid-template-columns: 1fr; }

  .about-slider-window,
  .about-slide img {
    min-height: 320px;
  }

  .ec-photo-main {
    height: 300px;
  }

  .ec-gallery-mosaic .wide {
    grid-column: span 1;
  }

  .sk-hero-grid { grid-template-columns: 1fr; }
  .sk-main { height: 300px; }
  .sk-gallery .wide { grid-column: span 1; }
  .sc-hero-grid { grid-template-columns: 1fr; }
  .sc-main { height: 300px; }
  .sc-gallery .wide { grid-column: span 1; }
  .fs-hero-grid { grid-template-columns: 1fr; }
  .fs-main { height: 300px; }
  .fs-gallery .wide { grid-column: span 1; }
  .pd-hero-grid { grid-template-columns: 1fr; }
  .pd-main { height: 300px; }
  .pd-gallery .wide { grid-column: span 1; }
  .news-cover-main { height: 300px; }
  .news-gallery-large .wide { grid-column: span 1; }
  .testimonial-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
