:root {
  --deep-teal: #0d2f35;
  --teal: #006a6a;
  --teal-light: #4ddada;
  --sunflower: #fcd400;
  --gold: #e9b80a;
  --coral: #ec8952;
  --leaf: #4caf50;
  --ink: #191c1d;
  --muted: #566163;
  --line: #d9e2e2;
  --paper: #ffffff;
  --surface: #f7f9f7;
  --surface-strong: #edf2f0;
  --shadow: 0 24px 70px rgba(13, 47, 53, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

.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;
}

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

a {
  color: inherit;
}

.js-reveal .reveal-item {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 850ms ease,
    transform 850ms cubic-bezier(0.2, 0.65, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js-reveal .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(13, 47, 53, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 4px 6px;
  border-radius: 8px;
  text-decoration: none;
}

.brand-logo {
  width: auto;
  height: clamp(92px, 7vw, 122px);
  max-width: clamp(220px, 22vw, 340px);
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 30px);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a {
  text-decoration: none;
}

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

.nav-donate,
.button {
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

.nav-donate,
.button.primary {
  background: var(--sunflower);
  color: var(--deep-teal);
}

.nav-donate:hover,
.button.primary:hover {
  background: #ffe66b;
  color: var(--deep-teal);
}

.button.secondary {
  border: 2px solid rgba(13, 47, 53, 0.55);
  color: var(--deep-teal);
}

.button.secondary:hover {
  background: var(--deep-teal);
  color: white;
}

.button.dark {
  background: var(--deep-teal);
  color: white;
}

.button.dark:hover {
  background: #123f47;
}

.nav-toggle {
  display: none;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 6px auto;
  background: var(--sunflower);
}

.hero {
  position: relative;
  min-height: calc(100svh - 112px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #fff4df;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center 28%;
}

.hero-video {
  pointer-events: none;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(255, 252, 244, 0.94) 0%, rgba(255, 248, 229, 0.82) 38%, rgba(255, 248, 229, 0.38) 68%, rgba(255, 248, 229, 0.12) 100%),
    linear-gradient(0deg, rgba(255, 252, 244, 0.5) 0%, rgba(255, 252, 244, 0) 48%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(78px, 9vw, 118px) 0;
}

.hero-copy {
  max-width: 760px;
  color: var(--deep-teal);
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  font-size: clamp(2.55rem, 4.25vw, 4.85rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--deep-teal);
  font-size: clamp(2.35rem, 5vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--deep-teal);
  font-size: 1.24rem;
  line-height: 1.18;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(13, 47, 53, 0.86);
  font-size: clamp(1.02rem, 1.28vw, 1.22rem);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.problem-section,
.solution-section,
.nkw-section,
.growth-section,
.stories-section,
.founders-section,
.victory-section,
.how-section,
.leadership-section,
.difference-section,
.commitment-section,
.serve-section,
.partners-section,
.involvement-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(74px, 10vw, 130px) 0;
}

.section-intro {
  max-width: 790px;
  margin-bottom: 36px;
}

.section-intro.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-intro p,
.solution-copy p,
.nkw-hero p,
.pillar-card p,
.growth-timeline p,
.flow-steps p,
.story-card-grid p,
.founders-copy p,
.leadership-section p,
.program-dashboard p,
.serve-section p,
.involvement-grid p,
.movement-panel p,
.site-footer p,
.site-footer address {
  color: var(--muted);
  font-size: 1.08rem;
}

.choice-line {
  color: var(--deep-teal);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 900;
}

.stat-callout,
.moment-line {
  color: var(--deep-teal);
  font-size: clamp(1.18rem, 2vw, 1.62rem);
  font-weight: 950;
}

.without-grid,
.victory-grid,
.involvement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.without-grid article,
.victory-grid article,
.involvement-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(13, 47, 53, 0.08);
}

.involvement-grid article {
  position: relative;
  min-height: clamp(280px, 22vw, 350px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-color: rgba(13, 47, 53, 0.16);
  background-position: center;
  background-size: cover;
  box-shadow: 0 20px 52px rgba(13, 47, 53, 0.18);
}

.involvement-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 31, 36, 0.96), rgba(7, 31, 36, 0.72) 48%, rgba(7, 31, 36, 0.18) 82%);
}

.involvement-grid article:nth-child(1) {
  background-image: url("assets/sections/involvement-pack-party.jpeg");
}

.involvement-grid article:nth-child(2) {
  background-image: url("assets/sections/involvement-business-ambassador.jpeg");
}

.involvement-grid article:nth-child(3) {
  background-image: url("assets/sections/involvement-volunteer.jpeg");
}

.involvement-grid article:nth-child(4) {
  background-image: url("assets/sections/involvement-partner.jpeg");
}

.involvement-grid article:nth-child(5) {
  background-image: url("assets/sections/involvement-monthly-hope-partner.jpeg");
}

.involvement-grid article > div {
  position: relative;
  z-index: 1;
}

.involvement-grid h3,
.involvement-grid p {
  color: white;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.involvement-grid p {
  color: rgba(255, 255, 255, 0.86);
}

.without-grid article {
  position: relative;
  min-height: clamp(300px, 30vw, 390px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-color: rgba(13, 47, 53, 0.16);
  background-position: center;
  background-size: cover;
  box-shadow: 0 22px 56px rgba(13, 47, 53, 0.18);
}

.without-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(7, 31, 36, 0.94) 0%, rgba(7, 31, 36, 0.72) 42%, rgba(7, 31, 36, 0.18) 78%, rgba(7, 31, 36, 0.06) 100%);
}

.without-grid article:nth-child(1) {
  background-image: url("assets/sections/reliable-meals.jpeg");
}

.without-grid article:nth-child(2) {
  background-image: url("assets/sections/birthday-celebrations.jpeg");
}

.without-grid article:nth-child(3) {
  background-image: url("assets/sections/childhood-experiences.jpeg");
}

.without-grid h3,
.without-grid p {
  position: relative;
  z-index: 1;
  color: white;
}

.without-grid h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.without-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.victory-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.victory-section {
  width: 100%;
  padding-inline: clamp(18px, 5vw, 70px);
  background:
    linear-gradient(135deg, rgba(252, 212, 0, 0.96), rgba(255, 235, 118, 0.9)),
    var(--sunflower);
}

.victory-section > .section-intro,
.victory-section > .victory-grid,
.victory-section > .stat-grid {
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.victory-section > .section-intro {
  margin-bottom: 36px;
}

.victory-section .section-kicker,
.victory-section h2 {
  color: var(--deep-teal);
}

.victory-section .section-intro p {
  color: rgba(13, 47, 53, 0.78);
}

.victory-grid article {
  position: relative;
  min-height: clamp(250px, 24vw, 330px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-color: rgba(13, 47, 53, 0.16);
  background-position: center;
  background-size: cover;
  color: white;
  font-size: 1.05rem;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
  box-shadow: 0 20px 52px rgba(13, 47, 53, 0.18);
}

.victory-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 31, 36, 0.96), rgba(7, 31, 36, 0.68) 50%, rgba(7, 31, 36, 0.2) 82%);
}

.victory-grid article span {
  position: relative;
  z-index: 1;
}

.victory-grid article:nth-child(1) {
  background-image: url("assets/sections/ready-to-learn.jpeg");
}

.victory-grid article:nth-child(2) {
  background-image: url("assets/sections/parents-celebrate-birthday.jpeg");
}

.victory-grid article:nth-child(3) {
  background-image: url("assets/sections/communities-come-together.jpeg");
}

.victory-grid article:nth-child(4) {
  background-image: url("assets/sections/fewer-barriers.jpeg");
}

.victory-grid article:nth-child(5) {
  background-image: url("assets/sections/every-child.jpeg");
}

.moment-line {
  max-width: 760px;
  margin: 34px 0 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat-grid article {
  min-height: 178px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(13, 47, 53, 0.08);
}

.stat-grid strong {
  display: block;
  color: var(--deep-teal);
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  line-height: 1;
}

.stat-grid span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 800;
}

.stat-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.victory-section .stat-grid.compact {
  margin: 22px auto 0;
}

.victory-section .stat-grid article {
  border-color: rgba(13, 47, 53, 0.16);
  background: rgba(255, 255, 255, 0.82);
}

.victory-section .stat-grid span {
  font-size: clamp(1.1rem, 1.45vw, 1.35rem);
  line-height: 1.25;
}

.commitment-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.35vw, 18px);
}

