:root {
  --deep: #003f3b;
  --deep-2: #00342f;
  --green: #008b64;
  --green-2: #07976f;
  --mint: #e9f6ef;
  --ink: #053c39;
  --body: #1e2d2b;
  --muted: #5f6f6b;
  --line: #dfe6e2;
  --paper: #f7f7f4;
  --white: #ffffff;
  --shadow: 0 12px 28px rgba(0, 45, 40, .1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--body);
  background: var(--paper);
  font-family: "Plus Jakarta Sans", Inter, Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.social-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  padding: 0 clamp(22px, 5vw, 66px);
  color: #fff;
  background: var(--deep);
  font-weight: 800;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.social-links a,
.social-links span {
  color: #fff;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 72px;
  padding: 0 clamp(22px, 5vw, 66px);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--green);
}

.brand-mark::before {
  position: absolute;
  inset: 6px 8px 9px 8px;
  border: 6px solid #fff;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-18deg);
  content: "";
}

.brand-mark::after {
  position: absolute;
  left: 25px;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.brand-copy strong {
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1;
}

.brand em {
  margin-left: 2px;
  padding: 8px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
  font-size: 15px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 25px 22px;
  color: #121d1b;
  text-decoration: none;
}

.main-nav a + a {
  border-left: 1px solid #cfcfcf;
}

.main-nav a::after {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 17px;
  height: 2px;
  background: transparent;
  content: "";
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  background: var(--green);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--deep);
  font-size: 20px;
}

.hero-home {
  position: relative;
  min-height: 315px;
  display: flex;
  align-items: center;
  padding: 36px clamp(22px, 5vw, 66px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 35, 32, .98) 0%, rgba(0, 47, 43, .9) 34%, rgba(0, 47, 43, .24) 57%, rgba(0, 47, 43, .02) 100%),
    url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1800&q=88");
  background-position: center, center right;
  background-size: cover, cover;
  background-repeat: no-repeat;
}

.hero-inner {
  max-width: 660px;
  position: relative;
  z-index: 1;
}

.hero-home h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(42px, 5.1vw, 60px);
  line-height: 1.02;
  letter-spacing: -1px;
}

.hero-home p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
}

.button,
.mini-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #fff;
  background: var(--green);
  font-weight: 850;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button {
  min-height: 50px;
  padding: 0 22px;
}

.button:hover,
.mini-button:hover,
.feature-card:hover {
  transform: translateY(-2px);
}

.button:hover,
.mini-button:hover {
  background: #007553;
}

.button.outline {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, .04);
}

.button.outline:hover {
  background: rgba(255, 255, 255, .12);
}

.stat-band {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.1fr 1.1fr;
  gap: 0;
  padding: 18px clamp(22px, 5vw, 66px);
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .05);
}

.stat-band article {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 82px;
  padding: 0 28px 0 0;
}

.stat-band article + article {
  border-left: 1px solid #d9d9d9;
  padding-left: 38px;
}

.stat-icon {
  position: relative;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
}

.stat-icon::before {
  color: var(--deep);
  font-size: 28px;
  font-weight: 900;
}

.stat-icon.shield::before {
  content: "";
  width: 22px;
  height: 28px;
  border: 4px solid var(--deep);
  border-radius: 12px 12px 16px 16px;
  clip-path: polygon(50% 0, 100% 18%, 88% 78%, 50% 100%, 12% 78%, 0 18%);
}

.stat-icon.building::before {
  content: "";
  width: 28px;
  height: 25px;
  border: 4px solid var(--deep);
  border-top-width: 8px;
  box-shadow: inset 7px 0 0 #fff, inset -7px 0 0 #fff;
}

.stat-icon.doc::before {
  content: "";
  width: 24px;
  height: 30px;
  border: 4px solid var(--deep);
  border-radius: 2px;
  box-shadow: inset 0 8px 0 #fff, inset 0 12px 0 var(--deep);
}

.stat-icon.lock::before {
  content: "";
  width: 24px;
  height: 20px;
  border: 4px solid var(--deep);
  border-radius: 3px;
  box-shadow: 0 -10px 0 -3px var(--mint), 0 -10px 0 0 var(--deep);
}

.stat-band strong {
  display: block;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
}

.stat-band p {
  margin: 5px 0 0;
  color: #142c29;
  font-size: 14px;
  line-height: 1.35;
}

.featured-section {
  padding: 26px clamp(22px, 5vw, 66px) 46px;
  background: #f7f7f4;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 20px;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 32px);
  line-height: 1.1;
}

.section-heading div > span {
  display: block;
  width: 52px;
  height: 3px;
  margin-top: 10px;
  background: var(--green);
}

.section-heading > a {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: #0d1917;
  font-weight: 750;
  text-decoration: none;
}

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

.feature-card {
  min-height: 178px;
  padding: 20px;
  border: 1px solid #e6e6e2;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

.feature-card:hover {
  box-shadow: 0 18px 36px rgba(0, 45, 40, .14);
}

.status {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--deep);
  background: var(--mint);
  font-size: 13px;
  font-weight: 750;
}

