@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/fraunces-full-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/fraunces-full-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("assets/fonts/manrope-wght-normal.woff2") format("woff2");
}

:root {
  --green-deep: #143a1d;
  --green: #1f5b2c;
  --green-mid: #2d7a3e;
  --gold: #d9a441;
  --gold-light: #e8c373;
  --gold-soft: #f0d99a;
  --cream: #f6efdf;
  --cream-light: #faf5e8;
  --paper: #fbf8f0;
  --ink: #1a1f1a;
  --ink-soft: #4a524a;
  --ink-mute: #70786e;
  --line: rgba(20, 58, 29, .16);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
html {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--green-deep);
}
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--green-deep); }
::-webkit-scrollbar-thumb {
  min-height: 56px;
  border: 3px solid var(--green-deep);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-soft); }
::-webkit-scrollbar-corner { background: var(--green-deep); }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input { font: inherit; }
button { cursor: pointer; }
.container { width: min(100%, var(--container)); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(80px, 12vh, 140px); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 8px;
  background: white;
  color: var(--green-deep);
  font-weight: 700;
}
.skip-link:focus { transform: none; }

.eyebrow, .hero-kicker, .supporters-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow span, .supporters-kicker span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.section-title {
  max-width: 22ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.02;
}
.section-title em { color: var(--green); font-style: italic; }
.section-head { margin-bottom: clamp(48px, 8vh, 80px); }
.section-copy { max-width: 48ch; margin: 0; color: var(--ink-soft); line-height: 1.75; }
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.btn span { transition: transform .3s var(--ease); }
.btn:hover span { transform: translateX(4px); }
.btn:hover { transform: translateY(-2px); }
.btn-gold { color: var(--green-deep); background: var(--gold); box-shadow: 0 14px 38px rgba(7, 27, 11, .25); }
.btn-gold:hover { background: var(--gold-light); }
.btn-primary { color: var(--cream-light); background: var(--green); }
.btn-primary:hover { background: var(--green-deep); }

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--gutter);
  transition: padding .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.nav.scrolled {
  padding-block: 13px;
  background: rgba(20, 58, 29, .94);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .1);
  backdrop-filter: blur(14px);
}
.brand img { width: auto; height: 32px; }
.nav-links { display: flex; align-items: center; gap: 6px; padding: 0; margin: 0; list-style: none; }
.nav-links a {
  display: block;
  padding: 10px 15px;
  color: var(--cream-light);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  opacity: .9;
}
.nav-links a:hover, .nav-links a:focus-visible { opacity: 1; }
.nav-links .nav-cta {
  margin-left: 6px;
  padding-inline: 20px;
  border-radius: 999px;
  color: var(--green-deep);
  background: var(--gold);
  opacity: 1;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--cream-light);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  overflow: hidden;
  color: white;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/images/hero.webp") center 18% / cover no-repeat;
  animation: hero-zoom 18s ease-out both;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20, 58, 29, .22), rgba(20, 58, 29, .1) 13%, rgba(20, 58, 29, .6) 38%, rgba(20, 58, 29, .97));
}
.hero-content {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding: 150px var(--gutter) 110px;
}
.hero-kicker { color: var(--gold-soft); animation: fade-up 1s var(--ease) .1s both; }
.hero h1 {
  max-width: 18ch;
  margin: 0 0 28px;
  color: white;
  font-family: var(--serif);
  font-size: clamp(52px, 8.4vw, 124px);
  font-weight: 380;
  letter-spacing: -.03em;
  line-height: .96;
  text-shadow: 0 3px 30px rgba(4, 20, 9, .45);
  animation: fade-up 1.1s var(--ease) .2s both;
}
.hero h1 span { display: block; }
.hero h1 em { color: var(--gold-soft); font-style: italic; }
.hero-sub {
  max-width: 57ch;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  text-shadow: 0 2px 14px rgba(4, 20, 9, .55);
  animation: fade-up 1.1s var(--ease) .35s both;
}
.hero .btn { animation: fade-up 1.1s var(--ease) .5s both; }
.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.scroll-cue i { position: relative; width: 1px; height: 42px; overflow: hidden; background: rgba(255, 255, 255, .25); }
.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: -100% 0 auto;
  height: 100%;
  background: var(--gold);
  animation: scroll-line 2.2s ease-in-out infinite;
}

