@font-face {
  font-family: Fraunces;
  src: url("assets/fraunces.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("assets/manrope.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("assets/manrope-bold.ttf") format("truetype");
  font-weight: 700 800;
  font-style: normal;
  font-display: swap;
}
:root {
  --forest: #183e31;
  --deep: #102d23;
  --paper: #f5f3eb;
  --lime: #d5ed91;
  --ink: #193d31;
  --muted: #58685d;
  --line: #d4dacb;
  --serif: Fraunces, Georgia, serif;
  --sans: Manrope, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
svg {
  display: block;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(42px, 4.6vw, 68px);
}
h2 em,
h1 em {
  font-style: normal;
}
h2 em {
  color: #6c8250;
}
p + p {
  margin-top: 20px;
}
::selection {
  background: var(--lime);
  color: var(--deep);
}
:focus-visible {
  outline: 3px solid #9bb65f;
  outline-offset: 6px;
}
a:focus-visible,
button:focus-visible {
  border-radius: 3px;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}
.section {
  padding-block: 116px;
}
.eyebrow {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 11px;
}
.lead {
  font-size: 23px;
  line-height: 1.6;
  letter-spacing: -0.035em;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  min-height: 60px;
  padding: 17px 26px;
  background: var(--lime);
  color: var(--deep);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 3px;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  background: #e4f7b8;
  transform: translateY(-2px);
  box-shadow: 0 7px 18px #00000015;
}
.button span {
  font-size: 23px;
  line-height: 1;
}
.button-small {
  min-height: 43px;
  padding: 10px 20px;
  gap: 25px;
  font-size: 12px;
}
.text-link {
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #9ba98e;
  padding-bottom: 5px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
}
.text-link span {
  display: inline-block;
  margin-left: 18px;
  transition: transform 0.2s;
}
.text-link:hover span {
  transform: translate(3px, -3px);
}
.text-link small {
  display: block;
  font-weight: 400;
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 20;
  background: var(--lime);
  padding: 12px 20px;
}
.skip-link:focus {
  top: 15px;
}
.site-header {
  height: 88px;
  position: relative;
  z-index: 5;
  padding-inline: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--paper);
}
.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -1.4px;
  text-decoration: none;
  line-height: 1;
}
.brand-icon {
  width: 40px;
  height: 40px;
  margin-right: 12px;
}
.brand-light {
  font-weight: 400;
}
.brand-dot {
  color: #86a647;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 35px;
}
.nav-link {
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}
.nav-link:hover {
  text-decoration: underline;
}
.hero {
  position: relative;
  min-height: 740px;
  height: calc(100svh - 88px);
  max-height: 1020px;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--deep);
}
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.hero-image {
  object-fit: cover;
  object-position: 65% center;
  animation: hero-settle 1.8s ease-out both;
}
.hero-shade {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(10, 30, 20, 0.8) 0%,
      rgba(10, 30, 20, 0.46) 43%,
      rgba(10, 30, 20, 0.05) 100%
    ),
    linear-gradient(0deg, rgba(10, 30, 20, 0.45), transparent 40%);
}
.hero-content {
  padding-top: 26px;
  padding-bottom: 100px;
}
.hero-eyebrow {
  color: var(--lime);
  margin-bottom: 28px;
}
.status-dot {
  height: 7px;
  width: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px #d5ed911a;
}
.hero h1 {
  font-size: clamp(68px, 7.2vw, 104px);
  line-height: 0.99;
  letter-spacing: -0.055em;
  margin-left: -5px;
  max-width: 1080px;
}
.hero h1 em {
  color: var(--lime);
}
.hero-subtitle {
  font-size: 23px;
  letter-spacing: -0.025em;
  margin-top: 28px;
  line-height: 1.5;
}
.hero-description {
  font-size: 14px;
  color: #e4e9dc;
  margin-top: 12px;
  line-height: 1.9;
  max-width: 490px;
}
.hero-button {
  margin-top: 32px;
}
.hero-bottom {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
}
.explore {
  display: flex;
  gap: 14px;
  align-items: center;
  text-decoration: none;
}
.circle-arrow {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border: 1px solid #ffffff50;
  border-radius: 50%;
  font-size: 18px;
  transition: transform 0.2s;
}
.explore:hover .circle-arrow {
  transform: translateY(4px);
}
.photo-location {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.85;
}
.photo-location svg {
  width: 13px;
  height: 17px;
}
.campaign-strip {
  min-height: 78px;
  padding: 20px 40px;
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.02em;
}
.strip-flower {
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}
.intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 70px;
}
.margin-note {
  margin-top: 25px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
}
.intro-body h2 {
  margin-bottom: 32px;
}
.intro-body .lead {
  max-width: 650px;
}
.intro-body > p:not(.lead) {
  font-size: 16px;
  max-width: 680px;
}
.strong-line {
  font-weight: 700;
}
.intro-body .text-link {
  margin-top: 28px;
}
.nature-section {
  background: #e8ecdf;
  padding-top: 95px;
  padding-bottom: 95px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 20px;
  margin-bottom: 52px;
}
.section-heading .eyebrow {
  grid-column: 1/-1;
  margin-bottom: 8px;
}
.section-heading > p:last-child {
  justify-self: end;
  font-size: 14px;
  color: var(--muted);
  padding-bottom: 5px;
}
.nature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}
.nature-card {
  border-top: 1px solid #aab89e;
  padding-top: 24px;
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  color: #56724b;
}
.card-top > span {
  font-size: 12px;
}
.card-top svg {
  width: 68px;
  height: 68px;
}
.card-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 13px;
}
.nature-card h3 {
  font-size: 36px;
  margin-bottom: 22px;
  letter-spacing: -0.045em;
}
.nature-card > p:not(.card-tag) {
  font-size: 13px;
  color: #465e4c;
  line-height: 1.95;
}
.forest-story {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 100px;
  align-items: center;
  padding-block: 130px;
}
.forest-photo {
  position: relative;
  margin: 0;
}
.forest-photo img {
  height: 610px;
  width: 100%;
  object-fit: cover;
  object-position: 55% center;
  border-radius: 200px 200px 3px 3px;
}
.forest-photo figcaption {
  font-size: 10px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 16px;
}
.photo-stamp {
  position: absolute;
  right: -32px;
  bottom: 76px;
  border-radius: 50%;
  height: 145px;
  width: 145px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  transform: rotate(9deg);
  box-shadow: 0 0 0 8px var(--paper);
}
.photo-stamp svg {
  width: 40px;
  margin-top: 9px;
}
.forest-copy .eyebrow {
  margin-bottom: 25px;
}
.forest-copy h2 {
  margin-bottom: 28px;
}
.forest-copy .lead {
  font-size: 21px;
}
.forest-copy > p:not(.eyebrow):not(.lead) {
  font-size: 14px;
  color: var(--muted);
}
.forest-copy .text-link {
  margin-top: 27px;
}
.solution-section {
  background: var(--forest);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.solution-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 100px;
  align-items: center;
}
.solution-section .eyebrow {
  color: #bbd396;
}
.solution-heading .eyebrow {
  margin-bottom: 28px;
}
.solution-heading h2 {
  font-size: clamp(42px, 4.6vw, 66px);
}
.solution-heading h2 em {
  color: var(--lime);
}
.route-mark {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 35px;
  color: var(--lime);
}
.route-mark > span {
  border: 1px solid #b3c99e;
  border-radius: 4px;
  padding: 0 13px;
  font-size: 19px;
  letter-spacing: 0.07em;
  font-weight: 700;
}
.solution-copy .lead {
  font-size: 25px;
  margin-bottom: 25px;
}
.solution-copy > p:not(.lead) {
  font-size: 15px;
  color: #d0dbce;
}
.solution-copy .text-link {
  margin-top: 30px;
}
.light-link {
  color: var(--lime);
  border-color: #708c65;
}
.wider-cause {
  border-top: 1px solid #52705b;
  margin-top: 90px;
  padding-top: 50px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 54px;
}
.wider-intro h3 {
  font-size: 31px;
  margin-top: 15px;
}
.wider-cause p:not(.eyebrow) {
  font-size: 12px;
  line-height: 1.9;
  color: #c4d2c1;
  margin-top: 18px;
}
.wider-cause h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: 13px;
}
.small-marker {
  color: var(--lime);
  font-size: 24px;
  line-height: 1;
}
.wider-cause .text-link {
  font-size: 11px;
  margin-top: 20px;
}
.action-section {
  background: var(--lime);
  padding-block: 108px 70px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.action-river {
  position: absolute;
  right: -260px;
  top: -60px;
  width: 720px;
  height: 840px;
  color: #668445;
  opacity: 0.26;
  pointer-events: none;
}
.action-content {
  position: relative;
}
.action-content > .eyebrow {
  justify-content: center;
  margin-bottom: 25px;
}
.action-section h2 {
  font-size: clamp(64px, 7vw, 100px);
  letter-spacing: -0.06em;
}
.action-section h2 em {
  color: var(--forest);
}
.action-lead {
  font-size: 17px;
  margin-top: 28px;
}
.button-dark {
  background: var(--forest);
  color: var(--paper);
  margin-top: 30px;
  min-width: 265px;
}
.button-dark:hover {
  background: var(--deep);
}
.action-note {
  font-size: 10px;
  margin-top: 15px;
  line-height: 1.8;
  color: #415639;
}
.action-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  max-width: 960px;
  margin: 65px auto 0;
  padding: 32px 0 0;
  border-top: 1px solid #a9c273;
  list-style: none;
  text-align: left;
}
.action-steps li {
  display: flex;
  align-items: baseline;
  gap: 15px;
}
.action-steps li > span {
  font-size: 11px;
  color: #526d3c;
}
.action-steps strong {
  font-size: 17px;
}
.action-steps p {
  font-size: 12px;
  line-height: 1.8;
  margin-top: 6px;
  max-width: 230px;
}
.share-button {
  margin-top: 38px;
  border: 0;
  border-bottom: 1px solid #718d4b;
  background: transparent;
  padding: 9px 2px;
  font-weight: 700;
  font-size: 12px;
  color: var(--forest);
}
.share-button span {
  margin-left: 15px;
}
.share-status {
  font-size: 12px;
  min-height: 22px;
  margin-top: 8px;
}
.share-fallback {
  width: min(100%, 500px);
  padding: 10px;
  border: 1px solid var(--forest);
  background: var(--paper);
  border-radius: 3px;
}
.sources-section {
  padding-block: 20px;
}
.sources-section details {
  border-bottom: 1px solid var(--line);
}
.sources-section summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  padding-block: 28px;
  list-style: none;
}
.sources-section summary::-webkit-details-marker {
  display: none;
}
.details-plus {
  font-size: 24px;
  font-weight: 400;
  transition: transform 0.2s;
}
.sources-section details[open] .details-plus {
  transform: rotate(45deg);
}
.sources-body {
  max-width: 820px;
  font-size: 13px;
  padding: 0 0 30px;
}
.sources-body ul {
  padding-left: 18px;
  line-height: 2.3;
}
.sources-body a:hover {
  color: #688346;
}
.source-date {
  color: var(--muted);
  font-size: 11px;
}
.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-block: 45px 65px;
}
.footer-brand {
  font-size: 30px;
}
.site-footer > div:first-child p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 16px;
}
.footer-about {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.9;
}
.footer-about p + p {
  margin-top: 8px;
}
.footer-about a {
  display: inline-block;
  margin-top: 14px;
}
.reveal {
  opacity: 1;
  transform: none;
}
.reveal.will-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal.will-reveal.is-visible {
  opacity: 1;
  transform: none;
}
.credits-main {
  max-width: 860px;
  padding-block: 65px 100px;
}
.credits-main h1 {
  font-size: 60px;
  margin-bottom: 35px;
}
.credits-main h2 {
  font-size: 30px;
  margin: 40px 0 20px;
}
.credits-main p,
.credits-main li {
  font-size: 14px;
}
.credits-main li + li {
  margin-top: 18px;
}
.credits-main a {
  overflow-wrap: anywhere;
}
/* The campaign leads with a measurable environmental comparison. */
.comparison-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.comparison-copy .eyebrow {
  margin-bottom: 25px;
}
.comparison-copy h2 {
  margin-bottom: 30px;
}
.comparison-copy .lead {
  font-size: 22px;
}
.comparison-copy p:not(.eyebrow):not(.lead) {
  font-size: 14px;
}
.forest-comparison {
  margin: 0;
  padding: 34px;
  background: #e8ecdf;
  border-radius: 4px;
}
.forest-comparison figcaption {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 32px;
}
.forest-comparison figcaption span {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.8;
  font-weight: 400;
  color: var(--muted);
}
.comparison-row + .comparison-row {
  margin-top: 26px;
}
.comparison-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 9px;
  font-size: 12px;
}
.comparison-label strong {
  font-family: var(--serif);
  font-size: 37px;
  font-weight: 400;
  line-height: 1.1;
  white-space: nowrap;
}
.comparison-label small {
  font-family: var(--sans);
  font-size: 14px;
}
.comparison-track {
  height: 23px;
  background: #d9e0cf;
  border-radius: 2px;
  overflow: hidden;
}
.comparison-bar {
  height: 100%;
  display: block;
}
.comparison-bar-high {
  width: 100%;
  background: #9c5b43;
}
.comparison-bar-low {
  width: 36.842105%;
  background: var(--forest);
}
.comparison-difference {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  padding-top: 25px;
  border-top: 1px solid #bac6ad;
}
.comparison-difference strong {
  font-family: var(--serif);
  font-size: 51px;
  font-weight: 400;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.comparison-difference span {
  font-size: 12px;
  line-height: 1.6;
}
.forest-comparison .text-link {
  margin-top: 24px;
  font-size: 10px;
}
.forest-comparison .text-link span {
  margin-left: 8px;
}
.nature-card .text-link {
  margin-top: 22px;
  font-size: 11px;
}
.corridor-demand {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 70px;
  padding-top: 42px;
  border-top: 1px solid #52705b;
}
.corridor-demand h3 {
  font-size: 35px;
  line-height: 1.2;
  margin-top: 20px;
}
.corridor-demand > div > p:not(.eyebrow) {
  font-size: 14px;
  color: #d0dbce;
}
.corridor-demand .text-link {
  font-size: 11px;
  margin-top: 22px;
}
.corridor-demand > div > .map-date {
  font-size: 10px;
  margin-top: 8px;
}
@media (max-width: 1100px) {
  .comparison-section {
    gap: 40px;
  }
  .forest-comparison {
    padding: 25px;
  }
  .corridor-demand {
    gap: 45px;
  }
}
@media (max-width: 760px) {
  .comparison-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .comparison-copy h2 {
    font-size: 45px;
  }
  .comparison-copy .lead {
    font-size: 20px;
  }
  .forest-comparison {
    padding: 24px 20px;
  }
  .comparison-label {
    font-size: 11px;
  }
  .comparison-label strong {
    font-size: 34px;
  }
  .comparison-difference strong {
    font-size: 46px;
  }
  .nature-card .text-link {
    grid-column: 1/-1;
    justify-self: start;
    font-size: 11px;
    margin-top: 18px;
  }
  .corridor-demand {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 45px;
    padding-top: 32px;
  }
  .corridor-demand h3 {
    font-size: 31px;
  }
  .action-section .button-dark {
    min-width: 0;
    max-width: 100%;
    gap: 20px;
    font-size: 12px;
  }
}

@keyframes hero-settle {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}
@media (min-width: 1600px) {
  .hero-content,
  .hero-bottom {
    width: min(1440px, calc(100% - 140px));
  }
  .hero h1 {
    font-size: 110px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 72px);
  }
  .site-header {
    padding-inline: 36px;
  }
  .site-header nav {
    gap: 22px;
  }
  .hero {
    min-height: 700px;
  }
  .intro {
    gap: 35px;
    grid-template-columns: 0.8fr 2fr;
  }
  .forest-story {
    gap: 65px;
  }
  .forest-photo img {
    height: 550px;
  }
  .solution-grid {
    gap: 55px;
  }
  .wider-cause {
    gap: 30px;
  }
  .nature-grid {
    gap: 27px;
  }
  .nature-card h3 {
    font-size: 32px;
  }
  .campaign-strip {
    gap: 27px;
    font-size: 12px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 24px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 72px;
  }
  .site-header {
    height: 74px;
    padding-inline: 20px;
    gap: 10px;
  }
  .brand {
    font-size: 21px;
    letter-spacing: -1px;
  }
  .brand-icon {
    width: 31px;
    height: 31px;
    margin-right: 7px;
  }
  .site-header .nav-link {
    display: none;
  }
  .button-small {
    font-size: 10px;
    padding: 9px 12px;
    gap: 15px;
    min-height: 40px;
  }
  .button-small span {
    font-size: 18px;
  }
  .hero {
    height: calc(100svh - 74px);
    min-height: 690px;
    max-height: 920px;
  }
  .hero-content {
    padding-top: 15px;
    padding-bottom: 90px;
  }
  .hero-image {
    object-position: 53% center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #0a1e14bd, #0a1e1426),
      linear-gradient(0deg, #0a1e1499, transparent 60%);
  }
  .hero h1 {
    font-size: clamp(48px, 12vw, 68px);
    margin-left: -3px;
  }
  .hero-eyebrow {
    font-size: 9px;
    margin-bottom: 24px;
    letter-spacing: 0.15em;
  }
  .hero-subtitle {
    font-size: 20px;
    max-width: 330px;
    line-height: 1.5;
    margin-top: 24px;
  }
  .hero-description {
    font-size: 12px;
    max-width: 340px;
    margin-top: 14px;
  }
  .hero-button {
    font-size: 12px;
    gap: 18px;
    padding: 17px 20px;
    min-height: 57px;
    margin-top: 27px;
  }
  .hero-bottom {
    bottom: 22px;
    font-size: 9px;
  }
  .photo-location {
    gap: 5px;
  }
  .circle-arrow {
    height: 30px;
    width: 30px;
  }
  .explore {
    gap: 8px;
  }
  .campaign-strip {
    min-height: 66px;
    padding: 17px 20px;
    gap: 15px;
    font-size: 11px;
    flex-wrap: wrap;
    line-height: 1.4;
  }
  .strip-flower {
    font-size: 20px;
  }
  .campaign-strip > span:last-child {
    flex-basis: 100%;
    text-align: center;
  }
  .campaign-strip > .strip-flower:nth-of-type(4) {
    display: none;
  }
  .intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .margin-note {
    display: none;
  }
  .eyebrow {
    font-size: 9px;
  }
  .intro-body h2 {
    font-size: 43px;
    margin-bottom: 24px;
  }
  .lead {
    font-size: 20px;
  }
  .intro-body > p:not(.lead) {
    font-size: 14px;
  }
  .text-link {
    font-size: 12px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 36px;
  }
  .section-heading .eyebrow {
    margin-bottom: 5px;
  }
  .section-heading > p:last-child {
    justify-self: start;
    margin-top: 3px;
    font-size: 13px;
  }
  .section-heading h2 {
    font-size: 46px;
  }
  .nature-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .nature-card {
    padding-top: 15px;
    display: grid;
    grid-template-columns: 1fr 75px;
    column-gap: 10px;
  }
  .card-top {
    grid-column: 2;
    grid-row: 1/3;
    flex-direction: column-reverse;
    margin: 0;
    justify-content: start;
    gap: 15px;
    align-items: end;
  }
  .card-top svg {
    width: 60px;
    height: 60px;
  }
  .card-top > span {
    margin-right: 5px;
  }
  .card-tag {
    grid-column: 1;
    font-size: 9px;
    margin: 6px 0 13px;
  }
  .nature-card h3 {
    grid-column: 1;
    font-size: 35px;
    margin-bottom: 18px;
  }
  .nature-card > p:not(.card-tag) {
    grid-column: 1/-1;
    max-width: 560px;
    font-size: 13px;
  }
  .forest-story {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .forest-photo {
    max-width: 520px;
    width: calc(100% - 16px);
  }
  .forest-photo img {
    height: 480px;
    border-radius: 190px 190px 3px 3px;
  }
  .photo-stamp {
    right: -14px;
    bottom: 58px;
    width: 120px;
    height: 120px;
    font-size: 12px;
    box-shadow: 0 0 0 6px var(--paper);
  }
  .photo-stamp svg {
    width: 30px;
  }
  .forest-copy h2 {
    font-size: 48px;
  }
  .forest-copy .eyebrow {
    margin-bottom: 18px;
  }
  .forest-copy .lead {
    font-size: 20px;
  }
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .solution-heading h2 {
    font-size: 46px;
  }
  .solution-heading .eyebrow {
    margin-bottom: 24px;
  }
  .solution-copy .lead {
    font-size: 22px;
  }
  .solution-copy > p:not(.lead) {
    font-size: 14px;
  }
  .route-mark {
    margin-top: 26px;
  }
  .wider-cause {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 52px;
    padding-top: 35px;
  }
  .wider-intro h3 {
    font-size: 34px;
  }
  .wider-cause article {
    border-top: 1px solid #52705b;
    padding-top: 25px;
  }
  .wider-cause p:not(.eyebrow) {
    font-size: 13px;
    max-width: 560px;
    margin-top: 13px;
  }
  .wider-cause h4 {
    margin-top: 5px;
    font-size: 20px;
  }
  .wider-cause .text-link {
    font-size: 12px;
    margin-top: 14px;
  }
  .action-section {
    padding-bottom: 40px;
  }
  .action-section h2 {
    font-size: 65px;
  }
  .action-content > .eyebrow {
    font-size: 9px;
  }
  .action-lead {
    font-size: 14px;
    max-width: 420px;
    margin: 23px auto 0;
  }
  .action-lead br {
    display: none;
  }
  .button-dark {
    font-size: 14px;
    min-width: 265px;
  }
  .action-steps {
    grid-template-columns: 1fr;
    gap: 23px;
    margin: 40px auto 0;
    padding-top: 27px;
    max-width: 340px;
  }
  .action-steps li {
    gap: 19px;
  }
  .action-steps p {
    max-width: 280px;
    margin-top: 3px;
    font-size: 12px;
  }
  .action-river {
    right: -420px;
    opacity: 0.18;
  }
  .sources-section summary {
    font-size: 13px;
    padding-block: 23px;
  }
  .sources-body {
    font-size: 12px;
  }
  .sources-body ul {
    line-height: 1.9;
  }
  .sources-body li + li {
    margin-top: 9px;
  }
  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 32px 45px;
  }
  .footer-about {
    font-size: 11px;
  }
  .footer-brand {
    font-size: 27px;
  }
  .credits-main h1 {
    font-size: 43px;
  }
  .credits-main {
    padding-top: 40px;
  }
}
@media (max-width: 370px) {
  .site-header {
    padding-inline: 14px;
  }
  .brand-icon {
    display: none;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero-button {
    font-size: 11px;
    gap: 12px;
    padding-inline: 16px;
  }
  .hero-description {
    font-size: 11px;
  }
  .photo-location {
    font-size: 8px;
  }
  .action-section h2 {
    font-size: 58px;
  }
  .campaign-strip {
    gap: 12px;
  }
  .intro-body h2 {
    font-size: 39px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal.will-reveal {
    opacity: 1;
    transform: none;
  }
}