.commitment-grid article {
  position: relative;
  min-height: clamp(280px, 26vw, 360px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(18px, 1.65vw, 24px);
  border-color: rgba(13, 47, 53, 0.16);
  background-position: center;
  background-size: cover;
  box-shadow: 0 20px 52px rgba(13, 47, 53, 0.18);
}

.commitment-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 31, 36, 0.96), rgba(7, 31, 36, 0.76) 48%, rgba(7, 31, 36, 0.18) 82%);
}

.commitment-grid article:nth-child(1) {
  background-image: url("assets/sections/commitment-school.jpeg");
}

.commitment-grid article:nth-child(2) {
  background-image: url("assets/sections/commitment-meal.jpeg");
}

.commitment-grid article:nth-child(3) {
  background-image: url("assets/sections/commitment-birthday.jpeg");
}

.commitment-grid article:nth-child(4) {
  background-image: url("assets/sections/commitment-states.jpeg");
}

.commitment-grid article:nth-child(5) {
  background-image: url("assets/sections/commitment-10m-kids.jpeg");
}

.commitment-grid strong {
  position: relative;
  z-index: 1;
  color: white;
  font-size: clamp(2.4rem, 2.7vw, 3.35rem);
  line-height: 0.98;
  white-space: nowrap;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.44);
}