.problem { position: relative; overflow: hidden; background: var(--cream); }
.problem::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -180px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(217, 164, 65, .18), transparent 68%);
}
.problem-grid { display: grid; grid-template-columns: .8fr 1.35fr; gap: clamp(48px, 8vw, 120px); align-items: center; }
.problem-label { display: flex; flex-direction: column; align-items: flex-start; }
.number {
  margin-bottom: 22px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 96px;
  font-style: italic;
  line-height: .85;
}
.problem-intro { max-width: 34ch; margin: 0; color: var(--ink-soft); font-size: 15px; }
.problem-text {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 390;
  letter-spacing: -.018em;
  line-height: 1.17;
}
.problem-text em { color: var(--green); }
.problem-tags { margin: 36px 0 0; border-top: 1px solid rgba(20, 58, 29, .22); }
.problem-tags div { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; padding: 15px 0; border-bottom: 1px solid rgba(20, 58, 29, .22); }
.problem-tags dt { color: var(--green-deep); font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.problem-tags dd { margin: 0; color: var(--green); font-family: var(--serif); font-size: clamp(24px, 2.6vw, 36px); font-style: italic; }

.solution { background: var(--paper); }
.solution-head { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: clamp(40px, 6vw, 80px); margin-bottom: clamp(60px, 9vh, 100px); }
.promises { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.promise { padding: 40px 30px; border-right: 1px solid var(--line); transition: background .4s var(--ease); }
.promise:last-child { border-right: 0; }
.promise:hover { background: var(--cream-light); }
.promise .num { display: block; margin-bottom: 34px; color: var(--gold); font-family: var(--serif); font-style: italic; }
.promise h3 {
  margin: 0 0 14px;
  color: var(--green-deep);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 420;
  line-height: 1.16;
}
.promise p { margin: 0; color: var(--ink-soft); font-size: 14.5px; line-height: 1.65; }

.field { position: relative; overflow: hidden; color: var(--cream-light); background: var(--green-deep); }
.field::after {
  content: "";
  position: absolute;
  left: -160px;
  bottom: -250px;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(217, 164, 65, .1), transparent 68%);
  pointer-events: none;
}
.field .eyebrow { color: var(--gold); }
.field .section-title { color: var(--cream-light); }
.field .section-title em { color: var(--gold-soft); }
.field-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; grid-template-rows: 320px 320px; gap: 16px; }
.field-img { position: relative; margin: 0; overflow: hidden; border-radius: 4px; }
.field-img::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(3, 17, 7, .62)); pointer-events: none; }
.field-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.field-img:hover img { transform: scale(1.045); }
.field-img figcaption {
  position: absolute;
  z-index: 1;
  left: 17px;
  right: 17px;
  bottom: 15px;
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.field-img-big { grid-row: 1 / span 2; }
.field-img-wide { grid-column: 2 / span 2; }
.field-quote { max-width: 35ch; margin: clamp(50px, 8vh, 80px) 0 0; padding-left: 24px; border-left: 2px solid var(--gold); }
.field-quote p { margin: 0; font-family: var(--serif); font-size: clamp(25px, 2.8vw, 36px); font-style: italic; line-height: 1.35; }
.field-quote cite { display: block; margin-top: 16px; color: var(--gold-soft); font-family: var(--sans); font-size: 12px; font-style: normal; letter-spacing: .18em; text-transform: uppercase; }

.we { background: var(--paper); }
.we-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(48px, 7vw, 96px); align-items: center; }
.we-photo-frame { position: relative; }
.we-photo-frame::before { content: ""; position: absolute; inset: -16px 16px 16px -16px; z-index: -1; border: 1px solid var(--green); border-radius: 4px; }
.we-photo { aspect-ratio: 4 / 5; overflow: hidden; border-radius: 4px; }
.we-photo img { width: 100%; height: 100%; object-fit: cover; }
.we-content h2, .newsletter-text h2 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 400;
  letter-spacing: -.022em;
  line-height: 1.04;
}
.we-content h2 em, .newsletter-text h2 em { color: var(--green); }
.we-content > p:not(.eyebrow):not(.signature) { margin: 0 0 20px; color: var(--ink-soft); line-height: 1.72; }
.we-content strong { color: var(--ink); }
.signature { display: flex; align-items: center; gap: 16px; margin: 34px 0 0; color: var(--green); font-family: var(--serif); font-size: 22px; font-style: italic; }
.signature::before { content: ""; width: 40px; height: 1px; background: var(--green); }

