:root {
  --ink: #122218;
  --paper: #f4f0e6;
  --cream: #fbf8ef;
  --leaf: #203d2e;
  --leaf-deep: #10251a;
  --berry: #436fbe;
  --berry-pale: #a9bee6;
  --gold: #d9a853;
  --line: rgba(18, 34, 24, 0.2);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

.section-pad { padding: 8rem clamp(1.25rem, 7vw, 8rem); }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1.1rem clamp(1.25rem, 4vw, 4.75rem);
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.05;
}

.brand img {
  width: 2.7rem;
  height: 2.7rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

nav { display: flex; gap: 2rem; }

nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.4rem;
  height: 1px;
  background: white;
  transition: right 180ms ease;
}

nav a:hover::after,
nav a:focus-visible::after { right: 0; }

.header-cta {
  justify-self: end;
  padding-bottom: 0.35rem;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--gold);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  isolation: isolate;
}

.hero-image,
.hero-wash {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-image {
  background: url("/images/blueberry-barrens.jpg") center 58% / cover no-repeat;
  transform: scale(1.015);
}

.hero-wash {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 34, 23, 0.88) 0%, rgba(12, 34, 23, 0.62) 42%, rgba(12, 34, 23, 0.12) 77%),
    linear-gradient(0deg, rgba(9, 24, 16, 0.52), transparent 54%);
}

.hero-content {
  width: min(760px, calc(100% - 2.5rem));
  margin-left: clamp(1.25rem, 8vw, 9rem);
  padding-top: 7rem;
  padding-bottom: 6rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.4rem;
  color: var(--berry);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 2px;
  background: currentColor;
}