.commitment-grid span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.95rem, 1.08vw, 1.08rem);
  line-height: 1.35;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.problem-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 18px;
  margin-top: clamp(32px, 6vw, 74px);
  align-items: end;
}

.problem-gallery img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.problem-gallery img:nth-child(2) {
  min-height: 360px;
}

.mission-section {
  width: 100%;
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 70px);
  background:
    linear-gradient(90deg, rgba(13, 47, 53, 0.96), rgba(13, 47, 53, 0.86)),
    url("assets/keep/food-pantry-1.jpeg") center / cover;
}

.mission-shell {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 76px);
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: start;
}

.mission-section .section-kicker {
  color: var(--sunflower);
  font-size: clamp(1.6rem, 3.6vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: none;
}

.mission-section h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.04;
}

.vision-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(74px, 9vw, 118px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
}

.vision-copy {
  max-width: 790px;
}

.vision-section .section-kicker {
  font-size: clamp(1.6rem, 3.6vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: none;
}

.vision-section h2 {
  font-size: clamp(2rem, 4.2vw, 4.35rem);
  line-height: 1;
}

.vision-points {
  display: grid;
  gap: 14px;
}

.vision-points span {
  position: relative;
  min-height: clamp(150px, 13vw, 190px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-left: 8px solid var(--sunflower);
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  color: white;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 950;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.38);
  box-shadow: 0 18px 48px rgba(13, 47, 53, 0.16);
}

.vision-points span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 31, 36, 0.84), rgba(7, 31, 36, 0.12) 76%);
}

.vision-points strong {
  position: relative;
  z-index: 1;
}

.vision-points span:nth-child(1) {
  background-image: url("assets/sections/meals.jpeg");
}

.vision-points span:nth-child(2) {
  border-left-color: var(--teal-light);
  background-image: url("assets/sections/moments.jpeg");
}

.vision-points span:nth-child(3) {
  border-left-color: var(--leaf);
  background-image: url("assets/sections/milestones.jpeg");
}

.solution-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}

.solution-copy {
  max-width: 620px;
}

