:root {
  --forest-950: #0b211c;
  --forest-900: #102d26;
  --forest-800: #174136;
  --forest-700: #245746;
  --gold: #c6a45c;
  --gold-bright: #ddc17c;
  --cream: #f7f3e9;
  --paper: #fffdf8;
  --ink: #17221f;
  --muted: #66716c;
  --line: rgba(16, 45, 38, 0.16);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
  --shadow: 0 30px 80px rgba(8, 26, 22, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, video, iframe { display: block; width: 100%; }
a { color: inherit; }
h1, h2, p { margin-top: 0; }
h1, h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
}
h1 { font-size: clamp(3.25rem, 7.6vw, 7rem); }
h2 { font-size: clamp(2.5rem, 5vw, 4.75rem); }
p { font-size: clamp(1rem, 1.4vw, 1.125rem); }

.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;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: white;
  color: var(--forest-900);
  border-radius: 0.25rem;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem clamp(1.25rem, 4vw, 4rem);
  color: white;
  transition: background 220ms ease, padding 220ms ease, box-shadow 220ms ease;
}
.site-header.scrolled {
  padding-block: 0.8rem;
  background: rgba(11, 33, 28, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
}
.wordmark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
.brand-logo { display: block; width: auto; }
.brand-logo-header {
  width: clamp(8rem, 11vw, 9.25rem);
  height: auto;
  opacity: 0.96;
}
.site-header > nav { display: flex; align-items: center; gap: 2rem; }
.site-header > nav a {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}
.site-header > nav a:hover { color: var(--gold-bright); }
.nav-cta {
  padding: 0.6rem 1rem;
  color: #fff;
  background: rgba(11, 33, 28, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 99px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.22);
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}
.site-header > nav .nav-cta:hover,
.site-header > nav .nav-cta:focus-visible {
  color: var(--forest-950);
  background: #fff;
  border-color: #fff;
  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.28);
  transform: translateY(-1px);
}
.menu-button, .site-header > nav.mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: min(900px, 100svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--forest-950);
}
.hero-image, .hero-video, .support > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}
.hero-image { object-position: 50% 52%; transform: scale(1.02); }
.hero-video { object-position: 50% 50%; }
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 21, 17, 0.9) 0%, rgba(5, 21, 17, 0.53) 46%, rgba(5, 21, 17, 0.14) 76%),
    linear-gradient(0deg, rgba(5, 21, 17, 0.65), transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, 92%);
  padding: clamp(9rem, 18vh, 13rem) clamp(1.5rem, 7vw, 7rem) clamp(5rem, 10vh, 7rem);
}
.eyebrow {
  margin-bottom: 1.2rem;
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}
.eyebrow-dark { color: #8a6d30; }
.hero h1 { margin-bottom: 1.5rem; text-wrap: balance; }
.hero h1 em {
  display: block;
  max-width: 12ch;
  color: var(--gold-bright);
  font-size: 0.72em;
  font-style: italic;
  line-height: 1.08;
}
.hero-copy { max-width: 680px; margin-bottom: 2rem; color: rgba(255,255,255,0.86); }
.hero-actions, .support-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.35rem; }
.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-light { color: var(--forest-950); background: white; }
.button-light:hover { background: var(--gold-bright); }
.button-gold { color: var(--forest-950); background: var(--gold-bright); }
.button-gold:hover { background: white; }
.play-icon { font-size: 0.78rem; }
.text-link {
  font-weight: 700;
  text-underline-offset: 0.3em;
  text-decoration-thickness: 1px;
}
.text-link-light { color: white; }
.image-credit {
  position: absolute;
  right: 1.25rem;
  bottom: 1rem;
  z-index: 2;
  margin: 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
}

.section { padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 6rem); }
.section-heading { max-width: 760px; margin: 0 auto 3rem; text-align: center; }
.section-heading h2 { margin-bottom: 1.35rem; }
.section-heading > p:last-child { max-width: 670px; margin-inline: auto; color: var(--muted); }
.story { background: var(--cream); }
.film-frame {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0.65rem;
  background: white;
  box-shadow: var(--shadow);
}
.film-frame video { aspect-ratio: 16 / 9; background: var(--forest-950); }
.film-meta {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0.35rem 0.15rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.impact {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(3rem, 8vw, 8rem);
  color: white;
  background: var(--forest-900);
}
.impact-intro { align-self: center; max-width: 540px; }
.impact-intro p:last-child { color: rgba(255,255,255,0.68); }
.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-left: 1px solid rgba(255,255,255,0.18);
}
.impact-grid div {
  min-height: 15rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  border-right: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.impact-grid dt {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 5.7rem);
  line-height: 1;
}
.impact-grid dd { margin: 1.5rem 0 0; color: rgba(255,255,255,0.74); }

