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

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font);
  color: var(--text-primary);
  background: #fff;
  line-height: 1.5;
  font-size: 16px;
  overflow-x: clip;
}

img {
  max-width: 100%;
  display: block;
}

figure {
  margin: 0;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 80;
  background: var(--ink-btn);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
}

.skip-link:focus {
  top: 16px;
}

:focus-visible {
  outline: 2px solid var(--green-dark);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.section-inner {
  width: min(100%, var(--content-max));
  margin-inline: auto;
  padding-inline: var(--pad-inline);
  position: relative;
  z-index: 2;
}

.header {
  width: 100%;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.06);
}

.header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 100px;
  padding-block: 14px;
}

.header__end {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  flex-shrink: 0;
}

.header__end .btn {
  height: 44px;
  min-height: 44px;
  padding: 0 18px;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo {
  justify-self: start;
  display: flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 0;
}

.logo img {
  display: block;
  height: 72px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 6px;
  background: var(--bg-nav);
  border-radius: var(--radius-pill);
  padding: 8px 10px;
}

.nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav a:hover,
.nav a:focus-visible {
  background: #fff;
  color: var(--text-primary);
}

.nav svg,
.nav .icon {
  display: block;
  width: 14px;
  height: 14px;
  stroke-width: 1.6;
  flex-shrink: 0;
}

.points-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  height: 44px;
  background: var(--green-soft);
  border-radius: var(--radius-pill);
  padding: 0 12px;
  font-size: 12px;
  color: var(--green-dark);
  white-space: nowrap;
  flex-shrink: 0;
  box-sizing: border-box;
}

.points-chip svg {
  display: block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.btn,
.photo-pill,
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform 280ms var(--ease), background 280ms var(--ease);
}

.btn {
  padding: 13px 24px;
  font-weight: 600;
  font-size: 14px;
}

.btn--ink {
  background: var(--ink-btn);
  color: #fff;
}

.btn--ink:hover {
  background: #252525;
}

.btn--sage {
  background: var(--green-soft);
  color: var(--green-dark);
}

.btn--ghost:hover {
  background: #f7f7f4;
}

.btn--ghost {
  background: #fff;
  color: var(--text-primary);
  padding: 10px 16px;
}

.btn--blue {
  background: #1f6494;
  color: #fff;
}

.btn--blue:hover {
  background: #185278;
}

.btn--danger {
  background: #c44536;
  color: #fff;
}

.btn--danger:hover {
  background: #a8362a;
}

.btn-circle {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  cursor: pointer;
  flex-shrink: 0;
  color: var(--green-dark);
  transition: transform 280ms var(--ease);
}

.btn-circle:hover svg {
  transform: translate(2px, -2px);
}

.btn-circle svg {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 280ms var(--ease);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--bg-nav);
  cursor: pointer;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

.mark {
  background: var(--green-soft);
  border-radius: 14px;
  padding: 0 10px 2px;
  display: inline;
  box-decoration-break: clone;
}

.chip {
  background: var(--green-soft);
  color: var(--green-dark);
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: default;
  width: max-content;
  max-width: 100%;
  justify-self: start;
}

.chip--on-sage {
  background: #fff;
  color: var(--green-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 15px;
}

.text-link svg {
  width: 16px;
  height: 16px;
}

.hero,
.purpose,
.impact,
.participate,
.gallery {
  width: 100%;
  position: relative;
  overflow-x: clip;
  padding-block: var(--section-y);
}

.hero {
  background: #fff;
  padding-top: 28px;
  padding-bottom: 80px;
}

@media (min-width: 1440px) {
  .hero {
    min-height: 850px;
  }
}

.purpose {
  background: #fafbf8;
  padding-top: clamp(64px, 7vw, 120px);
}

.impact {
  background: #eef3e8;
}

.participate {
  background: #fff;
}

.gallery {
  background: var(--green-soft);
}

.botanical {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  width: clamp(360px, 38vw, 820px);
  height: auto;
  object-fit: contain;
}

.botanical--hero-tl {
  top: -140px;
  left: -180px;
  transform: rotate(-18deg);
  opacity: 0.1;
}

.botanical--hero-br {
  right: -200px;
  bottom: 20px;
  width: clamp(280px, 26vw, 560px);
  transform: rotate(28deg) scaleX(-1);
  opacity: 0.07;
}

.botanical--purpose {
  right: -240px;
  top: 42%;
  transform: translateY(-50%) rotate(18deg);
  opacity: 0.1;
  width: clamp(380px, 36vw, 780px);
}

.botanical--impact {
  left: -180px;
  bottom: -220px;
  transform: rotate(-16deg);
  opacity: 0.12;
  width: clamp(360px, 34vw, 760px);
}

.botanical--gallery {
  right: -160px;
  top: -90px;
  transform: rotate(14deg) scaleX(-1);
  opacity: 0.14;
}

.hero__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}

