:root {
  --green: #3c664f;
  --ink: #222222;
  --grey: #7a7a7a;
  --paper: #f7f7f5;
  --white: #ffffff;
  --line: rgba(122, 122, 122, 0.45);
  --radius: 16px;
  --pill: 100px;
  --pad: 64px;
  --content: 1312px;
  --font-display: "Nunito Sans", "PingFang SC", sans-serif;
  --font-text: "Manrope", "PingFang SC", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-text);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }

.wrap {
  width: min(var(--content), calc(100% - var(--pad) * 2));
  margin-inline: auto;
}

h1, h2, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
}
.label img { width: 8px; height: 8px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: 0;
  border-radius: var(--pill);
  padding: 8px 8px 8px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  background: var(--paper);
  color: var(--green);
}
.btn .orb {
  width: 36px;
  height: 36px;
  border-radius: var(--pill);
  background: var(--green);
  display: grid;
  place-items: center;
  flex: none;
}
.btn .orb img { width: 20px; height: 20px; }
.btn-solid {
  background: var(--green);
  color: var(--white);
}
.btn-solid .orb { background: var(--white); }
.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 600;
  font-size: 16px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.link img { width: 16px; height: 16px; }

/* Hero */
.hero {
  position: relative;
  min-height: 900px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px var(--pad) 64px;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.nav, .hero-body { position: relative; z-index: 1; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.logo { width: 40px; height: 40px; flex: none; }
.menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu a {
  color: var(--white);
  font-weight: 300;
  font-size: 16px;
  white-space: nowrap;
  padding: 8px 24px;
  border-radius: var(--pill);
}
.menu a.is-active,
.menu a:hover {
  background: var(--white);
  color: var(--green);
  font-weight: 600;
}
.nav-actions { display: flex; align-items: center; gap: 16px; }
.ghost {
  border: 1px solid var(--white);
  color: var(--white);
  background: transparent;
  border-radius: var(--pill);
  padding: 8px 24px;
  font-weight: 300;
  cursor: pointer;
}
.icon-btn {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: var(--pill);
  background: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}
.icon-btn img { width: 24px; height: 24px; }
.nav-toggle { display: none; }

.hero-body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.hero h1 {
  font-size: 86px;
  letter-spacing: -1.72px;
  max-width: 1140px;
}
.hero-row {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  margin-top: 24px;
}
.hero-row p { width: 520px; font-weight: 300; }
.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 95px;
  flex: none;
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.scroll-cue span {
  width: 32px;
  height: 48px;
  border: 0.4px solid var(--white);
  border-radius: var(--pill);
  display: grid;
  place-items: center;
}
.scroll-cue img { width: 16px; height: 16px; transform: rotate(90deg); }

/* Shared sections */
.section { padding: 120px 0 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 120px;
}
.section-head h2 { font-size: 56px; color: var(--green); letter-spacing: -1.12px; }
.section-head .lede { width: 400px; color: var(--grey); flex: none; }
.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.split h2 { width: 600px; text-align: right; }

/* About */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 521px;
}
.chip {
  border: 1px solid var(--green);
  color: var(--green);
  border-radius: var(--pill);
  padding: 8px 16px;
  font-size: 16px;
}
.about-copy { width: 600px; color: var(--grey); }
.about-photo {
  position: relative;
  margin-top: 40px;
  aspect-ratio: 1312 / 500;
  height: auto;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 40px;
}
.about-photo img.cover,
.cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.about-card {
  position: relative;
  width: 405px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.about-card .year { color: var(--green); font-weight: 600; }
.about-card h3 {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.about-card p { color: var(--grey); font-size: 14px; width: 341px; }

/* Initiatives */
.initiatives { padding-top: 120px; }
.initiative-body {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 636px 636px;
  justify-content: space-between;
  gap: 40px;
}
.initiative-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  min-height: 0;
  position: relative;
}
.initiative-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  position: absolute;
  inset: 0;
}
.points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.point {
  background: var(--paper);
  border-radius: var(--radius);
  min-height: 280px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.point-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--pill);
  background: var(--green);
  display: grid;
  place-items: center;
}
.point-icon img { width: 32px; height: 32px; }
.point h3 { margin: 0 0 16px; font-size: 24px; line-height: 1.4; font-weight: 600; }
.point p { color: var(--grey); }

