:root {
  --ink: #10242d;
  --muted: #66767c;
  --muted-strong: #3f535a;
  --shield: #073a63;
  --shield-dark: #05243a;
  --life: #16764d;
  --life-dark: #0f5439;
  --warm: #c99b3d;
  --action: #0f5439;
  --action-dark: #0a3b2a;
  --sky: #edf5f7;
  --foam: #f0f7ef;
  --cream: #fbf6e8;
  --paper: #ffffff;
  --surface: #faf9f4;
  --surface-strong: #f2f5ee;
  --line: rgba(16, 36, 45, 0.1);
  --line-strong: rgba(16, 36, 45, 0.16);
  --shadow: 0 24px 70px rgba(7, 58, 99, 0.12);
  --shadow-soft: 0 16px 42px rgba(7, 58, 99, 0.08);
  --shadow-card: 0 1px 2px rgba(16, 36, 45, 0.04), 0 18px 44px rgba(16, 36, 45, 0.06);
  --radius: 8px;
  --container: min(1120px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(201, 155, 61, 0.28);
  color: var(--shield-dark);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--paper);
  color: var(--shield);
  padding: 10px 14px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

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

.section-inner {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  padding: 20px 0;
  pointer-events: none;
  transition: padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding: 12px 0;
  background: rgba(250, 249, 244, 0.86);
  box-shadow: inset 0 -1px 0 rgba(16, 36, 45, 0.06);
  backdrop-filter: blur(20px);
}

.nav {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 56px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: var(--radius);
  pointer-events: auto;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled .nav,
.site-header.is-open .nav {
  min-height: 54px;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img,
.footer-brand img {
  flex: 0 0 auto;
}

.brand img {
  width: 38px;
  height: 38px;
  padding: 2px;
  border: 1px solid rgba(16, 36, 45, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.brand span {
  display: grid;
  color: var(--shield);
  line-height: 1.05;
  text-transform: uppercase;
}

.brand strong {
  font-size: 1.02rem;
  font-weight: 900;
}

.brand small {
  color: var(--life);
  font-size: 0.66rem;
  font-weight: 850;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-panel a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 9px;
  border-radius: var(--radius);
  color: var(--shield-dark);
  font-size: 0.88rem;
  font-weight: 760;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
  background: rgba(15, 84, 57, 0.07);
  color: var(--life-dark);
  outline: none;
}

.nav-panel a[aria-current="page"] {
  background: rgba(15, 84, 57, 0.08);
  color: var(--life-dark);
}

.nav-panel .nav-cta {
  margin-left: 10px;
  background: var(--shield-dark);
  color: var(--paper);
  padding-inline: 16px;
  box-shadow: 0 12px 26px rgba(5, 36, 58, 0.16);
}

.nav-panel .nav-cta:hover,
.nav-panel .nav-cta:focus-visible {
  background: var(--life-dark);
  color: var(--paper);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(15, 84, 57, 0.2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--shield);
  cursor: pointer;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 150px 0 112px;
  background: linear-gradient(180deg, #ffffff 0%, var(--surface) 100%);
}

.hero::before {
  display: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(16, 36, 45, 0.08);
}

.hero-grid,
.action-band {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 96px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: auto;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--life-dark);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--shield-dark);
}

h1 {
  max-width: 700px;
  font-size: 3.85rem;
  font-weight: 780;
  line-height: 1;
}

h2 {
  max-width: 760px;
  font-size: 2.36rem;
  font-weight: 740;
  line-height: 1.1;
}

h3 {
  color: var(--shield-dark);
  font-size: 1.08rem;
  font-weight: 760;
}

.hero-lede {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 30px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 0 18px;
  border-right: 1px solid rgba(16, 36, 45, 0.14);
  color: var(--muted-strong);
  font-size: 0.86rem;
  font-weight: 720;
  box-shadow: none;
}

.hero-points span:first-child {
  padding-left: 0;
}

.hero-points span:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero-points span::before {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 760;
  line-height: 1.1;
  position: relative;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button svg,
.action-band svg,
.programme-icon svg,
.contact-panel svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  flex: 0 0 auto;
}

.button-primary {
  background: var(--shield-dark);
  color: var(--paper);
  box-shadow: 0 14px 30px rgba(5, 36, 58, 0.16);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--life-dark);
  box-shadow: 0 18px 38px rgba(15, 84, 57, 0.18);
}

.button-secondary {
  color: var(--shield);
  border-color: var(--line-strong);
  background: transparent;
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--paper);
  border-color: rgba(20, 121, 77, 0.26);
  color: var(--life-dark);
}

.hero-visual {
  position: relative;
  min-height: 0;
  justify-self: end;
  width: min(100%, 310px);
}

.hero-image {
  position: relative;
  inset: auto;
  height: 162px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(16, 36, 45, 0.1);
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(16, 36, 45, 0.08);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: inherit;
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 0;
  filter: saturate(0.9) contrast(0.96);
}

.hero-note {
  position: absolute;
  max-width: 236px;
  padding: 16px;
  border-left: 5px solid var(--life);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.hero-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--life);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-note strong {
  color: var(--shield-dark);
  font-size: 1.05rem;
}

.hero-note-bottom {
  right: -18px;
  bottom: 26px;
  border-left-color: var(--warm);
}

.hero-note-bottom span {
  color: #9a6c10;
}

.action-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.action-band a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 16px 20px;
  color: var(--shield-dark);
  font-weight: 950;
  border-right: 1px solid var(--line);
  transition: background 160ms ease, color 160ms ease;
}

.action-band a:last-child {
  border-right: 0;
}

.action-band a:hover,
.action-band a:focus-visible {
  background: var(--foam);
  color: var(--life-dark);
  outline: none;
}

.action-band span {
  display: grid;
  gap: 1px;
}

.action-band strong {
  font-size: 1rem;
}

.action-band small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.section {
  padding: 92px 0;
}

main > section {
  scroll-margin-top: 86px;
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: 58px;
  align-items: start;
}

.section-heading-split > p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.section-copy p,
.mission-text p,
.contact-panel p,
.approach-steps p,
.programme-card p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.72;
}