.hero__lede {
  max-width: 46ch;
  margin: 0 auto 4px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
  text-align: center;
}

.hero__headline {
  position: relative;
  text-align: center;
  padding: 12px 72px 8px;
  width: 100%;
}

.hero__headline h1 {
  font-size: clamp(42px, 5.2vw, 94px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.045em;
  max-width: 1050px;
  margin-inline: auto;
}

.float-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: var(--green-dark);
  box-shadow: var(--shadow);
  pointer-events: none;
  z-index: 1;
}

.float-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  stroke-width: 1.6;
  flex-shrink: 0;
}

.float-icon--sage {
  background: var(--green-soft);
}

.float-icon--white {
  background: #fff;
}

.float-icon--dark {
  background: var(--green-dark);
  color: var(--green-soft);
}

.float-icon--leaf {
  top: -6px;
  left: 6%;
}

.float-icon--recycle {
  top: 18%;
  right: 3%;
}

.float-icon--pin {
  bottom: 8%;
  left: 10%;
}

.float-icon--arrow {
  top: 28px;
  right: 18%;
}

.float-icon--coin {
  bottom: -6px;
  right: 12%;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 36px;
}

.hero__bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
  width: 100%;
}

.hero-shot {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: var(--shot-ratio);
  background: #e4ead8;
  cursor: pointer;
  color: inherit;
  font: inherit;
  text-align: left;
}

.hero-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  min-height: 280px;
}

.bento-card--stat,
.bento-card--points {
  background: var(--green-soft);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 270px;
}

.bento-card--photo,
.bento-card--brand {
  min-height: 460px;
  height: 460px;
}

.bento-card--photo img,
.bento-card--brand img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bento-card--points {
  min-height: 300px;
  justify-content: center;
  text-align: center;
}

.bento-card--photo img,
.bento-card--brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: var(--green-dark);
  margin-bottom: auto;
}

.icon-badge svg {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.stat-value {
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-label,
.eyebrow-min {
  color: var(--green-dark);
  font-size: 14px;
  margin-top: 8px;
}

.photo-pill {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  background: #fff;
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 600;
  padding: 10px 14px;
  white-space: nowrap;
  z-index: 2;
}

.photo-pill--left {
  left: 16px;
  transform: none;
}

.brand-pills {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.brand-pills span {
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
}

.rings {
  position: absolute;
  inset: 18% 12%;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 42%, rgba(6, 75, 57, 0.08) 43%, transparent 44%),
    radial-gradient(circle, transparent 58%, rgba(6, 75, 57, 0.08) 59%, transparent 60%),
    radial-gradient(circle, transparent 74%, rgba(6, 75, 57, 0.08) 75%, transparent 76%);
  pointer-events: none;
}

.bento-card--points h2 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 10ch;
  margin: 8px auto 0;
  position: relative;
}

.marquee {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background: var(--green-soft);
  overflow: hidden;
  height: 36px;
  line-height: 36px;
}

.marquee__track {
  display: flex;
  width: max-content;
  max-width: none;
  height: 100%;
  align-items: center;
  animation: marquee var(--marquee-duration, 32s) linear infinite;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.js .marquee__track {
  animation: none;
}

.js .marquee__track.is-ready {
  animation: marquee var(--marquee-duration, 32s) linear infinite;
}

.marquee__group {
  flex: none;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(var(--marquee-shift, -50%), 0, 0);
  }
}

.purpose__intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.35fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  margin: 0 0 clamp(36px, 4.5vw, 56px);
}

