:root {
  --navy: #071b3d;
  --navy-2: #0a244f;
  --deep-blue: #0b3475;
  --blue: #1464dc;
  --blue-bright: #2f7df0;
  --black: #0b1018;
  --ink: #162033;
  --muted: #5e6878;
  --line: #dce3ee;
  --surface: #f4f7fb;
  --surface-2: #eaf0f8;
  --white: #ffffff;
  --teal: #137f7a;
  --gold: #b27b21;
  --success: #107c41;
  --danger: #b42318;
  --shadow-sm: 0 10px 30px rgba(7, 27, 61, 0.08);
  --shadow-lg: 0 28px 80px rgba(7, 27, 61, 0.18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --container: 1220px;
  --header-height: 84px;
  --transition: 220ms cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: rgba(20,100,220,.2); color: var(--navy); }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  color: var(--black);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
h1 { font-size: clamp(3.1rem, 7.4vw, 7.1rem); }
h2 { font-size: clamp(2.35rem, 5vw, 4.8rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 2rem); }
p { color: var(--muted); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.container--narrow { width: min(calc(100% - 40px), 840px); margin-inline: auto; }
.section { padding: clamp(76px, 10vw, 140px) 0; }
.section--compact { padding: clamp(58px, 7vw, 96px) 0; }
.section--surface { background: var(--surface); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,.72); }
.section-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: end; margin-bottom: 54px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading p { max-width: 620px; margin-bottom: 4px; font-size: 1.06rem; }
.section-heading--stack { display: block; max-width: 840px; }
.section-heading--stack p { margin-top: 20px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--deep-blue);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
.eyebrow--light { color: #9dc4ff; }
.lead { color: var(--ink); font-size: clamp(1.12rem, 2vw, 1.38rem); line-height: 1.65; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--deep-blue); font-weight: 750; }
.text-link .icon { transition: transform var(--transition); }
.text-link:hover .icon { transform: translateX(5px); }
.icon { width: 20px; height: 20px; flex: none; }
.icon--large { width: 30px; height: 30px; }
.sr-only { position: absolute!important; width: 1px!important; height: 1px!important; overflow: hidden!important; clip: rect(0 0 0 0)!important; white-space: nowrap!important; }
.skip-link { position: fixed; z-index: 9999; top: 14px; left: 14px; transform: translateY(-150%); padding: 12px 18px; background: var(--white); color: var(--navy); border-radius: 8px; box-shadow: var(--shadow-sm); }
.skip-link:focus { transform: none; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.1;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}
.button:hover { transform: translateY(-2px); }
.button .icon { width: 18px; height: 18px; }
.button--small { min-height: 42px; padding: 10px 18px; font-size: .9rem; }
.button--navy { background: var(--navy); color: var(--white); box-shadow: 0 10px 24px rgba(7,27,61,.18); }
.button--navy:hover { background: var(--deep-blue); }
.button--blue { background: var(--blue); color: var(--white); box-shadow: 0 12px 28px rgba(20,100,220,.26); }
.button--blue:hover { background: #0d55c1; }
.button--white { background: var(--white); color: var(--navy); }
.button--outline { border-color: rgba(7,27,61,.22); background: transparent; color: var(--navy); }
.button--outline:hover { border-color: var(--navy); }
.button--outline-light { border-color: rgba(255,255,255,.45); background: transparent; color: var(--white); }
.button--outline-light:hover { border-color: var(--white); background: rgba(255,255,255,.06); }
.button--ghost { background: transparent; border-color: var(--line); color: var(--navy); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.scroll-progress { position: fixed; z-index: 1200; top: 0; left: 0; width: 100%; height: 3px; pointer-events: none; }
.scroll-progress span { display: block; width: 0; height: 100%; background: var(--blue-bright); }
.announcement { background: var(--navy); color: var(--white); font-size: .84rem; }
.announcement__inner { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.announcement a { display: inline-flex; align-items: center; gap: 7px; font-weight: 750; color: #b7d3ff; }
.announcement .icon { width: 16px; height: 16px; }
.site-header { position: sticky; z-index: 1000; top: 0; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(7,27,61,.08); backdrop-filter: blur(18px); transition: box-shadow var(--transition), transform var(--transition); }
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(7,27,61,.08); }
.header__inner { min-height: var(--header-height); display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; margin-right: auto; }
.brand img { width: 238px; height: auto; }
.desktop-nav > ul { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; list-style: none; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 5px; padding: 30px 13px; color: #273246; font-size: .94rem; font-weight: 760; }
.nav-link::after { content: ""; position: absolute; right: 14px; bottom: 21px; left: 14px; height: 2px; transform: scaleX(0); background: var(--blue); transform-origin: left; transition: transform var(--transition); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.nav-chevron { font-size: 1rem; transform: translateY(-1px); }
.nav-dropdown { position: absolute; top: calc(100% - 4px); left: 0; width: 310px; padding: 12px; opacity: 0; visibility: hidden; transform: translateY(10px); background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); transition: all var(--transition); }
.has-dropdown:hover .nav-dropdown, .has-dropdown:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: none; }
.nav-dropdown a { display: block; padding: 14px 16px; border-radius: 12px; }
.nav-dropdown a:hover { background: var(--surface); }
.nav-dropdown span { display: block; color: var(--navy); font-weight: 800; }
.nav-dropdown small { display: block; margin-top: 3px; color: var(--muted); }
.header__actions { display: flex; align-items: center; gap: 10px; }
.icon-button, .menu-button { width: 44px; height: 44px; display: inline-grid; place-items: center; padding: 0; border: 0; border-radius: 50%; background: transparent; cursor: pointer; }
.icon-button:hover, .menu-button:hover { background: var(--surface); }
.menu-button { display: none; }
.mobile-menu { position: fixed; z-index: 1300; inset: 0; overflow-y: auto; background: var(--white); padding: 24px; }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.mobile-menu nav { display: grid; padding: 18px 0; }
.mobile-menu nav > a:not(.button) { padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--navy); font-family: Georgia, serif; font-size: 1.55rem; }
.mobile-subnav { display: grid; padding: 8px 0 12px 18px; }
.mobile-subnav a { padding: 7px 0; color: var(--muted); }
.mobile-menu .button { margin-top: 22px; }

.search-panel { position: fixed; z-index: 2000; inset: 0; }
.search-panel__backdrop { position: absolute; inset: 0; background: rgba(4,14,32,.72); backdrop-filter: blur(8px); }
.search-panel__dialog { position: relative; width: min(calc(100% - 32px), 820px); max-height: calc(100vh - 80px); overflow-y: auto; margin: 40px auto; padding: 34px; background: var(--white); border-radius: 24px; box-shadow: var(--shadow-lg); }
.search-panel__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.search-panel__head h2 { margin-bottom: 26px; font-size: clamp(2rem, 5vw, 3.4rem); }
.search-field { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border: 1px solid var(--line); border-radius: 15px; background: var(--surface); }
.search-field:focus-within { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(20,100,220,.12); }
.search-field input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 1.08rem; }
.search-results { display: grid; gap: 10px; margin-top: 18px; }
.search-result { display: block; padding: 16px 18px; border: 1px solid var(--line); border-radius: 14px; }
.search-result:hover { border-color: var(--blue); background: var(--surface); }
.search-result strong { display: block; color: var(--navy); }
.search-result span { color: var(--muted); font-size: .92rem; }

.hero { position: relative; overflow: hidden; background: var(--surface); }
.hero::before { content: ""; position: absolute; width: 760px; height: 760px; top: -460px; left: -340px; border-radius: 50%; border: 120px solid rgba(20,100,220,.06); }
.hero__grid { min-height: min(800px, calc(100vh - 124px)); display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: clamp(38px, 6vw, 90px); padding: clamp(72px, 8vw, 118px) 0; }
.hero__content { position: relative; z-index: 2; }
.hero h1 { max-width: 790px; margin-bottom: 28px; }
.hero h1 em { color: var(--blue); font-style: normal; }
.hero__lead { max-width: 640px; margin-bottom: 34px; color: #465166; font-size: clamp(1.06rem, 1.8vw, 1.26rem); }
.hero__visual { position: relative; min-height: 610px; }
.hero__image-main { position: absolute; inset: 0 0 72px 58px; overflow: hidden; background: var(--navy); border-radius: 180px 180px 34px 34px; box-shadow: var(--shadow-lg); }
.hero__image-main img { width: 100%; height: 100%; object-fit: cover; }
.hero__image-small { position: absolute; z-index: 2; bottom: 4px; left: 0; width: 220px; aspect-ratio: 1; overflow: hidden; border: 10px solid var(--surface); border-radius: 50%; background: var(--blue); }
.hero__image-small img { width: 100%; height: 100%; object-fit: cover; }
.hero__note { position: absolute; z-index: 3; right: -12px; bottom: 30px; width: min(300px, 60%); padding: 22px; background: var(--white); border-radius: 18px; box-shadow: var(--shadow-lg); }
.hero__note strong { display: block; color: var(--navy); font-family: Georgia, serif; font-size: 1.55rem; line-height: 1.15; }
.hero__note span { display: block; margin-top: 8px; color: var(--muted); font-size: .88rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 36px; padding-top: 26px; border-top: 1px solid var(--line); color: var(--muted); font-size: .88rem; }
.hero__trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero__trust .icon { color: var(--success); width: 17px; height: 17px; }

.stat-strip { position: relative; z-index: 2; margin-top: -1px; background: var(--navy); color: var(--white); }
.stat-strip__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat { min-height: 152px; padding: 32px 28px; border-right: 1px solid rgba(255,255,255,.12); }
.stat:first-child { border-left: 1px solid rgba(255,255,255,.12); }
.stat strong { display: block; color: var(--white); font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; }
.stat span { display: block; margin-top: 10px; color: rgba(255,255,255,.65); font-size: .9rem; }

.programme-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.programme-card { position: relative; min-height: 440px; overflow: hidden; border-radius: 24px; background: var(--navy); color: var(--white); isolation: isolate; }
.programme-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(7,27,61,.08), rgba(7,27,61,.9)); }
.programme-card__image { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(.2,.7,.2,1); }
.programme-card:hover .programme-card__image { transform: scale(1.04); }
.programme-card__content { position: absolute; right: 0; bottom: 0; left: 0; padding: clamp(28px, 5vw, 46px); }
.programme-card__icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 62px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25); border-radius: 50%; backdrop-filter: blur(8px); }
.programme-card h3 { max-width: 510px; margin-bottom: 14px; color: var(--white); font-size: clamp(1.8rem, 3vw, 3rem); }
.programme-card p { max-width: 520px; margin-bottom: 21px; color: rgba(255,255,255,.76); }
.programme-card .text-link { color: var(--white); }

