@import url("https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700&family=Lato:wght@400;700&display=swap");

:root {
  --forest: #30483a;
  --forest-deep: #203328;
  --moss: #697d61;
  --cream: #f4efe4;
  --paper: #fbfaf6;
  --bark: #664c3d;
  --ink: #27342c;
  --muted: #5f6b63;
  --white: #fff;
  --line: #d7ddd3;
  --radius: 18px;
  --shell: 1240px;
  --shadow: 0 12px 32px rgba(41, 57, 47, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Lato", sans-serif;
  font-size: 1.08rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3,
.brand,
.site-nav,
.button,
.text-link,
.card-copy a,
.benefit-list {
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3 {
  color: var(--forest-deep);
  line-height: 1.12;
}

h1 {
  max-width: 14ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.25rem, 5.2vw, 4.5rem);
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.3rem, 3.8vw, 3.25rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  letter-spacing: -0.025em;
}

.shell {
  width: min(calc(100% - 3rem), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: -6rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--forest-deep);
}

.skip-link:focus {
  top: 0.75rem;
}

:focus-visible {
  outline: 3px solid #b17b4d;
  outline-offset: 4px;
}

.site-header {
  background: var(--cream);
  border-bottom: 1px solid rgba(48, 72, 58, 0.12);
}

.header-inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--forest-deep);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  font-size: 0.9rem;
  font-weight: 600;
}

.site-nav a {
  padding-block: 0.4rem;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--moss);
}

.hero {
  padding-block: clamp(4rem, 7vw, 6rem);
  background: var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 5.5rem);
}

.eyebrow {
  margin-bottom: 0.9rem;
  color: var(--moss);
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-support {
  max-width: 38rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.22rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--forest);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--forest-deep);
  transform: translateY(-2px);
}

.text-link,
.card-copy a {
  color: var(--forest-deep);
  font-size: 0.9rem;
  font-weight: 700;
  text-underline-offset: 0.25em;
}

.hero-figure {
  margin: 0;
}

.hero-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero-media img,
.card-media img,
.materials-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section {
  padding-block: clamp(4.5rem, 7vw, 6rem);
}

.section-intro {
  max-width: 48rem;
  margin-bottom: 3rem;
}

.section-intro > p:last-child,
.benefits-heading > p:last-child,
.materials-copy p {
  max-width: 68ch;
  color: var(--muted);
}

.programs {
  background: var(--paper);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.program-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 6px 20px rgba(41, 57, 47, 0.045);
}

.card-media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.program-card img {
  object-fit: cover;
  object-position: center;
}

.card-copy {
  padding: 1.35rem 1.35rem 1.5rem;
}

.card-copy h3 {
  min-height: 3.2em;
  margin-bottom: 0.85rem;
}

.card-copy p {
  min-height: 4.8em;
  margin-bottom: 1.1rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.benefits {
  background: #edf0e9;
}

.benefits-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6rem);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  display: grid;
  min-height: 108px;
  align-content: center;
  gap: 0.75rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
}

.benefit-list span {
  color: var(--moss);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.benefit-list strong {
  color: var(--forest-deep);
  font-size: 1rem;
}

.materials {
  background: var(--cream);
}

.materials-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6rem);
}

.materials-figure {
  margin: 0;
}

.materials-media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.materials-figure img {
  object-fit: cover;
  object-position: center;
}

.materials-copy {
  max-width: 36rem;
}

.materials-copy p {
  margin-bottom: 1rem;
}

.stewardship {
  background: var(--paper);
}

.stewardship-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.stewardship-figure {
  height: 100%;
  margin: 0;
}

.stewardship-media {
  height: 100%;
  min-height: 410px;
  overflow: hidden;
}

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

.stewardship-copy {
  padding: clamp(2rem, 5vw, 4rem);
}

.practice-list {
  margin-top: 1.75rem;
}

.practice-list p {
  position: relative;
  margin-bottom: 0;
  padding: 1rem 0 1rem 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.practice-list p:last-child {
  border-bottom: 1px solid var(--line);
}

.practice-list p::before {
  position: absolute;
  top: 1.65rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--moss);
  content: "";
}

.contact {
  padding-block: clamp(4.5rem, 7vw, 6rem);
  color: var(--white);
  background: var(--forest);
}

.contact h2 {
  color: var(--white);
}

.contact .eyebrow {
  color: #bdc9b7;
}

.contact-inner {
  display: grid;
  max-width: 56rem;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.contact-logo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--cream);
}

.contact-copy {
  text-align: left;
}

.contact-note {
  max-width: 34rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
}

.button-light {
  margin-bottom: 1.35rem;
  color: #14261c;
  background: var(--cream);
}

.button-light:hover {
  color: var(--white);
  background: var(--bark);
}

.contact-email {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.contact a {
  color: var(--white);
  font-weight: 700;
  text-underline-offset: 0.3em;
}

.contact a.button-light {
  color: #14261c;
}

.contact a.button-light:hover {
  color: var(--white);
}

.site-footer {
  padding-block: 1.5rem;
  color: #d7ded8;
  background: var(--forest-deep);
  font-size: 0.8rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner span {
  margin-left: 0.65rem;
  color: #aebbb1;
}

.footer-inner a {
  color: inherit;
  text-underline-offset: 0.2em;
}

@media (max-width: 1080px) {
  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-copy h3,
  .card-copy p {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .hero-grid,
  .benefits-inner,
  .materials-grid,
  .stewardship-card,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .benefits-heading,
  .materials-copy {
    max-width: 44rem;
  }

  .contact-inner {
    justify-items: center;
    text-align: center;
  }

  .contact-logo {
    width: 120px;
    height: 120px;
  }

  .contact-copy {
    text-align: center;
  }

  .contact-note {
    margin-inline: auto;
  }

  .stewardship-media {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .hero-media,
  .materials-media {
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 1rem;
  }

  .shell {
    width: min(calc(100% - 2rem), var(--shell));
  }

  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand span {
    display: block;
    max-width: 5.5rem;
    font-size: 0.78rem;
    line-height: 1.12;
  }

  .site-nav {
    gap: 0.7rem;
    font-size: 0.72rem;
  }

  .hero,
  .section,
  .contact {
    padding-block: 3.5rem;
  }

  h1 {
    font-size: clamp(2.65rem, 12vw, 3.5rem);
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 2.75rem);
  }

  .hero-grid {
    gap: 2.5rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .button {
    width: 100%;
  }

  .program-grid,
  .benefit-list {
    grid-template-columns: 1fr;
  }

  .section-intro {
    margin-bottom: 2rem;
  }

  .card-media,
  .hero-media,
  .materials-media {
    aspect-ratio: 3 / 2;
  }

  .benefit-list li {
    min-height: 92px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-inner span {
    display: block;
    margin: 0.2rem 0 0;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