.purpose__aside {
  display: grid;
  gap: 18px;
  align-content: start;
}

.purpose__lede {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 34ch;
}

.purpose__aside-photo {
  margin: 8px 0 0;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: var(--shot-ratio);
  background: #e4ead8;
}

.purpose__aside-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.purpose__main h2 {
  font-size: clamp(32px, 4.2vw, 64px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 16ch;
}

.purpose__support {
  margin-top: 22px;
  max-width: 46ch;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.55;
}

.purpose__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.purpose__mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    "main side metric"
    "low quote quote";
  gap: 16px;
  margin-bottom: 18px;
}

.purpose__shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: var(--shot-ratio);
  border-radius: 28px;
  background: #e4ead8;
}

.purpose__shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.purpose__shot--main {
  grid-area: main;
  border-radius: 28px;
  background: #e4ead8;
}

.purpose__shot--main img {
  object-position: center;
  transform-origin: center;
  animation: none;
  border-radius: 0;
}

.purpose__shot--side {
  grid-area: side;
}

.purpose__shot--low {
  grid-area: low;
}

.purpose__float {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  background: #fff;
  color: var(--text-primary);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  animation: none;
}

.purpose__metric,
.purpose__quote,
.purpose__pillar {
  border-radius: 28px;
  display: flex;
  flex-direction: column;
}

.purpose__metric {
  grid-area: metric;
  background: var(--green-soft);
  padding: 26px 24px;
  justify-content: flex-end;
}

.purpose__metric-kicker {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: auto;
}

.purpose__metric-value {
  font-size: clamp(36px, 3.4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--green-dark);
}

.purpose__metric-label {
  margin-top: 8px;
  font-size: 14px;
  color: var(--green-dark);
}

.purpose__quote {
  background: #fff;
  padding: 24px;
  justify-content: space-between;
  gap: 16px;
}

.purpose__quote--map {
  grid-area: quote;
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.purpose-mini-map {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: #eef3e8;
  filter: saturate(0.82) contrast(0.96);
}

.purpose-mini-map .leaflet-container {
  width: 100%;
  height: 100%;
  background: #eef3e8;
}

.purpose__quote-copy {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 48px 18px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.92) 38%, #fff 100%);
  display: grid;
  gap: 8px;
}

.purpose__quote-copy .icon-badge {
  margin: 0;
}

.purpose__quote p {
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.purpose__quote-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
}

.purpose__quote-cta svg {
  width: 15px;
  height: 15px;
}

.purpose__quote .icon-badge {
  margin-bottom: 0;
}

.purpose__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.purpose__pillar {
  background: #fff;
  padding: 24px;
  gap: 10px;
  min-height: 180px;
  transition: transform 500ms var(--ease);
}

.purpose__pillar:hover {
  transform: translateY(-4px);
}

.purpose__pillar h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.purpose__pillar p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

.purpose__pillar .icon-badge {
  margin-bottom: 8px;
}

@keyframes purposeKenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

@keyframes purposeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 16ch;
  margin: 18px auto 0;
}

.section-head__lead {
  max-width: 46ch;
  margin: 14px auto 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.5;
}

.impact__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.impact-card {
  background: var(--bg-muted);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.impact-card--cover {
  position: relative;
  background: var(--green-dark);
  color: #fff;
}

.impact-card--cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 75, 57, 0.58) 0%,
    rgba(6, 75, 57, 0.72) 48%,
    rgba(6, 75, 57, 0.9) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.impact-card__copy h3 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 10px;
}

.impact-card__copy p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 16px;
}

.impact-card img {
  border-radius: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  margin: 0;
}

.impact-card--cover img {
  height: 100%;
  min-height: 100%;
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius-md);
  margin: 12px 0 0;
  aspect-ratio: var(--shot-ratio);
  background: #e4ead8;
}

.impact-card__bg {
  position: absolute;
  inset: 0;
  margin: 0;
  border-radius: inherit;
  z-index: 0;
}