.ecosystem {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(237, 242, 240, 0.94), rgba(237, 242, 240, 0.94)),
    url("assets/keep/food-pantry-3.jpeg") center / cover;
  box-shadow: var(--shadow);
}

.ecosystem::before {
  content: "";
  position: absolute;
  inset: 50%;
  width: min(62%, 380px);
  aspect-ratio: 1;
  translate: -50% -50%;
  border: 1px solid rgba(13, 47, 53, 0.18);
  border-radius: 50%;
}

.ecosystem-core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: min(48%, 260px);
  aspect-ratio: 1;
  padding: 24px;
  border-radius: 50%;
  background: var(--deep-teal);
  box-shadow: 0 22px 55px rgba(13, 47, 53, 0.24);
}

.ecosystem-core img {
  width: min(160px, 100%);
}

.ecosystem span {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  min-height: 46px;
  padding: 10px 16px;
  border: 1px solid rgba(13, 47, 53, 0.16);
  border-radius: 999px;
  background: var(--paper);
  color: var(--deep-teal);
  font-weight: 900;
  box-shadow: 0 12px 34px rgba(13, 47, 53, 0.12);
}

.ecosystem span:nth-of-type(1) { top: 9%; left: 37%; }
.ecosystem span:nth-of-type(2) { top: 24%; right: 6%; }
.ecosystem span:nth-of-type(3) { right: 8%; bottom: 22%; }
.ecosystem span:nth-of-type(4) { bottom: 7%; left: 32%; }
.ecosystem span:nth-of-type(5) { bottom: 22%; left: 4%; }
.ecosystem span:nth-of-type(6) { top: 25%; left: 5%; }
.ecosystem span:nth-of-type(7) { top: 8%; right: 16%; }

.nkw-section {
  width: 100%;
  padding-inline: clamp(18px, 5vw, 70px);
  background: var(--deep-teal);
}

.nkw-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 96px);
  width: min(1180px, 100%);
  margin: 0 auto 42px;
}

.nkw-section h2,
.nkw-section h3,
.nkw-section p {
  color: white;
}

.nkw-section .section-kicker {
  color: var(--sunflower);
}

.nkw-hero p {
  color: rgba(255, 255, 255, 0.78);
}

.nkw-promise {
  margin-top: 0;
  color: white;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  font-weight: 900;
  line-height: 1.1;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto 34px;
}

.pillar-card {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 8px;
  background: #122f35;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.18);
}

.pillar-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1;
  transition: scale 700ms cubic-bezier(0.2, 0.65, 0.2, 1);
  will-change: scale;
}

.pillar-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 47, 53, 0.94), rgba(13, 47, 53, 0.18) 72%);
}

.pillar-card div {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.pillar-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--sunflower);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pillar-card p {
  color: rgba(255, 255, 255, 0.76);
}

.pillar-card:hover img {
  scale: 1.02;
}

.nkw-section > .button {
  margin-left: calc((100% - min(1180px, 100%)) / 2);
}

.growth-section {
  position: relative;
}

.how-section {
  position: relative;
  width: 100%;
  padding-inline: clamp(18px, 5vw, 70px);
  background:
    linear-gradient(rgba(247, 249, 247, 0.58), rgba(247, 249, 247, 0.58)),
    url("assets/keep/food-pantry-2.jpeg") center / cover;
}

.how-section > .section-intro,
.how-section > .flow-steps {
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.flow-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.flow-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  right: 9%;
  left: 9%;
  height: 3px;
  background: linear-gradient(90deg, var(--sunflower), var(--leaf));
}

.flow-steps article {
  position: relative;
  z-index: 1;
  min-height: 215px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(13, 47, 53, 0.08);
}

.flow-steps span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  aspect-ratio: 1;
  margin-bottom: 22px;
  border: 6px solid rgba(252, 212, 0, 0.45);
  border-radius: 50%;
  background: var(--sunflower);
  color: var(--deep-teal);
  font-weight: 950;
}