/* Stats */
.stats-wrap { padding-top: 120px; }
.stats {
  position: relative;
  overflow: hidden;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  min-height: 208px;
  padding: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.stats-wave {
  position: absolute;
  left: 0;
  top: -324px;
  width: 1312px;
  height: 786px;
  pointer-events: none;
}
.stats-note, .stat { position: relative; }
.stats-note { width: 320px; display: flex; flex-direction: column; justify-content: space-between; min-height: 128px; gap: 40px; }
.globe {
  width: 40px;
  height: 40px;
  border-radius: var(--pill);
  background: var(--paper);
  display: grid;
  place-items: center;
}
.globe img { width: 24px; height: 24px; }
.stat-row { display: flex; gap: 64px; align-items: center; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -1.12px;
  line-height: 1.2;
}
.stat span { color: var(--paper); font-weight: 300; }

/* Campaigns */
.campaigns { padding-top: 120px; }
.campaign-row {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}
.campaign {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.campaign.is-featured {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 16px;
}
.shot {
  position: relative;
  aspect-ratio: 16 / 10;
  height: auto;
  border-radius: var(--radius);
  overflow: hidden;
}
.shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 16px;
  background: rgba(28, 36, 32, 0.45);
  color: var(--white);
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.campaign-top {
  padding-bottom: 16px;
  border-bottom: 0.2px solid var(--grey);
}
.campaign-top header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}
.campaign-top h3 { margin: 0; color: var(--green); font-size: 18px; font-weight: 600; line-height: 1.4; }
.campaign-top .cat, .campaign-top p { color: var(--grey); font-size: 14px; }
.campaign-top p { margin-top: 8px; }
.campaign-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 16px;
  gap: 12px;
}
.end { width: 135px; }
.end small { display: block; color: var(--grey); font-size: 14px; margin-bottom: 8px; }
.end strong { font-size: 18px; font-weight: 600; line-height: 1.4; }
.campaign-tools {
  margin-top: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.pager { display: flex; align-items: center; gap: 16px; font-weight: 600; }
.pager .muted { color: var(--grey); font-weight: 300; }
.pager .current { color: var(--green); }
.round {
  width: 40px;
  height: 40px;
  border-radius: var(--pill);
  border: 0.4px solid var(--grey);
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}
.round img { width: 24px; height: 24px; }
#prev-campaign img { transform: scaleX(-1); }
.round.is-on { background: var(--green); border-color: var(--green); }

/* Impact */
.impact { padding-top: 120px; }
.impact-head { text-align: center; }
.impact-head h2 { font-size: 56px; color: var(--green); letter-spacing: -1.12px; margin-top: 16px; }
.filters {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.filters button {
  border: 0;
  background: transparent;
  color: var(--grey);
  font-weight: 300;
  border-radius: var(--pill);
  padding: 8px 24px;
  cursor: pointer;
}
.filters button.is-on {
  background: var(--green);
  color: var(--white);
  font-weight: 600;
}
.impact-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 40px;
}
.impact-card { display: flex; flex-direction: column; gap: 24px; }
.impact-card[hidden] { display: none; }
.impact-shot {
  position: relative;
  aspect-ratio: 16 / 10;
  height: auto;
  border-radius: var(--radius);
  overflow: hidden;
}
.impact-shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}
.pill-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(34, 34, 34, 0.55);
  color: var(--white);
  font-weight: 600;
  border-radius: 100px 8px 100px 100px;
  padding: 8px 16px;
  backdrop-filter: blur(6px);
}
.meter-text {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  font-size: 16px;
}
.meter-text .pct { font-weight: 600; text-align: center; width: 50px; }
.meter-text .goal { text-align: right; }
.bar { height: 3px; background: #e4e4e2; border-radius: 2px; margin-top: 16px; }
.bar span { display: block; height: 100%; background: var(--green); border-radius: 2px; }
.impact-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.impact-foot h3 { margin: 0 0 4px; font-size: 24px; line-height: 1.4; font-weight: 600; }
.impact-foot p { color: var(--grey); max-width: 468px; }

/* CTA */
.cta-wrap { padding: 120px 0 0; }
.cta {
  position: relative;
  overflow: hidden;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  min-height: 454px;
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  gap: 48px;
}
.cta-wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.cta h2, .cta p, .cta .btn { position: relative; }
.cta h2 { font-size: 56px; letter-spacing: -1.12px; }
.cta p { color: var(--paper); width: min(600px, 100%); }

/* Locations */
.locations { padding-top: 120px; text-align: center; }
.locations h2 { font-size: 56px; color: var(--green); letter-spacing: -1.12px; margin-top: 16px; }
.map-stage {
  position: relative;
  width: min(1000px, 100%);
  margin: 48px auto 12px;
}
.world-map {
  width: 100%;
  height: 540px;
}
.map-reset {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  border: 0;
  border-radius: var(--pill);
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  cursor: pointer;
}
.map-hint {
  width: min(1000px, 100%);
  margin: 0 auto 40px;
  color: var(--grey);
  font-size: 14px;
}
.places {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
}
.places article {
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
}
.places article.is-picked {
  background: #f3f7f4;
  box-shadow: 0 18px 36px rgba(60, 102, 79, 0.16);
}
.places h3 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  display: flex;
  gap: 12px;
}
.places li {
  list-style: none;
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 8px;
}
.places ul { margin: 0; padding: 0; }
.check {
  width: 18px;
  height: 18px;
  border-radius: var(--pill);
  background: var(--green);
  display: grid;
  place-items: center;
  flex: none;
}
.check img { width: 10px; height: 10px; }