.journey { background: var(--cream); }
.journey .section-head { margin-bottom: 54px; }
.journey-title { font-size: clamp(32px, 4vw, 50px); }
.journey-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.journey-step { display: flex; flex-direction: column; }
.journey-image { aspect-ratio: 4 / 3; margin-bottom: 17px; overflow: hidden; border-radius: 4px; }
.journey-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.journey-step:hover img { transform: scale(1.045); }
.step-label { margin: 0 0 13px; color: var(--gold); font-family: var(--serif); font-style: italic; }
.step-label span { margin-left: 10px; color: var(--green); font-family: var(--sans); font-size: 13px; font-style: normal; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.journey-step h3 { margin: 0 0 10px; color: var(--green-deep); font-family: var(--serif); font-size: 25px; font-weight: 430; }
.journey-step > p:last-child { margin: 0; color: var(--ink-soft); font-size: 15px; }

.newsletter { position: relative; overflow: hidden; background: var(--paper); }
.newsletter::before {
  content: "";
  position: absolute;
  top: -130px;
  right: -120px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(217, 164, 65, .17), transparent 70%);
}
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 7vw, 100px); align-items: center; }
.newsletter-img { aspect-ratio: 5 / 4; overflow: hidden; border-radius: 4px; }
.newsletter-img img { width: 100%; height: 100%; object-fit: cover; }
.newsletter-text > p:not(.eyebrow) { max-width: 46ch; margin: 0 0 30px; color: var(--ink-soft); }
.newsletter-form { max-width: 540px; }
.form-row { display: flex; gap: 10px; }
.form-row input {
  min-width: 0;
  flex: 1;
  min-height: 54px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
  color: var(--ink);
  background: white;
}
.form-row input:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(31, 91, 44, .12); }
.consent { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; margin-top: 16px; color: var(--ink-soft); font-size: 12px; line-height: 1.5; }
.consent input { width: 16px; height: 16px; margin-top: 1px; accent-color: var(--green); }
.consent a { text-underline-offset: 2px; }
.form-note { margin: 12px 0 0; color: var(--ink-mute); font-size: 12px; }
.form-status { min-height: 24px; margin: 10px 0 0; color: var(--green-deep); font-size: 13px; font-weight: 600; }
.form-status.error { color: #9d2d25; }
.newsletter-form.is-success .form-row, .newsletter-form.is-success .consent, .newsletter-form.is-success .form-note { display: none; }

.supporters { padding: 58px var(--gutter) 62px; text-align: center; background: white; border-top: 1px solid rgba(0, 0, 0, .06); }
.supporters-kicker { justify-content: center; margin-bottom: 12px; color: var(--ink-mute); font-size: 11px; }
.supporters h2 { margin: 0 0 36px; color: var(--green-deep); font-family: var(--serif); font-size: clamp(20px, 2.4vw, 27px); font-weight: 400; }
.supporters h2 em { color: var(--green); }
.supporters-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 34px 54px; }
.supporters-row img { width: auto; max-width: 230px; max-height: 58px; object-fit: contain; }