.growth-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.growth-timeline::before {
  content: "";
  position: absolute;
  top: 38px;
  right: 8%;
  left: 8%;
  height: 3px;
  background: linear-gradient(90deg, var(--sunflower), var(--leaf));
}

.growth-timeline article {
  position: relative;
  z-index: 1;
  min-height: 255px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.growth-timeline span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  aspect-ratio: 1;
  margin-bottom: 22px;
  border: 6px solid rgba(252, 212, 0, 0.45);
  border-radius: 50%;
  background: var(--sunflower);
  color: var(--deep-teal);
  font-weight: 950;
}

.stories-section {
  padding-top: 0;
}

.story-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.story-card-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(13, 47, 53, 0.08);
}

.story-card-grid img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
}

.story-card-grid div {
  padding: 24px;
}

.story-card-grid a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--teal);
  font-weight: 950;
  text-decoration: none;
}

.founders-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
}

.founders-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.founders-copy {
  max-width: 720px;
}

.architect-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.architect-list span {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--deep-teal);
  font-weight: 950;
}

.leadership-section,
.serve-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
}

.leadership-section img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.difference-section {
  width: 100%;
  padding-inline: clamp(18px, 5vw, 70px);
  background: var(--surface-strong);
}

.difference-section > .section-intro,
.program-dashboard {
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.program-dashboard {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.program-dashboard article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(13, 47, 53, 0.08);
}

.program-dashboard img {
  width: 100%;
  aspect-ratio: 1 / 0.58;
  object-fit: cover;
}

.program-dashboard article > div {
  padding: 26px;
}

.metric-list {
  display: grid;
  gap: 8px;
  margin: 22px 0;
}

.metric-list span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--deep-teal);
  font-weight: 900;
}

.serve-section {
  align-items: center;
}

.serve-section > div:first-child {
  align-self: center;
}

.serve-map {
  display: grid;
  place-items: center;
  min-height: clamp(300px, 44vw, 560px);
  padding: clamp(18px, 3.5vw, 42px);
  border: 1px solid rgba(13, 47, 53, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(237, 242, 240, 0.8)),
    var(--paper);
  box-shadow: var(--shadow);
}

.serve-map img {
  width: min(100%, 760px);
  height: auto;
  object-fit: contain;
}

.partner-wall {
  display: grid;
  gap: 14px;
}

.partner-wall span {
  display: grid;
  min-height: 110px;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--deep-teal);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 950;
  text-align: center;
  box-shadow: 0 18px 48px rgba(13, 47, 53, 0.08);
}

.partner-wall .partner-logo {
  min-height: 150px;
  padding: 24px;
  overflow: hidden;
}

.partner-wall .partner-logo img {
  width: min(100%, 230px);
  max-height: 92px;
  object-fit: contain;
}

.partner-wall .partner-logo:nth-child(1) img {
  width: min(100%, 430px);
  max-height: 180px;
  scale: 1.28;
}

.partner-wall .partner-logo:nth-child(2) img {
  width: min(100%, 300px);
  max-height: 124px;
}

.partner-wall .partner-logo:nth-child(4) img {
  width: min(100%, 430px);
  max-height: 190px;
  scale: 1.22;
}