/* Footer */
.footer {
  margin-top: 120px;
  background: var(--ink);
  color: var(--white);
  padding: 64px var(--pad) 48px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 0.4px solid var(--grey);
}
.brand { width: 400px; display: flex; flex-direction: column; justify-content: space-between; gap: 48px; }
.brand-mark { width: 32px; height: 32px; }
.mail {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 0.4px solid var(--paper);
  border-radius: 30px;
  padding: 8px 8px 8px 24px;
}
.mail img { width: 24px; height: 24px; }
.mail input {
  flex: 1;
  border: 0;
  background: transparent;
  color: var(--white);
  outline: none;
  min-width: 0;
}
.mail input::placeholder { color: var(--grey); }
.send {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: var(--pill);
  background: var(--green);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}
.send img { width: 16px; height: 16px; }
.footer-links { display: flex; gap: 120px; }
.footer-links h3 { margin: 0 0 24px; font-size: 18px; font-weight: 600; line-height: 1.4; }
.footer-links a, .contact-line {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--paper);
  margin-top: 16px;
}
.footer-links a:first-of-type, .contact-line:first-of-type { margin-top: 0; }
.contact-col { display: flex; flex-direction: column; justify-content: space-between; min-height: 100%; }
.socials { display: flex; gap: 16px; margin-top: 32px; }
.socials a {
  width: 40px;
  height: 40px;
  border-radius: var(--pill);
  background: var(--paper);
  color: var(--ink);
  font-weight: 600;
  display: grid;
  place-items: center;
  margin: 0;
}
.copy {
  margin: 48px 0 0;
  text-align: center;
  font-weight: 600;
}
.toast {
  margin-top: 12px;
  color: var(--paper);
  min-height: 24px;
}

@media (max-width: 1100px) {
  :root { --pad: 32px; }
  .hero { min-height: 760px; padding: 24px var(--pad) 40px; }
  .hero h1 { font-size: 56px; }
  .hero-row { flex-direction: column; align-items: flex-start; }
  .hero-row p, .about-copy, .chips, .section-head .lede { width: auto; }
  .scroll-cue { display: none; }
  .split, .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .split h2, .section-head h2, .impact-head h2, .locations h2, .cta h2 { font-size: 40px; width: auto; text-align: left; }
  .initiative-body, .impact-grid, .campaign-row, .places, .footer-top, .footer-links { grid-template-columns: 1fr; display: grid; }
  .initiative-photo { min-height: 360px; }
  .stats, .stat-row { flex-direction: column; align-items: flex-start; }
  .stat-row { gap: 24px; }
  .stats-wave { width: 180%; }
  .footer-links { gap: 40px; }
  .brand { width: auto; }
}

@media (max-width: 760px) {
  .menu, .ghost { display: none; }
  .nav-toggle { display: grid; }
  .nav.is-open { flex-wrap: wrap; border-radius: 28px; }
  .nav.is-open .menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 8px;
  }
  .hero h1 { font-size: 40px; }
  .points { grid-template-columns: 1fr; }
  .campaign-tools { flex-direction: column; align-items: flex-start; gap: 24px; }
  .meter-text { gap: 8px; font-size: 13px; }
  .impact-foot { flex-direction: column; align-items: flex-start; }
  .cta { padding: 64px 24px; min-height: 0; }
  .world-map { height: 380px; }
}

.btn, .ghost, .link, .chip, .round, .icon-btn, .send, .socials a, .map-reset,
.filters button, .point, .campaign, .impact-card, .about-card, .stat, .places article {
  transition: transform .25s ease, background-color .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.btn:hover, .map-reset:hover { transform: scale(1.08); }
.btn-solid:hover { background: #2b4d3b; }
.ghost:hover { background: var(--white); color: var(--green); }
.link:hover { animation: bob .45s ease; color: #244936; }
.chip:hover { background: var(--green); color: var(--white); transform: scale(1.06); }
.round:hover, .icon-btn:hover, .send:hover { animation: bob .4s ease; }
.socials a:hover { transform: scale(1.14); background: var(--green); color: var(--white); }
.filters button:hover { transform: scale(1.08); color: var(--green); }
.filters button.is-on:hover { color: var(--white); background: #2b4d3b; }
.point:hover, .about-card:hover, .places article:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 36px rgba(60, 102, 79, 0.16);
}
.campaign:hover { transform: translateY(-8px); }
.impact-card:hover { transform: scale(1.035); }
.stat:hover strong { color: #d7f5c8; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-7px); }
  70% { transform: translateY(3px); }
}
@media (prefers-reduced-motion: reduce) {
  .link:hover, .round:hover, .icon-btn:hover, .send:hover { animation: none; }
}