.ministries { background: var(--cream); }
.ministries-heading {
  width: min(var(--max), 100%);
  margin: 0 auto 3.5rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
}
.ministries-heading h2 { margin-bottom: 0; }
.ministries-heading > p { margin-bottom: 0.55rem; color: var(--muted); }
.ministry-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.ministry-card {
  position: relative;
  min-height: 26rem;
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 4vw, 3.25rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.38);
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}
.ministry-card:hover { color: white; background: var(--forest-800); transform: translateY(-3px); }
.ministry-number {
  position: absolute;
  top: 1.5rem;
  right: 1.7rem;
  color: #927334;
  font-family: var(--serif);
  font-size: 1rem;
}
.ministry-card:hover .ministry-number { color: var(--gold-bright); }
.ministry-label {
  margin: 0 3rem 1.25rem 0;
  color: #8a6d30;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ministry-card:hover .ministry-label { color: var(--gold-bright); }
.ministry-card h3 {
  margin: 0 0 1.35rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.ministry-card > p:not(.ministry-label) { color: var(--muted); }
.ministry-card:hover > p:not(.ministry-label) { color: rgba(255,255,255,0.74); }
.ministry-link, .ministry-socials {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.ministry-card:hover .ministry-link, .ministry-card:hover .ministry-socials { border-color: rgba(255,255,255,0.2); }
.ministry-link {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}
.ministry-socials { display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; }
.ministry-socials a { font-size: 0.82rem; font-weight: 800; text-underline-offset: 0.25em; }
.ministry-card-wide {
  min-height: auto;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.8fr 1.15fr 0.65fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}
.ministry-card-wide h3, .ministry-card-wide p { margin-bottom: 0; }
.ministry-card-wide .ministry-link { align-self: end; }

.gratitude {
  color: white;
  background:
    radial-gradient(circle at 82% 12%, rgba(197, 158, 74, 0.13), transparent 30rem),
    var(--forest-800);
}
.gratitude-heading {
  width: min(52rem, 100%);
  margin: 0 auto 4rem;
  text-align: center;
}
.gratitude-heading h2 { margin-bottom: 1.5rem; }
.gratitude-heading > p:last-child {
  max-width: 43rem;
  margin-inline: auto;
  color: rgba(255,255,255,0.72);
}
.supporter-list {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.supporter-list li {
  min-height: 6.5rem;
  padding: 1.5rem clamp(1rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-right: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.25;
  text-align: center;
}
.supporter-list strong { font-weight: 400; }
.supporter-list span {
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}
.supporter-list li:nth-child(3n + 1) { border-left: 1px solid rgba(255,255,255,0.2); }
.gratitude-note {
  width: min(47rem, 100%);
  margin: 2rem auto 0;
  color: rgba(255,255,255,0.56);
  font-size: 0.82rem;
  line-height: 1.65;
  text-align: center;
}

.challenge {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}
.challenge-number {
  position: relative;
  width: min(23rem, 80vw);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
}
.challenge-number::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid var(--line);
  border-radius: inherit;
}
.challenge-number span { font-family: var(--serif); font-size: 10rem; line-height: 0.75; }
.challenge-number small { margin-top: 1.2rem; color: #8a6d30; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.challenge-copy h2 { font-size: clamp(2.4rem, 4.2vw, 4.2rem); }
.challenge-copy > p { color: var(--muted); }
.challenge-copy blockquote {
  margin: 2rem 0 0;
  padding: 1.3rem 0 1.3rem 1.5rem;
  border-left: 3px solid var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.35;
}

.vision {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  background: var(--forest-950);
  color: white;
}
.vision-image { min-height: 620px; overflow: hidden; }
.vision-image img { height: 100%; object-fit: cover; }
.vision-copy { display: flex; flex-direction: column; justify-content: center; }
.vision-copy > p:not(.eyebrow) { color: rgba(255,255,255,0.72); }
.feature-list { margin: 2.2rem 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,0.18); }
.feature-list li {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.feature-list strong { color: var(--gold-bright); font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.feature-list span { color: rgba(255,255,255,0.72); }

.funding {
  width: min(1330px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}
.funding-copy p:last-child { color: var(--muted); }
.funding-card { padding: clamp(2rem, 4vw, 3.5rem); color: white; background: var(--forest-800); box-shadow: var(--shadow); }
.funding-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.funding-row span { color: rgba(255,255,255,0.68); }
.funding-row strong { color: var(--gold-bright); font-family: var(--serif); font-size: 2.7rem; font-weight: 400; }
.progress { height: 0.6rem; margin: 1.5rem 0 0.7rem; overflow: hidden; background: rgba(255,255,255,0.14); border-radius: 99px; }
.progress span { display: block; width: 23.81%; height: 100%; background: var(--gold-bright); border-radius: inherit; }
.funding-row-bottom { font-size: 0.86rem; }
.funding-row-bottom strong { color: white; font-size: 1.3rem; }
.funding-card > p { margin: 2rem 0 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.74); }

.support {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
}
.support > img { object-position: center; }
.support-shade { position: absolute; inset: 0; background: rgba(5, 24, 19, 0.78); }
.support-content { position: relative; z-index: 2; width: min(880px, calc(100% - 3rem)); text-align: center; }
.support-content h2 { margin-bottom: 1.4rem; }
.support-content > p:not(.eyebrow) { max-width: 730px; margin-inline: auto; color: rgba(255,255,255,0.8); }
.support-actions { justify-content: center; margin-top: 2rem; }
.support-content small { display: block; margin-top: 1.5rem; color: rgba(255,255,255,0.58); font-size: 0.78rem; }

footer {
  min-height: 12rem;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 3rem clamp(1.5rem, 6vw, 6rem);
  color: var(--muted);
  background: var(--cream);
}
.brand-logo-footer { width: clamp(8.5rem, 12vw, 11rem); }
footer p { margin: 0; font-size: 0.9rem; }
footer div { display: flex; gap: 1.2rem; }
footer div a { color: var(--forest-800); font-size: 0.84rem; font-weight: 700; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .site-header > nav { display: none; }
  .menu-button {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 0.28rem;
    width: 2.8rem;
    height: 2.8rem;
    place-content: center;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 50%;
    color: white;
    background: transparent;
  }
  .menu-button span:not(.sr-only) { width: 1rem; height: 1px; background: currentColor; }
  .site-header > nav.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    opacity: 0;
    pointer-events: none;
    background: var(--forest-950);
    transition: opacity 180ms ease;
  }
  .site-header > nav.mobile-nav.open { opacity: 1; pointer-events: auto; }
  .site-header > .wordmark { position: relative; z-index: 2; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(0.33rem) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-0.33rem) rotate(-45deg); }
  .menu-button span:not(.sr-only) { transition: transform 180ms ease, opacity 180ms ease; }
  .mobile-nav a { font-family: var(--serif); font-size: 2rem; text-decoration: none; }
  .impact, .challenge, .funding, .ministries-heading { grid-template-columns: 1fr; }
  .supporter-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .supporter-list li:nth-child(3n + 1) { border-left: 0; }
  .supporter-list li:nth-child(2n + 1) { border-left: 1px solid rgba(255,255,255,0.2); }
  .impact-intro { max-width: 660px; }
  .challenge-number { width: min(18rem, 70vw); margin-inline: auto; }
  .challenge-number span { font-size: 7rem; }
  .vision { grid-template-columns: 1fr; }
  .vision-image { min-height: 58vw; }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer .wordmark, footer div { justify-content: center; }
}

@media (max-width: 600px) {
  h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .site-header { padding-inline: 1rem; }
  .brand-logo-header { width: 8rem; }
  .hero { min-height: 780px; }
  .hero-image { object-position: 58% 50%; }
  .hero-shade { background: linear-gradient(0deg, rgba(5,21,17,0.96) 0%, rgba(5,21,17,0.68) 58%, rgba(5,21,17,0.28) 100%); }
  .hero-content { width: 100%; padding-inline: 1.35rem; padding-bottom: 4.25rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .image-credit { display: none; }
  .section { padding: 4.5rem 1.25rem; }
  .section-heading { text-align: left; }
  .film-frame { width: calc(100% + 1rem); margin-left: -0.5rem; padding: 0.35rem; }
  .film-meta { font-size: 0.68rem; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-grid div { min-height: 11rem; }
  .ministry-grid { grid-template-columns: 1fr; }
  .ministry-card { min-height: 23rem; }
  .ministry-card-wide { grid-column: auto; display: flex; align-items: stretch; }
  .ministry-card-wide .ministry-link { align-self: stretch; }
  .gratitude-heading { margin-bottom: 2.75rem; text-align: left; }
  .gratitude-heading > p:last-child { margin-inline: 0; }
  .supporter-list { grid-template-columns: 1fr; }
  .supporter-list li, .supporter-list li:nth-child(3n + 1), .supporter-list li:nth-child(2n + 1) {
    min-height: 5.25rem;
    justify-content: flex-start;
    border-left: 1px solid rgba(255,255,255,0.2);
    text-align: left;
  }
  .gratitude-note { text-align: left; }
  .challenge { padding-inline: 1.25rem; }
  .vision-image { min-height: 74vw; }
  .feature-list li { grid-template-columns: 6rem 1fr; }
  .funding { padding-inline: 1.25rem; }
  .funding-card { padding: 1.6rem; }
  .funding-row strong { font-size: 2.1rem; }
  .support { min-height: 680px; }
  footer { padding-inline: 1.25rem; }
  footer div { flex-direction: column; gap: 0.5rem; }
}

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