.partner-wall {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.interest-form {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  gap: 28px clamp(28px, 5vw, 72px);
  margin-top: clamp(42px, 7vw, 82px);
  padding: clamp(28px, 5vw, 58px);
  border-radius: 8px;
  background: var(--deep-teal);
  box-shadow: var(--shadow);
}

.interest-form-heading {
  grid-row: 1 / span 3;
}

.interest-form-heading .section-kicker {
  color: var(--sunflower);
}

.interest-form-heading h3 {
  max-width: 11ch;
  color: white;
  font-size: clamp(2rem, 3.5vw, 3.75rem);
  line-height: 1;
}

.form-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.interest-form label > span,
.interest-options legend {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 850;
}

.required-mark {
  color: var(--sunflower);
  font-weight: 900;
}

.interest-form input[type="text"],
.interest-form input[type="email"],
.interest-form input[type="tel"],
.interest-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.interest-form textarea {
  min-height: 132px;
  resize: vertical;
}

.interest-form input:focus,
.interest-form textarea:focus {
  border-color: var(--sunflower);
  box-shadow: 0 0 0 3px rgba(252, 212, 0, 0.22);
}

.interest-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.interest-options legend {
  width: 100%;
}

.interest-options label {
  position: relative;
}

.interest-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.interest-options label span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin: 0;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.interest-options input:checked + span {
  border-color: var(--sunflower);
  background: var(--sunflower);
  color: var(--deep-teal);
}

.interest-options input:focus-visible + span {
  outline: 3px solid rgba(77, 218, 218, 0.48);
  outline-offset: 2px;
}

.form-message,
.form-submit {
  grid-column: 2;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 18px;
}

.form-submit .button {
  border: 0;
  cursor: pointer;
}

.form-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.movement-cta {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(76px, 10vw, 130px) clamp(18px, 6vw, 74px);
  background: var(--deep-teal);
}

.movement-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}

.movement-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 47, 53, 0.95), rgba(13, 47, 53, 0.72), rgba(13, 47, 53, 0.18));
}

.movement-panel {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.movement-panel h2,
.movement-panel p {
  color: white;
}

.movement-panel .section-kicker {
  color: var(--sunflower);
}

.movement-panel .button.secondary {
  border-color: rgba(255, 255, 255, 0.78);
  color: white;
}

.movement-panel .button.secondary:hover {
  background: white;
  color: var(--deep-teal);
}

.giving-widget {
  width: min(100%, 420px);
  min-height: 92px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  scroll-margin-top: 120px;
}

.giving-widget givebutter-widget {
  display: block;
  width: 100%;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.6fr);
  gap: 30px;
  padding: 48px clamp(18px, 5vw, 64px);
  background: var(--deep-teal);
  color: rgba(255, 255, 255, 0.76);
}

.site-footer h2 {
  margin: 0 0 10px;
  color: white;
  font-size: 1.35rem;
}

.site-footer p,
.site-footer address {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
}

.footer-about {
  max-width: 920px;
}

.footer-about p + p {
  margin-top: 20px;
}

.site-footer a {
  color: white;
}

.footer-verification {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.verification-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(96px, 10vw, 132px);
  aspect-ratio: 1;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.verification-badge:hover,
.verification-badge:focus-visible {
  border-color: rgba(252, 212, 0, 0.72);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
  outline: none;
}

.verification-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 1080px) {
  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: var(--deep-teal);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-donate {
    margin-top: 8px;
  }

  .nav-toggle {
    display: block;
  }

  .stat-grid,
  .pillar-grid,
  .growth-timeline,
  .story-card-grid,
  .without-grid,
  .victory-grid,
  .flow-steps,
  .program-dashboard,
  .commitment-grid,
  .partner-wall,
  .involvement-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-section,
  .nkw-hero,
  .founders-section,
  .mission-shell,
  .vision-section,
  .leadership-section,
  .serve-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .growth-timeline::before,
  .flow-steps::before {
    display: none;
  }

  .interest-form {
    grid-template-columns: 1fr;
  }

  .interest-form-heading {
    grid-row: auto;
  }

  .interest-form-heading h3 {
    max-width: 16ch;
  }

  .form-message,
  .form-submit {
    grid-column: 1;
  }
}