.impact-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.impact-card--cover .impact-card__copy {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-height: 0;
}

.impact-card--cover .impact-card__copy p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0;
}

.impact-card--cover h3,
.impact-card--cover .impact-card__copy p {
  text-shadow: 0 1px 12px rgba(6, 75, 57, 0.35);
}

.impact-card--cover .btn--ghost {
  align-self: flex-start;
  background: #fff;
  color: var(--green-dark);
}

.participate__visuals {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 16px;
  margin-top: 56px;
}

.participate__visuals figure {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: var(--shot-ratio);
  background: #e4ead8;
}

.participate__visuals img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.participate__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.participate__head h2 {
  font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 10ch;
}

.participate__orb-wrap {
  display: block;
  width: min(220px, 42vw);
  height: auto;
  aspect-ratio: var(--shot-ratio);
  border-radius: 22px;
  overflow: hidden;
  flex-shrink: 0;
  background: #e4ead8;
}

.participate__orb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accordion {
  display: grid;
  gap: 10px;
}

.acc-item {
  background: #f0f0ee;
  border-radius: 20px;
  overflow: hidden;
  transition: background 300ms ease;
}

.acc-item.is-open {
  background: var(--green-soft);
}

.acc-item h3 {
  font-size: inherit;
  font-weight: inherit;
}

.acc-item button {
  width: 100%;
  min-height: 82px;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 18px 0 28px;
  text-align: left;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  cursor: pointer;
}

.acc-num {
  font-size: 14px;
  color: var(--text-secondary);
  width: 28px;
}

.acc-item .btn-circle {
  margin-left: auto;
}

.acc-item.is-open .btn-circle svg {
  transform: rotate(-90deg);
}

.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms ease, opacity 320ms ease;
  opacity: 0;
}

.acc-item.is-open .acc-panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.acc-panel > p {
  overflow: hidden;
  padding: 0 28px 22px 74px;
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 62ch;
}

.app-show {
  padding-block: var(--section-y);
  background: #f4f6f0;
}

.app-show .section-head h2 {
  max-width: 18ch;
}

.app-show .app-feature:first-of-type {
  margin-top: 8px;
}

.app-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  margin-top: clamp(40px, 6vw, 80px);
  content-visibility: auto;
  contain-intrinsic-size: auto 420px;
}

.app-feature--flip {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.app-feature--flip .app-feature__copy {
  order: 2;
}

.app-feature--flip .app-feature__media {
  order: 1;
}

.app-feature__copy h3 {
  margin: 12px 0 10px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
  max-width: 16ch;
}

.app-feature__copy p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.55;
  max-width: 42ch;
}

.app-feature__media {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #e4ead8;
  cursor: pointer;
  color: inherit;
  font: inherit;
  text-align: left;
}

.app-feature__media img {
  width: 100%;
  height: auto;
  aspect-ratio: var(--shot-ratio);
  display: block;
  object-fit: cover;
  object-position: center;
}

button.media-frame {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  background: transparent;
}

.gallery {
  padding-bottom: 120px;
}

.gallery__intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: 36px;
}

.gallery__intro h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 14ch;
  margin-top: 16px;
}

.gallery__lede {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.55;
  max-width: 42ch;
  padding-bottom: 6px;
}

.slider {
  position: relative;
  z-index: 2;
}

.slider__viewport {
  position: relative;
  aspect-ratio: 16 / 10;
  height: auto;
  min-height: 280px;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  border-radius: 36px;
}

.slider__viewport.is-dragging {
  cursor: grabbing;
}

.slider__track {
  position: relative;
  height: 100%;
  transition: transform 420ms var(--ease);
}

.slider__viewport.is-dragging .slider__track {
  transition: none;
}

.slider__viewport.is-dragging .slider__slide {
  transition: none;
}