.section-copy p {
  max-width: 690px;
  margin: 20px 0 0;
}

.mission-section {
  background: var(--paper);
}

.mission-grid,
.story-grid,
.approach-grid,
.beneficiaries-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 70px;
  align-items: center;
}

.mission-grid {
  align-items: start;
}

.mission-text {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: none;
}

.mission-text p {
  margin: 0 0 18px;
}

.mission-text p:first-child {
  color: var(--muted-strong);
  font-weight: 640;
}

.programmes-section {
  background: var(--surface);
}

.programme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.programme-card {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.programme-card::before {
  display: none;
}

.programme-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 84, 57, 0.18);
  box-shadow: var(--shadow-card);
}

.programme-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  border: 1px solid rgba(16, 36, 45, 0.1);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--shield);
  box-shadow: none;
}

.programme-icon-green {
  background: var(--paper);
  color: var(--life);
}

.programme-icon-warm {
  background: var(--paper);
  color: #8d6a20;
}

.programme-number {
  order: -1;
  position: absolute;
  top: 24px;
  right: 24px;
  width: fit-content;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(16, 36, 45, 0.42);
  font-size: 0.76rem;
  font-weight: 820;
}

.programme-card p:not(.programme-number) {
  margin: 15px 0 0;
}

.story-section {
  background: var(--paper);
}

.story-grid {
  grid-template-columns: minmax(260px, 310px) minmax(0, 1fr);
}

.story-image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(18, 36, 43, 0.08);
  border-radius: var(--radius);
  box-shadow: none;
  background: var(--paper);
}

.story-image img {
  width: 100%;
  height: 258px;
  object-fit: cover;
  filter: saturate(0.86) contrast(0.96);
}

