:root {
  --ink: #102723;
  --ink-soft: #24433d;
  --paper: #fffdf8;
  --cream: #f3efe4;
  --line: rgba(16, 39, 35, 0.16);
  --lime: #d6f052;
  --lime-deep: #b9d930;
  --coral: #ff704d;
  --sky: #83cddd;
  --sun: #f2bd42;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 39, 35, 0.14);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --container: min(1380px, calc(100% - 64px));
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 400 1rem/1.7 var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-140%);
}

.skip-link:focus { transform: none; }

.impact-bar {
  min-height: 34px;
  padding: 6px max(24px, calc((100vw - 1380px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink);
  background: var(--lime);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.impact-bar p { margin: 0; }
.impact-bar p span { margin: 0 .55rem; }
.impact-bar a { text-underline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 86px;
  display: flex;
  align-items: center;
  color: var(--white);
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.nav-shell {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 70px);
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand-mark-image {
  position: relative;
  width: 68px;
  height: 48px;
  display: block;
  overflow: hidden;
  background: #000;
}

.brand-mark-image img {
  position: absolute;
  width: 92px;
  max-width: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.brand-copy { padding-left: 16px; display: grid; gap: 5px; border-left: 1px solid rgba(255,255,255,.35); line-height: 1; text-transform: uppercase; }
.brand-name { font-size: .92rem; font-weight: 800; letter-spacing: .045em; }
.brand-descriptor { color: rgba(255,255,255,.66); font-size: .56rem; font-weight: 700; letter-spacing: .39em; }

.primary-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.primary-nav a {
  position: relative;
  padding: 30px 0 28px;
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav a:not(.nav-donate)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 23px;
  left: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.nav-donate {
  padding: 13px 20px !important;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
}

.nav-donate:hover { background: var(--white); }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
}

.hero {
  position: relative;
  min-height: min(920px, calc(100svh - 120px));
  display: block;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: var(--container);
  min-height: min(920px, calc(100svh - 120px));
  margin: 0 auto;
  padding: clamp(86px, 11vh, 140px) 0 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--lime);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

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

.hero-slides { position: relative; width: min(850px, 72%); min-height: 305px; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .55s ease;
}

.hero-slide.is-active { opacity: 1; pointer-events: auto; }

.hero-count { margin: 0 0 8px; color: rgba(255,255,255,.58); font-size: .73rem; font-weight: 700; letter-spacing: .12em; }

.hero h1,
.hero h2 {
  margin: 0;
  font: 400 clamp(5.4rem, 12vw, 11.8rem)/.78 var(--serif);
  letter-spacing: -.065em;
}

.hero h1 em,
.hero h2 em { color: var(--lime); font-weight: 400; }

.hero-lede {
  max-width: 560px;
  margin: 36px 0 0;
  color: rgba(255,255,255,.76);
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.6;
}

.hero-actions { margin-top: 28px; display: flex; align-items: center; flex-wrap: wrap; gap: 26px; }

.button {
  min-height: 52px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-accent { color: var(--ink); background: var(--lime); }
.button-accent:hover { background: var(--white); }

.text-link { color: var(--white); font-size: .88rem; font-weight: 800; text-underline-offset: 6px; }

.hero-arrow { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: var(--white); background: transparent; cursor: pointer; }
.hero-arrow:hover { border-color: var(--lime); color: var(--lime); }
.hero-dots { display: flex; gap: 8px; }
.hero-dot { width: 30px; height: 4px; padding: 0; border: 0; border-radius: 99px; background: rgba(255,255,255,.24); cursor: pointer; }
.hero-dot.is-active { background: var(--lime); }

.hero-visual { position: absolute; z-index: 0; inset: 0; overflow: hidden; background: #000; }
.hero-visual::before { content: ""; position: absolute; z-index: 3; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.56) 43%, rgba(0,0,0,.14) 78%), linear-gradient(180deg, rgba(0,0,0,.08) 45%, rgba(0,0,0,.65) 100%); pointer-events: none; }

.hero-image { position: absolute; inset: -5% 0; margin: 0; opacity: 0; transition: opacity .75s ease; }
.hero-image.is-active { opacity: 1; }
.hero-image img { width: 100%; height: 110%; object-fit: cover; transform: translate3d(0, var(--media-shift, 0), 0) scale(1.08); will-change: transform; }

.hero-note {
  position: absolute;
  z-index: 4;
  right: 26px;
  bottom: 26px;
  width: min(300px, calc(100% - 52px));
  padding: 20px 22px;
  display: grid;
  gap: 2px;
  color: var(--ink);
  background: rgba(255, 253, 248, .92);
  border-radius: 18px 18px 4px 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-note strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; }
.hero-note span { font-size: .76rem; font-weight: 700; }

.hero-meta { margin-top: 32px; padding-top: 18px; display: flex; gap: 28px; border-top: 1px solid rgba(255,255,255,.24); color: rgba(255,255,255,.68); font-size: .64rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }

.purpose-ribbon {
  min-height: 96px;
  padding: 22px max(32px, calc((100vw - 1380px) / 2));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3.5vw, 60px);
  background: var(--coral);
  font: 400 clamp(1.2rem, 2vw, 1.85rem)/1.2 var(--serif);
}

.purpose-ribbon p { margin: 0; }
.purpose-ribbon strong { font-style: italic; font-weight: 400; }
.purpose-ribbon > span { font-family: var(--sans); font-size: 1rem; font-weight: 800; }

.container { width: var(--container); margin-inline: auto; }

.section { padding: clamp(80px, 9vw, 140px) 0; }

.section-kicker {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-kicker::before { content: "—"; margin-right: 10px; }
.section-kicker-light { color: var(--lime); }

.display-heading {
  max-width: 850px;
  margin: 0;
  font: 400 clamp(3.2rem, 6.5vw, 7.4rem)/.96 var(--serif);
  letter-spacing: -.045em;
}

.display-heading-small { font-size: clamp(2.8rem, 4.8vw, 5.4rem); }
.display-heading-light { color: var(--white); }
.display-heading em { color: var(--lime); font-weight: 400; }

.prose { font-size: 1.04rem; }
.prose > *:first-child { margin-top: 0; }
.prose > *:last-child { margin-bottom: 0; }
.prose p { margin: 0 0 1.4em; }
.prose strong { color: var(--ink); font-weight: 800; }
.prose-large { font-size: clamp(1.05rem, 1.35vw, 1.25rem); line-height: 1.9; }
.prose-on-dark { color: rgba(255,255,255,.72); }
.prose-on-dark strong { color: var(--white); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .86rem;
  font-weight: 800;
  text-underline-offset: 7px;
}

.intro-section { overflow: hidden; }
.intro-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); gap: clamp(50px, 8vw, 130px); align-items: end; }
.lead-prose { max-width: 590px; padding-bottom: 8px; font-size: clamp(1.05rem, 1.3vw, 1.25rem); }
.today-tomorrow-grid { margin-top: clamp(64px, 8vw, 120px); display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

.moment-card { position: relative; min-height: 350px; padding: clamp(32px, 4vw, 58px); display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; border-radius: 40px 40px 8px 40px; }
.moment-card::before { content: ""; position: absolute; top: -45px; right: -30px; width: 170px; height: 170px; border: 35px solid currentColor; border-radius: 50%; opacity: .12; }
.moment-card-today { color: var(--ink); background: var(--lime); }
.moment-card-tomorrow { color: var(--white); background: var(--ink); }
.moment-label { position: absolute; top: 34px; left: 40px; font-size: .73rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.moment-card h3 { max-width: 520px; margin: 0 0 18px; font: 400 clamp(2.4rem, 4vw, 4.4rem)/.98 var(--serif); letter-spacing: -.035em; }
.moment-card p { max-width: 530px; margin: 0; opacity: .8; }

.involvement-section { background: var(--cream); }
.section-heading-row { margin-bottom: clamp(48px, 6vw, 84px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 430px); gap: 50px; align-items: end; }
.section-heading-row > p { margin: 0; color: var(--ink-soft); font-size: 1.04rem; }
.involvement-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.action-card { min-height: 430px; padding: 28px; display: flex; flex-direction: column; color: var(--ink); border-radius: 28px 28px 6px 28px; text-decoration: none; transition: transform .25s ease, box-shadow .25s ease; }
.action-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.action-card-lime { background: var(--lime); }
.action-card-coral { background: var(--coral); }
.action-card-sky { background: var(--sky); }
.action-number { font-size: .72rem; font-weight: 800; letter-spacing: .1em; }
.action-icon { width: 92px; height: 92px; margin: auto 0 34px; display: grid; place-items: center; border: 2px solid currentColor; border-radius: 50%; font: 400 2.6rem/1 var(--serif); }
.action-card h3 { margin: 0 0 12px; font: 400 clamp(2.4rem, 3.4vw, 3.6rem)/1 var(--serif); }
.action-card p { margin: 0 0 26px; opacity: .78; }
.card-link { margin-top: auto; align-self: flex-start; padding-bottom: 3px; border-bottom: 1px solid currentColor; font-size: .82rem; font-weight: 800; }

.programmes-section { color: var(--white); background: var(--ink); }
.programmes-heading { margin-bottom: 70px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 410px); gap: 50px; align-items: end; }
.programmes-heading > p { margin: 0 0 8px; color: rgba(255,255,255,.65); }
.programme-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.programme-card { position: relative; min-height: 370px; padding: 28px; display: flex; flex-direction: column; color: var(--white); border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); text-decoration: none; overflow: hidden; transition: color .25s ease, background .25s ease; }
.programme-card::before { content: ""; position: absolute; right: -60px; bottom: -75px; width: 180px; height: 180px; border: 34px solid currentColor; border-radius: 50%; opacity: .1; }
.programme-card:hover { color: var(--ink); }
.programme-packs:hover { background: var(--lime); }
.programme-cares:hover { background: var(--coral); }
.programme-inspires:hover { background: var(--sky); }
.programme-builds:hover { background: var(--sun); }
.programme-code { font-size: .68rem; font-weight: 800; letter-spacing: .12em; opacity: .6; }
.programme-card h3 { margin: auto 0 18px; font: 400 clamp(2rem, 2.8vw, 3.3rem)/1 var(--serif); }
.programme-card p { margin: 0; color: rgba(255,255,255,.64); font-size: .92rem; }
.programme-card:hover p { color: rgba(16,39,35,.75); }
.programme-arrow { position: absolute; top: 24px; right: 24px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; }

.story-split { padding: 0; display: grid; grid-template-columns: 1fr 1fr; background: var(--lime); }
.story-image { position: relative; min-height: 760px; overflow: hidden; }
.story-image img { width: 100%; height: 108%; object-fit: cover; transform: translate3d(0, var(--media-shift, 0), 0) scale(1.06); will-change: transform; }
.concept-label { position: absolute; right: 18px; bottom: 18px; padding: 7px 11px; color: var(--white); background: rgba(0,0,0,.68); border-radius: 999px; font-size: .65rem; font-weight: 700; }
.story-copy { padding: clamp(70px, 8vw, 130px); display: flex; flex-direction: column; justify-content: center; }
.story-copy > p:not(.section-kicker) { max-width: 640px; margin: 34px 0; }
.story-copy blockquote { margin: 14px 0 42px; padding: 24px 0 24px 30px; border-left: 2px solid var(--ink); font: italic 400 clamp(1.5rem, 2.5vw, 2.5rem)/1.25 var(--serif); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { color: var(--ink); background: var(--white); }

.projects-preview { background: var(--paper); }
.project-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.project-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 24px 24px 5px 24px; transition: transform .25s ease, box-shadow .25s ease; }
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.project-card-image { position: relative; height: 235px; margin: 0; overflow: hidden; background: var(--cream); }
.project-card-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.35)); }
.project-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.project-card:hover .project-card-image img { transform: scale(1.035); }
.project-card-image figcaption { position: absolute; z-index: 1; right: 14px; bottom: 12px; color: rgba(255,255,255,.8); font-size: .58rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.project-card-body { padding: 28px 30px 30px; }
.project-card-top { display: flex; justify-content: space-between; align-items: center; color: var(--ink-soft); font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
.tag { display: inline-flex; padding: 7px 11px; color: var(--ink); border-radius: 999px; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.tag-lime { background: var(--lime); }.tag-coral { background: var(--coral); }.tag-sky { background: var(--sky); }.tag-sun { background: var(--sun); }
.project-card h3 { min-height: 2em; margin: 44px 0 16px; font: 400 clamp(2rem, 3vw, 3.1rem)/1 var(--serif); }
.project-card-body > p { min-height: 5em; margin: 0; color: var(--ink-soft); }
.project-card dl { margin: 34px 0 0; padding-top: 22px; display: grid; gap: 10px; border-top: 1px solid var(--line); }
.project-card dl div { display: flex; justify-content: space-between; gap: 18px; }
.project-card dt { color: #6b7773; font-size: .75rem; font-weight: 700; }.project-card dd { margin: 0; text-align: right; font-size: .8rem; font-weight: 800; }

.closing-cta { padding: clamp(90px, 10vw, 160px) 0; color: var(--white); background: var(--ink); overflow: hidden; }
.closing-cta-inner { position: relative; }
.closing-cta-inner::after { content: "UP"; position: absolute; z-index: 0; right: -4vw; bottom: -13vw; color: rgba(255,255,255,.04); font-size: clamp(12rem, 30vw, 34rem); font-weight: 800; line-height: .8; letter-spacing: -.12em; pointer-events: none; }
.closing-cta h2 { position: relative; z-index: 1; max-width: 1050px; margin: 0; font: 400 clamp(3rem, 6vw, 6.8rem)/.98 var(--serif); letter-spacing: -.045em; }
.closing-cta h2 em { color: var(--lime); font-weight: 400; }
.closing-actions { position: relative; z-index: 1; margin-top: 46px; display: flex; align-items: center; gap: 28px; }
.closing-cta-light { color: var(--ink); background: var(--cream); }
.closing-cta-light h2 em { color: var(--coral); }
.closing-cta-light .closing-cta-inner::after { color: rgba(16,39,35,.04); }

.site-footer { padding: 74px 0 28px; color: var(--white); background: #000; }
.footer-grid { width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.2fr .7fr .8fr 1.15fr; gap: clamp(30px, 5vw, 80px); }
.footer-brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; }
.footer-brand img { width: 72px; height: 52px; object-fit: cover; }
.footer-brand-copy { padding-left: 14px; border-left: 1px solid rgba(255,255,255,.28); }
.footer-brand-copy strong { color: var(--white); font-size: .9rem; letter-spacing: .04em; }.footer-brand-copy span { margin-top: 5px; display: block; color: rgba(255,255,255,.55); font-size: .58rem; letter-spacing: .3em; text-transform: uppercase; }
.footer-intro { max-width: 320px; margin: 28px 0 0; color: rgba(255,255,255,.58); font-size: .88rem; }
.footer-heading { margin: 0 0 18px; color: var(--lime); font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: rgba(255,255,255,.72); font-size: .84rem; text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.mailing-form { display: flex; gap: 8px; padding: 5px; background: rgba(255,255,255,.1); border-radius: 999px; }
.mailing-form input { min-width: 0; flex: 1; padding: 10px 12px; color: var(--white); background: transparent; border: 0; outline: none; }
.mailing-form input::placeholder { color: rgba(255,255,255,.5); }
.mailing-form button { width: 42px; height: 42px; border: 0; border-radius: 50%; color: var(--ink); background: var(--lime); cursor: pointer; }
.mailing-note { min-height: 20px; margin: 10px 0 0; color: rgba(255,255,255,.58); font-size: .68rem; }
.footer-bottom { width: var(--container); margin: 62px auto 0; padding-top: 20px; display: flex; justify-content: space-between; gap: 24px; color: rgba(255,255,255,.38); border-top: 1px solid rgba(255,255,255,.12); font-size: .68rem; }

.contact-float { position: fixed; z-index: 150; right: 18px; bottom: 18px; }
.contact-float-button { width: 56px; height: 56px; display: grid; place-items: center; border: 0; border-radius: 50%; color: var(--ink); background: var(--lime); box-shadow: 0 12px 30px rgba(0,0,0,.22); font-weight: 800; cursor: pointer; }
.contact-float-panel { position: absolute; right: 0; bottom: 68px; width: 270px; padding: 20px; display: grid; gap: 9px; color: var(--white); background: var(--ink); border-radius: 22px 22px 5px 22px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(10px); transition: .2s ease; }
.contact-float.is-open .contact-float-panel { opacity: 1; visibility: visible; transform: none; }
.contact-float-panel strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }.contact-float-panel a { color: rgba(255,255,255,.8); font-size: .8rem; }

.reveal { opacity: 1; transition: opacity .7s ease; }
.reveal.reveal-pending { opacity: 0; }
.reveal.reveal-pending.is-visible { opacity: 1; }

/* Inner pages */
.page-hero { padding: clamp(70px, 8vw, 120px) 0; overflow: hidden; }
.page-hero-coral { background: var(--coral); }.page-hero-ink { color: var(--white); background: var(--ink); }.page-hero-sky { background: var(--sky); }
.page-hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(50px, 7vw, 110px); align-items: center; }
.page-hero h1 { margin: 0; font: 400 clamp(4rem, 7.8vw, 8.8rem)/.84 var(--serif); letter-spacing: -.055em; }
.page-hero h1 em { color: var(--lime); font-weight: 400; }.page-hero-coral h1 em,.page-hero-sky h1 em { color: var(--ink); }
.eyebrow-dark { color: var(--ink); }
.page-hero-lede { max-width: 620px; margin: 38px 0 0; font-size: clamp(1.05rem, 1.4vw, 1.28rem); }
.page-hero-ink .page-hero-lede { color: rgba(255,255,255,.68); }
.page-hero-image { position: relative; min-height: 570px; margin: 0; overflow: hidden; border-radius: 160px 160px 12px 160px; box-shadow: var(--shadow); }
.page-hero-image img { width: 100%; height: 108%; object-fit: cover; transform: translate3d(0, var(--media-shift, 0), 0) scale(1.055); will-change: transform; }
.page-hero-image figcaption { position: absolute; right: 16px; bottom: 16px; padding: 7px 11px; color: var(--white); background: rgba(0,0,0,.68); border-radius: 999px; font-size: .63rem; }

.editorial-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr); gap: clamp(60px, 11vw, 180px); align-items: start; }
.sticky-heading { position: sticky; top: 40px; }
.values-section { color: var(--white); background: var(--ink); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.value-card { min-height: 350px; padding: 28px; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.value-card span { color: var(--lime); font-size: .72rem; font-weight: 800; }.value-card h3 { margin: 110px 0 18px; font: 400 2.2rem/1 var(--serif); }.value-card p { margin: 0; color: rgba(255,255,255,.58); font-size: .9rem; }
.rise-statement { background: var(--cream); }
.rise-statement-inner { display: grid; gap: 24px; }
.rise-statement p { max-width: 1120px; margin: 0; font: 400 clamp(2.5rem, 5vw, 5.7rem)/1.02 var(--serif); letter-spacing: -.04em; }
.rise-statement p:nth-child(2) { margin-left: 8vw; }.rise-statement p:nth-child(3) { margin-left: 16vw; }.rise-statement strong { color: var(--coral); font-weight: 400; font-style: italic; }

.active-projects { background: var(--paper); }
.project-list { border-top: 1px solid var(--line); }
.project-row { padding: 34px 0; display: grid; grid-template-columns: .55fr 1.35fr .75fr; gap: 36px; border-bottom: 1px solid var(--line); align-items: start; }
.project-row > div:first-child { display: flex; align-items: center; justify-content: space-between; gap: 16px; }.project-index { color: #85918e; font-size: .72rem; font-weight: 800; }
.project-row h3 { margin: 0 0 10px; font: 400 clamp(2rem, 3.3vw, 3.7rem)/1 var(--serif); }.project-row p { max-width: 620px; margin: 0; color: var(--ink-soft); }
.project-row dl { margin: 0; display: grid; gap: 14px; }.project-row dl div { display: flex; justify-content: space-between; gap: 20px; }.project-row dt { color: #71807c; font-size: .72rem; font-weight: 700; }.project-row dd { margin: 0; text-align: right; font-size: .78rem; font-weight: 800; }
.programme-details { padding-top: 0; }
.programme-detail { padding: clamp(60px, 7vw, 110px); display: grid; grid-template-columns: minmax(260px, .65fr) minmax(320px, .8fr); gap: clamp(50px, 9vw, 150px); }
.programme-detail + .programme-detail { margin-top: 18px; }
.programme-detail-lime { background: var(--lime); }.programme-detail-coral { background: var(--coral); }.programme-detail-sky { background: var(--sky); }.programme-detail-sun { background: var(--sun); }
.programme-detail-heading > span { font-size: .72rem; font-weight: 800; }.programme-detail-heading > p { margin: 90px 0 8px; font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }.programme-detail-heading h2 { margin: 0; font: 400 clamp(3.6rem, 6vw, 7rem)/.9 var(--serif); letter-spacing: -.05em; }
.programme-intro { font: 400 clamp(1.7rem, 2.6vw, 2.7rem)/1.25 var(--serif); }
.impact-list { margin: 32px 0; padding: 0; list-style: none; border-top: 1px solid rgba(16,39,35,.25); }
.impact-list li { padding: 14px 0 14px 26px; position: relative; border-bottom: 1px solid rgba(16,39,35,.25); }.impact-list li::before { content: "↑"; position: absolute; left: 0; font-weight: 800; }

/* Giving */
.give-hero { padding: clamp(70px, 8vw, 125px) 0; background: var(--lime); }
.give-hero-grid { display: grid; grid-template-columns: 1.05fr .7fr; gap: clamp(55px, 9vw, 150px); align-items: center; }
.give-hero h1 { margin: 0; max-width: 900px; font: 400 clamp(4rem, 7vw, 8rem)/.9 var(--serif); letter-spacing: -.05em; }.give-hero h1 em { color: var(--coral); font-weight: 400; }.give-hero-grid > div:first-child > p:last-child { max-width: 640px; font-size: 1.15rem; }
.give-card { padding: clamp(30px, 4vw, 52px); background: var(--paper); border-radius: 32px 32px 7px 32px; box-shadow: var(--shadow); }
.give-card-label { margin: 0 0 20px; font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }.give-card h2 { margin: 0 0 30px; font: 400 clamp(2.1rem, 3.2vw, 3.5rem)/1.05 var(--serif); }
.amount-row { margin-bottom: 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }.amount-row span { padding: 11px 5px; text-align: center; border: 1px solid var(--line); border-radius: 999px; font-size: .78rem; font-weight: 800; }.amount-row span:nth-child(2) { color: var(--white); background: var(--ink); border-color: var(--ink); }
.button-block { width: 100%; }.give-card small { margin-top: 13px; display: block; color: #687570; text-align: center; }
.giving-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.giving-option { min-height: 460px; padding: clamp(34px, 5vw, 70px); display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 30px 30px 7px 30px; }.giving-option:nth-child(2) { background: var(--cream); border-color: transparent; }
.giving-icon { width: 54px; height: 54px; margin: 0 0 auto; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-size: 1.3rem; }.giving-option h2 { margin: 0 0 20px; font: 400 clamp(2.5rem, 4vw, 4.5rem)/1 var(--serif); }.giving-option address { font-style: normal; font-size: 1.05rem; }.small-note { color: #687570; font-size: .8rem; }
.fundraise-section { color: var(--white); background: var(--ink); }.fundraise-grid { display: grid; grid-template-columns: 1fr .65fr; gap: clamp(50px, 9vw, 140px); align-items: center; }
.trust-section { background: var(--paper); }.trust-grid { display: grid; grid-template-columns: 1fr .7fr; gap: clamp(50px, 9vw, 140px); }.trust-notes > p { margin-top: 0; font-size: 1.1rem; }.notice-card { margin-top: 34px; padding: 24px; background: var(--cream); border-left: 4px solid var(--coral); }.notice-card p { margin: 6px 0 0; font-size: .83rem; }

/* Team */
.team-hero-mark { min-height: 430px; padding: 50px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--white); background: #000; border-radius: 150px 150px 12px 150px; }.team-hero-mark img { width: min(270px, 70%); }.team-hero-mark p { margin: 0; font-family: var(--serif); font-size: 1.4rem; }
.team-section { background: var(--paper); }.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.team-card { min-height: 420px; padding: 28px; border: 1px solid var(--line); border-radius: 26px 26px 6px 26px; }.team-initials { width: 100%; aspect-ratio: 1.65; display: grid; place-items: center; border-radius: 18px 18px 4px 18px; font: 400 clamp(3rem, 5vw, 6rem)/1 var(--serif); }.team-green { background: var(--lime); }.team-coral { background: var(--coral); }.team-sun { background: var(--sun); }.team-sky { background: var(--sky); }
.team-meta { margin-top: 18px; display: flex; justify-content: space-between; gap: 16px; color: #687570; font-size: .67rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }.team-card h3 { margin: 24px 0 13px; font: 400 2rem/1 var(--serif); }.team-card > p { margin: 0; color: var(--ink-soft); font-size: .86rem; }

/* Contact */
.contact-hero { padding: clamp(75px, 9vw, 140px) 0; background: var(--coral); }.contact-hero-grid { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(50px, 9vw, 145px); align-items: start; }.contact-hero-grid > * { min-width: 0; }.contact-hero h1 { margin: 0; font: 400 clamp(4rem, 7vw, 8rem)/.9 var(--serif); letter-spacing: -.05em; }.contact-hero h1 em { color: var(--lime); font-weight: 400; }.contact-hero-grid > div > p:not(.eyebrow) { max-width: 650px; font-size: 1.15rem; }
.contact-direct { margin-top: 70px; display: grid; }.contact-direct a { overflow-wrap: anywhere; font: 400 clamp(1.8rem, 3vw, 3.2rem)/1 var(--serif); }.contact-direct span { margin-top: 10px; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-form { padding: clamp(30px, 4vw, 50px); display: grid; gap: 20px; background: var(--paper); border-radius: 32px 32px 7px 32px; box-shadow: var(--shadow); }.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }.contact-form label { display: grid; gap: 7px; font-size: .72rem; font-weight: 800; letter-spacing: .04em; }.contact-form input,.contact-form select,.contact-form textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 8px; }.contact-form textarea { resize: vertical; }.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus { outline: 2px solid var(--ink); outline-offset: 2px; }.form-note,.form-status { margin: 0; color: #687570; text-align: center; font-size: .7rem; }.form-status:not(:empty) { padding: 10px; color: var(--ink); background: var(--lime); border-radius: 8px; font-weight: 800; }
.offices-section { background: var(--cream); }.offices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }.offices-grid article { position: relative; min-height: 370px; padding: clamp(35px, 5vw, 70px); display: flex; flex-direction: column; align-items: flex-start; overflow: hidden; background: var(--paper); border-radius: 28px 28px 6px 28px; }.office-code { position: absolute; right: -5px; bottom: -30px; color: rgba(16,39,35,.05); font-size: clamp(9rem, 18vw, 16rem); font-weight: 800; line-height: 1; }.offices-grid h2 { margin: auto 0 24px; font: 400 clamp(3rem, 5vw, 5.5rem)/1 var(--serif); }.offices-grid a { margin-top: 6px; overflow-wrap: anywhere; font-weight: 700; }

@media (max-width: 1100px) {
  :root { --container: min(calc(100% - 40px), 980px); }
  .primary-nav { gap: 18px; }
  .hero-slides { width: min(760px, 82%); }
  .programme-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .programme-card { min-height: 330px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .site-header { min-height: 72px; }
  .brand-copy { display: grid; }
  .nav-toggle { display: grid; place-items: center; }
  .primary-nav {
    position: fixed;
    top: var(--mobile-nav-top, 72px);
    right: 0;
    bottom: 0;
    left: 0;
    padding: 36px 24px 48px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    color: var(--white);
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav-open .primary-nav { opacity: 1; visibility: visible; pointer-events: auto; }
  .primary-nav a { padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.14); font-size: 1.15rem; }
  .primary-nav a::after { display: none; }
  .primary-nav .nav-donate { margin-top: 24px; text-align: center; border: 0; color: var(--ink); background: var(--lime); }
}

@media (max-width: 820px) {
  .impact-bar p span, .impact-bar p span + * { display: none; }
  .hero { min-height: 760px; display: block; }
  .hero-copy { width: min(calc(100% - 48px), 980px); min-height: 760px; padding: 82px 0 34px; }
  .hero-slides { min-height: 270px; }
  .hero h1, .hero h2 { font-size: clamp(5.1rem, 25vw, 8rem); }
  .hero-visual { position: absolute; min-height: 0; }
  .hero-visual::before { background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.35)), linear-gradient(180deg, rgba(0,0,0,.08) 30%, rgba(0,0,0,.82) 100%); }
  .hero-note { display: none; }
  .purpose-ribbon { padding: 28px 24px; flex-direction: column; gap: 8px; align-items: flex-start; }
  .purpose-ribbon > span { transform: rotate(90deg); margin-left: 8px; }
  .intro-grid, .section-heading-row, .programmes-heading, .editorial-grid, .page-hero-grid, .give-hero-grid, .fundraise-grid, .trust-grid, .contact-hero-grid { grid-template-columns: 1fr; }
  .contact-hero-grid, .offices-grid { width: min(calc(100vw - 64px), 980px); }
  .sticky-heading { position: static; }
  .today-tomorrow-grid, .involvement-grid, .project-preview-grid, .giving-grid, .offices-grid { grid-template-columns: 1fr; }
  .moment-card { min-height: 310px; }
  .action-card { min-height: 360px; }
  .action-icon { margin-top: 60px; }
  .story-split { grid-template-columns: 1fr; }
  .story-image { min-height: 65vh; }
  .story-copy { padding: 70px 24px; }
  .project-card h3, .project-card-body > p { min-height: auto; }
  .page-hero-image { min-height: 62vh; }
  .value-card { min-height: 290px; }
  .value-card h3 { margin-top: 80px; }
  .rise-statement p:nth-child(2), .rise-statement p:nth-child(3) { margin-left: 0; }
  .project-row { grid-template-columns: 1fr; gap: 20px; }
  .project-row > div:first-child { justify-content: flex-start; }
  .project-row dl { max-width: 380px; }
  .programme-detail { grid-template-columns: 1fr; padding: 60px 28px; }
  .programme-detail-heading > p { margin-top: 45px; }
  .team-hero-mark { min-height: 360px; }
  .contact-direct { margin: 45px 0; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 520px) {
  .impact-bar { justify-content: center; }
  .impact-bar a { display: none; }
  .brand { gap: 10px; }
  .brand-mark-image { width: 60px; height: 42px; }
  .brand-copy { padding-left: 10px; }
  .brand-name { font-size: .78rem; }
  .brand-descriptor { font-size: .49rem; letter-spacing: .3em; }
  .hero, .hero-copy { min-height: 720px; }
  .hero-copy { padding-top: 70px; }
  .hero-slides { width: 100%; min-height: 290px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-meta { grid-template-columns: 1fr 1fr; display: grid; gap: 10px 16px; }
  .hero-meta span:last-child { grid-column: 1 / -1; }
  .hero-note { right: 18px; bottom: 18px; }
  .section { padding: 72px 0; }
  .display-heading { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .section-heading-row { gap: 24px; }
  .programme-grid, .values-grid, .team-grid, .footer-grid { grid-template-columns: 1fr; }
  .programme-card { min-height: 300px; }
  .project-card-body { padding: 24px; }
  .project-card-image { height: 220px; }
  .closing-actions { align-items: flex-start; flex-direction: column; }
  .page-hero h1, .give-hero h1 { font-size: clamp(3.5rem, 18vw, 5.6rem); }
  .contact-hero h1 { font-size: clamp(3.2rem, 15vw, 5.2rem); }
  .page-hero-image { min-height: 480px; border-radius: 100px 100px 8px 100px; }
  .team-hero-mark { padding: 30px; border-radius: 100px 100px 8px 100px; }
  .amount-row { grid-template-columns: 1fr 1fr; }
  .team-card { padding: 20px; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .footer-grid { gap: 42px; }
  .contact-float-panel { width: min(270px, calc(100vw - 36px)); }
}

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