.status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.feature-card h3 {
  margin: 16px 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.feature-card p {
  margin: 0 0 14px;
  color: #243735;
  line-height: 1.55;
}

.mini-button {
  min-height: 36px;
  padding: 0 14px;
}

.page-hero {
  padding: 82px clamp(22px, 5vw, 66px) 58px;
  background:
    linear-gradient(90deg, rgba(0, 35, 32, .95) 0%, rgba(0, 63, 59, .82) 45%, rgba(0, 63, 59, .28) 100%),
    url("https://images.unsplash.com/photo-1531206715517-5c0ba140b2b8?auto=format&fit=crop&w=1600&q=84") center / cover;
  color: #fff;
}

.page-hero.compact {
  padding-bottom: 38px;
}

.page-hero .eyebrow,
.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: #bff3df;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 980px;
  margin: 0 0 16px;
  font-size: clamp(38px, 5.4vw, 70px);
  line-height: 1.02;
  letter-spacing: -1px;
}

.page-hero p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.65;
}

.section {
  padding: clamp(56px, 7vw, 92px) clamp(22px, 5vw, 66px);
  background: var(--paper);
}

.section.alt {
  background: #fff;
}

.section.dark {
  color: #fff;
  background: var(--deep-2);
}

.section-head {
  max-width: 900px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
}

.section-head p,
.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
}

.split img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.story-panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.story-panel h2 {
  margin: 8px 0 16px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

.story-panel p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.impact-grid,
.opportunity-grid,
.cause-grid,
.law-grid,
.partner-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.impact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.impact-card,
.opportunity-card,
.cause-card,
.law-card,
.partner-card,
.value-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 45, 40, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.impact-card:hover,
.opportunity-card:hover,
.cause-card:hover,
.law-card:hover,
.partner-card:hover,
.value-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.impact-card strong {
  display: block;
  color: var(--green);
  font-size: 40px;
  line-height: 1;
}

.impact-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.opportunity-card h3,
.cause-card h3,
.law-card h3,
.partner-card h3,
.value-card h3 {
  margin: 14px 0 9px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
}

.opportunity-card p,
.cause-card p,
.law-card p,
.partner-card p,
.value-card p,
.timeline p {
  color: var(--muted);
  line-height: 1.65;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.status.done {
  color: #2e3a35;
  background: #eceee7;
}

.status.reserve {
  color: #27356f;
  background: #ecefff;
}

.cause-card:nth-child(1),
.cause-card:nth-child(4) {
  background: #f2fbf5;
}

.cause-card:nth-child(2),
.cause-card:nth-child(5) {
  background: #eef8f8;
}

.cause-card:nth-child(3) {
  background: #f1efff;
}

.timeline {
  display: grid;
  gap: 18px;
  max-width: 920px;
}

.timeline article {
  padding: 24px;
  border-left: 5px solid var(--green);
  border-radius: 0 12px 12px 0;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 45, 40, .06);
}

.law-card a,
.partner-card a {
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.logo-item {
  display: grid;
  min-height: 136px;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 45, 40, .05);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--deep), var(--green));
}

.cta-band h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
}

.cta-band p {
  max-width: 760px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.65;
}

.site-footer {
  padding: 44px clamp(22px, 5vw, 66px);
  color: rgba(255, 255, 255, .72);
  background: var(--deep-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(160px, 1fr));
  gap: 28px;
}

.site-footer strong,
.site-footer a,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: #fff;
}

.site-footer a {
  margin-top: 8px;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

[data-animate] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .social-bar {
    display: none;
  }

  .site-header {
    align-items: center;
    min-height: 70px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-top: 1px solid var(--line);
    background: #fff;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a,
  .main-nav a + a {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 15px 24px;
  }

  .main-nav a::after {
    display: none;
  }

  .hero-home {
    min-height: 470px;
    background:
      linear-gradient(90deg, rgba(0, 35, 32, .96), rgba(0, 47, 43, .66)),
      url("https://images.unsplash.com/photo-1469571486292-b53601020a5f?auto=format&fit=crop&w=1200&q=84") center / cover;
  }

  .stat-band,
  .feature-cards,
  .impact-grid,
  .opportunity-grid,
  .cause-grid,
  .law-grid,
  .partner-grid,
  .value-grid,
  .logo-cloud,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-band article + article {
    border-left: 0;
    padding-left: 0;
  }

  .split,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .split img {
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .brand-copy strong {
    font-size: 18px;
  }

  .brand em {
    display: none;
  }

  .hero-home {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .hero-actions,
  .section-heading,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .stat-band,
  .feature-cards,
  .impact-grid,
  .opportunity-grid,
  .cause-grid,
  .law-grid,
  .partner-grid,
  .value-grid,
  .logo-cloud,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat-band article {
    padding: 0;
  }
}