.split-feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 8vw, 110px); align-items: center; }
.split-feature__image { position: relative; overflow: hidden; min-height: 620px; border-radius: 28px; background: var(--navy); }
.split-feature__image img { width: 100%; height: 100%; object-fit: cover; }
.split-feature__badge { position: absolute; right: 24px; bottom: 24px; max-width: 280px; padding: 22px; background: var(--white); border-radius: 16px; box-shadow: var(--shadow-sm); }
.split-feature__badge strong { display: block; color: var(--navy); font-family: Georgia, serif; font-size: 1.45rem; }
.split-feature__content h2 { margin-bottom: 24px; }
.split-feature__content .lead { margin-bottom: 24px; }
.check-list { display: grid; gap: 15px; margin: 28px 0 34px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; color: #39455a; }
.check-list .icon { margin-top: 3px; color: var(--blue); }

.story-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.story-card { display: block; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 20px; transition: transform var(--transition), box-shadow var(--transition); }
.story-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.story-card__image { aspect-ratio: 16/10; overflow: hidden; background: var(--surface-2); }
.story-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.story-card:hover .story-card__image img { transform: scale(1.04); }
.story-card__body { padding: 25px; }
.story-card__meta { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 14px; color: var(--deep-blue); font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.story-card h3 { margin-bottom: 14px; font-size: 1.72rem; }
.story-card p { margin-bottom: 19px; }

.quote-band { position: relative; overflow: hidden; padding: clamp(75px, 10vw, 130px) 0; background: var(--deep-blue); color: var(--white); }
.quote-band::before { content: "“"; position: absolute; top: -100px; right: 6vw; color: rgba(255,255,255,.06); font-family: Georgia,serif; font-size: 440px; line-height: 1; }
.quote-band blockquote { position: relative; max-width: 980px; margin: 0; color: var(--white); font-family: Georgia,serif; font-size: clamp(2rem, 5vw, 4.8rem); line-height: 1.1; letter-spacing: -.035em; }
.quote-band cite { display: block; margin-top: 28px; color: #b8d3ff; font-family: Inter, sans-serif; font-size: .9rem; font-style: normal; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.page-hero { position: relative; overflow: hidden; padding: clamp(86px, 12vw, 170px) 0 clamp(72px, 10vw, 130px); background: var(--surface); }
.page-hero::after { content: ""; position: absolute; width: 620px; height: 620px; right: -220px; bottom: -420px; border: 90px solid rgba(20,100,220,.08); border-radius: 50%; }
.page-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 60px; }
.page-hero h1 { margin-bottom: 0; font-size: clamp(3.4rem, 8vw, 7rem); }
.page-hero p { margin-bottom: 8px; font-size: clamp(1.1rem, 2vw, 1.35rem); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; color: var(--muted); font-size: .86rem; }
.breadcrumbs a:hover { color: var(--blue); }

.value-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.value-card { min-height: 290px; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; }
.value-card__number { display: block; margin-bottom: 70px; color: var(--blue); font-family: Georgia,serif; font-size: 1.3rem; }
.value-card h3 { font-size: 1.58rem; }
.value-card p { margin-bottom: 0; font-size: .94rem; }

.timeline { position: relative; margin-top: 60px; }
.timeline::before { content: ""; position: absolute; top: 0; bottom: 0; left: 22px; width: 1px; background: var(--line); }
.timeline-item { position: relative; display: grid; grid-template-columns: 46px 180px 1fr; gap: 24px; padding-bottom: 48px; }
.timeline-item__dot { position: relative; z-index: 2; width: 45px; height: 45px; display: grid; place-items: center; background: var(--white); border: 1px solid var(--line); border-radius: 50%; color: var(--blue); font-weight: 800; }
.timeline-item__year { padding-top: 10px; color: var(--navy); font-weight: 850; }
.timeline-item__content { padding: 24px 28px; background: var(--surface); border-radius: 16px; }
.timeline-item__content h3 { margin-bottom: 8px; }
.timeline-item__content p { margin-bottom: 0; }

.programme-detail { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(38px, 7vw, 94px); align-items: center; padding: 50px 0; border-top: 1px solid var(--line); }
.programme-detail:first-child { border-top: 0; }
.programme-detail:nth-child(even) .programme-detail__image { order: 2; }
.programme-detail__image { overflow: hidden; aspect-ratio: 4/3; background: var(--surface); border-radius: 22px; }
.programme-detail__image img { width: 100%; height: 100%; object-fit: cover; }
.programme-detail__content h2 { margin-bottom: 18px; font-size: clamp(2.1rem, 4.5vw, 4.2rem); }
.outcome-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: 28px 0; }
.outcome-list div { padding: 17px; background: var(--surface); border-radius: 12px; color: var(--navy); font-size: .9rem; font-weight: 750; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 34px; }
.filter-button { padding: 10px 17px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--navy); cursor: pointer; font-weight: 750; }
.filter-button:hover, .filter-button.is-active { border-color: var(--navy); background: var(--navy); color: var(--white); }
.project-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.project-card { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--white); }
.project-card[hidden] { display: none; }
.project-card__image { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--surface-2); }
.project-card__image img { width: 100%; height: 100%; object-fit: cover; }
.project-card__status { position: absolute; top: 18px; left: 18px; padding: 8px 12px; background: rgba(255,255,255,.94); border-radius: 999px; color: var(--navy); font-size: .74rem; font-weight: 850; box-shadow: var(--shadow-sm); }
.project-card__body { padding: 28px; }
.project-card__category { color: var(--blue); font-size: .76rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.project-card h2 { margin: 11px 0 15px; font-size: 2rem; }
.project-card__meta { display: flex; align-items: center; gap: 7px; margin-top: 18px; color: var(--muted); font-size: .9rem; }
.project-card__meta .icon { width: 17px; height: 17px; color: var(--deep-blue); }

.impact-model { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; counter-reset: impact; }
.impact-step { position: relative; min-height: 330px; padding: 28px; overflow: hidden; background: var(--navy); border-radius: 18px; color: var(--white); }
.impact-step::before { counter-increment: impact; content: "0" counter(impact); display: block; margin-bottom: 90px; color: #84b6ff; font-family: Georgia,serif; font-size: 1.5rem; }
.impact-step h3 { color: var(--white); }
.impact-step p { color: rgba(255,255,255,.67); }
.impact-step::after { content: ""; position: absolute; width: 160px; height: 160px; right: -90px; bottom: -90px; border: 28px solid rgba(255,255,255,.06); border-radius: 50%; }
.metric-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.metric-card { padding: 26px; background: var(--white); border: 1px solid var(--line); border-radius: 17px; }
.metric-card strong { display: block; margin-bottom: 10px; color: var(--navy); font-family: Georgia,serif; font-size: 2rem; }
.metric-card p { margin-bottom: 0; }

.report-card { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; padding: 32px; border: 1px solid var(--line); border-radius: 18px; }
.report-card + .report-card { margin-top: 14px; }
.report-card h3 { margin-bottom: 9px; }
.report-card p { margin-bottom: 0; }
.report-card__status { display: inline-flex; padding: 7px 11px; margin-bottom: 14px; background: #e9f8ef; border-radius: 999px; color: var(--success); font-size: .74rem; font-weight: 850; text-transform: uppercase; }

.involve-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.involve-card { min-height: 390px; display: flex; flex-direction: column; padding: 30px; background: var(--surface); border-radius: 20px; }
.involve-card__icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 76px; background: var(--navy); border-radius: 50%; color: var(--white); }
.involve-card h3 { font-size: 1.9rem; }
.involve-card p { flex: 1; }

.form-shell { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(34px, 7vw, 86px); align-items: start; }
.form-intro { position: sticky; top: 130px; }
.form-intro h2 { font-size: clamp(2.3rem, 4.8vw, 4.3rem); }
.contact-list { display: grid; gap: 16px; margin-top: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 12px; }
.contact-item .icon { margin-top: 4px; color: var(--blue); }
.contact-item strong { display: block; color: var(--navy); }
.contact-item span, .contact-item a { color: var(--muted); }
.form-card { padding: clamp(25px, 4vw, 44px); background: var(--white); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1/-1; }
.field label { color: var(--navy); font-size: .9rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; padding: 14px 15px; border: 1px solid #cfd8e5; border-radius: 11px; outline: none; background: var(--white); color: var(--ink); transition: border-color var(--transition), box-shadow var(--transition); }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(20,100,220,.11); }
.field [aria-invalid="true"] { border-color: var(--danger); }
.form-note { margin: 18px 0 0; color: var(--muted); font-size: .82rem; }
.honeypot { position: absolute; left: -9999px; }
.alert { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 22px; padding: 16px 18px; border-radius: 12px; }
.alert--success { background: #eaf8ef; color: #075d31; }
.alert--error { background: #fff0ef; color: var(--danger); }
.alert .icon { margin-top: 2px; }

.donation-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 7vw, 90px); align-items: start; }
.donation-panel { padding: 32px; background: var(--navy); border-radius: 24px; color: var(--white); }
.donation-panel h2, .donation-panel h3 { color: var(--white); }
.donation-panel p { color: rgba(255,255,255,.7); }
.amount-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 24px 0; }
.amount-button { padding: 15px 10px; border: 1px solid rgba(255,255,255,.24); border-radius: 10px; background: rgba(255,255,255,.06); color: var(--white); cursor: pointer; font-weight: 850; }
.amount-button:hover, .amount-button.is-active { background: var(--white); color: var(--navy); }
.bank-card { padding: 23px; margin-top: 22px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 15px; }
.bank-row { display: flex; justify-content: space-between; gap: 20px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.bank-row:last-child { border-bottom: 0; }
.bank-row span { color: rgba(255,255,255,.62); }
.bank-row strong { text-align: right; }
.use-of-funds { display: grid; gap: 14px; }
.fund-item { display: grid; grid-template-columns: 54px 1fr; gap: 15px; align-items: start; padding: 20px; background: var(--surface); border-radius: 14px; }
.fund-item__icon { width: 54px; height: 54px; display: grid; place-items: center; background: var(--white); border-radius: 50%; color: var(--deep-blue); }
.fund-item h3 { margin-bottom: 6px; font-size: 1.35rem; }
.fund-item p { margin-bottom: 0; font-size: .92rem; }

.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 0; border: 0; background: transparent; cursor: pointer; color: var(--navy); text-align: left; font-family: Georgia,serif; font-size: 1.35rem; }
.faq-question span:last-child { font-family: Inter,sans-serif; transition: transform var(--transition); }
.faq-item.is-open .faq-question span:last-child { transform: rotate(45deg); }
.faq-answer { padding: 0 0 24px; }
.faq-answer p { max-width: 780px; margin-bottom: 0; }

.article-hero { padding: clamp(86px, 12vw, 160px) 0 58px; background: var(--surface); }
.article-hero h1 { max-width: 980px; margin-bottom: 28px; font-size: clamp(3rem, 7vw, 6.3rem); }
.article-meta { display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); font-size: .9rem; }
.article-cover { width: min(calc(100% - 40px), 1220px); aspect-ratio: 16/7; overflow: hidden; margin: 0 auto 70px; background: var(--surface-2); border-radius: 24px; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-body { font-size: 1.08rem; }
.article-body p { color: #3d495d; }
.article-body h2 { margin: 52px 0 18px; font-size: 2.5rem; }
.article-body blockquote { margin: 46px 0; padding: 30px 34px; border-left: 4px solid var(--blue); background: var(--surface); color: var(--navy); font-family: Georgia,serif; font-size: 1.7rem; line-height: 1.35; }

.footer-cta { padding: clamp(64px, 8vw, 100px) 0; background: var(--blue); color: var(--white); }
.footer-cta__inner { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 54px; }
.footer-cta h2 { max-width: 760px; margin-bottom: 18px; color: var(--white); font-size: clamp(2.4rem, 5.6vw, 5.2rem); }
.footer-cta p { max-width: 700px; margin-bottom: 0; color: rgba(255,255,255,.74); }
.site-footer { padding: 72px 0 22px; background: #06152f; color: var(--white); }
.footer__grid { display: grid; grid-template-columns: 1.5fr .65fr .65fr 1.1fr; gap: 55px; }
.footer__brand img { width: 240px; }
.footer__brand p { max-width: 360px; margin: 20px 0 26px; color: rgba(255,255,255,.62); }
.site-footer h3 { margin-bottom: 19px; color: var(--white); font-family: Inter,sans-serif; font-size: .8rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.site-footer a { display: block; width: fit-content; margin: 10px 0; color: rgba(255,255,255,.68); }
.site-footer a:hover { color: var(--white); }
.social-links { display: flex; gap: 9px; }
.social-links a { width: 38px; height: 38px; display: grid; place-items: center; margin: 0; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: var(--white); font-size: .82rem; font-weight: 850; }
.footer__newsletter p { color: rgba(255,255,255,.62); }
.newsletter-form { display: flex; overflow: hidden; margin: 19px 0 9px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; }
.newsletter-form label { flex: 1; }
.newsletter-form input { width: 100%; height: 50px; padding: 0 17px; border: 0; outline: 0; background: transparent; color: var(--white); }
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form button { width: 50px; border: 0; background: var(--white); color: var(--navy); cursor: pointer; }
.site-footer small { color: rgba(255,255,255,.45); }
.footer__bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 60px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.12); font-size: .8rem; }
.footer__bottom p { margin: 0; color: rgba(255,255,255,.5); }
.footer__bottom > div { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__bottom a, .footer__bottom button { margin: 0; padding: 0; border: 0; background: transparent; color: rgba(255,255,255,.55); cursor: pointer; }
.back-to-top { position: fixed; z-index: 950; right: 22px; bottom: 22px; width: 46px; height: 46px; opacity: 0; visibility: hidden; transform: translateY(10px); border: 0; border-radius: 50%; background: var(--navy); color: var(--white); cursor: pointer; box-shadow: var(--shadow-sm); transition: all var(--transition); }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.cookie-banner { position: fixed; z-index: 1800; right: 20px; bottom: 20px; left: 20px; max-width: 720px; margin-left: auto; padding: 22px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); }
.cookie-banner strong { color: var(--navy); }
.cookie-banner p { margin: 4px 0 16px; font-size: .9rem; }
.cookie-actions { display: flex; gap: 8px; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 100ms; }
[data-reveal-delay="2"] { transition-delay: 200ms; }
[data-reveal-delay="3"] { transition-delay: 300ms; }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .menu-button { display: inline-grid; }
  .header__actions .button { display: none; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { max-width: 830px; }
  .hero__visual { min-height: 640px; }
  .section-heading, .page-hero__grid, .footer-cta__inner { grid-template-columns: 1fr; }
  .value-grid, .impact-model { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1.2fr .8fr .8fr; }
  .footer__newsletter { grid-column: 1/-1; max-width: 560px; }
}

@media (max-width: 820px) {
  :root { --header-height: 72px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .announcement__inner span { display: none; }
  .announcement__inner { justify-content: center; }
  .brand img { width: 210px; }
  .hero__grid { min-height: auto; padding-top: 65px; }
  .hero__visual { min-height: 520px; }
  .hero__image-main { inset: 0 0 52px 28px; border-radius: 100px 100px 24px 24px; }
  .hero__image-small { width: 155px; border-width: 7px; }
  .hero__note { right: 0; width: 240px; padding: 17px; }
  .stat-strip__grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .programme-grid, .story-grid, .project-grid, .involve-grid, .metric-grid { grid-template-columns: 1fr; }
  .split-feature, .programme-detail, .form-shell, .donation-layout { grid-template-columns: 1fr; }
  .programme-detail:nth-child(even) .programme-detail__image { order: initial; }
  .split-feature__image { min-height: 480px; }
  .outcome-list { grid-template-columns: 1fr; }
  .form-intro { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand, .footer__newsletter { grid-column: 1/-1; }
  .footer-cta__inner { align-items: start; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(2.75rem, 15vw, 4.1rem); }
  h2 { font-size: clamp(2.1rem, 12vw, 3.3rem); }
  .section { padding: 76px 0; }
  .header__inner { gap: 10px; }
  .brand img { width: 174px; }
  .header__actions { gap: 2px; }
  .icon-button, .menu-button { width: 40px; height: 40px; }
  .hero__visual { min-height: 440px; }
  .hero__image-main { left: 0; bottom: 38px; }
  .hero__image-small { display: none; }
  .hero__note { right: 12px; bottom: 4px; width: 225px; }
  .hero__trust { display: grid; }
  .stat { min-height: 126px; padding: 26px 18px; }
  .programme-card { min-height: 490px; }
  .programme-card__icon { margin-bottom: 90px; }
  .value-grid, .impact-model, .form-grid, .amount-grid { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 45px 1fr; gap: 16px; }
  .timeline-item__year { grid-column: 2; padding-top: 0; }
  .timeline-item__content { grid-column: 2; padding: 20px; }
  .report-card { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand, .footer__newsletter { grid-column: auto; }
  .footer__bottom { display: grid; }
  .search-panel__dialog { margin: 16px auto; padding: 24px; max-height: calc(100vh - 32px); }
  .cookie-banner { right: 10px; bottom: 10px; left: 10px; }
  .cookie-actions { display: grid; }
}

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