.slider__slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(72%, 900px);
  height: auto;
  aspect-ratio: var(--shot-ratio);
  margin: 0;
  overflow: hidden;
  border-radius: 32px;
  transform: translate3d(-50%, -50%, 0) scale(0.62);
  opacity: 0;
  filter: grayscale(0.55) contrast(0.78) brightness(0.92);
  pointer-events: none;
  transition:
    transform 760ms var(--ease),
    opacity 760ms var(--ease),
    filter 760ms var(--ease);
  box-shadow: 0 18px 40px rgba(6, 75, 57, 0.12);
}

.slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.slider__slide[data-offset="0"] {
  transform: translate3d(-50%, -50%, 0) scale(1);
  opacity: 1;
  filter: none;
  z-index: 5;
  pointer-events: auto;
  cursor: pointer;
}

.slider__slide[data-offset="-1"] {
  transform: translate3d(-118%, -50%, 0) scale(0.82);
  opacity: 0.38;
  z-index: 3;
}

.slider__slide[data-offset="1"] {
  transform: translate3d(18%, -50%, 0) scale(0.82);
  opacity: 0.38;
  z-index: 3;
}

.slider__slide[data-offset="-2"] {
  transform: translate3d(-168%, -50%, 0) scale(0.68);
  opacity: 0.14;
  z-index: 1;
}

.slider__slide[data-offset="2"] {
  transform: translate3d(68%, -50%, 0) scale(0.68);
  opacity: 0.14;
  z-index: 1;
}

.slider__meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-top: 28px;
}

.slider__kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.slider__title {
  margin-top: 8px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.slider__text {
  margin-top: 8px;
  max-width: 52ch;
  color: var(--text-secondary);
  font-size: 15px;
}

.slider__controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider__dots {
  display: flex;
  gap: 8px;
}

.slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(6, 75, 57, 0.22);
  cursor: pointer;
}

.slider__dot[aria-current="true"] {
  width: 22px;
  border-radius: 999px;
  background: var(--green-dark);
}

.footer {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #064b39;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.footer::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--green-soft) 0%, #fff 52%, var(--green-soft) 100%);
}

.footer__leaf {
  position: absolute;
  right: -10%;
  bottom: -28%;
  width: min(48vw, 560px);
  opacity: 0.08;
  filter: brightness(0) invert(1);
  pointer-events: none;
  user-select: none;
}

.footer .section-inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: 28px;
}

.footer__intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-soft);
}

.footer__intro h2 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
}

.footer__lead {
  margin: 12px 0 0;
  max-width: 46ch;
  line-height: 1.55;
}

.footer__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.footer__btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, 0.75fr)) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 56px);
  padding: 40px 0 36px;
}

.footer__logo-link {
  display: inline-block;
}

.footer__logo {
  display: block;
  height: 64px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.footer__brand p {
  margin: 16px 0 0;
  max-width: 36ch;
  line-height: 1.55;
}

.footer__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.footer__chips li {
  border: 1px solid rgba(214, 229, 190, 0.35);
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green-soft);
}

.footer__heading {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-soft);
}

.footer__nav ul,
.footer__facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer__nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.footer__nav svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.footer__facts li {
  display: grid;
  gap: 4px;
}

.footer__facts strong {
  color: #fff;
  font-weight: 600;
}

.footer__facts span {
  display: block;
  line-height: 1.45;
}

.footer__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.footer__bar p {
  margin: 0;
}

.footer__credit {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.muted {
  color: var(--text-secondary);
  font-size: 14px;
}

.sheet {
  width: min(760px, calc(100% - 32px));
  border: 0;
  border-radius: var(--radius-lg);
  padding: 0;
  background: var(--bg-surface);
  box-shadow: var(--shadow);
}

.sheet--wide {
  width: min(1120px, calc(100% - 24px));
  height: min(720px, calc(100% - 24px));
  overflow: hidden;
}

.sheet::backdrop,
.lightbox::backdrop {
  background: rgba(17, 17, 17, 0.28);
}

.sheet__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px 8px;
}

.sheet__head h2 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.sheet__body {
  padding: 8px 24px 28px;
  overflow: auto;
}

.sheet__body--narrow {
  max-width: 440px;
}

.sheet__body--split {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 16px;
  height: calc(100% - 76px);
  padding-bottom: 20px;
}