@media (max-width: 820px) {
  .hero-video {
    filter: brightness(0.78) contrast(1.18) saturate(1.14);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(255, 252, 244, 0.76) 0%, rgba(255, 248, 229, 0.68) 38%, rgba(255, 248, 229, 0.34) 68%, rgba(255, 248, 229, 0.12) 100%),
      linear-gradient(0deg, rgba(255, 252, 244, 0.42) 0%, rgba(255, 252, 244, 0) 48%),
      linear-gradient(rgba(255, 252, 244, 0.16), rgba(255, 252, 244, 0.16));
  }

  .victory-section .stat-grid.compact {
    grid-template-columns: 1fr;
  }

  .victory-section .stat-grid strong {
    max-width: 100%;
    font-size: clamp(2.8rem, 15vw, 4.4rem);
    overflow-wrap: anywhere;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 96px;
  }

  .brand-logo {
    height: 74px;
    max-width: 200px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: calc(100vw - 44px);
    max-width: 520px;
    margin-left: 22px;
    padding: 72px 0 78px;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    text-shadow: 0 1px 12px rgba(255, 255, 255, 0.5);
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.05rem, 7.6vw, 2.65rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(2.05rem, 8.8vw, 2.9rem);
    line-height: 1;
  }

  .hero-lede {
    font-size: 0.98rem;
    max-width: 29ch;
  }

  .interest-form {
    gap: 24px;
    padding: 24px 18px;
  }

  .form-fields {
    grid-template-columns: 1fr;
  }

  .interest-options {
    display: grid;
    grid-template-columns: 1fr;
  }

  .interest-options label span {
    width: 100%;
  }

  .form-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit .button {
    width: 100%;
  }

  .section-intro p,
  .solution-copy p,
  .nkw-hero p,
  .founders-copy p,
  .leadership-section p,
  .program-dashboard p,
  .serve-section p,
  .movement-panel p {
    font-size: 1rem;
    max-width: min(100%, calc(100vw - 36px));
  }

  .pillar-card p,
  .growth-timeline p,
  .flow-steps p,
  .story-card-grid p,
  .involvement-grid p {
    font-size: 1rem;
    max-width: 31ch;
  }

  .section-kicker {
    max-width: 32ch;
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .problem-section,
  .solution-section,
  .vision-section,
  .growth-section,
  .stories-section,
  .founders-section,
  .leadership-section,
  .difference-section,
  .commitment-section,
  .serve-section,
  .partners-section,
  .involvement-section {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  .victory-section {
    width: 100%;
    max-width: 100%;
    padding-inline: 18px;
  }

  .how-section {
    width: 100%;
    max-width: 100%;
    padding-inline: 18px;
  }

  .section-intro,
  .solution-copy,
  .vision-copy,
  .founders-copy,
  .leadership-section > div,
  .serve-section > div,
  .movement-panel {
    width: 100%;
    max-width: 100%;
  }

  .choice-line {
    max-width: 28ch;
  }

  .hero-actions,
  .hero-actions .button,
  .movement-panel .button,
  .nkw-section > .button {
    width: 100%;
  }

  .giving-widget {
    width: min(100%, 640px);
    max-width: none;
    margin: 28px auto 0;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .hero-actions {
    max-width: 31ch;
    align-items: center;
    justify-content: center;
  }

  .hero-actions .button {
    min-height: 52px;
    line-height: 1.1;
    text-align: center;
  }

  .stat-grid,
  .problem-gallery,
  .pillar-grid,
  .growth-timeline,
  .without-grid,
  .victory-grid,
  .flow-steps,
  .story-card-grid,
  .architect-list,
  .program-dashboard,
  .commitment-grid,
  .partner-wall,
  .involvement-grid {
    grid-template-columns: 1fr;
  }

  .partner-wall .partner-logo {
    min-height: 150px;
  }

  .partner-wall .partner-logo:nth-child(1) img,
  .partner-wall .partner-logo:nth-child(4) img {
    width: min(100%, 340px);
    max-height: 150px;
  }

  .serve-map {
    min-height: auto;
    padding: 16px;
  }

  .problem-gallery img,
  .problem-gallery img:nth-child(2) {
    min-height: 240px;
  }

  .ecosystem {
    min-height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .ecosystem::before {
    display: none;
  }

  .ecosystem-core {
    width: 180px;
    margin: 0 100%;
  }

  .ecosystem span {
    position: static;
  }

  .pillar-card {
    min-height: 390px;
  }

  .nkw-section > .button {
    margin-left: 0;
  }

  .movement-cta {
    min-height: 100svh;
    align-items: center;
    justify-items: center;
  }
}
