:root {
  --navy: #1b2a63;
  --navy-900: #111c49;
  --navy-800: #152456;
  --green: #2e9e3f;
  --green-700: #217a30;
  --orange: #f5a623;
  --orange-700: #d98a08;
  --orange-text: #9a5d00;
  --sky: #3aaed8;
  --ink: #182033;
  --muted: #657085;
  --cream: #f7f8f3;
  --line: #e4e8ef;
  --white: #fff;
  --shadow-sm: 0 10px 30px rgba(17, 28, 73, .08);
  --shadow-lg: 0 26px 70px rgba(17, 28, 73, .18);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-height: 86px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  width: 100%;
  min-width: 0;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-width: 0;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
svg { display: block; }

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 4px;
}

.container {
  width: calc(100% - 40px);
  max-width: var(--container);
  margin-inline: auto;
}

body > .utility-bar,
body > .site-header,
body > main,
body > .site-footer,
main > section {
  width: 100%;
  min-width: 0;
}

.header__inner,
.founder-profile-hero__grid,
.profile-overview__grid,
.profile-education__grid,
.profile-faith__grid,
.profile-legacy__grid,
.faq-directory__layout,
.faq-group__heading {
  min-width: 0;
}

.founder-profile-hero__grid > *,
.profile-overview__grid > *,
.profile-education__grid > *,
.profile-faith__grid > *,
.profile-legacy__grid > *,
.faq-directory__layout > *,
.faq-group__heading > * {
  min-width: 0;
}

.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: 9999;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.utility-bar {
  color: rgba(255,255,255,.88);
  background: var(--navy-900);
  font-size: .77rem;
  font-weight: 650;
  letter-spacing: .02em;
}

.utility-bar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-bar p,
.utility-bar a { display: flex; align-items: center; gap: 8px; margin: 0; }
.utility-bar a:hover { color: var(--orange); }
.utility-bar svg { width: 14px; height: 14px; fill: currentColor; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(27,42,99,.08);
  transition: box-shadow .25s ease, height .25s ease;
}

.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(17,28,73,.1); }
.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }

.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }
.brand__logo { width: 62px; height: 62px; object-fit: contain; }
.brand__logo[hidden] { display: none; }

.brand__text { display: grid; line-height: 1.05; text-transform: uppercase; }
.brand__text strong { color: var(--navy); font-size: .94rem; letter-spacing: -.015em; }
.brand__text span { margin-top: 5px; color: var(--green-700); font-size: .64rem; font-weight: 800; letter-spacing: .18em; }

.primary-nav { display: flex; align-items: center; gap: 18px; }
.primary-nav ul { display: flex; align-items: center; gap: 18px; margin: 0; padding: 0; list-style: none; }
.primary-nav ul a { position: relative; color: #3c465a; font-size: .76rem; font-weight: 750; text-transform: uppercase; letter-spacing: .045em; }
.primary-nav ul a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -10px; height: 2px; background: var(--green); transition: right .22s ease; }
.primary-nav ul a:hover, .primary-nav ul a.is-active { color: var(--navy); }
.primary-nav ul a:hover::after, .primary-nav ul a.is-active::after { right: 0; }

.nav-toggle { display: none; width: 48px; height: 48px; border: 0; border-radius: 12px; background: #f3f5f9; cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; width: 23px; height: 2px; margin: 5px auto; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button--small { min-height: 43px; padding: 10px 18px; font-size: .74rem; text-transform: uppercase; letter-spacing: .055em; }
.button--orange { color: var(--navy-900); background: var(--orange); box-shadow: 0 10px 24px rgba(245,166,35,.25); }
.button--orange:hover { background: #ffb83f; box-shadow: 0 15px 30px rgba(245,166,35,.32); }
.button--navy { color: var(--white); background: var(--navy); }
.button--navy:hover { background: var(--navy-900); }
.button--ghost { color: var(--white); border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.button--ghost:hover { border-color: var(--white); background: rgba(255,255,255,.16); }
.button--white { color: var(--navy); background: var(--white); box-shadow: 0 12px 28px rgba(17,28,73,.18); }
.button--white:hover { color: var(--white); background: var(--navy-900); }

.hero {
  min-height: min(790px, calc(100vh - 36px));
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}

.hero__image {
  position: absolute;
  inset: 0;
  background-image: url("https://thumb.wikimedia.org/wikipedia/commons/thumb/c/c4/Gwealey_community_%2825104242156%29.jpg/1280px-Gwealey_community_%2825104242156%29.jpg");
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.015);
}

.hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,20,57,.96) 0%, rgba(16,33,79,.85) 43%, rgba(15,39,72,.42) 72%, rgba(15,39,72,.25) 100%); }
.hero__overlay::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,20,57,.7) 0, transparent 34%); }

.hero__motif {
  position: absolute;
  width: 560px;
  height: 560px;
  right: -230px;
  bottom: -250px;
  border: 70px solid rgba(46,158,63,.48);
  border-left-color: rgba(245,166,35,.34);
  border-radius: 50%;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: end;
  gap: clamp(40px, 7vw, 100px);
  padding-block: 120px 150px;
}

.hero__copy { max-width: 750px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--green-700); font-size: .73rem; font-weight: 850; text-transform: uppercase; letter-spacing: .16em; }
.eyebrow > span { width: 34px; height: 2px; background: currentColor; }
.eyebrow--light { color: var(--orange); }