.footer { padding: 80px 0 30px; color: var(--cream-light); background: var(--green-deep); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 54px; border-bottom: 1px solid rgba(251, 248, 240, .17); }
.footer-brand > img { width: auto; height: 44px; margin-bottom: 22px; }
.footer-brand > p { max-width: 38ch; margin: 0; color: rgba(251, 248, 240, .76); font-size: 15px; }
.footer-brand strong { color: var(--gold-soft); }
.footer h2 { margin: 0 0 18px; color: var(--gold-soft); font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.footer ul { display: flex; flex-direction: column; gap: 8px; margin: 0; padding: 0; list-style: none; }
.footer li a { color: rgba(251, 248, 240, .82); text-decoration: none; font-size: 15px; }
.footer li a:hover { color: var(--gold-soft); }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(251, 248, 240, .22); border-radius: 50%; color: var(--cream-light); transition: transform .25s ease, color .25s ease, border-color .25s ease; }
.socials a:hover { transform: translateY(-2px); border-color: var(--gold); color: var(--gold-soft); }
.socials svg { width: 17px; height: 17px; fill: currentColor; }
.socials svg rect, .socials svg circle { fill: none; stroke: currentColor; stroke-width: 1.8; }
.socials svg .fill { fill: currentColor; stroke: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 28px; color: rgba(251, 248, 240, .65); font-size: 13px; }
@keyframes hero-zoom { from { transform: scale(1.04); } to { transform: scale(1); } }
@keyframes fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes scroll-line { 0% { transform: translateY(0); } 75%, 100% { transform: translateY(200%); } }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: var(--gutter);
    display: none;
    min-width: 230px;
    padding: 14px;
    border-radius: 12px;
    background: var(--paper);
    box-shadow: 0 18px 50px rgba(5, 25, 10, .22);
  }
  .nav-links.open { display: block; }
  .nav-links a { color: var(--ink); }
  .nav-links .nav-cta { margin: 7px 0 0; color: var(--green-deep); text-align: center; }
  .hero-bg { background-image: url("assets/images/hero-mobile.webp"); background-position: center 24%; }
  .problem-grid, .solution-head, .we-grid, .newsletter-inner { grid-template-columns: 1fr; }
  .problem-grid { gap: 34px; }
  .promises { grid-template-columns: 1fr 1fr; }
  .promise:nth-child(2) { border-right: 0; }
  .promise:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .field-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 290px 290px 290px; }
  .field-img-big { grid-column: 1 / span 2; grid-row: 1; }
  .field-img-wide { grid-column: 1 / span 2; grid-row: 3; }
  .we-photo-frame { width: min(100%, 500px); }
  .journey-strip { grid-template-columns: 1fr; gap: 36px; }
  .journey-step { display: grid; grid-template-columns: minmax(210px, .8fr) 1fr; column-gap: 28px; align-items: start; }
  .journey-image { grid-row: 1 / span 3; margin: 0; }
  .step-label { margin-top: 10px; }
  .newsletter-img { width: min(100%, 700px); }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .nav { padding-block: 15px; }
  .brand img { height: 29px; }
  .hero-content { padding-bottom: 88px; }
  .hero h1 { font-size: clamp(43px, 12.2vw, 68px); }
  .hero-kicker { font-size: 10px; }
  .scroll-cue { display: none; }
  .number { font-size: 72px; }
  .problem-tags div { align-items: center; }
  .promises { grid-template-columns: 1fr; }
  .promise { border-right: 0; border-bottom: 1px solid var(--line); }
  .promise:nth-child(3) { border-bottom: 1px solid var(--line); }
  .promise:last-child { border-bottom: 0; }
  .field-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 240px); }
  .field-img-big, .field-img-wide { grid-column: auto; grid-row: auto; }
  .journey-step { display: flex; }
  .journey-image { width: 100%; }
  .step-label { margin-top: 0; }
  .form-row { flex-direction: column; }
  .form-row .btn { width: 100%; }
  .supporters-row { gap: 26px 34px; }
  .supporters-row img { max-width: 170px; max-height: 46px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