.story-caption {
  position: static;
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.story-caption strong {
  color: var(--shield-dark);
}

.story-caption span {
  color: var(--muted);
  font-size: 0.9rem;
}

.impact-section {
  background: var(--shield-dark);
  color: var(--paper);
}

.impact-section h2,
.impact-section .eyebrow {
  color: var(--paper);
}

.impact-section .eyebrow {
  color: rgba(255, 255, 255, 0.72);
  border-color: transparent;
  background: transparent;
}

.impact-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: 58px;
  align-items: end;
}

.impact-heading p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: transparent;
  overflow: hidden;
}

.impact-item {
  min-height: 226px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.impact-item:last-child {
  border-right: 0;
}

.impact-item:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.impact-item strong {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 820;
}

.impact-item span {
  display: block;
  margin-top: auto;
  color: var(--paper);
  font-size: 1.06rem;
  font-weight: 760;
}

.impact-item p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
  line-height: 1.66;
}

.approach-section {
  background: var(--paper);
}

.approach-grid {
  align-items: start;
}

.approach-steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.approach-steps article {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 18px;
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.approach-steps article:hover {
  transform: none;
  border-color: rgba(16, 36, 45, 0.16);
  box-shadow: none;
}

.approach-steps span {
  grid-row: 1 / span 2;
  display: block;
  width: auto;
  height: auto;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(16, 36, 45, 0.4);
  font-size: 0.8rem;
  font-weight: 820;
}

.approach-steps p {
  margin: 7px 0 0;
}

.beneficiaries-section {
  background: var(--paper);
}

.beneficiaries-grid {
  align-items: start;
}

.beneficiary-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
  padding-top: 0;
  border-top: 1px solid var(--line);
}

.beneficiary-tags span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--shield-dark);
  font-weight: 700;
  box-shadow: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.beneficiary-tags span::before {
  display: none;
}

.beneficiary-tags span:hover {
  transform: none;
  border-color: rgba(15, 84, 57, 0.22);
  box-shadow: none;
}

.involvement-section {
  background: var(--surface);
}

.involvement-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.92fr);
  gap: 58px;
  align-items: start;
}

.involvement-list {
  display: grid;
  gap: 10px;
}

.involvement-list article {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.involvement-list article:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 84, 57, 0.2);
  box-shadow: var(--shadow-card);
}

.involvement-list span {
  display: block;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(16, 36, 45, 0.42);
  font-weight: 820;
}

.involvement-list h3 {
  margin-top: 1px;
}

.involvement-list p {
  grid-column: 2;
  margin: 4px 0 0;
  color: var(--muted);
}

.contact-section {
  background: var(--shield-dark);
  color: var(--paper);
}

.contact-section h2,
.contact-section .eyebrow {
  color: var(--paper);
}

.contact-section h2 {
  font-size: 2.18rem;
}

.contact-section .eyebrow {
  color: rgba(255, 255, 255, 0.72);
  border-color: transparent;
  background: transparent;
}

.contact-section .section-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: none;
}

.contact-form {
  display: grid;
  gap: 13px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: none;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label span {
  color: var(--shield-dark);
  font-size: 0.84rem;
  font-weight: 760;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(16, 36, 45, 0.16);
  border-radius: var(--radius);
  background: #fbfaf6;
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--shield) 50%),
    linear-gradient(135deg, var(--shield) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 18px,
    calc(100% - 13px) 18px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.contact-form textarea {
  min-height: 104px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--life);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(15, 84, 57, 0.11);
  outline: none;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-note.is-success {
  color: var(--life-dark);
  font-weight: 850;
}

.form-note.is-error {
  color: var(--action-dark);
  font-weight: 850;
}

.contact-form .button:disabled {
  cursor: progress;
  opacity: 0.7;
  transform: none;
}

.contact-panel {
  grid-column: 2;
}

.contact-panel a:not(.button) {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  min-height: 34px;
  color: var(--shield-dark);
  font-weight: 720;
}

.contact-panel a:not(.button) svg {
  width: 28px;
  height: 28px;
  padding: 6px;
  margin-top: 2px;
  border: 1px solid rgba(15, 84, 57, 0.12);
  border-radius: var(--radius);
  background: transparent;
  color: var(--life-dark);
}

.contact-panel a:not(.button):hover,
.contact-panel a:not(.button):focus-visible {
  color: var(--life-dark);
  outline: none;
}

.contact-panel span {
  overflow-wrap: anywhere;
}

.contact-panel p {
  margin: 10px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-panel .button {
  margin-top: 12px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--shield-dark);
  color: var(--paper);
  padding: 28px 0;
}

.footer-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  font-weight: 950;
}

