:root {
  --green: #008539;
  --deep-green: #004b20;
  --ink: #111111;
  --soft-ink: #3c3837;
  --paper: #ffffff;
  --display: "Anton", "Arial Narrow", Impact, sans-serif;
  --serif: "PT Serif", Georgia, serif;
  --sans: "Barlow", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--serif);
}

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

.page-shell {
  min-width: 320px;
  overflow: hidden;
  background: radial-gradient(ellipse at 0 32%, rgba(180, 233, 248, 0.45), transparent 22rem), radial-gradient(ellipse at 100% 6%, rgba(130, 221, 244, 0.5), transparent 28rem), #fff;
}

.hero {
  min-height: 59.7vw;
  max-height: 860px;
  height: 860px;
  position: relative;
  background-image: url("../images/hero-bg.png");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.site-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  width: min(100%, 1920px);
  margin: 0 auto;
  padding: 18px 61px 0 32px;
  position: relative;
  z-index: 2;
}

.logo-link {
  display: block;
  width: 204px;
}
.logo-link img,
.logo-link .custom-logo {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 45px;
  padding-top: 58px;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}
.nav-links .primary-menu {
  display: flex;
  align-items: center;
  gap: 45px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-download,
.primary-menu a[href*=booklet] {
  min-width: 222px;
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #000;
  border-radius: 999px;
}

.hero-copy {
  position: absolute;
  left: 50%;
  top: 215px;
  transform: translateX(-50%);
  width: min(880px, 100% - 40px);
  text-align: center;
}

.hero h1 {
  margin: 0 auto;
  max-width: 890px;
  color: transparent;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/impact-texture.png");
  background-position: 50% 85%;
  background-size: 950px auto;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--display);
  font-size: clamp(7rem, 13.3vw, 15rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 21px;
  margin-top: 58px;
}

.button {
  min-height: 73px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 42px;
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.button-primary {
  min-width: 317px;
  color: #fff;
  background: var(--green);
}

.button-secondary {
  min-width: 311px;
  border: 1px solid #000;
}

.button-light {
  min-width: 311px;
  min-height: 73px;
  border: 1px solid #fff;
  color: #fff;
}

.impact {
  padding: 150px 0 125px;
  background: #fff;
}

.impact-inner,
.roots-inner {
  display: grid;
  grid-template-columns: minmax(420px, 680px) minmax(360px, 573px);
  justify-content: center;
  column-gap: 188px;
  width: min(100% - 80px, 1664px);
  margin: 0 auto;
}

.impact h2,
.roots h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5.5rem, 7.05vw, 8.55rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.impact h2 {
  color: var(--green);
  max-width: 680px;
}

.copy-block {
  padding-top: 54px;
}
.copy-block h3 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.27;
}
.copy-block p {
  margin: 0;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.75;
}

.roots {
  position: relative;
  isolation: isolate;
  min-height: 850px;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--deep-green);
}
.roots::before, .roots::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../images/roots-bg.png");
  background-size: cover;
  background-position: center;
  opacity: 0.42;
  filter: grayscale(1) blur(1.4px);
}
.roots::after {
  z-index: -1;
  background: rgba(0, 75, 32, 0.76);
  filter: none;
  opacity: 1;
}
.roots h2 {
  color: #fff;
  max-width: 680px;
  font-size: clamp(4.8rem, 6.72vw, 8.5rem);
}

.roots-inner {
  align-items: start;
  padding-top: 36px;
}

.roots-left p {
  max-width: 671px;
  margin: 30px 0 35px;
  font-size: 20px;
  line-height: 1.75;
}

.roots-copy {
  padding-top: 175px;
}

.mission {
  position: relative;
  padding: 83px 70px 47px;
  background: radial-gradient(ellipse at left bottom, rgba(180, 233, 248, 0.34), transparent 24rem), radial-gradient(ellipse at right bottom, rgba(180, 233, 248, 0.44), transparent 24rem), #fff;
}
.mission h2 {
  max-width: 1450px;
  margin: 0 auto 79px;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.1;
  text-align: center;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 70px;
  width: min(100%, 1648px);
  margin: 0 auto;
}

.resource-card {
  display: grid;
  grid-template-columns: 95px minmax(0, 1fr) 28px;
  align-items: start;
  gap: 26px;
  min-height: 118px;
}
.resource-card img {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  object-fit: cover;
}
.resource-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-family: var(--sans);
  font-size: 18px;
  letter-spacing: 0.03em;
  line-height: 1.05;
  text-transform: uppercase;
}
.resource-card small {
  display: block;
  max-width: 340px;
  font-size: 16px;
  line-height: 1.6;
}
.resource-card i {
  color: rgba(0, 0, 0, 0.28);
  font-size: 20px;
  line-height: 1;
}

footer {
  margin-top: 82px;
  font-size: 17px;
  text-align: center;
}

@media (max-width: 1100px) {
  .hero {
    height: 720px;
    background-size: auto 720px;
  }
  .site-header {
    padding: 16px 24px 0;
  }
  .logo-link {
    width: 150px;
  }
  .nav-links {
    gap: 20px;
    padding-top: 34px;
    font-size: 14px;
  }
  .nav-links .primary-menu {
    gap: 20px;
  }
  .nav-download,
  .primary-menu a[href*=booklet] {
    min-width: 168px;
    min-height: 44px;
  }
  .hero-copy {
    top: 210px;
  }
  .hero-actions {
    margin-top: 42px;
  }
  .impact-inner,
  .roots-inner {
    grid-template-columns: 1fr;
    row-gap: 44px;
    width: min(100% - 48px, 720px);
  }
  .impact {
    padding: 105px 0 90px;
  }
  .copy-block,
  .roots-copy {
    padding-top: 0;
  }
  .roots {
    min-height: auto;
    padding: 98px 0;
  }
  .roots-left p {
    margin: 34px 0 32px;
  }
  .resource-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    width: min(100%, 620px);
  }
}
@media (max-width: 720px) {
  .hero {
    height: 650px;
    background-position: 49% top;
  }
  .site-header {
    align-items: center;
  }
  .nav-links a:not(.nav-download) {
    display: none;
  }
  .nav-links .primary-menu li:not(:last-child) {
    display: none;
  }
  .nav-download,
  .primary-menu a[href*=booklet] {
    min-width: 148px;
    min-height: 40px;
    font-size: 12px;
  }
  .logo-link {
    width: 112px;
  }
  .hero-copy {
    top: 198px;
  }
  .hero h1 {
    font-size: clamp(5.1rem, 22vw, 8.5rem);
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .button,
  .button-primary,
  .button-secondary,
  .button-light {
    width: min(100%, 310px);
    min-width: 0;
    min-height: 56px;
    padding: 0 24px;
    font-size: 14px;
  }
  .impact h2,
  .roots h2 {
    font-size: clamp(4.2rem, 17vw, 6.2rem);
  }
  .copy-block h3,
  .mission h2 {
    font-size: 24px;
  }
  .copy-block p,
  .roots-left p,
  .resource-card small {
    font-size: 17px;
    line-height: 1.65;
  }
  .mission {
    padding: 64px 24px 40px;
  }
  .resource-card {
    grid-template-columns: 72px minmax(0, 1fr) 22px;
    gap: 18px;
  }
  .resource-card img {
    width: 72px;
    height: 72px;
  }
  .resource-card strong {
    font-size: 18px;
  }
}