.eyebrow-light { color: #e8c982; }

h1,
h2,
h3,
p { overflow-wrap: break-word; }

h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 7.2vw, 7.15rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

h1 em {
  color: #cbd9ad;
  font-weight: 400;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.75rem, 5.2vw, 5.7rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-copy {
  max-width: 615px;
  margin: 1.65rem 0 0;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  gap: 1.6rem;
  border-color: var(--gold);
  background: var(--gold);
  color: #18261d;
}

.button-secondary { backdrop-filter: blur(8px); }

.hero-fact {
  position: absolute;
  right: clamp(1.25rem, 5vw, 5.5rem);
  bottom: 4.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(244, 240, 230, 0.94);
  color: var(--ink);
  box-shadow: 0 1.2rem 4rem rgba(0, 0, 0, 0.18);
}

.hero-fact strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1;
}

.hero-fact span {
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  left: clamp(1.25rem, 4vw, 4.75rem);
  bottom: 1.4rem;
  display: flex;
  gap: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mission {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem 7vw;
  background: var(--cream);
  overflow: hidden;
}

.section-number {
  position: absolute;
  top: 6rem;
  right: clamp(1.25rem, 4vw, 4rem);
  color: rgba(18, 34, 24, 0.18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.mission-intro h2 { max-width: 720px; }

.mission-copy {
  align-self: end;
  max-width: 620px;
  padding-bottom: 0.7rem;
}

.mission-copy p,
.berry-copy > p,
.collective-copy > p,
.momentum-heading > p {
  margin: 0 0 1.25rem;
  color: #415046;
  font-size: 1rem;
  line-height: 1.7;
}

.lead {
  color: var(--ink) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.85rem) !important;
  line-height: 1.38 !important;
}

.promise-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 4.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.promise-card {
  min-height: 250px;
  padding: 2rem;
  border-right: 1px solid var(--line);
}

.promise-card:last-child { border-right: 0; }
.promise-card span { color: var(--berry); font-size: 0.7rem; font-weight: 800; }
.promise-card h3 { margin: 3rem 0 0.8rem; font-size: 1.6rem; }
.promise-card p { margin: 0; color: #526057; font-size: 0.94rem; line-height: 1.55; }

.land { background: var(--leaf-deep); color: white; }

.land-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.7fr);
  gap: 6vw;
  align-items: end;
  padding-bottom: 5rem;
}

.land-heading h2 { max-width: 900px; }
.land-heading > p { margin: 0 0 0.5rem; color: #c6d0c9; line-height: 1.7; }

.land-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.65fr);
  margin: 0 clamp(1.25rem, 4vw, 4rem);
}

.land-visual > img { width: 100%; height: 660px; object-fit: cover; }

.land-stats {
  display: grid;
  background: var(--berry);
}

.land-stats article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  gap: 0.25rem 0.6rem;
  padding: 2rem clamp(1.5rem, 3vw, 3rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.land-stats article:last-child { border-bottom: 0; }
.land-stats strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.4rem, 5vw, 5.5rem); font-weight: 400; line-height: 0.85; }
.land-stats span { align-self: end; padding-bottom: 0.45rem; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.land-stats p { grid-column: 1 / -1; margin: 0.6rem 0 0; color: #e1e9f7; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }

.habitat-row {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 4vw;
  padding-top: 5rem;
  padding-bottom: 6rem;
}

.habitat-kicker { margin: 0; color: #aebbb2; font-family: Georgia, "Times New Roman", serif; font-size: 1.3rem; line-height: 1.35; }
.habitat-list { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.habitat-list span { padding: 0.8rem 1rem; border: 1px solid rgba(255, 255, 255, 0.28); border-radius: 999px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.035em; }

.berry-story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 8vw;
  align-items: center;
}

.berry-photo { position: relative; }
.berry-photo img { width: 100%; height: min(760px, 75vw); object-fit: cover; }
.berry-photo span { position: absolute; left: -2.5rem; bottom: 4rem; max-width: 245px; padding: 1rem; background: var(--gold); color: #1a2d20; font-size: 0.7rem; font-weight: 800; line-height: 1.4; letter-spacing: 0.05em; text-transform: uppercase; }
.berry-copy h2 { margin-bottom: 2rem; }

.fact-list { margin-top: 3rem; border-top: 1px solid var(--line); }
.fact-list article { display: grid; grid-template-columns: 0.55fr 1fr; gap: 1.5rem; align-items: center; padding: 1.3rem 0; border-bottom: 1px solid var(--line); }
.fact-list strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4vw, 3.9rem); font-weight: 400; color: var(--berry); }
.fact-list p { margin: 0; color: #4a594f; font-size: 0.9rem; line-height: 1.5; }

.collective {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 7vw;
  align-items: center;
  background: var(--berry);
  color: white;
}

.section-number-light { color: rgba(255, 255, 255, 0.32); }
.collective-photo img { width: 100%; height: min(720px, 70vw); object-fit: cover; object-position: 48% center; }
.collective-copy h2 { margin-bottom: 2rem; }
.collective-copy > p { color: #e3eaf7; }
.collective-copy blockquote { margin: 3rem 0 0; padding: 2rem 0 0 2rem; border-top: 1px solid rgba(255, 255, 255, 0.35); border-left: 3px solid var(--gold); color: white; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.2rem, 2vw, 1.75rem); font-style: italic; line-height: 1.5; }

.momentum { background: var(--cream); }
.momentum-heading { display: grid; grid-template-columns: 1.2fr 0.7fr; gap: 7vw; align-items: end; }
.momentum-heading > p { margin-bottom: 0.5rem; }

.funding-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  margin-top: 5rem;
  border: 1px solid var(--line);
}

.funding-total { padding: clamp(2rem, 5vw, 5rem); background: var(--leaf); color: white; }
.funding-total > span { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.funding-total strong { display: block; margin: 1.5rem 0 2rem; color: #d7e5ba; font-family: Georgia, "Times New Roman", serif; font-size: clamp(4.5rem, 9vw, 8.2rem); font-weight: 400; line-height: 0.82; }
.funding-total p { margin: 0; color: #c1cdc5; font-size: 0.9rem; line-height: 1.55; }
.funding-sources { display: grid; grid-template-columns: 1fr 1fr; }
.funding-sources article { display: flex; flex-direction: column; justify-content: space-between; min-height: 210px; padding: 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.funding-sources article:nth-child(even) { border-right: 0; }
.funding-sources article:nth-child(n+3) { border-bottom: 0; }
.funding-sources strong { color: var(--berry); font-family: Georgia, "Times New Roman", serif; font-size: 2.5rem; font-weight: 400; }
.funding-sources span { max-width: 230px; font-size: 0.75rem; font-weight: 700; line-height: 1.4; letter-spacing: 0.04em; text-transform: uppercase; }

.community-strip { display: grid; grid-template-columns: 1.25fr 0.75fr 0.75fr; gap: 0.8rem; margin-top: 7rem; }
.community-image { position: relative; margin: 0; overflow: hidden; }
.community-image img { width: 100%; height: 430px; object-fit: cover; transition: transform 450ms ease; }
.community-image:hover img { transform: scale(1.025); }
.community-image figcaption { position: absolute; left: 0.8rem; bottom: 0.8rem; padding: 0.65rem 0.8rem; background: rgba(16, 37, 26, 0.9); color: white; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }

.partners {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
  background: var(--leaf);
  color: white;
}

.partners h2 { max-width: 560px; }
.partner-list { border-top: 1px solid rgba(255, 255, 255, 0.27); }
.partner-list article { display: grid; grid-template-columns: 2.4rem 0.8fr 1.2fr; gap: 1.5rem; align-items: center; padding: 1.5rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.27); }
.partner-list span { color: #aabcae; font-size: 0.7rem; }
.partner-list h3 { margin: 0; font-size: 1.35rem; }
.partner-list p { margin: 0; color: #bdc9c0; font-size: 0.84rem; line-height: 1.5; }

.cta {
  position: relative;
  padding: 9rem 1.25rem;
  background: var(--gold);
  text-align: center;
  overflow: hidden;
}

.cta::before,
.cta::after { content: ""; position: absolute; width: 18rem; height: 18rem; border: 1px solid rgba(18, 34, 24, 0.22); border-radius: 50%; }
.cta::before { top: -9rem; left: -4rem; }
.cta::after { right: -4rem; bottom: -10rem; }
.cta .eyebrow { justify-content: center; color: var(--ink); }
.cta-mark { margin-bottom: 2rem; font-size: 2rem; }
.cta h2 { font-size: clamp(3.7rem, 8vw, 8rem); }
.cta > p:not(.eyebrow) { max-width: 620px; margin: 1.5rem auto 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.25rem; line-height: 1.5; }
.cta-actions { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 2rem; margin-top: 2.5rem; }
.button-dark { gap: 2rem; border-color: var(--ink); background: var(--ink); color: white; }
.text-link { padding-bottom: 0.25rem; border-bottom: 1px solid var(--ink); text-decoration: none; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 4rem;
  align-items: end;
  padding: 4rem clamp(1.25rem, 5vw, 5rem);
  background: #0b1710;
  color: white;
}

.footer-brand { display: inline-flex; align-items: center; gap: 1rem; width: max-content; text-decoration: none; font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; line-height: 1.02; }
.footer-brand img { width: 5.2rem; height: 5.2rem; object-fit: contain; filter: brightness(0) invert(1); }
.footer-contact { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-contact p,
.footer-contact a,
.footer-meta p { margin: 0; color: #aeb9b1; font-size: 0.75rem; line-height: 1.45; }
.footer-meta { text-align: right; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .brand span { max-width: 10rem; }
  .hero-content { margin-left: clamp(1.25rem, 6vw, 4rem); }
  .mission,
  .land-heading,
  .berry-story,
  .collective,
  .momentum-heading,
  .partners { grid-template-columns: 1fr; }
  .mission-copy { max-width: 720px; }
  .promise-grid { margin-top: 2rem; }
  .berry-photo { max-width: 760px; }
  .berry-photo img { height: 680px; }
  .collective-photo img { height: 650px; }
  .community-strip { grid-template-columns: 1fr 1fr; }
  .community-strip .image-wide { grid-column: 1 / -1; }
  .partner-list article { grid-template-columns: 2.4rem 0.8fr 1.2fr; }
}

@media (max-width: 760px) {
  .section-pad { padding: 6rem 1.25rem; }
  .site-header { padding-inline: 1rem; }
  .brand img { width: 2.25rem; height: 2.25rem; }
  .brand span { font-size: 0.78rem; max-width: 8rem; }
  .header-cta { font-size: 0.62rem; }
  .hero-image { background-position: 59% center; }
  .hero-wash { background: linear-gradient(90deg, rgba(11, 31, 21, 0.9), rgba(11, 31, 21, 0.35)); }
  .hero-content { padding-top: 7.5rem; padding-bottom: 10rem; }
  h1 { font-size: clamp(3rem, 15vw, 4.25rem); }
  h2 { font-size: clamp(2.6rem, 12vw, 4rem); }
  .hero-fact { right: 1rem; bottom: 3.6rem; }
  .scroll-cue { display: none; }
  .promise-grid { grid-template-columns: 1fr; }
  .promise-card { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .promise-card:last-child { border-bottom: 0; }
  .promise-card h3 { margin-top: 1.7rem; }
  .land-heading { padding-bottom: 3rem; }
  .land-visual { grid-template-columns: 1fr; margin-inline: 1rem; }
  .land-visual > img { height: 440px; }
  .land-stats { grid-template-columns: 1fr; }
  .land-stats article { min-height: 180px; }
  .habitat-row { grid-template-columns: 1fr; padding-top: 3.5rem; }
  .berry-photo img,
  .collective-photo img { height: 520px; }
  .berry-photo span { left: -0.5rem; bottom: 1.5rem; }
  .fact-list article { grid-template-columns: 1fr; gap: 0.4rem; }
  .funding-panel { grid-template-columns: 1fr; }
  .funding-sources { grid-template-columns: 1fr; }
  .funding-sources article,
  .funding-sources article:nth-child(even),
  .funding-sources article:nth-child(n+3) { min-height: 170px; border-right: 0; border-bottom: 1px solid var(--line); }
  .funding-sources article:last-child { border-bottom: 0; }
  .community-strip { grid-template-columns: 1fr; }
  .community-strip .image-wide { grid-column: auto; }
  .community-image img { height: 380px; }
  .partner-list article { grid-template-columns: 2rem 1fr; }
  .partner-list p { grid-column: 2; }
  footer { grid-template-columns: 1fr; gap: 2rem; }
  .footer-meta { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; }
}