.footer-brand img {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 3.22rem;
  }

  h2 {
    font-size: 2.18rem;
  }

  .contact-section h2 {
    font-size: 2.04rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.6fr);
    gap: 56px;
  }

  .hero-image {
    height: 162px;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: grid;
  }

  .nav-panel {
    position: absolute;
    left: 50%;
    top: calc(100% + 10px);
    width: var(--container);
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 254, 250, 0.95);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-open .nav-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .nav-panel a,
  .nav-panel .nav-cta {
    margin: 0;
    padding: 14px;
  }

  .nav-panel .nav-cta {
    justify-content: center;
    color: var(--paper);
  }

  .hero-grid,
  .section-heading-split,
  .mission-grid,
  .story-grid,
  .approach-grid,
  .beneficiaries-grid,
  .involvement-layout,
  .contact-grid,
  .impact-heading,
  .programme-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    grid-column: auto;
  }

  .hero {
    padding: 116px 0 78px;
  }

  .hero-visual {
    max-width: 340px;
  }

  .mission-text {
    padding-top: 30px;
  }

  .story-image img {
    height: 260px;
  }

  .impact-item span {
    margin-top: 36px;
  }

  .action-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .action-band a:nth-child(2) {
    border-right: 0;
  }

  .action-band a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 28px, 1160px);
  }

  .site-header {
    padding: 10px 0;
  }

  .nav {
    min-height: 58px;
    padding: 7px 8px;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.64rem;
  }

  .hero {
    padding: 98px 0 68px;
    background: linear-gradient(180deg, #ffffff, var(--surface));
  }

  h1 {
    font-size: 2.38rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 1.82rem;
  }

  .contact-section h2 {
    font-size: 1.92rem;
  }

  h3 {
    font-size: 1.16rem;
  }

  .hero-lede,
  .section-copy p,
  .mission-text p,
  .contact-panel p,
  .approach-steps p,
  .programme-card p {
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .button {
    min-height: 46px;
    padding: 12px 13px;
    font-size: 0.94rem;
  }

  .hero-actions .button {
    width: auto;
  }

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

  .hero-points {
    flex-wrap: wrap;
    gap: 0;
    margin-top: 22px;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .hero-points span {
    flex: 0 0 auto;
    min-height: auto;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .hero-points span:first-child {
    padding-left: 0;
  }

  .hero-visual {
    display: none;
  }

  .action-band {
    margin-top: 14px;
  }

  .action-band a {
    min-height: 52px;
    padding: 12px;
    gap: 10px;
  }

  .action-band small {
    font-size: 0.78rem;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading-split {
    gap: 18px;
  }

  .programme-card,
  .contact-form,
  .contact-panel {
    padding: 22px;
  }

  .programme-icon {
    margin-bottom: 26px;
  }

  .programme-number {
    top: 22px;
    right: 22px;
  }

  .story-image img {
    height: 260px;
  }

  .impact-item {
    min-height: 190px;
  }

  .beneficiary-tags span {
    width: 100%;
    border-radius: var(--radius);
  }

  .approach-steps article,
  .involvement-list article {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }

  .approach-steps span,
  .involvement-list span {
    width: auto;
    height: auto;
  }

  .beneficiary-tags {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.34rem;
  }

  h2 {
    font-size: 1.96rem;
  }

  .action-band a {
    border-bottom: 1px solid var(--line);
  }

  .action-band a:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .action-band a:nth-child(n + 3) {
    border-bottom: 0;
  }

  .action-band a:last-child {
    border-right: 0;
    border-bottom: 0;
  }
}