.hero h1, .section h2, .children h2, .support h2 {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 850;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.hero h1 { max-width: 820px; font-size: clamp(3rem, 6.6vw, 5.7rem); text-wrap: balance; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero__lead { max-width: 670px; margin: 27px 0 0; color: rgba(255,255,255,.86); font-size: clamp(1.05rem, 2vw, 1.28rem); line-height: 1.65; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero__card {
  padding: 28px;
  color: var(--ink);
  background: rgba(255,255,255,.94);
  border-top: 5px solid var(--green);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.hero__card-icon { width: 54px; height: 54px; display: grid; place-items: center; color: var(--white); background: var(--green); border-radius: 16px; }
.hero__card-icon svg { width: 28px; fill: currentColor; }
.hero__card p { margin: 20px 0 4px; color: var(--muted); font-size: .7rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.hero__card h2 { margin: 0; color: var(--navy); font-size: 1.4rem; line-height: 1.2; }
.hero__card-line { width: 44px; height: 3px; display: block; margin: 18px 0; background: var(--orange); }
.hero__card small { display: block; color: var(--muted); font-size: .84rem; line-height: 1.55; }

.hero__scroll { position: absolute; z-index: 3; left: 50%; bottom: 28px; display: flex; align-items: center; gap: 11px; color: rgba(255,255,255,.75); font-size: .68rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; transform: translateX(-50%); }
.hero__scroll svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 2; animation: bob 1.8s infinite; }
@keyframes bob { 50% { transform: translateY(6px); } }

.trust-strip { color: var(--white); background: var(--green-700); }
.trust-strip__inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-strip__inner > div { min-height: 112px; display: flex; align-items: center; gap: 18px; padding: 24px clamp(18px, 3vw, 36px); border-right: 1px solid rgba(255,255,255,.2); }
.trust-strip__inner > div:last-child { border-right: 0; }
.trust-strip__inner span { color: rgba(255,255,255,.45); font-size: 1.5rem; font-weight: 900; }
.trust-strip__inner p { margin: 0; color: rgba(255,255,255,.9); font-size: .82rem; line-height: 1.45; }
.trust-strip__inner strong { display: block; color: var(--white); font-size: 1rem; }

.section { padding-block: clamp(80px, 10vw, 132px); }
.section h2, .children h2, .support h2 { color: var(--navy); font-size: clamp(2.25rem, 4.8vw, 4rem); text-wrap: balance; }
.lead { font-size: 1.08rem; line-height: 1.8; }

.about { overflow: hidden; background: var(--white); }
.about__grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: clamp(50px, 8vw, 110px); }
.about__visual { min-height: 600px; position: relative; }
.about__image { position: absolute; inset: 0 30px 40px 0; background: url("https://thumb.wikimedia.org/wikipedia/commons/thumb/7/75/Farm_Workers.jpg/1280px-Farm_Workers.jpg") center/cover no-repeat; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(17,28,73,.35), transparent 45%); border-radius: inherit; }
.about__badge { position: absolute; right: 0; bottom: 0; width: 190px; height: 150px; display: grid; place-content: center; padding: 20px; color: var(--white); background: var(--navy); border: 8px solid var(--white); border-radius: 26px; box-shadow: var(--shadow-sm); }
.about__badge::before { content: ""; position: absolute; top: 14px; left: 14px; width: 10px; height: 10px; background: var(--orange); border-radius: 50%; }
.about__badge strong { font-size: 1.5rem; }
.about__badge span { color: rgba(255,255,255,.72); font-size: .8rem; font-weight: 700; }
.about__dots { position: absolute; z-index: -1; width: 150px; height: 150px; top: -30px; right: 0; background-image: radial-gradient(var(--orange) 2px, transparent 2px); background-size: 15px 15px; opacity: .75; }
.about__copy > p:not(.eyebrow) { color: var(--muted); }
.about__copy h2 { margin-bottom: 30px; }
.principles { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0; }
.principles article { display: flex; gap: 14px; padding: 18px; background: #f7f9fb; border: 1px solid var(--line); border-radius: 16px; }
.principles__icon { flex: 0 0 auto; width: 43px; height: 43px; display: grid; place-items: center; color: var(--white); border-radius: 12px; }
.principles__icon--navy { background: var(--navy); }
.principles__icon--green { background: var(--green); }
.principles__icon svg { width: 23px; fill: currentColor; }
.principles h3 { margin: 0 0 3px; color: var(--navy); font-size: 1rem; }
.principles p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.5; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); font-weight: 850; border-bottom: 2px solid var(--orange); }
.text-link:hover { color: var(--green-700); }

.programs { position: relative; overflow: hidden; background: var(--cream); }
.programs__shape { position: absolute; border-radius: 50%; border: 46px solid rgba(46,158,63,.08); }
.programs__shape--one { width: 330px; height: 330px; top: -180px; right: -130px; border-left-color: rgba(245,166,35,.12); }
.programs__shape--two { width: 260px; height: 260px; bottom: -160px; left: -130px; }
.section-heading { position: relative; z-index: 1; }
.section-heading--center { max-width: 770px; margin: 0 auto 55px; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading > p:not(.eyebrow), .section-heading--split > p { color: var(--muted); font-size: 1.05rem; }

.program-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.program-card { grid-column: span 2; min-height: 360px; position: relative; display: flex; flex-direction: column; padding: 32px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 22px rgba(17,28,73,.04); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.program-card:nth-child(4) { grid-column: 2 / span 2; }
.program-card:hover { transform: translateY(-7px); border-color: rgba(46,158,63,.45); box-shadow: var(--shadow-sm); }
.program-card--featured { color: var(--white); background: var(--navy); border-color: var(--navy); }
.program-card__number { position: absolute; top: 18px; right: 22px; color: rgba(27,42,99,.08); font-size: 3.7rem; font-weight: 900; line-height: 1; }
.program-card--featured .program-card__number { color: rgba(255,255,255,.1); }
.program-card__icon { width: 62px; height: 62px; display: grid; place-items: center; color: var(--green); background: rgba(46,158,63,.1); border-radius: 18px; }
.program-card--featured .program-card__icon { color: var(--navy); background: var(--orange); }
.program-card__icon svg { width: 31px; fill: currentColor; }
.program-card h3 { max-width: 240px; margin: 25px 0 13px; color: var(--navy); font-size: 1.25rem; line-height: 1.3; }
.program-card--featured h3 { color: var(--white); }
.program-card p { margin: 0 0 24px; color: var(--muted); font-size: .88rem; line-height: 1.7; }
.program-card--featured p { color: rgba(255,255,255,.7); }
.program-card a { display: inline-flex; align-items: center; gap: 9px; margin-top: auto; color: var(--green-700); font-size: .82rem; font-weight: 850; }
.program-card--featured a { color: var(--orange); }

.approach { background: var(--white); }
.approach__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(55px, 8vw, 120px); align-items: center; }
.approach__copy > p:not(.eyebrow) { color: var(--muted); }
.approach blockquote { position: relative; margin: 36px 0 0; padding: 28px 30px 28px 36px; color: var(--navy); background: #f4f7f3; border-left: 5px solid var(--green); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 1.08rem; font-weight: 750; font-style: italic; line-height: 1.65; }
.approach__steps { display: grid; gap: 4px; margin: 0; padding: 0; list-style: none; }
.approach__steps li { position: relative; display: grid; grid-template-columns: 64px 1fr; gap: 22px; padding: 22px 0; }
.approach__steps li:not(:last-child)::after { content: ""; position: absolute; left: 31px; top: 75px; bottom: -5px; width: 2px; background: var(--line); }
.approach__steps span { z-index: 1; width: 64px; height: 64px; display: grid; place-items: center; color: var(--white); background: var(--navy); border: 8px solid #eef0f6; border-radius: 50%; font-weight: 850; }
.approach__steps li:nth-child(2) span, .approach__steps li:nth-child(4) span { background: var(--green-700); }
.approach__steps h3 { margin: 3px 0 3px; color: var(--navy); font-size: 1.18rem; }
.approach__steps p { margin: 0; color: var(--muted); font-size: .9rem; }

.children { position: relative; overflow: hidden; padding-block: clamp(85px, 11vw, 140px); color: var(--white); background: linear-gradient(125deg, var(--navy-900), var(--navy) 58%, #214075); }
.children__pattern { position: absolute; inset: 0; opacity: .13; background-image: radial-gradient(circle at 20% 30%, var(--orange) 0 3px, transparent 4px), radial-gradient(circle at 70% 70%, var(--green) 0 4px, transparent 5px); background-size: 60px 60px, 90px 90px; }
.children::after { content: ""; position: absolute; width: 440px; height: 440px; right: -120px; top: -210px; border: 65px solid rgba(46,158,63,.32); border-left-color: rgba(245,166,35,.32); border-radius: 50%; }
.children__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; gap: 70px; }
.children__number { color: transparent; font-size: clamp(8rem, 19vw, 15rem); font-weight: 950; letter-spacing: -.09em; line-height: .8; -webkit-text-stroke: 2px rgba(255,255,255,.32); text-shadow: 20px 20px 0 rgba(46,158,63,.18); }
.children h2 { max-width: 760px; color: var(--white); }
.children__copy > p:not(.eyebrow) { max-width: 660px; margin: 25px 0 30px; color: rgba(255,255,255,.75); font-size: 1.08rem; }

.partners { background: var(--cream); }
.partners__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.partners__copy > p:not(.eyebrow) { margin: 25px 0 30px; color: var(--muted); }
.partners__types { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.partners__types div { min-height: 150px; display: flex; flex-direction: column; justify-content: space-between; padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 8px 20px rgba(17,28,73,.04); }
.partners__types span { color: var(--orange-text); font-size: .75rem; font-weight: 850; }
.partners__types strong { color: var(--navy); font-size: 1rem; }

.stories { background: var(--white); }
.section-heading--split { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 70px; margin-bottom: 48px; }
.section-heading--split > p { margin: 0 0 5px; }
.story-placeholder { display: grid; grid-template-columns: 100px 1fr; gap: 28px; align-items: center; padding: clamp(28px, 5vw, 52px); background: linear-gradient(135deg, #f3f6f4, #f7f8fb); border: 1px solid var(--line); border-radius: var(--radius); }
.story-placeholder__icon { width: 86px; height: 86px; display: grid; place-items: center; color: var(--white); background: var(--green); border-radius: 24px; transform: rotate(-3deg); }
.story-placeholder__icon svg { width: 39px; fill: currentColor; }
.story-placeholder__tag { margin: 0 0 4px !important; color: var(--green-700) !important; font-size: .7rem !important; font-weight: 850; text-transform: uppercase; letter-spacing: .14em; }
.story-placeholder h3 { margin: 0; color: var(--navy); font-size: clamp(1.25rem, 2.4vw, 1.8rem); }
.story-placeholder p { margin: 7px 0 0; color: var(--muted); }

.support { position: relative; overflow: hidden; padding-block: 80px; color: var(--white); background: var(--green-700); }
.support__ribbon { position: absolute; width: 430px; height: 430px; right: -170px; top: -170px; border: 70px solid rgba(255,255,255,.1); border-left-color: rgba(245,166,35,.32); border-radius: 50%; }
.support__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.home-support__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
.support h2 { color: var(--white); font-size: clamp(2.2rem, 4.2vw, 3.65rem); }
.support p:not(.eyebrow) { max-width: 700px; margin: 16px 0 0; color: rgba(255,255,255,.9); }
.support .eyebrow,
.program-detail--green .eyebrow,
.children-connect .eyebrow,
.partner-contact .eyebrow,
.newsroom-contact .eyebrow { color: #fff0cc; }
.support .button { flex: 0 0 auto; }

.contact { background: var(--white); }
.contact__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.contact__grid > div:first-child > p:not(.eyebrow) { color: var(--muted); }
.contact__cards { display: grid; gap: 16px; }
.contact__cards > * { display: flex; align-items: center; gap: 18px; padding: 22px; background: var(--cream); border: 1px solid var(--line); border-radius: 18px; transition: transform .2s ease, border-color .2s ease; }
.contact__cards a:hover { transform: translateX(5px); border-color: var(--green); }
.contact__cards > * > span { flex: 0 0 auto; width: 48px; height: 48px; display: grid; place-items: center; color: var(--white); background: var(--navy); border-radius: 14px; }
.contact__cards > *:nth-child(2) > span { background: var(--green); }
.contact__cards svg { width: 23px; fill: currentColor; }
.contact__cards small { display: block; color: var(--muted); font-weight: 700; }
.contact__cards strong { display: block; color: var(--navy); overflow-wrap: anywhere; }

.site-footer { padding-top: 75px; color: rgba(255,255,255,.7); background: var(--navy-900); }
.footer__grid { display: grid; grid-template-columns: 1.6fr .8fr .9fr 1.1fr; gap: 55px; padding-bottom: 60px; }
.brand__logo--footer { padding: 3px; background: var(--white); border-radius: 50%; }
.brand--footer .brand__text strong { color: var(--white); }
.footer__about p { max-width: 330px; }
.site-footer h2 { margin: 8px 0 18px; color: var(--white); font-size: .85rem; text-transform: uppercase; letter-spacing: .13em; }
.site-footer ul { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; }
.site-footer a:hover { color: var(--orange); }
.site-footer address { font-style: normal; overflow-wrap: anywhere; }
.footer__bottom { min-height: 76px; display: flex; justify-content: space-between; align-items: center; gap: 25px; border-top: 1px solid rgba(255,255,255,.1); font-size: .75rem; }

[data-reveal] { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; }
.js [data-reveal] { opacity: 0; transform: translateY(24px); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* About page */
.page-hero {
  min-height: 550px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}

.page-hero__image { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero--about .page-hero__image { background-image: url("https://thumb.wikimedia.org/wikipedia/commons/thumb/d/dd/Charlie_Too_Town_Community%2C_Bong_County_%2825130602435%29.jpg/1280px-Charlie_Too_Town_Community%2C_Bong_County_%2825130602435%29.jpg"); }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,20,57,.97) 0%, rgba(16,33,79,.85) 52%, rgba(17,40,72,.42) 100%); }
.page-hero__rings { position: absolute; width: 520px; height: 520px; right: -170px; bottom: -350px; border: 62px solid rgba(46,158,63,.46); border-left-color: rgba(245,166,35,.4); border-radius: 50%; }
.page-hero__content { position: relative; z-index: 1; padding-block: 100px; }
.page-hero__content > * { max-width: 820px; }
.page-hero h1 { margin: 0; font-size: clamp(3rem, 6vw, 5.2rem); font-weight: 850; line-height: 1.02; letter-spacing: -.05em; text-wrap: balance; }
.page-hero__content > p:last-child { max-width: 700px; margin: 25px 0 0; color: rgba(255,255,255,.8); font-size: 1.15rem; }
.breadcrumbs { display: flex; align-items: center; gap: 10px; margin-bottom: 34px; color: rgba(255,255,255,.7); font-size: .77rem; font-weight: 750; text-transform: uppercase; letter-spacing: .1em; }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs span:last-child { color: var(--white); }

.about-story { background: var(--white); }
.about-story__grid { display: grid; grid-template-columns: 1.1fr .7fr; align-items: center; gap: clamp(55px, 9vw, 130px); }
.about-story__copy > p:not(.eyebrow) { color: var(--muted); }
.about-story__copy .lead { color: var(--ink); }
.founding-card { position: relative; overflow: hidden; color: var(--white); background: var(--navy); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.founding-card::after { content: ""; position: absolute; width: 210px; height: 210px; right: -100px; bottom: -100px; border: 32px solid rgba(46,158,63,.35); border-left-color: rgba(245,166,35,.35); border-radius: 50%; }
.founding-card__top { display: flex; align-items: center; gap: 18px; padding: 24px; background: var(--white); }
.founding-card__top img { width: 82px; height: 82px; object-fit: contain; }
.founding-card__top span { color: var(--navy); font-size: .76rem; font-weight: 850; text-transform: uppercase; letter-spacing: .12em; }
.founding-card__date { display: flex; align-items: baseline; gap: 11px; padding: 35px 30px 22px; }
.founding-card__date span { color: var(--orange); font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .13em; }
.founding-card__date strong { font-size: 4.6rem; line-height: 1; letter-spacing: -.08em; }
.founding-card__name { position: relative; z-index: 1; display: grid; padding: 0 30px 36px; }
.founding-card__name small { color: rgba(255,255,255,.55); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.founding-card__name strong { margin-top: 4px; font-size: 1.18rem; }
.founding-card__name span { color: rgba(255,255,255,.65); font-size: .82rem; }

.about-quote { position: relative; overflow: hidden; padding-block: 82px; color: var(--white); background: var(--green-700); }
.about-quote__pattern { position: absolute; inset: 0; opacity: .12; background-image: radial-gradient(var(--white) 2px, transparent 2px); background-size: 22px 22px; }
.about-quote__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 80px 1fr; gap: 38px; align-items: start; }
.about-quote svg { width: 74px; fill: rgba(255,255,255,.28); }
.about-quote blockquote { max-width: 990px; margin: 0; font-size: clamp(1.7rem, 3.8vw, 3.15rem); font-weight: 800; line-height: 1.25; letter-spacing: -.035em; }

.purpose { background: var(--cream); }
.purpose__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.purpose-card { min-height: 410px; position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(30px, 5vw, 54px); overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.purpose-card::after { content: ""; position: absolute; width: 250px; height: 250px; top: -155px; right: -100px; border: 36px solid rgba(255,255,255,.12); border-radius: 50%; }
.purpose-card--mission { color: var(--white); background: var(--navy); }
.purpose-card--vision { color: var(--white); background: var(--green-700); }
.purpose-card__label { position: absolute; top: 34px; left: 38px; font-size: .72rem; font-weight: 850; text-transform: uppercase; letter-spacing: .15em; }
.purpose-card__icon { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 24px; color: var(--navy); background: var(--orange); border-radius: 19px; }
.purpose-card--vision .purpose-card__icon { color: var(--green); background: var(--white); }
.purpose-card__icon svg { width: 32px; fill: currentColor; }
.purpose-card h3 { position: relative; z-index: 1; max-width: 520px; margin: 0 0 13px; font-size: clamp(1.55rem, 3vw, 2.15rem); line-height: 1.2; letter-spacing: -.025em; }
.purpose-card p { position: relative; z-index: 1; max-width: 540px; margin: 0; color: rgba(255,255,255,.9); }

.values { background: var(--white); }
.values__layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 8vw, 110px); align-items: start; }
.values__intro { position: sticky; top: 130px; }
.values__intro > p:not(.eyebrow) { color: var(--muted); }
.values__intro .text-link { margin-top: 22px; }
.values__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.values__grid article { min-height: 250px; padding: 30px; background: #f7f9fb; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.values__grid article:hover { transform: translateY(-5px); border-color: rgba(46,158,63,.45); box-shadow: var(--shadow-sm); }
.values__grid span { color: var(--orange-text); font-size: .75rem; font-weight: 900; }
.values__grid h3 { margin: 45px 0 8px; color: var(--navy); font-size: 1.25rem; }
.values__grid p { margin: 0; color: var(--muted); font-size: .88rem; }

.founder { overflow: hidden; background: var(--cream); }
.founder__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(55px, 9vw, 130px); align-items: center; }
.founder__visual { min-height: 510px; position: relative; display: grid; place-items: center; overflow: hidden; color: var(--white); background: linear-gradient(145deg, var(--navy-900), var(--navy)); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.founder__visual::before { content: ""; position: absolute; width: 330px; height: 330px; border: 48px solid rgba(255,255,255,.08); border-right-color: rgba(46,158,63,.35); border-radius: 50%; }
.founder__monogram { position: relative; z-index: 1; font-size: clamp(4.5rem, 9vw, 7rem); font-weight: 950; letter-spacing: -.09em; }
.founder__accent { position: absolute; border-radius: 50%; }
.founder__accent--orange { width: 90px; height: 90px; top: 45px; right: 45px; background: var(--orange); }
.founder__accent--green { width: 55px; height: 55px; bottom: 55px; left: 55px; background: var(--green); }
.founder__copy > p:not(.eyebrow, .founder__role, .founder__note) { color: var(--muted); }
.founder__role { margin: 12px 0 25px; color: var(--green-700); font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .12em; }
.founder__note { margin-top: 25px; padding: 16px 18px; color: var(--muted); background: var(--white); border: 1px solid var(--line); border-radius: 12px; font-size: .76rem; }
.support--inner { background: var(--navy); }
.about-actions { flex: 0 0 auto; display: flex; gap: 12px; }

/* Programs page */
.page-hero--programs .page-hero__image { background-image: url("https://thumb.wikimedia.org/wikipedia/commons/thumb/7/7b/Liberian_students.jpg/1280px-Liberian_students.jpg"); background-position: center 48%; }
.program-jump { position: sticky; top: var(--header-height); z-index: 900; color: var(--white); background: var(--green-700); box-shadow: 0 10px 30px rgba(17,28,73,.12); }
.program-jump__inner { min-height: 72px; display: flex; align-items: center; gap: 10px; overflow-x: auto; scrollbar-width: none; }
.program-jump__inner::-webkit-scrollbar { display: none; }
.program-jump span { flex: 0 0 auto; margin-right: 7px; font-size: .7rem; font-weight: 850; text-transform: uppercase; letter-spacing: .13em; }
.program-jump a { flex: 0 0 auto; padding: 8px 14px; color: rgba(255,255,255,.88); border: 1px solid rgba(255,255,255,.28); border-radius: 999px; font-size: .76rem; font-weight: 750; white-space: nowrap; }
.program-jump a:hover { color: var(--green-700); background: var(--white); }

.programs-intro { background: var(--white); }
.programs-intro__grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: start; gap: clamp(50px, 9vw, 125px); }
.programs-intro__grid > div:last-child p { color: var(--muted); }
.programs-intro__grid > div:last-child .lead { margin-top: 0; color: var(--ink); }

.program-detail { scroll-margin-top: calc(var(--header-height) + 70px); padding-block: clamp(90px, 11vw, 145px); overflow: hidden; }
.program-detail__grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(55px, 9vw, 130px); }
.program-detail--reverse .program-detail__visual { order: 2; }
.program-detail--reverse .program-detail__copy { order: 1; }
.program-detail--navy { color: var(--white); background: var(--navy); }
.program-detail--green { color: var(--white); background: var(--green-700); }
.program-detail--orange { color: var(--ink); background: #fff6e5; }
.program-detail--light { background: var(--white); }
.program-detail__visual { min-height: 480px; position: relative; display: grid; place-items: center; overflow: hidden; border-radius: var(--radius-lg); }
.program-detail--navy .program-detail__visual { background: linear-gradient(145deg, #101b49, #28458e); border: 1px solid rgba(255,255,255,.1); }
.program-detail--green .program-detail__visual { background: linear-gradient(145deg, #1c6a2a, #38ad4b); border: 1px solid rgba(255,255,255,.15); }
.program-detail--light .program-detail__visual { background: linear-gradient(145deg, #eef2f7, #f9fafc); border: 1px solid var(--line); }
.program-detail--orange .program-detail__visual { background: linear-gradient(145deg, #f5a623, #ffd886); }
.program-detail__visual::before { content: ""; position: absolute; width: 330px; height: 330px; border: 50px solid rgba(255,255,255,.11); border-right-color: rgba(245,166,35,.4); border-radius: 50%; }
.program-detail--light .program-detail__visual::before { border-color: rgba(27,42,99,.07); border-right-color: rgba(46,158,63,.2); }
.program-detail__number { position: absolute; top: 28px; left: 32px; color: rgba(255,255,255,.42); font-size: .78rem; font-weight: 900; letter-spacing: .15em; }
.program-detail--light .program-detail__number, .program-detail--orange .program-detail__number { color: rgba(27,42,99,.42); }
.program-detail__symbol { position: relative; z-index: 1; width: 145px; height: 145px; display: grid; place-items: center; color: var(--navy); background: var(--orange); border-radius: 42px; box-shadow: 0 22px 45px rgba(10,20,57,.2); transform: rotate(-4deg); }
.program-detail--green .program-detail__symbol { color: var(--green); background: var(--white); }
.program-detail--light .program-detail__symbol { color: var(--white); background: var(--green); }
.program-detail--orange .program-detail__symbol { color: var(--white); background: var(--navy); }
.program-detail__symbol svg { width: 76px; fill: currentColor; }
.program-detail__word { position: absolute; left: 25px; bottom: 10px; color: rgba(255,255,255,.06); font-size: clamp(3.8rem, 7vw, 6rem); font-weight: 950; letter-spacing: -.08em; line-height: 1; }
.program-detail--light .program-detail__word, .program-detail--orange .program-detail__word { color: rgba(27,42,99,.055); }
.program-detail__copy h2 { margin: 0; color: var(--navy); font-size: clamp(2.4rem, 4.8vw, 4rem); font-weight: 850; line-height: 1.03; letter-spacing: -.045em; text-wrap: balance; }
.program-detail--navy .program-detail__copy h2, .program-detail--green .program-detail__copy h2 { color: var(--white); }
.program-detail__copy > .lead { max-width: 660px; margin: 24px 0; color: var(--muted); }
.program-detail--navy .program-detail__copy > .lead, .program-detail--green .program-detail__copy > .lead { color: rgba(255,255,255,.72); }
.program-detail--green .program-detail__copy > .lead { color: rgba(255,255,255,.9); }
.program-focus { margin: 30px 0 34px; padding: 24px; background: rgba(27,42,99,.04); border: 1px solid var(--line); border-radius: 18px; }
.program-detail--navy .program-focus, .program-detail--green .program-focus { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.13); }
.program-focus h3 { margin: 0 0 14px; color: var(--navy); font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; }
.program-detail--navy .program-focus h3, .program-detail--green .program-focus h3 { color: var(--orange); }
.program-detail--green .program-focus h3 { color: #fff0cc; }
.program-focus ul { display: flex; flex-wrap: wrap; gap: 9px; margin: 0; padding: 0; list-style: none; }
.program-focus li { padding: 7px 12px; color: var(--navy); background: var(--white); border-radius: 999px; font-size: .76rem; font-weight: 750; }
.program-detail--navy .program-focus li, .program-detail--green .program-focus li { color: var(--white); background: rgba(255,255,255,.1); }

.program-process { background: var(--cream); }
.program-process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 0; padding: 0; list-style: none; }
.program-process__grid li { min-height: 260px; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.program-process__grid span { width: 48px; height: 48px; display: grid; place-items: center; color: var(--white); background: var(--navy); border-radius: 14px; font-weight: 900; }
.program-process__grid li:nth-child(even) span { background: var(--green-700); }
.program-process__grid h3 { margin: 50px 0 8px; color: var(--navy); font-size: 1.2rem; }
.program-process__grid p { margin: 0; color: var(--muted); font-size: .86rem; }

.program-contact { position: relative; overflow: hidden; padding-block: 95px; color: var(--white); background: var(--navy-900); }
.program-contact__pattern { position: absolute; inset: 0; opacity: .12; background-image: radial-gradient(var(--sky) 2px, transparent 2px); background-size: 26px 26px; }
.program-contact::after { content: ""; position: absolute; width: 400px; height: 400px; right: -170px; top: -220px; border: 58px solid rgba(46,158,63,.35); border-left-color: rgba(245,166,35,.4); border-radius: 50%; }
.program-contact__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 70px; }
.program-contact h2 { max-width: 760px; margin: 0; font-size: clamp(2.2rem, 4.4vw, 3.7rem); line-height: 1.05; letter-spacing: -.04em; }
.program-contact p:not(.eyebrow) { max-width: 700px; color: rgba(255,255,255,.7); }
.program-contact .button { flex: 0 0 auto; }

/* Impact page */
.page-hero--impact .page-hero__image { background-image: url("https://thumb.wikimedia.org/wikipedia/commons/thumb/0/0b/Harvester_Showing_Plantain.jpg/1280px-Harvester_Showing_Plantain.jpg"); background-position: center 48%; }
.impact-status { color: var(--white); background: var(--green-700); }
.impact-status__inner { min-height: 110px; display: flex; align-items: center; gap: 20px; }
.impact-status__icon { flex: 0 0 auto; width: 50px; height: 50px; display: grid; place-items: center; color: var(--green); background: var(--white); border-radius: 50%; }
.impact-status__icon svg { width: 25px; fill: currentColor; }
.impact-status strong { display: block; font-size: .93rem; }
.impact-status p { margin: 3px 0 0; color: rgba(255,255,255,.9); font-size: .83rem; }

.impact-intro { background: var(--white); }
.impact-intro__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(50px, 9vw, 125px); align-items: start; }
.impact-intro__grid > div:last-child p { color: var(--muted); }
.impact-intro__grid > div:last-child .lead { margin-top: 0; color: var(--ink); }

.impact-pathway { padding-block: clamp(85px, 10vw, 130px); background: var(--cream); }
.impact-pathway__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 0; padding: 0; list-style: none; }
.impact-pathway__grid li { min-height: 350px; position: relative; display: flex; flex-direction: column; padding: 28px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .25s ease, box-shadow .25s ease; }
.impact-pathway__grid li:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.impact-pathway__grid li::after { content: "→"; position: absolute; top: 42%; right: -16px; z-index: 2; width: 32px; height: 32px; display: grid; place-items: center; color: var(--white); background: var(--orange); border-radius: 50%; font-weight: 900; }
.impact-pathway__grid li:last-child::after { display: none; }
.impact-pathway__number { color: var(--orange-text); font-size: .72rem; font-weight: 900; letter-spacing: .13em; }
.impact-pathway__icon { width: 68px; height: 68px; display: grid; place-items: center; margin-top: 32px; color: var(--white); background: var(--navy); border-radius: 19px; }
.impact-pathway__grid li:nth-child(even) .impact-pathway__icon { background: var(--green); }
.impact-pathway__icon svg { width: 33px; fill: currentColor; }
.impact-pathway__grid h3 { margin: auto 0 8px; color: var(--navy); font-size: 1.18rem; }
.impact-pathway__grid p { margin: 0; color: var(--muted); font-size: .84rem; }

.outcome-areas { background: var(--white); }
.outcome-areas__layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(55px, 9vw, 120px); align-items: start; }
.outcome-areas__intro { position: sticky; top: 130px; }
.outcome-areas__intro > p:not(.eyebrow) { color: var(--muted); }
.outcome-areas__intro .button { margin-top: 24px; }
.outcome-areas__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.outcome-areas__grid article { min-height: 230px; padding: 28px; background: #f7f9fb; border: 1px solid var(--line); border-radius: var(--radius); }
.outcome-areas__grid article:last-child { grid-column: 1 / -1; min-height: 200px; background: var(--navy); }
.outcome-areas__grid span { color: var(--orange-text); font-size: .72rem; font-weight: 900; }
.outcome-areas__grid h3 { margin: 45px 0 8px; color: var(--navy); font-size: 1.15rem; }
.outcome-areas__grid p { margin: 0; color: var(--muted); font-size: .85rem; }
.outcome-areas__grid article:last-child h3 { color: var(--white); }
.outcome-areas__grid article:last-child p { color: rgba(255,255,255,.68); }

.measurement { position: relative; overflow: hidden; padding-block: clamp(90px, 11vw, 140px); color: var(--white); background: linear-gradient(135deg, var(--navy-900), var(--navy)); }
.measurement__pattern { position: absolute; inset: 0; opacity: .09; background-image: radial-gradient(var(--sky) 2px, transparent 2px); background-size: 24px 24px; }
.measurement::after { content: ""; position: absolute; width: 440px; height: 440px; right: -190px; bottom: -270px; border: 65px solid rgba(46,158,63,.35); border-left-color: rgba(245,166,35,.32); border-radius: 50%; }
.measurement__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 9vw, 130px); align-items: center; }
.measurement h2 { margin: 0; font-size: clamp(2.4rem, 4.8vw, 4rem); line-height: 1.04; letter-spacing: -.045em; }
.measurement__copy > p:not(.eyebrow) { color: rgba(255,255,255,.7); }
.measurement__methods { display: grid; gap: 12px; }
.measurement__methods article { display: grid; grid-template-columns: 54px 1fr; gap: 18px; align-items: center; padding: 20px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; }
.measurement__methods article > span { width: 54px; height: 54px; display: grid; place-items: center; color: var(--navy); background: var(--orange); border-radius: 15px; font-weight: 900; }
.measurement__methods article:nth-child(even) > span { color: var(--green); background: var(--white); }
.measurement__methods h3 { margin: 0; font-size: 1rem; }
.measurement__methods p { margin: 2px 0 0; color: rgba(255,255,255,.62); font-size: .8rem; }

.reporting { background: var(--cream); }
.reporting__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(55px, 9vw, 125px); align-items: center; }
.reporting__card { min-height: 500px; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; color: var(--white); background: var(--green-700); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.reporting__card::before { content: ""; position: absolute; width: 320px; height: 320px; border: 48px solid rgba(255,255,255,.12); border-right-color: rgba(245,166,35,.55); border-radius: 50%; }
.reporting__icon { position: relative; z-index: 1; width: 112px; height: 112px; display: grid; place-items: center; color: var(--navy); background: var(--white); border-radius: 30px; transform: rotate(-3deg); }
.reporting__icon svg { width: 58px; fill: currentColor; }
.reporting__lines { position: relative; z-index: 1; width: 170px; display: grid; gap: 8px; margin: 25px 0; }
.reporting__lines i { height: 5px; background: rgba(255,255,255,.35); border-radius: 999px; }
.reporting__lines i:nth-child(2) { width: 75%; }
.reporting__lines i:nth-child(3) { width: 48%; }
.reporting__card strong { position: relative; z-index: 1; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; }
.reporting__copy > p:not(.eyebrow) { color: var(--muted); }
.reporting__copy .lead { color: var(--ink); }
.reporting__list { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.reporting__list li { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; color: var(--navy); background: var(--white); border: 1px solid var(--line); border-radius: 12px; font-size: .86rem; font-weight: 700; }
.reporting__list span { flex: 0 0 auto; width: 24px; height: 24px; display: grid; place-items: center; color: var(--white); background: var(--green-700); border-radius: 50%; font-size: .7rem; }

.impact-stories { padding-block: 85px; color: var(--white); background: var(--navy); }
.impact-stories__inner { display: grid; grid-template-columns: 100px 1fr auto; align-items: center; gap: 38px; }
.impact-stories__mark { color: var(--orange); font-family: Georgia, serif; font-size: 9rem; line-height: .5; transform: translateY(24px); }
.impact-stories h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.05; letter-spacing: -.04em; }
.impact-stories p:not(.eyebrow) { margin: 12px 0 0; color: rgba(255,255,255,.68); }
.impact-stories .button { min-width: 205px; }

/* 100 Children page */
.page-hero--children { min-height: 650px; }
.page-hero--children .page-hero__image { background-image: url("https://thumb.wikimedia.org/wikipedia/commons/thumb/9/97/Children_play_football_at_University_of_Liberia_basketball_court.jpg/1280px-Children_play_football_at_University_of_Liberia_basketball_court.jpg"); background-position: center 43%; }
.page-hero--children .page-hero__overlay { background: linear-gradient(90deg, rgba(10,20,57,.97) 0%, rgba(18,43,89,.82) 52%, rgba(15,39,72,.35) 100%); }
.children-hero__number { position: absolute; z-index: 1; right: 4vw; bottom: -45px; color: transparent; font-size: clamp(13rem, 28vw, 27rem); font-weight: 950; letter-spacing: -.1em; line-height: .8; -webkit-text-stroke: 2px rgba(255,255,255,.18); }
.page-hero--children .page-hero__content { z-index: 2; }
.children-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.initiative-note { color: var(--white); background: var(--green-700); }
.initiative-note__inner { min-height: 105px; display: flex; align-items: center; gap: 20px; }
.initiative-note__inner > span { flex: 0 0 auto; width: 48px; height: 48px; display: grid; place-items: center; color: var(--green); background: var(--white); border-radius: 50%; }
.initiative-note svg { width: 25px; fill: currentColor; }
.initiative-note p { margin: 0; color: rgba(255,255,255,.9); font-size: .84rem; }
.initiative-note strong { color: var(--white); }

.initiative-overview { background: var(--white); }
.initiative-overview__grid { display: grid; grid-template-columns: 1.05fr .75fr; align-items: center; gap: clamp(55px, 10vw, 140px); }
.initiative-overview__copy > p:not(.eyebrow) { color: var(--muted); }
.initiative-overview__copy .lead { color: var(--ink); }
.initiative-overview__visual { min-height: 470px; position: relative; display: grid; place-items: center; }
.initiative-overview__circle { width: 330px; height: 330px; display: grid; place-content: center; color: var(--white); background: var(--navy); border: 24px solid #edf0f6; border-radius: 50%; box-shadow: var(--shadow-lg); text-align: center; }
.initiative-overview__circle::after { content: ""; position: absolute; inset: 45px; border: 3px dashed rgba(245,166,35,.5); border-radius: 50%; }
.initiative-overview__circle strong { position: relative; z-index: 1; color: var(--orange); font-size: 7rem; letter-spacing: -.1em; line-height: .8; }
.initiative-overview__circle span { position: relative; z-index: 1; margin-top: 16px; font-size: .82rem; font-weight: 850; text-transform: uppercase; letter-spacing: .18em; }
.initiative-overview__dot { position: absolute; border: 9px solid var(--white); border-radius: 50%; box-shadow: var(--shadow-sm); }
.initiative-overview__dot--orange { width: 82px; height: 82px; top: 35px; right: 20px; background: var(--orange); }
.initiative-overview__dot--green { width: 62px; height: 62px; left: 20px; bottom: 45px; background: var(--green); }
.initiative-overview__dot--sky { width: 45px; height: 45px; left: 30px; top: 75px; background: var(--sky); }

.child-principles { padding-block: clamp(85px, 10vw, 130px); background: var(--cream); }
.child-principles__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.child-principles__grid article { min-height: 370px; position: relative; display: flex; flex-direction: column; padding: 30px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.child-principles__grid article::after { content: ""; position: absolute; width: 150px; height: 150px; right: -80px; bottom: -80px; border: 25px solid rgba(46,158,63,.08); border-left-color: rgba(245,166,35,.15); border-radius: 50%; }
.child-principles__icon { width: 68px; height: 68px; display: grid; place-items: center; color: var(--white); background: var(--navy); border-radius: 20px; }
.child-principles__grid article:nth-child(2) .child-principles__icon { background: var(--green); }
.child-principles__grid article:nth-child(3) .child-principles__icon { color: var(--navy); background: var(--orange); }
.child-principles__icon svg { width: 34px; fill: currentColor; }
.child-principles__number { margin-top: 45px; color: var(--orange-text); font-size: .72rem; font-weight: 900; }
.child-principles__grid h3 { margin: auto 0 8px; color: var(--navy); font-size: 1.25rem; }
.child-principles__grid p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: .86rem; }

.initiative-details { background: var(--white); }
.initiative-details__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(55px, 9vw, 120px); align-items: start; }
.initiative-details__intro { position: sticky; top: 130px; }
.initiative-details__intro > p:not(.eyebrow) { color: var(--muted); }
.initiative-details__list { display: grid; gap: 12px; }
.initiative-details__list article { display: grid; grid-template-columns: 48px 1fr auto; gap: 18px; align-items: center; padding: 22px; background: #f7f9fb; border: 1px solid var(--line); border-radius: 17px; }
.initiative-details__list article > span { width: 48px; height: 48px; display: grid; place-items: center; color: var(--white); background: var(--navy); border-radius: 14px; font-size: .76rem; font-weight: 900; }
.initiative-details__list article:nth-child(even) > span { background: var(--green-700); }
.initiative-details__list h3 { margin: 0; color: var(--navy); font-size: 1rem; }
.initiative-details__list p { margin: 3px 0 0; color: var(--muted); font-size: .8rem; }
.initiative-details__list strong { padding: 6px 10px; color: #8b620f; background: #fff2d4; border-radius: 999px; font-size: .65rem; white-space: nowrap; }

.safeguarding { position: relative; overflow: hidden; padding-block: clamp(90px, 11vw, 140px); color: var(--white); background: linear-gradient(135deg, var(--navy-900), var(--navy)); }
.safeguarding__pattern { position: absolute; inset: 0; opacity: .08; background-image: radial-gradient(var(--sky) 2px, transparent 2px); background-size: 24px 24px; }
.safeguarding__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(55px, 9vw, 130px); align-items: center; }
.safeguarding__shield { min-height: 390px; display: grid; place-items: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); }
.safeguarding__shield svg { width: 180px; fill: var(--green); filter: drop-shadow(0 20px 30px rgba(0,0,0,.25)); }
.safeguarding h2 { margin: 0; font-size: clamp(2.35rem, 4.7vw, 4rem); line-height: 1.04; letter-spacing: -.045em; }
.safeguarding p:not(.eyebrow) { color: rgba(255,255,255,.7); }

.initiative-faq { background: var(--cream); }
.initiative-faq__grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(55px, 9vw, 120px); align-items: start; }
.initiative-faq__grid > div:first-child > p:not(.eyebrow) { color: var(--muted); }
.initiative-faq__items { display: grid; gap: 12px; }
.initiative-faq details { background: var(--white); border: 1px solid var(--line); border-radius: 16px; }
.initiative-faq summary { position: relative; padding: 20px 54px 20px 22px; color: var(--navy); font-weight: 800; cursor: pointer; list-style: none; }
.initiative-faq summary::-webkit-details-marker { display: none; }
.initiative-faq summary::after { content: "+"; position: absolute; top: 50%; right: 20px; width: 27px; height: 27px; display: grid; place-items: center; color: var(--white); background: var(--green); border-radius: 50%; transform: translateY(-50%); }
.initiative-faq details[open] summary::after { content: "−"; background: var(--navy); }
.initiative-faq details p { margin: 0; padding: 0 22px 22px; color: var(--muted); font-size: .87rem; }

.children-connect { position: relative; overflow: hidden; padding-block: 90px; color: var(--white); background: var(--green-700); }
.children-connect__ribbon { position: absolute; width: 420px; height: 420px; right: -160px; top: -200px; border: 62px solid rgba(255,255,255,.12); border-left-color: rgba(245,166,35,.42); border-radius: 50%; }
.children-connect__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 65px; }
.children-connect h2 { margin: 0; font-size: clamp(2.25rem, 4.5vw, 3.8rem); line-height: 1.05; letter-spacing: -.04em; }
.children-connect p:not(.eyebrow) { color: rgba(255,255,255,.9); }
.children-connect .button { flex: 0 0 auto; }

/* Partners page */
.page-hero--partners { min-height: 620px; }
.page-hero--partners .page-hero__image { background-image: url("https://thumb.wikimedia.org/wikipedia/commons/thumb/c/c4/Gwealey_community_%2825104242156%29.jpg/1280px-Gwealey_community_%2825104242156%29.jpg"); background-position: center 44%; }
.partner-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.partner-note { color: var(--white); background: var(--green-700); }
.partner-note__inner { min-height: 100px; display: flex; align-items: center; gap: 20px; }
.partner-note__inner > span { flex: 0 0 auto; width: 48px; height: 48px; display: grid; place-items: center; color: var(--green); background: var(--white); border-radius: 50%; }
.partner-note svg { width: 25px; fill: currentColor; }
.partner-note p { margin: 0; color: rgba(255,255,255,.9); font-size: .84rem; }
.partner-note strong { color: var(--white); }

.partner-intro { background: var(--white); }
.partner-intro__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(50px, 9vw, 125px); align-items: start; }
.partner-intro__grid > div:last-child p { color: var(--muted); }
.partner-intro__grid > div:last-child .lead { margin-top: 0; color: var(--ink); }

.partner-types { padding-block: clamp(85px, 10vw, 130px); background: var(--cream); }
.partner-types__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.partner-types__grid article { min-height: 365px; position: relative; display: flex; flex-direction: column; padding: 28px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .25s ease, box-shadow .25s ease; }
.partner-types__grid article:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.partner-types__number { color: var(--orange-text); font-size: .72rem; font-weight: 900; letter-spacing: .13em; }
.partner-types__icon { width: 68px; height: 68px; display: grid; place-items: center; margin-top: 34px; color: var(--white); background: var(--navy); border-radius: 20px; }
.partner-types__grid article:nth-child(even) .partner-types__icon { background: var(--green); }
.partner-types__icon svg { width: 34px; fill: currentColor; }
.partner-types__grid h3 { margin: auto 0 8px; color: var(--navy); font-size: 1.17rem; }
.partner-types__grid p { margin: 0; color: var(--muted); font-size: .84rem; }

.collaboration { background: var(--white); }
.collaboration__layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(55px, 9vw, 120px); align-items: start; }
.collaboration__intro { position: sticky; top: 130px; }
.collaboration__intro > p:not(.eyebrow) { color: var(--muted); }
.collaboration__links { display: grid; gap: 10px; }
.collaboration__links a { display: grid; grid-template-columns: 50px 1fr 38px; gap: 18px; align-items: center; min-height: 88px; padding: 18px 20px; background: #f7f9fb; border: 1px solid var(--line); border-radius: 17px; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.collaboration__links a:hover { transform: translateX(6px); background: var(--white); border-color: var(--green); box-shadow: var(--shadow-sm); }
.collaboration__links span { width: 50px; height: 50px; display: grid; place-items: center; color: var(--white); background: var(--navy); border-radius: 14px; font-size: .74rem; font-weight: 900; }
.collaboration__links a:nth-child(even) span { background: var(--green-700); }
.collaboration__links strong { color: var(--navy); font-size: .92rem; }
.collaboration__links i { width: 34px; height: 34px; display: grid; place-items: center; color: var(--navy); background: var(--white); border-radius: 50%; font-style: normal; }

.partnership-principles { position: relative; overflow: hidden; padding-block: clamp(90px, 11vw, 140px); color: var(--white); background: linear-gradient(135deg, var(--navy-900), var(--navy)); }
.partnership-principles__pattern { position: absolute; inset: 0; opacity: .08; background-image: radial-gradient(var(--sky) 2px, transparent 2px); background-size: 25px 25px; }
.partnership-principles::after { content: ""; position: absolute; width: 420px; height: 420px; right: -170px; bottom: -260px; border: 62px solid rgba(46,158,63,.35); border-left-color: rgba(245,166,35,.32); border-radius: 50%; }
.partnership-principles__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 9vw, 130px); align-items: center; }
.partnership-principles h2 { margin: 0; font-size: clamp(2.35rem, 4.7vw, 4rem); line-height: 1.04; letter-spacing: -.045em; }
.partnership-principles__grid > div:first-child > p:not(.eyebrow) { color: rgba(255,255,255,.7); }
.partnership-principles__cards { display: grid; gap: 12px; }
.partnership-principles__cards article { display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: center; padding: 19px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 17px; }
.partnership-principles__cards article > span { width: 52px; height: 52px; display: grid; place-items: center; color: var(--navy); background: var(--orange); border-radius: 15px; font-size: .75rem; font-weight: 900; }
.partnership-principles__cards article:nth-child(even) > span { color: var(--green); background: var(--white); }
.partnership-principles__cards h3 { margin: 0; font-size: 1rem; }
.partnership-principles__cards p { margin: 2px 0 0; color: rgba(255,255,255,.62); font-size: .79rem; }

.partner-process { background: var(--cream); }
.partner-process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 0; padding: 0; list-style: none; }
.partner-process__grid li { min-height: 280px; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.partner-process__grid span { width: 50px; height: 50px; display: grid; place-items: center; color: var(--white); background: var(--navy); border-radius: 15px; font-weight: 900; }
.partner-process__grid li:nth-child(even) span { background: var(--green-700); }
.partner-process__grid h3 { margin: 55px 0 8px; color: var(--navy); font-size: 1.15rem; }
.partner-process__grid p { margin: 0; color: var(--muted); font-size: .84rem; }

.partner-directory { background: var(--white); }
.partner-directory__inner { display: grid; grid-template-columns: 130px 1fr; gap: 35px; align-items: center; padding: clamp(34px, 6vw, 65px); background: #f7f9fb; border: 2px dashed #cfd6e2; border-radius: var(--radius-lg); }
.partner-directory__icon { width: 120px; height: 120px; display: grid; place-items: center; color: var(--white); background: var(--green); border-radius: 30px; }
.partner-directory__icon svg { width: 56px; fill: currentColor; }
.partner-directory h2 { margin: 0; font-size: clamp(1.8rem, 3.6vw, 2.8rem); color: var(--navy); line-height: 1.1; letter-spacing: -.035em; }
.partner-directory p:not(.eyebrow) { margin: 12px 0 0; color: var(--muted); }

.partner-contact { position: relative; overflow: hidden; padding-block: clamp(90px, 11vw, 135px); color: var(--white); background: var(--green-700); }
.partner-contact__ring { position: absolute; width: 430px; height: 430px; right: -170px; top: -230px; border: 65px solid rgba(255,255,255,.12); border-left-color: rgba(245,166,35,.45); border-radius: 50%; }
.partner-contact__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .8fr; gap: clamp(60px, 9vw, 120px); align-items: center; }
.partner-contact h2 { margin: 0; font-size: clamp(2.35rem, 4.8vw, 4rem); line-height: 1.04; letter-spacing: -.045em; }
.partner-contact p:not(.eyebrow) { color: rgba(255,255,255,.9); }
.partner-contact__email { display: grid; grid-template-columns: 58px 1fr 35px; align-items: center; gap: 16px; padding: 24px; color: var(--navy); background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); transition: transform .2s ease; }
.partner-contact__email:hover { transform: translateY(-5px); }
.partner-contact__email > span { grid-row: 1 / 3; width: 58px; height: 58px; display: grid; place-items: center; color: var(--white); background: var(--navy); border-radius: 16px; }
.partner-contact__email svg { width: 28px; fill: currentColor; }
.partner-contact__email small { align-self: end; color: var(--muted); font-weight: 700; }
.partner-contact__email strong { grid-column: 2; align-self: start; overflow-wrap: anywhere; font-size: .88rem; }
.partner-contact__email i { grid-column: 3; grid-row: 1 / 3; width: 34px; height: 34px; display: grid; place-items: center; color: var(--white); background: var(--green); border-radius: 50%; font-style: normal; }

/* News & Stories page */
.story-placeholder__link { margin-top: 18px; }
.page-hero--stories { min-height: 590px; }
.page-hero--stories .page-hero__image { background-image: url("https://thumb.wikimedia.org/wikipedia/commons/thumb/f/f5/Liberia_-_Pottery_making.jpg/1280px-Liberia_-_Pottery_making.jpg"); background-position: center 43%; }
.newsroom-note { color: var(--white); background: var(--green-700); }
.newsroom-note__inner { min-height: 105px; display: flex; align-items: center; gap: 20px; }
.newsroom-note__inner > span { flex: 0 0 auto; width: 48px; height: 48px; display: grid; place-items: center; color: var(--green); background: var(--white); border-radius: 50%; }
.newsroom-note svg { width: 25px; fill: currentColor; }
.newsroom-note p { margin: 0; color: rgba(255,255,255,.9); font-size: .84rem; }
.newsroom-note strong { color: var(--white); }

.newsroom-intro { background: var(--white); }
.newsroom-intro__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(50px, 9vw, 125px); align-items: start; }
.newsroom-intro__grid > div:last-child p { color: var(--muted); }
.newsroom-intro__grid > div:last-child .lead { margin-top: 0; color: var(--ink); }

.story-templates { padding-block: clamp(85px, 10vw, 130px); background: var(--cream); }
.story-templates__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.news-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 22px rgba(17,28,73,.04); }
.news-card--featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.05fr .95fr; }
.news-card__media { min-height: 285px; position: relative; display: grid; place-items: center; overflow: hidden; }
.news-card--featured .news-card__media { min-height: 420px; }
.news-card__media::before, .news-card__media::after { content: ""; position: absolute; border-radius: 50%; }
.news-card__media::before { width: 240px; height: 240px; border: 40px solid rgba(255,255,255,.14); }
.news-card__media::after { width: 70px; height: 70px; right: 30px; top: 30px; background: rgba(255,255,255,.16); }
.news-card__media--program { background: linear-gradient(145deg, var(--navy-900), #29468f); }
.news-card__media--community { background: linear-gradient(145deg, #207d30, var(--green)); }
.news-card__media--press { background: linear-gradient(145deg, #e3900b, var(--orange)); }
.news-card__media > span { position: relative; z-index: 1; padding: 9px 14px; color: var(--white); border: 1px solid rgba(255,255,255,.42); border-radius: 999px; font-size: .7rem; font-weight: 850; text-transform: uppercase; letter-spacing: .13em; }
.news-card__body { display: flex; flex-direction: column; padding: clamp(25px, 4vw, 40px); }
.news-card__meta { display: flex; justify-content: space-between; gap: 18px; color: var(--muted); font-size: .68rem; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.news-card__meta > span { color: var(--green-700); }
.news-card__body h3 { margin: 28px 0 12px; color: var(--navy); font-size: clamp(1.35rem, 2.7vw, 2rem); line-height: 1.18; letter-spacing: -.025em; }
.news-card:not(.news-card--featured) .news-card__body h3 { font-size: 1.35rem; }
.news-card__body > p { margin: 0 0 25px; color: var(--muted); font-size: .87rem; }
.news-card__status { align-self: flex-start; margin-top: auto; padding: 7px 11px; color: #8a6415; background: #fff1ce; border-radius: 999px; font-size: .65rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }

.story-categories { background: var(--white); }
.story-categories__layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(55px, 9vw, 120px); align-items: start; }
.story-categories__intro { position: sticky; top: 130px; }
.story-categories__intro > p:not(.eyebrow) { color: var(--muted); }
.story-categories__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.story-categories__grid article { min-height: 245px; padding: 28px; background: #f7f9fb; border: 1px solid var(--line); border-radius: var(--radius); }
.story-categories__grid span { color: var(--orange-text); font-size: .72rem; font-weight: 900; }
.story-categories__grid h3 { margin: 48px 0 8px; color: var(--navy); font-size: 1.18rem; }
.story-categories__grid p { margin: 0; color: var(--muted); font-size: .84rem; }

.story-standards { position: relative; overflow: hidden; padding-block: clamp(90px, 11vw, 140px); color: var(--white); background: linear-gradient(135deg, var(--navy-900), var(--navy)); }
.story-standards__pattern { position: absolute; inset: 0; opacity: .08; background-image: radial-gradient(var(--sky) 2px, transparent 2px); background-size: 24px 24px; }
.story-standards::after { content: ""; position: absolute; width: 420px; height: 420px; right: -180px; bottom: -260px; border: 62px solid rgba(46,158,63,.35); border-left-color: rgba(245,166,35,.32); border-radius: 50%; }
.story-standards__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 9vw, 130px); align-items: center; }
.story-standards h2 { margin: 0; font-size: clamp(2.35rem, 4.7vw, 4rem); line-height: 1.04; letter-spacing: -.045em; }
.story-standards__grid > div:first-child > p:not(.eyebrow) { color: rgba(255,255,255,.7); }
.story-standards__list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.story-standards__list li { display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: center; padding: 19px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 17px; }
.story-standards__list li > span { width: 52px; height: 52px; display: grid; place-items: center; color: var(--navy); background: var(--orange); border-radius: 15px; font-size: .75rem; font-weight: 900; }
.story-standards__list li:nth-child(even) > span { color: var(--green); background: var(--white); }
.story-standards__list h3 { margin: 0; font-size: 1rem; }
.story-standards__list p { margin: 2px 0 0; color: rgba(255,255,255,.62); font-size: .79rem; }

.story-ready { background: var(--cream); }
.story-ready__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(55px, 9vw, 125px); align-items: center; }
.story-ready__visual { min-height: 500px; position: relative; display: grid; place-items: center; overflow: hidden; background: var(--green); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.story-ready__visual::before { content: ""; position: absolute; width: 330px; height: 330px; border: 50px solid rgba(255,255,255,.12); border-right-color: rgba(245,166,35,.5); border-radius: 50%; }
.story-ready__page { position: relative; z-index: 1; width: 210px; min-height: 255px; display: grid; align-content: end; gap: 12px; padding: 24px; background: var(--white); border-radius: 15px; box-shadow: 0 24px 45px rgba(10,20,57,.25); transform: rotate(-5deg); }
.story-ready__page::before { content: ""; position: absolute; inset: 22px 22px auto; height: 105px; background: var(--navy); border-radius: 9px; }
.story-ready__page span { height: 7px; background: #dce2ec; border-radius: 99px; }
.story-ready__page span:nth-child(3) { width: 60%; }
.story-ready__page i { position: absolute; width: 62px; height: 18px; left: 22px; bottom: 22px; background: var(--orange); border-radius: 99px; }
.story-ready__camera { position: absolute; z-index: 2; right: 50px; bottom: 45px; width: 100px; height: 100px; display: grid; place-items: center; color: var(--white); background: var(--navy); border: 8px solid rgba(255,255,255,.85); border-radius: 28px; transform: rotate(6deg); }
.story-ready__camera svg { width: 54px; fill: currentColor; }
.story-ready__grid > div:last-child > p:not(.eyebrow) { color: var(--muted); }
.story-ready__list { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.story-ready__list li { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: center; padding: 14px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
.story-ready__list li > span { width: 44px; height: 44px; display: grid; place-items: center; color: var(--white); background: var(--navy); border-radius: 12px; font-weight: 900; }
.story-ready__list li:nth-child(even) > span { background: var(--green-700); }
.story-ready__list strong { display: block; color: var(--navy); font-size: .9rem; }
.story-ready__list small { display: block; color: var(--muted); font-size: .74rem; }

.newsroom-contact { position: relative; overflow: hidden; padding-block: 90px; color: var(--white); background: var(--green-700); }
.newsroom-contact__ring { position: absolute; width: 420px; height: 420px; right: -160px; top: -220px; border: 62px solid rgba(255,255,255,.12); border-left-color: rgba(245,166,35,.44); border-radius: 50%; }
.newsroom-contact__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 65px; }
.newsroom-contact h2 { margin: 0; font-size: clamp(2.25rem, 4.5vw, 3.8rem); line-height: 1.05; letter-spacing: -.04em; }
.newsroom-contact p:not(.eyebrow) { color: rgba(255,255,255,.9); }
.newsroom-contact .button { flex: 0 0 auto; }

/* Contact page */
.page-hero--contact { min-height: 590px; }
.page-hero--contact .page-hero__image { background-image: url("https://thumb.wikimedia.org/wikipedia/commons/thumb/e/e7/Liberia_-_Muddy_market.jpg/1280px-Liberia_-_Muddy_market.jpg"); background-position: center 45%; }

.contact-options { padding-block: clamp(85px, 10vw, 130px); background: var(--cream); }
.contact-options__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 45px; }
.contact-options__grid > * { min-height: 280px; position: relative; display: flex; flex-direction: column; align-items: flex-start; padding: 28px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.contact-options__grid > a { transition: transform .22s ease, border-color .22s ease; }
.contact-options__grid > a:hover { transform: translateY(-5px); border-color: var(--green); }
.contact-options__icon { width: 62px; height: 62px; display: grid; place-items: center; color: var(--white); background: var(--navy); border-radius: 18px; }
.contact-options__grid > *:nth-child(2) .contact-options__icon { background: var(--green); }
.contact-options__grid > *:nth-child(3) .contact-options__icon { color: var(--navy); background: var(--orange); }
.contact-options__icon svg { width: 30px; fill: currentColor; }
.contact-options__grid small { margin-top: auto; color: var(--green-700); font-size: .7rem; font-weight: 850; text-transform: uppercase; letter-spacing: .11em; }
.contact-options__grid strong { margin-top: 5px; color: var(--navy); font-size: .95rem; overflow-wrap: anywhere; }
.contact-options__grid i { position: absolute; right: 24px; bottom: 24px; width: 34px; height: 34px; display: grid; place-items: center; color: var(--white); background: var(--green); border-radius: 50%; font-style: normal; }
.contact-options__grid p { margin: 6px 0 0; color: var(--muted); font-size: .76rem; }

.contact-form-section { padding-block: clamp(90px, 11vw, 145px); background: var(--white); }
.contact-form-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(55px, 9vw, 125px); align-items: start; }
.contact-form-intro { position: sticky; top: 130px; }
.contact-form-intro h2 { margin: 0; color: var(--navy); font-size: clamp(2.4rem, 4.8vw, 4rem); line-height: 1.04; letter-spacing: -.045em; }
.contact-form-intro > p:not(.eyebrow) { color: var(--muted); }
.contact-form-intro__note { display: grid; grid-template-columns: 38px 1fr; gap: 13px; margin-top: 28px; padding: 18px; color: var(--navy); background: #f2f7fb; border: 1px solid #d9e7f0; border-radius: 15px; }
.contact-form-intro__note svg { width: 28px; fill: var(--sky); }
.contact-form-intro__note p { margin: 0; color: var(--muted); font-size: .78rem; }
.contact-form { display: grid; gap: 21px; padding: clamp(28px, 5vw, 46px); background: #f7f9fb; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: grid; gap: 8px; }
.form-field label { color: var(--navy); font-size: .79rem; font-weight: 800; }
.form-field label > span:not([aria-hidden]) { color: var(--muted); font-weight: 600; }
.form-field label > span[aria-hidden] { color: #b84a3d; }
.form-field input, .form-field select, .form-field textarea { width: 100%; color: var(--ink); background: var(--white); border: 1px solid #cdd5e1; border-radius: 11px; }
.form-field input, .form-field select { min-height: 53px; padding: 11px 14px; }
.form-field textarea { min-height: 170px; padding: 13px 14px; resize: vertical; }
.form-field input:hover, .form-field select:hover, .form-field textarea:hover { border-color: #9ba8bb; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--sky); box-shadow: 0 0 0 4px rgba(58,174,216,.15); outline: 0; }
.contact-form .button { justify-self: start; cursor: pointer; }
.form-status { min-height: 1.5em; margin: -8px 0 0; color: var(--green-700); font-size: .78rem; font-weight: 700; }

.inquiry-guidance { background: var(--cream); }
.inquiry-guidance__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 45px; }
.inquiry-guidance__grid article { min-height: 300px; display: flex; flex-direction: column; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.inquiry-guidance__grid span { color: var(--orange-text); font-size: .72rem; font-weight: 900; letter-spacing: .13em; }
.inquiry-guidance__grid h3 { margin: auto 0 9px; color: var(--navy); font-size: 1.2rem; }
.inquiry-guidance__grid p { margin: 0; color: var(--muted); font-size: .85rem; }

.contact-location { position: relative; overflow: hidden; padding-block: clamp(90px, 11vw, 140px); color: var(--white); background: linear-gradient(135deg, var(--navy-900), var(--navy)); }
.contact-location__pattern { position: absolute; inset: 0; opacity: .08; background-image: radial-gradient(var(--sky) 2px, transparent 2px); background-size: 24px 24px; }
.contact-location::after { content: ""; position: absolute; width: 430px; height: 430px; right: -175px; bottom: -270px; border: 64px solid rgba(46,158,63,.35); border-left-color: rgba(245,166,35,.34); border-radius: 50%; }
.contact-location__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .8fr; gap: clamp(60px, 9vw, 125px); align-items: center; }
.contact-location h2 { margin: 0; font-size: clamp(2.4rem, 4.8vw, 4rem); line-height: 1.04; letter-spacing: -.045em; }
.contact-location__grid > div:first-of-type > p:not(.eyebrow) { color: rgba(255,255,255,.7); }
.contact-location__card { min-height: 300px; display: flex; flex-direction: column; align-items: flex-start; padding: 32px; color: var(--ink); background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.contact-location__card > span { width: 66px; height: 66px; display: grid; place-items: center; color: var(--white); background: var(--green); border-radius: 20px; }
.contact-location__card svg { width: 34px; fill: currentColor; }
.contact-location__card small { margin-top: auto; color: var(--green-700); font-weight: 850; text-transform: uppercase; letter-spacing: .12em; }
.contact-location__card strong { margin-top: 6px; color: var(--navy); font-size: 1.35rem; }
.contact-location__card p { margin: 8px 0 0; color: var(--muted); font-size: .82rem; }

.contact-safety { color: var(--navy); background: var(--orange); }
.contact-safety__inner { min-height: 112px; display: flex; align-items: center; gap: 20px; }
.contact-safety__inner > span { flex: 0 0 auto; width: 50px; height: 50px; display: grid; place-items: center; color: var(--white); background: var(--navy); border-radius: 50%; }
.contact-safety svg { width: 27px; fill: currentColor; }
.contact-safety p { margin: 0; font-size: .83rem; }
.contact-safety strong { display: block; font-size: .94rem; }

/* Support page */
.page-hero--support { min-height: 650px; }
.page-hero--support .page-hero__image { background-image: url("https://thumb.wikimedia.org/wikipedia/commons/thumb/d/dd/Charlie_Too_Town_Community%2C_Bong_County_%2825130602435%29.jpg/1280px-Charlie_Too_Town_Community%2C_Bong_County_%2825130602435%29.jpg"); background-position: center 40%; }
.support-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.giving-notice { color: var(--white); background: var(--green-700); }
.giving-notice__inner { min-height: 118px; display: grid; grid-template-columns: 52px 1fr auto; gap: 20px; align-items: center; }
.giving-notice__inner > span { width: 52px; height: 52px; display: grid; place-items: center; color: var(--green); background: var(--white); border-radius: 50%; }
.giving-notice svg { width: 28px; fill: currentColor; }
.giving-notice p { margin: 0; color: rgba(255,255,255,.9); font-size: .83rem; }
.giving-notice strong { display: block; color: var(--white); font-size: .95rem; }
.giving-notice a { padding: 10px 15px; color: var(--green-700); background: var(--white); border-radius: 999px; font-size: .74rem; font-weight: 850; white-space: nowrap; }

.support-ways { padding-block: clamp(90px, 11vw, 140px); background: var(--cream); }
.support-ways__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
.support-ways__grid article { min-height: 405px; display: flex; flex-direction: column; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .24s ease, box-shadow .24s ease; }
.support-ways__grid article:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.support-ways__number { color: var(--orange-text); font-size: .72rem; font-weight: 900; letter-spacing: .13em; }
.support-ways__icon { width: 68px; height: 68px; display: grid; place-items: center; margin-top: 32px; color: var(--white); background: var(--navy); border-radius: 20px; }
.support-ways__grid article:nth-child(even) .support-ways__icon { background: var(--green-700); }
.support-ways__icon svg { width: 34px; fill: currentColor; }
.support-ways__grid h3 { margin: auto 0 8px; color: var(--navy); font-size: 1.17rem; }
.support-ways__grid p { margin: 0 0 18px; color: var(--muted); font-size: .83rem; }
.support-ways__grid a { color: var(--green-700); font-size: .78rem; font-weight: 850; }

.support-programs { background: var(--white); }
.support-programs__layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(55px, 9vw, 120px); align-items: start; }
.support-programs__intro { position: sticky; top: 130px; }
.support-programs__intro > p:not(.eyebrow) { color: var(--muted); }
.support-programs__intro .button { margin-top: 22px; }
.support-programs__links { display: grid; gap: 11px; }
.support-programs__links a { display: grid; grid-template-columns: 50px 1fr 36px; gap: 17px; align-items: center; min-height: 94px; padding: 18px 20px; background: #f7f9fb; border: 1px solid var(--line); border-radius: 17px; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.support-programs__links a:hover { transform: translateX(6px); border-color: var(--green); background: var(--white); }
.support-programs__links a > span { width: 50px; height: 50px; display: grid; place-items: center; color: var(--white); background: var(--navy); border-radius: 14px; font-size: .74rem; font-weight: 900; }
.support-programs__links a:nth-child(even) > span { background: var(--green-700); }
.support-programs__links strong { display: block; color: var(--navy); font-size: .9rem; }
.support-programs__links small { display: block; margin-top: 2px; color: var(--muted); font-size: .72rem; }
.support-programs__links i { width: 34px; height: 34px; display: grid; place-items: center; color: var(--white); background: var(--green); border-radius: 50%; font-style: normal; }

.support-principles { position: relative; overflow: hidden; padding-block: clamp(90px, 11vw, 140px); color: var(--white); background: linear-gradient(135deg, var(--navy-900), var(--navy)); }
.support-principles__pattern { position: absolute; inset: 0; opacity: .08; background-image: radial-gradient(var(--sky) 2px, transparent 2px); background-size: 24px 24px; }
.support-principles::after { content: ""; position: absolute; width: 440px; height: 440px; right: -190px; bottom: -270px; border: 65px solid rgba(46,158,63,.35); border-left-color: rgba(245,166,35,.34); border-radius: 50%; }
.support-principles__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 9vw, 130px); align-items: center; }
.support-principles h2 { margin: 0; font-size: clamp(2.4rem, 4.8vw, 4rem); line-height: 1.04; letter-spacing: -.045em; }
.support-principles__grid > div > p:not(.eyebrow) { color: rgba(255,255,255,.7); }
.support-principles__list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.support-principles__list li { display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: center; padding: 19px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 17px; }
.support-principles__list li > span { width: 52px; height: 52px; display: grid; place-items: center; color: var(--navy); background: var(--orange); border-radius: 15px; font-size: .75rem; font-weight: 900; }
.support-principles__list li:nth-child(even) > span { color: var(--green); background: var(--white); }
.support-principles__list h3 { margin: 0; font-size: 1rem; }
.support-principles__list p { margin: 2px 0 0; color: rgba(255,255,255,.62); font-size: .79rem; }

.support-interest { padding-block: clamp(90px, 11vw, 145px); background: var(--cream); }
.support-interest__layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(55px, 9vw, 125px); align-items: start; }
.support-interest__intro { position: sticky; top: 130px; }
.support-interest__intro h2 { margin: 0; color: var(--navy); font-size: clamp(2.4rem, 4.8vw, 4rem); line-height: 1.04; letter-spacing: -.045em; }
.support-interest__intro > p:not(.eyebrow) { color: var(--muted); }
.support-interest__email { margin-top: 28px; padding: 18px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
.support-interest__email small { display: block; color: var(--green-700); font-size: .68rem; font-weight: 850; text-transform: uppercase; letter-spacing: .12em; }
.support-interest__email a { display: block; margin-top: 5px; color: var(--navy); font-size: .82rem; font-weight: 800; overflow-wrap: anywhere; }
.support-form { display: grid; gap: 21px; padding: clamp(28px, 5vw, 46px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.support-form .button { justify-self: start; cursor: pointer; }

.support-faq { background: var(--white); }
.support-faq__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(55px, 9vw, 120px); align-items: start; }
.support-faq__grid > div:first-child { position: sticky; top: 130px; }
.support-faq__grid > div:first-child > p:not(.eyebrow) { color: var(--muted); }
.support-faq__items { display: grid; gap: 12px; }
.support-faq details { background: var(--cream); border: 1px solid var(--line); border-radius: 16px; }
.support-faq summary { position: relative; padding: 21px 56px 21px 22px; color: var(--navy); font-weight: 800; cursor: pointer; list-style: none; }
.support-faq summary::-webkit-details-marker { display: none; }
.support-faq summary::after { content: "+"; position: absolute; top: 50%; right: 20px; width: 28px; height: 28px; display: grid; place-items: center; color: var(--white); background: var(--green); border-radius: 50%; transform: translateY(-50%); }
.support-faq details[open] summary::after { content: "−"; background: var(--navy); }
.support-faq details p { margin: 0; padding: 0 22px 22px; color: var(--muted); font-size: .86rem; }

/* Founder profile */
.founder-profile-hero { min-height: 690px; position: relative; display: grid; align-items: center; overflow: hidden; color: var(--white); background: linear-gradient(135deg, var(--navy-900), var(--navy)); }
.founder-profile-hero::after { content: ""; position: absolute; width: 620px; height: 620px; right: -260px; bottom: -360px; border: 74px solid rgba(46,158,63,.46); border-left-color: rgba(245,166,35,.42); border-radius: 50%; }
.founder-profile-hero__pattern { position: absolute; inset: 0; opacity: .07; background-image: radial-gradient(var(--sky) 2px, transparent 2px); background-size: 25px 25px; }
.founder-profile-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(55px, 9vw, 125px); align-items: center; padding-block: 105px; }
.founder-profile-hero h1 { max-width: 780px; margin: 0; font-size: clamp(3.2rem, 6.4vw, 5.7rem); font-weight: 900; line-height: .98; letter-spacing: -.055em; }
.founder-profile-hero__role { margin: 24px 0 0; color: var(--orange); font-size: .85rem; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }
.founder-profile-hero__organization { margin: 10px 0 0; color: rgba(255,255,255,.78); font-size: 1.08rem; }
.founder-profile-hero__motto { max-width: 530px; margin: 28px 0 0; padding-left: 19px; color: rgba(255,255,255,.92); border-left: 3px solid var(--green); font-size: 1.12rem; font-style: italic; }
.founder-profile-hero__visual { min-height: 430px; position: relative; display: grid; place-items: center; }
.founder-profile-hero__portrait { width: min(100%, 390px); aspect-ratio: 1; position: relative; display: grid; place-items: center; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 50%; box-shadow: 0 35px 80px rgba(5,12,42,.32); backdrop-filter: blur(8px); }
.founder-profile-hero__portrait::before { content: ""; position: absolute; inset: 25px; border: 2px solid rgba(255,255,255,.14); border-radius: inherit; }
.founder-profile-hero__monogram { position: relative; z-index: 1; font-size: clamp(4.8rem, 9vw, 7.2rem); font-weight: 950; letter-spacing: -.1em; }
.founder-profile-hero__badge { position: absolute; right: 0; bottom: 42px; z-index: 2; max-width: 210px; padding: 18px 22px; color: var(--navy); background: var(--orange); border: 7px solid var(--navy); border-radius: 18px; box-shadow: var(--shadow-lg); }
.founder-profile-hero__badge small { display: block; font-size: .64rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.founder-profile-hero__badge strong { display: block; margin-top: 2px; font-size: 1rem; }

.profile-overview { background: var(--white); }
.profile-overview__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(55px, 9vw, 125px); align-items: start; }
.profile-overview__heading { position: sticky; top: 130px; }
.profile-overview__heading > p:not(.eyebrow) { color: var(--muted); }
.profile-overview__copy { display: grid; gap: 20px; }
.profile-overview__copy p { margin: 0; color: var(--muted); }
.profile-overview__copy .lead { color: var(--ink); }
.profile-overview__statement { padding: 24px; color: var(--navy); background: var(--cream); border-left: 5px solid var(--orange); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-weight: 750; }

.profile-experience { background: var(--cream); }
.profile-experience__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.profile-experience__card { min-height: 370px; display: flex; flex-direction: column; padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.profile-experience__number { color: var(--orange-text); font-size: .72rem; font-weight: 900; letter-spacing: .13em; }
.profile-experience__icon { width: 66px; height: 66px; display: grid; place-items: center; margin-top: 32px; color: var(--white); background: var(--navy); border-radius: 19px; }
.profile-experience__card:nth-child(2) .profile-experience__icon { background: var(--green-700); }
.profile-experience__card:nth-child(3) .profile-experience__icon { color: var(--navy); background: var(--orange); }
.profile-experience__icon svg { width: 34px; fill: currentColor; }
.profile-experience__card h3 { margin: auto 0 9px; color: var(--navy); font-size: 1.2rem; line-height: 1.25; }
.profile-experience__card p { margin: 0; color: var(--muted); font-size: .84rem; }
.profile-experience__note { max-width: 880px; margin: 22px auto 0; padding: 24px; color: var(--muted); background: var(--cream); border: 1px solid var(--line); border-radius: 16px; font-size: .9rem; }
.profile-experience__note strong { color: var(--navy); }

.profile-education { position: relative; overflow: hidden; color: var(--white); background: var(--navy); }
.profile-education::after { content: ""; position: absolute; width: 390px; height: 390px; right: -170px; bottom: -250px; border: 58px solid rgba(46,158,63,.35); border-left-color: rgba(245,166,35,.35); border-radius: 50%; }
.profile-education__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(55px, 9vw, 120px); align-items: center; }
.profile-education h2 { color: var(--white); }
.profile-education__grid p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.profile-education__pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.profile-education__pillars span { min-height: 105px; display: flex; align-items: flex-end; padding: 19px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; font-size: .82rem; font-weight: 800; }

.profile-vision { background: var(--white); }
.profile-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.profile-stat { min-height: 285px; display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; color: var(--white); background: var(--navy); border-radius: var(--radius); }
.profile-stat:nth-child(2) { background: var(--green-700); }
.profile-stat:nth-child(3) { color: var(--navy); background: var(--orange); }
.profile-stat strong { font-size: clamp(3.3rem, 6vw, 5.2rem); line-height: .95; letter-spacing: -.07em; }
.profile-stat span { margin-top: 16px; font-size: .86rem; font-weight: 750; line-height: 1.5; }
.profile-vision__partners { margin: 22px 0 0; padding: 24px; color: var(--muted); background: var(--cream); border: 1px solid var(--line); border-radius: 16px; }

.profile-flagship { background: var(--cream); }
.profile-flagship__card { position: relative; display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(45px, 8vw, 100px); align-items: center; padding: clamp(34px, 6vw, 70px); overflow: hidden; color: var(--white); background: linear-gradient(135deg, var(--green-700), var(--green)); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.profile-flagship__card::after { content: "100"; position: absolute; right: -25px; bottom: -85px; color: rgba(255,255,255,.08); font-size: 14rem; font-weight: 950; letter-spacing: -.1em; line-height: 1; }
.profile-flagship__number { position: relative; z-index: 1; display: grid; }
.profile-flagship__number strong { color: var(--orange); font-size: clamp(6rem, 13vw, 10rem); line-height: .8; letter-spacing: -.09em; }
.profile-flagship__number span { margin-top: 18px; font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .14em; }
.profile-flagship__copy { position: relative; z-index: 1; }
.profile-flagship__copy h2 { margin: 0; color: var(--white); }
.profile-flagship__copy p { color: rgba(255,255,255,.88); }
.profile-flagship__needs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.profile-flagship__needs span { padding: 8px 12px; color: var(--green-700); background: var(--white); border-radius: 999px; font-size: .72rem; font-weight: 850; }

.profile-principles { background: var(--white); }
.profile-principles__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin-top: 48px; }
.profile-principle { grid-column: span 2; min-height: 300px; display: flex; flex-direction: column; padding: 28px; background: #f7f9fb; border: 1px solid var(--line); border-radius: var(--radius); }
.profile-principle:nth-child(4) { grid-column: 2 / span 2; }
.profile-principle:nth-child(5) { grid-column: 4 / span 2; }
.profile-principle span { color: var(--orange-text); font-size: .72rem; font-weight: 900; letter-spacing: .13em; }
.profile-principle h3 { margin: auto 0 9px; color: var(--navy); font-size: 1.17rem; }
.profile-principle p { margin: 0; color: var(--muted); font-size: .84rem; }

.profile-faith { position: relative; overflow: hidden; color: var(--white); background: var(--green-700); }
.profile-faith__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(55px, 9vw, 120px); align-items: center; }
.profile-faith h2 { color: var(--white); }
.profile-faith p:not(.eyebrow) { color: rgba(255,255,255,.86); }
.profile-faith__values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.profile-faith__values span { min-height: 94px; display: grid; place-items: center; padding: 18px; color: var(--navy); background: var(--white); border-radius: 15px; font-size: .82rem; font-weight: 850; text-align: center; }

.profile-legacy { background: var(--cream); }
.profile-legacy__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(45px, 8vw, 100px); align-items: start; }
.profile-legacy__grid p:not(.eyebrow) { color: var(--muted); }
.profile-legacy__vision { padding: 32px; color: var(--white); background: var(--navy); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.profile-legacy__vision h3 { margin: 0 0 16px; font-size: 1.45rem; }
.profile-legacy__vision p { margin: 0; color: rgba(255,255,255,.75); }

.profile-quote { position: relative; overflow: hidden; padding-block: clamp(90px, 11vw, 140px); color: var(--white); background: linear-gradient(135deg, var(--navy-900), var(--navy)); }
.profile-quote::after { content: "“"; position: absolute; right: 5vw; top: -70px; color: rgba(255,255,255,.06); font-size: 26rem; font-family: Georgia, serif; line-height: 1; }
.profile-quote__inner { position: relative; z-index: 1; max-width: 980px; }
.profile-quote blockquote { margin: 0; font-size: clamp(2rem, 4.4vw, 3.8rem); font-weight: 800; line-height: 1.2; letter-spacing: -.04em; }
.profile-quote cite { display: block; margin-top: 28px; color: var(--orange); font-size: .78rem; font-style: normal; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }
.profile-quote__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.about__links { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }

/* Leadership */
.leadership-hero { min-height: 640px; position: relative; display: grid; align-items: center; overflow: hidden; color: var(--white); background: linear-gradient(135deg, var(--navy-900), var(--navy)); }
.leadership-hero::after { content: ""; position: absolute; width: 520px; height: 520px; right: -240px; bottom: -330px; border: 80px solid rgba(46,158,63,.4); border-left-color: rgba(245,166,35,.46); border-radius: 50%; }
.leadership-hero__pattern { position: absolute; inset: 0; opacity: .09; background-image: radial-gradient(var(--sky) 1.5px, transparent 1.5px); background-size: 24px 24px; }
.leadership-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(50px, 8vw, 105px); align-items: center; padding-block: clamp(85px, 10vw, 125px); }
.leadership-hero__content h1 { margin: 22px 0; color: var(--white); font-size: clamp(3.5rem, 6.2vw, 5.8rem); line-height: .98; letter-spacing: -.06em; }
.leadership-hero__content h1 em { color: var(--orange); font-style: normal; }
.leadership-hero__content > p:last-child { max-width: 670px; margin: 0; color: rgba(255,255,255,.74); font-size: 1.08rem; }
.leadership-hero__visual { min-height: 390px; position: relative; }
.leadership-hero__person { position: absolute; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; color: var(--white); border-radius: 50%; box-shadow: 0 32px 75px rgba(5,12,42,.35); }
.leadership-hero__person strong { font-size: clamp(2.8rem, 6vw, 5.2rem); line-height: 1; letter-spacing: -.09em; }
.leadership-hero__person span { position: relative; z-index: 1; width: 100%; margin-top: auto; padding: 34px 10px 16px; color: var(--white); background: linear-gradient(rgba(5,12,42,0), rgba(5,12,42,.82)); text-align: center; font-size: .66rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.leadership-hero__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: 50%; }
.leadership-hero__person--one { width: 245px; height: 245px; top: 0; left: 3%; z-index: 2; background: rgba(255,255,255,.1); border: 2px solid rgba(255,255,255,.22); backdrop-filter: blur(7px); }
.leadership-hero__person--two { width: 205px; height: 205px; right: 2%; bottom: 0; z-index: 3; color: var(--navy); background: var(--orange); border: 9px solid var(--navy); }
.leadership-hero__connector { position: absolute; width: 255px; height: 255px; right: 15%; top: 17%; border: 38px solid rgba(46,158,63,.48); border-left-color: rgba(58,174,216,.28); border-radius: 50%; }

.leadership-intro { background: var(--white); }
.leadership-intro__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(55px, 9vw, 120px); align-items: start; }
.leadership-intro__grid h2 { margin: 0; color: var(--navy); font-size: clamp(2.5rem, 5vw, 4.2rem); line-height: 1.03; letter-spacing: -.052em; }
.leadership-intro__grid p { margin-top: 0; color: var(--muted); }
.leadership-intro__grid .lead { color: var(--ink); }

.leadership-team { background: var(--cream); }
.leadership-team__grid { display: grid; gap: 22px; margin-top: 50px; }
.leadership-card { display: grid; grid-template-columns: .62fr 1.38fr; min-height: 540px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.leadership-card__identity { position: relative; display: grid; place-items: center; overflow: hidden; color: var(--white); background: var(--navy); }
.leadership-card__identity::after { content: ""; position: absolute; width: 270px; height: 270px; right: -145px; bottom: -155px; border: 42px solid rgba(46,158,63,.55); border-left-color: rgba(245,166,35,.42); border-radius: 50%; }
.leadership-card--evaluation .leadership-card__identity { background: var(--green-700); }
.leadership-card--evaluation .leadership-card__identity::after { border-color: rgba(27,42,99,.38); border-left-color: rgba(245,166,35,.55); }
.leadership-card__monogram { width: 220px; height: 220px; display: grid; place-items: center; position: relative; z-index: 1; background: rgba(255,255,255,.08); border: 2px solid rgba(255,255,255,.19); border-radius: 50%; font-size: 4.5rem; font-weight: 950; letter-spacing: -.1em; }
.leadership-card__label { position: absolute; left: 24px; bottom: 24px; z-index: 2; padding: 8px 12px; color: var(--navy); background: var(--orange); border-radius: 999px; font-size: .65rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.leadership-card__copy { display: flex; flex-direction: column; align-items: flex-start; padding: clamp(34px, 6vw, 62px); }
.leadership-card__eyebrow { margin: 0 0 11px !important; color: var(--orange-text) !important; font-size: .68rem !important; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }
.leadership-card__copy h2 { margin: 0; color: var(--navy); font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.03; letter-spacing: -.05em; }
.leadership-card__role { margin: 11px 0 20px !important; color: var(--green-700) !important; font-size: .9rem; font-weight: 850; }
.leadership-card__copy > p { margin: 0 0 14px; color: var(--muted); font-size: .9rem; }
.leadership-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 22px; }
.leadership-card__tags span { padding: 7px 11px; color: var(--green-700); background: #eef8f0; border-radius: 999px; font-size: .68rem; font-weight: 850; }
.leadership-card__copy .button { margin-top: 24px; }

.leadership-evidence { position: relative; overflow: hidden; color: var(--white); background: var(--navy); }
.leadership-evidence__pattern { position: absolute; inset: 0; opacity: .08; background-image: linear-gradient(45deg, transparent 48%, var(--white) 49%, var(--white) 51%, transparent 52%); background-size: 36px 36px; }
.leadership-evidence__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(55px, 9vw, 120px); align-items: center; }
.leadership-evidence h2 { margin: 0; color: var(--white); }
.leadership-evidence p:not(.eyebrow) { color: rgba(255,255,255,.74); }
.leadership-evidence__pillars { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; counter-reset: none; }
.leadership-evidence__pillars li { min-height: 76px; display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: center; padding: 14px 19px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; }
.leadership-evidence__pillars span { width: 43px; height: 43px; display: grid; place-items: center; color: var(--navy); background: var(--orange); border-radius: 12px; font-size: .65rem; font-weight: 900; }
.leadership-evidence__pillars strong { font-size: .88rem; }

.leadership-belief { background: var(--white); }
.leadership-belief__inner { display: grid; grid-template-columns: 150px 1fr; gap: clamp(35px, 6vw, 75px); align-items: start; max-width: 1040px; }
.leadership-belief__mark { color: var(--orange); font-family: Georgia, serif; font-size: 12rem; line-height: .72; }
.leadership-belief h2 { margin: 0; color: var(--navy); font-size: clamp(2.6rem, 5.1vw, 4.4rem); line-height: 1.05; letter-spacing: -.052em; }
.leadership-belief blockquote { margin: 25px 0 0; color: var(--muted); font-size: 1.14rem; font-style: italic; }
.leadership-belief cite { display: block; margin-top: 22px; color: var(--green-700); font-size: .72rem; font-style: normal; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }

.leadership-commitments { background: var(--cream); }
.leadership-commitments__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.leadership-commitments__grid article { min-height: 290px; display: flex; flex-direction: column; padding: 26px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.leadership-commitments__grid span { color: var(--orange-text); font-size: .7rem; font-weight: 900; letter-spacing: .13em; }
.leadership-commitments__grid h3 { margin: auto 0 8px; color: var(--navy); font-size: 1.2rem; }
.leadership-commitments__grid p { margin: 0; color: var(--muted); font-size: .8rem; }

.leadership-contact { position: relative; overflow: hidden; padding-block: clamp(85px, 10vw, 125px); color: var(--white); background: var(--green-700); }
.leadership-contact__pattern { position: absolute; inset: 0; opacity: .08; background-image: radial-gradient(var(--white) 1.5px, transparent 1.5px); background-size: 24px 24px; }
.leadership-contact__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.leadership-contact h2 { margin: 0; color: var(--white); font-size: clamp(2.6rem, 5vw, 4.4rem); line-height: 1; letter-spacing: -.055em; }
.leadership-contact p:not(.eyebrow) { max-width: 700px; margin-bottom: 0; color: rgba(255,255,255,.78); }
.leadership-contact .button { flex: 0 0 auto; }

/* Frequently asked questions */
.faq-hero { min-height: 610px; position: relative; display: grid; align-items: center; overflow: hidden; color: var(--white); background: linear-gradient(135deg, var(--navy-900), var(--navy)); }
.faq-hero::after { content: ""; position: absolute; width: 500px; height: 500px; right: -210px; bottom: -300px; border: 74px solid rgba(46,158,63,.4); border-left-color: rgba(245,166,35,.45); border-radius: 50%; }
.faq-hero__pattern { position: absolute; inset: 0; opacity: .1; background-image: radial-gradient(var(--sky) 1.5px, transparent 1.5px); background-size: 24px 24px; }
.faq-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(50px, 8vw, 110px); align-items: center; padding-block: clamp(80px, 10vw, 120px); }
.faq-hero__content h1 { margin: 22px 0 20px; color: var(--white); font-size: clamp(3.4rem, 6vw, 5.6rem); line-height: .98; letter-spacing: -.06em; }
.faq-hero__content h1 em { color: var(--orange); font-style: normal; }
.faq-hero__content > p:last-child { max-width: 650px; margin: 0; color: rgba(255,255,255,.72); font-size: 1.08rem; }
.faq-hero__visual { min-height: 360px; position: relative; }
.faq-hero__bubble { position: absolute; display: grid; place-items: center; color: var(--navy); background: var(--white); border-radius: 50% 50% 50% 13%; box-shadow: 0 28px 70px rgba(5,12,42,.32); font-weight: 950; }
.faq-hero__bubble::after { content: ""; position: absolute; left: 16px; bottom: -13px; width: 32px; height: 32px; background: inherit; clip-path: polygon(0 0, 100% 0, 0 100%); }
.faq-hero__bubble--one { width: 210px; height: 210px; top: 0; right: 22%; color: var(--white); background: var(--green); font-size: 8rem; line-height: 1; }
.faq-hero__bubble--two { width: 132px; height: 132px; right: 4%; bottom: 16px; color: var(--navy); background: var(--orange); border-radius: 50% 50% 13% 50%; font-size: 2.2rem; letter-spacing: -.06em; }
.faq-hero__bubble--two::after { left: auto; right: 14px; clip-path: polygon(0 0, 100% 0, 100% 100%); }
.faq-hero__line { position: absolute; width: 210px; height: 210px; left: 2%; bottom: 5%; border: 2px solid rgba(255,255,255,.16); border-radius: 50%; }
.faq-hero__visual p { position: absolute; left: 0; bottom: 48px; margin: 0; color: rgba(255,255,255,.7); font-size: .74rem; font-weight: 750; text-transform: uppercase; letter-spacing: .12em; line-height: 1.6; }
.faq-hero__visual strong { color: var(--white); font-size: .94rem; }

.faq-facts { background: var(--cream); }
.faq-facts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.faq-facts__grid article { min-height: 320px; display: flex; flex-direction: column; align-items: flex-start; padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.faq-facts__grid article:nth-child(2) { color: var(--white); background: var(--green-700); border-color: transparent; }
.faq-facts__grid article:nth-child(3) { color: var(--white); background: var(--navy); border-color: transparent; }
.faq-facts__grid article > span:first-child { color: var(--orange-text); font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }
.faq-facts__grid article:nth-child(n+2) > span:first-child { color: var(--orange); }
.faq-facts__grid strong { margin-top: auto; color: var(--navy); font-size: clamp(1.45rem, 2.5vw, 2rem); line-height: 1.15; letter-spacing: -.035em; }
.faq-facts__grid article:nth-child(n+2) strong { color: var(--white); }
.faq-facts__grid p { margin: 13px 0 0; color: var(--muted); font-size: .82rem; }
.faq-facts__grid article:nth-child(n+2) p { color: rgba(255,255,255,.72); }
.faq-facts__grid a { margin-top: 17px; color: var(--orange); font-size: .78rem; font-weight: 850; }

.faq-directory { background: var(--white); }
.faq-directory__layout { display: grid; grid-template-columns: .68fr 1.32fr; gap: clamp(55px, 9vw, 120px); align-items: start; }
.faq-directory__nav { position: sticky; top: 130px; }
.faq-directory__nav h2 { margin: 0; color: var(--navy); font-size: clamp(2.35rem, 4.5vw, 3.8rem); line-height: 1.04; letter-spacing: -.05em; }
.faq-directory__nav nav { display: grid; gap: 8px; margin-top: 30px; }
.faq-directory__nav nav a { display: grid; grid-template-columns: 34px 1fr; gap: 11px; align-items: center; padding: 13px 15px; color: var(--muted); background: var(--cream); border: 1px solid transparent; border-radius: 12px; font-size: .78rem; font-weight: 800; transition: color .2s ease, border-color .2s ease, transform .2s ease; }
.faq-directory__nav nav a:hover { color: var(--navy); border-color: var(--green); transform: translateX(4px); }
.faq-directory__nav nav span { width: 30px; height: 30px; display: grid; place-items: center; color: var(--white); background: var(--green-700); border-radius: 9px; font-size: .62rem; }
.faq-directory__content { display: grid; gap: 60px; }
.faq-group { scroll-margin-top: 125px; }
.faq-group__heading { display: grid; grid-template-columns: 58px 1fr; gap: 17px; align-items: center; margin-bottom: 20px; }
.faq-group__heading > span { width: 58px; height: 58px; display: grid; place-items: center; color: var(--white); background: var(--navy); border-radius: 17px; font-size: .78rem; font-weight: 900; }
.faq-group:nth-child(even) .faq-group__heading > span { background: var(--green-700); }
.faq-group__heading small { color: var(--orange-text); font-size: .67rem; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }
.faq-group__heading h2 { margin: 2px 0 0; overflow-wrap: break-word; color: var(--navy); font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1.15; letter-spacing: -.035em; }
.faq-group__items { display: grid; gap: 11px; }
.faq-group details { background: #f8f9fb; border: 1px solid var(--line); border-radius: 16px; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-group details[open] { background: var(--white); border-color: rgba(46,158,63,.45); box-shadow: var(--shadow-sm); }
.faq-group summary { position: relative; padding: 21px 60px 21px 22px; color: var(--navy); font-size: .94rem; font-weight: 850; cursor: pointer; list-style: none; }
.faq-group summary::-webkit-details-marker { display: none; }
.faq-group summary::after { content: "+"; position: absolute; top: 50%; right: 20px; width: 29px; height: 29px; display: grid; place-items: center; color: var(--white); background: var(--green); border-radius: 50%; transform: translateY(-50%); font-size: 1.15rem; line-height: 1; }
.faq-group details[open] summary::after { content: "−"; background: var(--navy); }
.faq-group details p { margin: 0; padding: 0 22px 23px; color: var(--muted); font-size: .87rem; }
.faq-group details p a { color: var(--green-700); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

.faq-contact { position: relative; overflow: hidden; padding-block: clamp(80px, 10vw, 120px); color: var(--white); background: var(--green-700); }
.faq-contact__pattern { position: absolute; inset: 0; opacity: .08; background-image: radial-gradient(var(--white) 1.5px, transparent 1.5px); background-size: 23px 23px; }
.faq-contact__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.faq-contact h2 { margin: 0; color: var(--white); font-size: clamp(2.6rem, 5vw, 4.4rem); line-height: 1; letter-spacing: -.055em; }
.faq-contact p:not(.eyebrow) { max-width: 680px; margin-bottom: 0; color: rgba(255,255,255,.78); }
.faq-contact .button { flex: 0 0 auto; }

/* Photo credits */
.credits-hero { min-height: 430px; }
.photo-credits { background: var(--cream); }
.photo-credits__intro { max-width: 820px; margin-bottom: 45px; }
.photo-credits__intro > p:not(.eyebrow) { color: var(--muted); font-size: 1.02rem; }
.photo-credits__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 18px; }
.credit-card { min-height: 270px; display: flex; flex-direction: column; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.credit-card__use { margin: 0 0 28px; color: var(--orange-text); font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.credit-card h2 { margin: auto 0 10px; color: var(--navy); font-size: 1.35rem; line-height: 1.25; letter-spacing: -.02em; }
.credit-card p { margin: 0; color: var(--muted); font-size: .84rem; }
.credit-card__links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.credit-card__links a { padding: 7px 11px; color: var(--green-700); background: #eff8f1; border-radius: 999px; font-size: .72rem; font-weight: 800; }

@media (max-width: 900px) {
  .about-story__grid, .values__layout, .founder__grid { grid-template-columns: 1fr; }
  .values__intro { position: static; }
  .founding-card { max-width: 560px; }
  .founder__visual { min-height: 430px; }
  .about-actions { flex-direction: column; }
  .programs-intro__grid, .program-detail__grid { grid-template-columns: 1fr; }
  .program-detail--reverse .program-detail__visual, .program-detail--reverse .program-detail__copy { order: initial; }
  .program-detail__visual { min-height: 400px; }
  .program-process__grid { grid-template-columns: 1fr 1fr; }
  .program-contact__inner { display: grid; }
  .program-contact .button { justify-self: start; }
  .impact-intro__grid, .outcome-areas__layout, .measurement__grid, .reporting__grid { grid-template-columns: 1fr; }
  .outcome-areas__intro { position: static; }
  .impact-pathway__grid { grid-template-columns: 1fr 1fr; }
  .impact-pathway__grid li::after { display: none; }
  .reporting__card { min-height: 430px; }
  .impact-stories__inner { grid-template-columns: 80px 1fr; }
  .impact-stories .button { grid-column: 2; justify-self: start; }
  .initiative-overview__grid, .initiative-details__grid, .safeguarding__grid, .initiative-faq__grid { grid-template-columns: 1fr; }
  .initiative-details__intro { position: static; }
  .child-principles__grid { grid-template-columns: 1fr 1fr; }
  .child-principles__grid article:last-child { grid-column: 1 / -1; min-height: 300px; }
  .children-connect__inner { display: grid; }
  .children-connect .button { justify-self: start; }
  .partner-intro__grid, .collaboration__layout, .partnership-principles__grid, .partner-contact__grid { grid-template-columns: 1fr; }
  .collaboration__intro { position: static; }
  .partner-types__grid, .partner-process__grid { grid-template-columns: 1fr 1fr; }
  .partner-contact__email { max-width: 620px; }
  .newsroom-intro__grid, .story-categories__layout, .story-standards__grid, .story-ready__grid { grid-template-columns: 1fr; }
  .story-categories__intro { position: static; }
  .news-card--featured { grid-template-columns: 1fr; }
  .story-ready__visual { min-height: 430px; }
  .newsroom-contact__inner { display: grid; }
  .newsroom-contact .button { justify-self: start; }
  .contact-form-layout, .contact-location__grid { grid-template-columns: 1fr; }
  .contact-form-intro { position: static; }
  .contact-options__grid { grid-template-columns: 1fr 1fr; }
  .contact-options__grid > *:last-child { grid-column: 1 / -1; }
  .support-ways__grid { grid-template-columns: 1fr 1fr; }
  .support-programs__layout, .support-principles__grid, .support-interest__layout, .support-faq__grid { grid-template-columns: 1fr; }
  .support-programs__intro, .support-interest__intro, .support-faq__grid > div:first-child { position: static; }
  .founder-profile-hero__grid, .profile-overview__grid, .profile-education__grid, .profile-flagship__card, .profile-faith__grid, .profile-legacy__grid { grid-template-columns: 1fr; }
  .founder-profile-hero__visual { max-width: 520px; width: 100%; }
  .profile-overview__heading { position: static; }
  .profile-experience__grid, .profile-stats { grid-template-columns: 1fr 1fr; }
  .profile-experience__card:last-child, .profile-stat:last-child { grid-column: 1 / -1; }
  .profile-principle, .profile-principle:nth-child(4), .profile-principle:nth-child(5) { grid-column: span 3; }
  .leadership-hero__grid, .leadership-intro__grid, .leadership-evidence__grid { grid-template-columns: 1fr; }
  .leadership-hero__visual { max-width: 540px; width: 100%; }
  .leadership-card { grid-template-columns: 1fr; }
  .leadership-card__identity { min-height: 390px; }
  .leadership-commitments__grid { grid-template-columns: 1fr 1fr; }
  .leadership-contact__inner { display: grid; }
  .leadership-contact .button { justify-self: start; }
  .faq-hero__grid, .faq-directory__layout { grid-template-columns: 1fr; }
  .faq-hero__visual { max-width: 520px; width: 100%; }
  .faq-facts__grid { grid-template-columns: 1fr 1fr; }
  .faq-facts__grid article:last-child { grid-column: 1 / -1; }
  .faq-directory__nav { position: static; }
  .faq-directory__nav nav { grid-template-columns: 1fr 1fr; }
  .faq-contact__inner { display: grid; }
  .faq-contact .button { justify-self: start; }
}

@media (max-width: 680px) {
  .page-hero { min-height: 500px; }
  .page-hero__content { padding-block: 75px; }
  .page-hero h1 { font-size: 2.75rem; }
  .page-hero__content > p:last-child { font-size: 1rem; }
  .about-quote__inner { grid-template-columns: 1fr; gap: 12px; }
  .about-quote svg { width: 55px; }
  .purpose__grid, .values__grid { grid-template-columns: 1fr; }
  .purpose-card { min-height: 370px; }
  .values__grid article { min-height: 220px; }
  .founder__visual { min-height: 350px; }
  .about-actions, .about-actions .button { width: 100%; }
  .program-jump__inner { width: 100%; padding-inline: 15px; }
  .program-detail__visual { min-height: 330px; }
  .program-detail__symbol { width: 115px; height: 115px; border-radius: 32px; }
  .program-detail__symbol svg { width: 60px; }
  .program-process__grid { grid-template-columns: 1fr; }
  .program-process__grid li { min-height: 220px; }
  .program-contact .button { width: 100%; }
  .impact-status__inner { align-items: flex-start; padding-block: 22px; }
  .impact-pathway__grid, .outcome-areas__grid { grid-template-columns: 1fr; }
  .outcome-areas__grid article:last-child { grid-column: auto; }
  .reporting__card { min-height: 350px; }
  .impact-stories__inner { grid-template-columns: 1fr; }
  .impact-stories__mark { font-size: 6rem; }
  .impact-stories .button { grid-column: auto; width: 100%; }
  .page-hero--children { min-height: 600px; }
  .children-hero__actions, .children-hero__actions .button { width: 100%; }
  .initiative-note__inner { align-items: flex-start; padding-block: 22px; }
  .initiative-overview__visual { min-height: 380px; }
  .initiative-overview__circle { width: 270px; height: 270px; }
  .initiative-overview__circle strong { font-size: 5.5rem; }
  .child-principles__grid { grid-template-columns: 1fr; }
  .child-principles__grid article, .child-principles__grid article:last-child { grid-column: auto; min-height: 330px; }
  .initiative-details__list article { grid-template-columns: 42px 1fr; }
  .initiative-details__list article > strong { grid-column: 2; justify-self: start; }
  .safeguarding__shield { min-height: 300px; }
  .children-connect .button { width: 100%; }
  .partner-hero__actions, .partner-hero__actions .button { width: 100%; }
  .partner-note__inner { align-items: flex-start; padding-block: 22px; }
  .partner-types__grid, .partner-process__grid { grid-template-columns: 1fr; }
  .partner-types__grid article { min-height: 330px; }
  .collaboration__links a { grid-template-columns: 44px 1fr 32px; padding: 15px; }
  .collaboration__links span { width: 44px; height: 44px; }
  .partner-directory__inner { grid-template-columns: 1fr; }
  .partner-directory__icon { width: 92px; height: 92px; }
  .partner-contact__email { grid-template-columns: 50px 1fr; }
  .partner-contact__email > span { width: 50px; height: 50px; }
  .partner-contact__email i { display: none; }
  .newsroom-note__inner { align-items: flex-start; padding-block: 22px; }
  .story-templates__grid, .story-categories__grid { grid-template-columns: 1fr; }
  .news-card--featured { grid-column: auto; }
  .news-card--featured .news-card__media { min-height: 300px; }
  .news-card__meta { flex-direction: column; gap: 4px; }
  .story-ready__visual { min-height: 360px; }
  .story-ready__page { width: 180px; min-height: 225px; }
  .story-ready__camera { right: 25px; bottom: 35px; width: 86px; height: 86px; }
  .newsroom-contact .button { width: 100%; }
  .contact-options__grid, .inquiry-guidance__grid, .form-row { grid-template-columns: 1fr; }
  .contact-options__grid > *:last-child { grid-column: auto; }
  .contact-options__grid > * { min-height: 250px; }
  .contact-form { padding: 25px 20px; border-radius: var(--radius); }
  .contact-form .button { width: 100%; }
  .inquiry-guidance__grid article { min-height: 250px; }
  .contact-location__card { min-height: 270px; }
  .contact-safety__inner { align-items: flex-start; padding-block: 22px; }
  .support-hero__actions, .support-hero__actions .button { width: 100%; }
  .giving-notice__inner { grid-template-columns: 46px 1fr; padding-block: 22px; }
  .giving-notice__inner > span { width: 46px; height: 46px; }
  .giving-notice a { grid-column: 2; justify-self: start; }
  .support-ways__grid { grid-template-columns: 1fr; }
  .support-ways__grid article { min-height: 350px; }
  .support-programs__links a { grid-template-columns: 44px 1fr 32px; padding: 15px; }
  .support-programs__links a > span { width: 44px; height: 44px; }
  .support-form { padding: 25px 20px; border-radius: var(--radius); }
  .support-form .button { width: 100%; }
  .founder-profile-hero { min-height: auto; }
  .founder-profile-hero__grid { padding-block: 78px 95px; }
  .founder-profile-hero__visual { min-height: 350px; }
  .founder-profile-hero__portrait { max-width: 300px; }
  .founder-profile-hero__badge { right: 10px; bottom: 25px; }
  .profile-experience__grid, .profile-stats, .profile-education__pillars, .profile-faith__values { grid-template-columns: 1fr; }
  .profile-experience__card:last-child, .profile-stat:last-child { grid-column: auto; }
  .profile-principles__grid { grid-template-columns: 1fr; }
  .profile-principle, .profile-principle:nth-child(4), .profile-principle:nth-child(5) { grid-column: auto; min-height: 250px; }
  .profile-flagship__card::after { font-size: 9rem; }
  .profile-quote__actions, .profile-quote__actions .button { width: 100%; }
  .leadership-hero__grid { padding-block: 72px 90px; }
  .leadership-hero__content h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .leadership-hero__visual { min-height: 330px; }
  .leadership-hero__person--one { width: 200px; height: 200px; }
  .leadership-hero__person--two { width: 165px; height: 165px; }
  .leadership-card__identity { min-height: 330px; }
  .leadership-card__monogram { width: 190px; height: 190px; font-size: 3.8rem; }
  .leadership-card__copy { padding: 30px 23px; }
  .leadership-belief__inner { grid-template-columns: 1fr; gap: 5px; }
  .leadership-belief__mark { font-size: 8rem; }
  .leadership-commitments__grid { grid-template-columns: 1fr; }
  .leadership-commitments__grid article { min-height: 235px; }
  .leadership-contact .button { width: 100%; }
  .faq-hero__grid { padding-block: 72px 88px; }
  .faq-hero__content h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .faq-hero__visual { min-height: 310px; }
  .faq-hero__bubble--one { width: 175px; height: 175px; right: 18%; font-size: 6rem; }
  .faq-hero__bubble--two { width: 110px; height: 110px; }
  .faq-facts__grid, .faq-directory__nav nav { grid-template-columns: 1fr; }
  .faq-facts__grid article, .faq-facts__grid article:last-child { grid-column: auto; min-height: 285px; }
  .faq-group__heading { grid-template-columns: 49px 1fr; }
  .faq-group__heading > span { width: 49px; height: 49px; border-radius: 14px; }
  .faq-contact .button { width: 100%; }
}

@media (max-width: 1120px) {
  :root { --header-height: 76px; }
  .nav-toggle { display: block; margin-left: auto; }
  .primary-nav {
    position: fixed;
    top: var(--mobile-nav-top, calc(36px + var(--header-height)));
    left: 0;
    right: 0;
    height: calc(100dvh - var(--mobile-nav-top, calc(36px + var(--header-height))));
    display: block;
    padding: 26px 28px 40px;
    overflow-y: auto;
    background: var(--white);
    opacity: 0;
    transform: translateY(-14px);
    visibility: hidden;
    transition: opacity .28s ease, transform .28s ease, visibility .28s;
  }
  .primary-nav.is-open { opacity: 1; transform: translateY(0); visibility: visible; }
  .primary-nav ul { display: grid; gap: 0; }
  .primary-nav li:nth-child(6), .primary-nav li:nth-child(7) { display: block; }
  .primary-nav ul a { display: block; padding: 15px 4px; border-bottom: 1px solid var(--line); font-size: .86rem; }
  .primary-nav ul a::after { display: none; }
  .nav-support { width: 100%; margin-top: 22px; }
  .brand__logo { width: 54px; height: 54px; }
  .hero { min-height: auto; }
  .hero__content { grid-template-columns: 1fr 270px; padding-block: 100px 120px; }
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .program-card, .program-card:nth-child(4) { grid-column: auto; }
  .program-card:last-child { grid-column: 1 / -1; min-height: 300px; }
}

@media (max-width: 820px) {
  .utility-bar__inner { justify-content: center; }
  .utility-bar p { display: none; }
  .hero__image { background-position: 62% center; }
  .hero__overlay { background: linear-gradient(90deg, rgba(10,20,57,.95), rgba(15,39,72,.66)); }
  .hero__content { grid-template-columns: 1fr; align-items: center; gap: 45px; padding-block: 90px 130px; }
  .hero__card { max-width: 430px; }
  .hero__scroll { display: none; }
  .trust-strip__inner { grid-template-columns: 1fr; }
  .trust-strip__inner > div { min-height: 92px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .trust-strip__inner > div:last-child { border-bottom: 0; }
  .about__grid, .approach__grid, .children__grid, .partners__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__visual { min-height: 520px; }
  .children__grid { gap: 45px; }
  .children__number { font-size: 11rem; }
  .section-heading--split { grid-template-columns: 1fr; gap: 15px; }
  .support__inner { display: grid; }
  .home-support__actions { justify-content: flex-start; }
  .support .button { justify-self: start; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .container { width: calc(100% - 30px); }
  .utility-bar { font-size: .68rem; }
  .brand__text strong { font-size: .78rem; }
  .brand__text span { font-size: .55rem; }
  .brand__logo { width: 48px; height: 48px; }
  .hero__content { padding-block: 76px 105px; }
  .hero h1 { font-size: clamp(2.65rem, 14vw, 4rem); }
  .page-hero h1 { font-size: clamp(2.3rem, 12vw, 2.75rem); }
  .hero__lead { font-size: 1rem; }
  .hero__actions, .hero__actions .button { width: 100%; }
  .hero__card { padding: 22px; }
  .section { padding-block: 75px; }
  .section h2, .children h2 { font-size: 2.35rem; }
  .about__visual { min-height: 430px; }
  .about__image { right: 15px; bottom: 35px; }
  .about__badge { width: 165px; height: 128px; }
  .principles { grid-template-columns: 1fr; }
  .program-grid { grid-template-columns: 1fr; }
  .program-card, .program-card:last-child { grid-column: auto; min-height: 330px; padding: 26px; }
  .approach blockquote { padding: 22px 22px 22px 26px; }
  .approach__steps li { grid-template-columns: 54px 1fr; gap: 16px; }
  .approach__steps span { width: 54px; height: 54px; }
  .approach__steps li:not(:last-child)::after { left: 26px; top: 66px; }
  .children__number { font-size: 8rem; }
  .partners__types { grid-template-columns: 1fr; }
  .partners__types div { min-height: 125px; }
  .story-placeholder { grid-template-columns: 1fr; }
  .support .button { width: 100%; }
  .home-support__actions { width: 100%; }
  .contact__cards > * { align-items: flex-start; }
  .footer__grid { grid-template-columns: 1fr; gap: 35px; }
  .footer__bottom { min-height: 110px; display: grid; justify-content: start; gap: 0; padding-block: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
.founder__portrait,
.leadership-card__portrait {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
}

.founder__portrait {
  position: relative;
  z-index: 1;
  border-radius: 50%;
  border: 8px solid #fff;
  box-shadow: 0 24px 60px rgba(15, 31, 72, 0.22);
}

.leadership-card__portrait {
  border-radius: 24px;
  border: 5px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(15, 31, 72, 0.2);
}