.field {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.field input {
  border: 0;
  background: var(--bg-muted);
  border-radius: var(--radius-pill);
  padding: 14px 18px;
}

.start-hero {
  font-size: 15px;
  color: var(--text-secondary);
}

.stat-row {
  display: flex;
  gap: 10px;
  margin: 18px 0 24px;
}

.stat-box {
  flex: 1;
  background: var(--green-soft);
  border-radius: var(--radius-md);
  padding: 16px;
}

.stat-box strong {
  display: block;
  font-size: 28px;
  font-weight: 500;
}

.point-list,
.reward-grid,
.challenge-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.point-item,
.reward-card,
.challenge-item {
  background: var(--bg-muted);
  border-radius: var(--radius-md);
  padding: 16px;
  border: 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.point-item.is-active,
.challenge-item.is-done {
  background: var(--green-soft);
}

.point-item h3,
.reward-card h3,
.challenge-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.point-item p,
.reward-card p,
.challenge-item p {
  font-size: 13px;
  color: var(--text-secondary);
}

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

.map {
  min-height: 420px;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-muted);
}

.toast {
  position: fixed;
  inset: unset;
  top: auto;
  right: auto;
  bottom: 28px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%) translateY(12px);
  background: #f3f6ec;
  color: var(--green-dark);
  padding: 13px 22px;
  border: 0;
  border-radius: 16px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.35;
  width: max-content;
  max-width: min(420px, calc(100vw - 40px));
  text-align: center;
  box-shadow: 0 12px 36px rgba(6, 75, 57, 0.14);
  opacity: 0;
  pointer-events: none;
  z-index: 80;
  overflow: visible;
  appearance: none;
  list-style: none;
  transition: opacity 280ms var(--ease), transform 280ms var(--ease);
}

.toast::before,
.toast::after {
  content: none;
  display: none;
}

.toast:popover-open,
.toast.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast.toast--over-sheet {
  top: 16px;
  bottom: auto;
  transform: translateX(-50%) translateY(-6px);
}

.toast.toast--over-sheet:popover-open,
.toast.toast--over-sheet.is-on {
  transform: translateX(-50%) translateY(0);
}

.lightbox {
  width: min(1100px, calc(100% - 24px));
  height: min(760px, calc(100% - 24px));
  border: 0;
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--bg-surface);
}

.lightbox[open] {
  display: grid;
  place-items: center;
}

.lightbox__figure {
  margin: 0;
  text-align: center;
}

.lightbox__figure img {
  max-height: 58vh;
  width: auto;
  max-width: 100%;
  margin-inline: auto;
  border-radius: var(--radius-md);
}

.lightbox__figure figcaption {
  margin-top: 12px;
  color: var(--text-secondary);
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
}

.lightbox__prev {
  left: 16px;
}

.lightbox__next {
  right: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (min-width: 1920px) {
  :root {
    --content-max: 1840px;
  }

  .hero__bento {
    gap: 16px;
  }
}

@media (max-width: 1439px) {
  .purpose__main h2 {
    font-size: clamp(30px, 4vw, 48px);
  }

  .purpose__mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "main side"
      "low metric"
      "quote quote";
  }
}

@media (max-width: 1180px) {
  :root {
    --header-h: 92px;
  }

  .header__inner {
    gap: 12px;
    min-height: 92px;
  }

  .logo img {
    height: 56px;
    max-width: 200px;
  }

  .nav {
    justify-self: center;
    gap: 2px;
    padding: 6px 8px;
  }

  .nav a {
    padding: 8px 10px;
    gap: 6px;
  }

  .nav a svg,
  .nav a i,
  .nav a .icon {
    display: none;
  }

  .impact__grid,
  .participate__visuals {
    grid-template-columns: 1fr 1fr;
  }

  .gallery__intro,
  .slider__meta {
    grid-template-columns: 1fr;
  }

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

  .purpose__intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sheet__body--split {
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .map {
    min-height: 320px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-h: 72px;
  }

  .botanical {
    opacity: 0.04;
    width: min(240px, 52vw);
  }

  .botanical--hero-br,
  .botanical--purpose,
  .botanical--impact,
  .botanical--gallery {
    display: none;
  }

  .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    min-height: 72px;
    padding-block: 8px;
    gap: 12px;
  }

  .logo {
    min-width: 0;
    flex: 1 1 auto;
  }

  .logo img {
    height: 52px;
    max-width: min(210px, 52vw);
  }

  .header__end {
    gap: 10px;
  }

  .header__end .btn {
    height: 40px;
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .points-chip {
    height: 40px;
    padding: 0 10px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
  }

  .nav {
    display: flex;
    position: absolute;
    top: calc(100% + 8px);
    left: var(--pad-inline);
    right: var(--pad-inline);
    width: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px;
    border-radius: var(--radius-md);
    z-index: 30;
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    transform-origin: top center;
  }

  .nav a {
    width: 100%;
    padding: 12px 14px;
  }

  .footer__intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__stage,
  .purpose__intro,
  .purpose__mosaic,
  .purpose__pillars,
  .hero__bento,
  .impact__grid,
  .participate__visuals,
  .app-feature,
  .app-feature--flip,
  .gallery__intro,
  .slider__meta,
  .reward-grid {
    grid-template-columns: 1fr;
  }

  .hero__bento,
  .purpose__mosaic,
  .purpose__pillars,
  .impact__grid {
    gap: 20px;
  }

  .hero__headline {
    padding: 48px 56px 40px;
  }

  .hero__headline h1 {
    position: relative;
    z-index: 2;
    font-size: clamp(34px, 9vw, 48px);
  }

  .float-icon {
    width: 36px;
    height: 36px;
  }

  .float-icon svg {
    width: 15px;
    height: 15px;
  }

  .float-icon--leaf {
    display: flex;
    top: 4px;
    left: 2px;
  }

  .float-icon--arrow {
    top: 16px;
    right: 8px;
    left: auto;
  }

  .float-icon--coin {
    bottom: 2px;
    right: 10px;
    top: auto;
    left: auto;
  }

  .float-icon--recycle,
  .float-icon--pin {
    display: none;
  }

  .hero__lede {
    max-width: 42ch;
    padding-top: 0;
  }

  .hero__actions {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }

  .purpose__mosaic {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "side"
      "low"
      "metric"
      "quote";
    grid-template-rows: none;
  }

  .app-feature--flip .app-feature__copy,
  .app-feature--flip .app-feature__media {
    order: 0;
  }

  .participate__visuals figure {
    height: auto;
    min-height: 0;
  }

  .participate__visuals img {
    height: 100%;
    min-height: 0;
  }

  .slider__viewport {
    aspect-ratio: 4 / 3;
    min-height: 220px;
  }

  .slider__slide {
    width: 86%;
    height: auto;
    border-radius: 24px;
  }

  .slider__slide[data-offset="-1"] {
    transform: translate3d(-108%, -50%, 0) scale(0.86);
  }

  .slider__slide[data-offset="1"] {
    transform: translate3d(8%, -50%, 0) scale(0.86);
  }

  .participate__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .acc-item button {
    font-size: 17px;
    min-height: 72px;
    padding-left: 16px;
  }

  .acc-panel > p {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer__intro,
  .footer__bar {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .points-chip span {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 72px;
  }

  .header__inner {
    min-height: 68px;
    padding-block: 6px;
    gap: 8px;
  }

  .logo img {
    height: 46px;
    max-width: min(188px, 50vw);
  }

  .header__end {
    gap: 10px;
  }

  .header__end .btn {
    height: 40px;
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  .points-chip {
    height: 40px;
    padding: 0 8px;
    gap: 4px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .hero,
  .purpose,
  .impact,
  .participate,
  .gallery {
    padding-top: 56px;
    padding-bottom: 72px;
  }

  .bento-card,
  .bento-card--photo,
  .bento-card--brand,
  .bento-card--points {
    min-height: 240px;
    height: auto;
  }

  .bento-card--photo,
  .bento-card--brand {
    height: 280px;
  }

  .photo-pill {
    white-space: normal;
    max-width: calc(100% - 24px);
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
