:root {
  /* Colours sampled from the Katha logo, with light tints for large surfaces. */
  --brand-navy: #173859;
  --brand-blue: #1f4a7d;
  --brand-red: #bd3f3c;
  --brand-green: #4c7d3f;
  --brand-ochre: #d99657;
  --brand-rust: #ad5937;
  --tint-red: #f2dfde;
  --tint-green: #e2ebde;
  --tint-blue: #dfe9f1;
  --tint-ochre: #f1e6d9;
  --cream: #f8f2eb;
  --cream-soft: #fafcfd;
  --paper: #ffffff;
  --ink: var(--brand-navy);
  --green: var(--brand-blue);
  --green-dark: var(--brand-navy);
  --green-deep: var(--brand-navy);
  --coral: var(--brand-red);
  --yellow: var(--brand-ochre);
  --blue: var(--tint-blue);
  --mint: var(--tint-green);
  --lavender: #e8eef3;
  --peach: var(--brand-rust);
  --muted: #617385;
  --line: rgba(23, 56, 89, 0.14);
  --shadow: 0 24px 70px rgba(23, 56, 89, 0.15);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--cream-soft);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1,
h2,
blockquote {
  font-family: "Fraunces", serif;
  letter-spacing: -0.035em;
}

h1 em,
h2 em {
  color: var(--coral);
  font-style: normal;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
}

h3 {
  line-height: 1.25;
}

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

.section {
  padding: 120px 0;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 15px;
  color: white;
  background: var(--green-deep);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--green-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
}

.eyebrow-green {
  color: var(--green);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow-light > span {
  background: var(--yellow);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: 80px;
  border-bottom: 1px solid transparent;
  transition: height 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  height: 70px;
  background: rgba(250, 252, 253, 0.94);
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(23, 56, 89, 0.08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.brand-logo-header {
  height: 72px;
  transition: height .25s ease;
}

.site-header.scrolled .brand-logo-header {
  height: 58px;
}

.brand-logo-footer {
  height: 118px;
}

.brand-footer {
  width: fit-content;
  padding: 9px 13px;
  background: rgba(255, 255, 255, .94);
  border-radius: 18px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.9rem;
  font-weight: 600;
}

.desktop-nav a:not(.nav-cta) {
  position: relative;
}

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

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 19px;
  color: white;
  background: var(--green);
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 790px;
  padding: 150px 0 80px;
  overflow: hidden;
  background: var(--cream);
}

.hero::after {
  position: absolute;
  right: -3%;
  bottom: -90px;
  width: 46%;
  height: 190px;
  background: var(--cream-soft);
  border-radius: 50% 0 0 0;
  content: "";
}

.hero-sun {
  position: absolute;
  border-radius: 50%;
}

.hero-sun-one {
  top: -190px;
  right: -150px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(189, 63, 60, 0.35);
}

.hero-sun-two {
  bottom: 80px;
  left: -100px;
  width: 220px;
  height: 220px;
  background: rgba(217, 150, 87, 0.2);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(4rem, 6.3vw, 6.4rem);
  font-weight: 600;
  line-height: 0.98;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 46px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button span {
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button:hover span {
  transform: translateX(4px);
}

.button-primary {
  color: white;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(31, 74, 125, 0.24);
}

.button-primary:hover {
  background: var(--green-dark);
}

.button-text {
  min-height: auto;
  padding: 8px 0;
  color: var(--green);
  background: transparent;
}

.hero-proof {
  display: flex;
  gap: 22px;
}

.hero-proof > div {
  display: flex;
  flex-direction: column;
  padding-left: 16px;
  border-left: 2px solid var(--yellow);
}

.hero-proof strong {
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.72rem;
}

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 0.88;
  min-height: 540px;
  background: var(--green);
  border-radius: 50% 50% 46% 54% / 42% 44% 56% 58%;
  box-shadow: var(--shadow);
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.hero-visual::before {
  top: 15%;
  left: 12%;
  width: 12px;
  height: 12px;
  background: var(--yellow);
  box-shadow: 410px 300px 0 var(--peach), 20px 310px 0 rgba(255,255,255,.38);
}

.hero-visual::after {
  top: -15px;
  right: 30px;
  width: 100px;
  height: 100px;
  border: 22px solid var(--yellow);
  border-left-color: transparent;
  transform: rotate(-26deg);
}

.visual-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-10deg);
}

.orbit-one {
  width: 67%;
  height: 67%;
}

.orbit-two {
  width: 89%;
  height: 89%;
}

.visual-centre {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 210px;
  height: 210px;
  color: var(--ink);
  text-align: center;
  background: var(--paper);
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(23, 56, 89, 0.25);
  transform: translate(-50%, -50%);
}

.visual-centre svg {
  width: 60px;
  margin-bottom: 9px;
}

.visual-centre strong {
  font-family: "Fraunces", serif;
  font-size: 1.12rem;
  line-height: 1.2;
}

.life-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 160px;
  padding: 12px 15px;
  background: rgba(250, 252, 253, 0.97);
  border-radius: 16px;
  box-shadow: 0 14px 35px rgba(23, 56, 89, 0.2);
}

.life-card > div {
  display: flex;
  flex-direction: column;
}

.life-card strong {
  font-size: 0.83rem;
}

.life-card small {
  color: var(--muted);
  font-size: 0.64rem;
}

.life-icon {
  display: grid;
  flex: 0 0 auto;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 10px;
  font-weight: 700;
}

.life-icon.coral { color: white; background: var(--brand-red); }
.life-icon.yellow { color: var(--brand-navy); background: var(--brand-ochre); }
.life-icon.green { color: white; background: var(--brand-green); }
.life-icon.blue { color: white; background: var(--brand-blue); }

.card-children { top: 8%; left: 3%; }
.card-youth { top: 16%; right: -3%; }
.card-families { bottom: 14%; left: -3%; }
.card-community { right: 2%; bottom: 5%; }

.visual-note {
  position: absolute;
  bottom: 4%;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(217, 150, 87, 0.24);
}

.stats {
  position: relative;
  z-index: 3;
  padding: 44px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 65px;
  padding: 0 30px;
  border-right: 1px solid var(--line);
}

.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: 0; }

.stat strong {
  color: var(--green);
  font-family: "Fraunces", serif;
  font-size: 2.65rem;
  line-height: 1;
}

.stat span {
  max-width: 120px;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.4;
}

.about {
  background: var(--paper);
}

.two-column {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 100px;
  align-items: start;
}

.about-copy {
  padding-top: 45px;
  color: var(--muted);
}

.large-copy {
  margin-bottom: 26px;
  color: var(--ink);
  font-family: "Fraunces", serif;
  font-size: clamp(1.5rem, 2.4vw, 2.05rem);
  line-height: 1.4;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: 12px;
  padding-bottom: 4px;
  color: var(--green);
  border-bottom: 1px solid currentColor;
  font-size: 0.9rem;
  font-weight: 700;
}

.inline-link span {
  transition: transform 0.2s ease;
}

.inline-link:hover span {
  transform: translateX(4px);
}

.model {
  padding: 120px 0 110px;
  color: white;
  background: var(--green-deep);
}

.model-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: end;
}

.model-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -20px;
}

.model-heading h2 em,
.purpose-card h2 em,
.partner h2 em {
  color: var(--yellow);
}

.model-heading > p:last-child {
  max-width: 440px;
  margin-bottom: 5px;
  color: rgba(255,255,255,.67);
}

.pathway {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 80px;
}

.path-step {
  position: relative;
  min-height: 185px;
  padding: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
}

.path-step:first-child {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

.path-step > span {
  position: absolute;
  top: 15px;
  right: 19px;
  color: rgba(255,255,255,.35);
  font-size: 0.72rem;
}

.path-step:first-child > span { color: rgba(23, 56, 89, 0.55); }

.path-step strong,
.path-step small {
  display: block;
}

.path-step strong {
  margin-top: 55px;
  margin-bottom: 8px;
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
}

.path-step small {
  color: rgba(255,255,255,.55);
  font-size: 0.74rem;
  line-height: 1.45;
}

.path-step:first-child small { color: rgba(23,56,89,.82); }

.path-arrow {
  color: rgba(255,255,255,.35);
  font-size: 1.35rem;
}

.programmes {
  background: var(--cream-soft);
}

.section-title-row {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 68px;
}

.section-title-row > p {
  max-width: 390px;
  margin-bottom: 8px;
  color: var(--muted);
}

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

.programme-card {
  display: flex;
  grid-column: span 2;
  flex-direction: column;
  justify-content: space-between;
  min-height: 375px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.programme-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.programme-featured {
  color: white;
  background: var(--green);
  border-color: var(--green);
}

.programme-photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: white;
  background: var(--green-deep);
  border-color: transparent;
}

.programme-photo::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(23, 56, 89, .12) 20%, rgba(23, 56, 89, .9) 100%);
  content: "";
}

.programme-card-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.programme-photo .programme-number,
.programme-photo .card-label,
.programme-photo p:last-child {
  color: rgba(255, 255, 255, .82);
}

.programme-photo .programme-symbol {
  box-shadow: 0 8px 24px rgba(23, 56, 89, .2);
}

.programme-wide {
  grid-column: span 4;
  min-height: 300px;
  background: var(--lavender);
}

.programme-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.programme-number {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.programme-featured .programme-number,
.programme-featured .card-label,
.programme-featured p {
  color: rgba(255,255,255,.72);
}

.programme-symbol {
  display: grid;
  width: 47px;
  height: 47px;
  color: var(--green-deep);
  background: var(--yellow);
  place-items: center;
  border-radius: 50%;
  font-size: 1.25rem;
}

.symbol-coral { color: white; background: var(--brand-red); }
.symbol-yellow { color: var(--brand-navy); background: var(--brand-ochre); }
.symbol-blue { color: white; background: var(--brand-blue); }
.symbol-green { color: white; background: var(--brand-green); }

.card-label {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.programme-card h3 {
  margin-bottom: 15px;
  font-family: "Fraunces", serif;
  font-size: 1.65rem;
}

.programme-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.65;
}

.programme-wide > div:last-child {
  max-width: 690px;
}

.goals {
  background: var(--paper);
}

.goals-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
}

.goals-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.goals-heading > p:last-child {
  margin-top: 30px;
  color: var(--muted);
}

.goal-list {
  border-top: 1px solid var(--line);
}

.goal-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 25px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.goal-item > span {
  display: grid;
  width: 46px;
  height: 46px;
  color: var(--green);
  background: var(--lavender);
  place-items: center;
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 700;
}

.goal-item h3 {
  margin-bottom: 7px;
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
}

.goal-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .88rem;
}

.purpose {
  padding: 0 0 120px;
  background: var(--paper);
}

.purpose-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.purpose-card {
  min-height: 445px;
  padding: 56px;
}

.purpose-vision {
  color: white;
  background: var(--coral);
}

.purpose-vision blockquote {
  max-width: 600px;
  margin: 65px 0 0;
  font-size: clamp(2.1rem, 3.7vw, 3.4rem);
  line-height: 1.15;
}

.purpose-mission {
  display: flex;
  flex-direction: column;
  background: var(--cream);
}

.purpose-mission > p:last-child {
  margin: auto 0 0;
  color: var(--ink);
  font-family: "Fraunces", serif;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.45;
}

.values {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.values > p {
  flex: 0 0 auto;
  margin-bottom: 0;
  color: var(--green);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.values ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.values li {
  padding: 7px 14px;
  background: var(--cream);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
}

.governance {
  background: var(--blue);
}

.governance-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 85px;
  align-items: center;
}

.governance-copy h2 {
  max-width: 780px;
  margin-bottom: 35px;
}

.governance-copy > p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
}

.partners-card {
  padding: 40px;
  color: white;
  background: var(--green);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.partner-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 55px;
  color: var(--green-deep);
  background: var(--yellow);
  place-items: center;
  border-radius: 50%;
  font-size: 1.5rem;
}

.partners-card .card-label,
.partners-card > p:last-child {
  color: rgba(255,255,255,.68);
}

.partners-card h3 {
  margin-bottom: 14px;
  font-family: "Fraunces", serif;
  font-size: 1.85rem;
}

.partners-card > p:last-child {
  margin-bottom: 0;
  font-size: .87rem;
}

.partner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  color: white;
  background: var(--green-deep);
}

.partner::before {
  position: absolute;
  top: -160px;
  right: -100px;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(217, 150, 87, .45);
  border-radius: 50%;
  content: "";
}

.partner-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: center;
}

.partner-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 30px 0;
  color: rgba(255,255,255,.68);
}

.button-light {
  color: var(--green-deep);
  background: var(--yellow);
}

.button-light:hover {
  background: #cf9256;
}

.support-options {
  border-top: 1px solid rgba(255,255,255,.16);
}

.support-options article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 15px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.support-options article > span {
  color: var(--yellow);
  font-size: .72rem;
  font-weight: 700;
}

.support-options h3 {
  margin-bottom: 3px;
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
}

.support-options p {
  margin-bottom: 0;
  color: rgba(255,255,255,.55);
  font-size: .8rem;
}

.contact {
  background: var(--cream-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
}

.contact-details > p:not(.eyebrow) {
  max-width: 550px;
  margin: 30px 0 38px;
  color: var(--muted);
}

.contact-details address {
  display: grid;
  gap: 20px;
  font-style: normal;
}

.contact-details address a {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  align-items: start;
  width: fit-content;
}

.contact-details address a > span {
  padding-top: 3px;
  color: var(--green);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-details address strong {
  font-size: .95rem;
  font-style: normal;
}

.contact-details address a:hover strong {
  color: var(--coral);
}

.contact-form {
  padding: 42px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 22px 60px rgba(23, 56, 89, 0.1);
}

.contact-form label {
  display: block;
  margin-bottom: 20px;
  font-size: .76rem;
  font-weight: 700;
}

.contact-form label > span {
  color: var(--muted);
  font-weight: 400;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 13px 15px;
  color: var(--ink);
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  font-size: .88rem;
  font-weight: 400;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input,
.contact-form select {
  height: 49px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(31, 74, 125, .18);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7c8c98;
}

.form-submit {
  width: 100%;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .7rem;
  text-align: center;
}

.whatsapp {
  position: fixed;
  right: 23px;
  bottom: 23px;
  z-index: 80;
  display: grid;
  width: 56px;
  height: 56px;
  color: white;
  background: #25d366;
  place-items: center;
  border: 4px solid var(--cream-soft);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(15, 81, 56, .28);
  transition: transform .2s ease;
}

.whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
}

.whatsapp svg {
  width: 29px;
}

.site-footer {
  padding: 75px 0 24px;
  color: white;
  background: var(--brand-navy);
}

.footer-main {
  display: grid;
  grid-template-columns: .75fr 1fr 1fr;
  gap: 65px;
  align-items: start;
  padding-bottom: 65px;
}

.footer-main > p {
  max-width: 390px;
  margin-bottom: 0;
  color: rgba(255,255,255,.55);
  font-size: .86rem;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  font-size: .8rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 23px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-bottom p {
  margin-bottom: 0;
  color: rgba(255,255,255,.4);
  font-size: .67rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal-delay {
  transition-delay: .12s;
}

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

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

@media (max-width: 1050px) {
  .desktop-nav { gap: 20px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .hero-visual { min-height: 480px; }
  .life-card { min-width: 140px; padding: 10px 12px; }
  .visual-centre { width: 175px; height: 175px; }
  .stat { padding-inline: 18px; }
  .stat strong { font-size: 2.2rem; }
  .two-column, .goals-layout, .governance-grid, .contact-grid { gap: 60px; }
  .path-step { min-height: 200px; padding: 19px; }
  .programme-card { padding: 24px; }
}

@media (max-width: 850px) {
  .section { padding: 90px 0; }
  .desktop-nav { display: none; }
  .site-header,
  .site-header.scrolled { height: 70px; }
  .brand-logo-header,
  .site-header.scrolled .brand-logo-header { height: 58px; }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 0;
    align-items: center;
    justify-content: center;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 21px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-nav {
    position: fixed;
    top: 70px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 23px;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    padding: clamp(34px, 9vh, 80px) 20px calc(40px + env(safe-area-inset-bottom));
    overflow-y: auto;
    background: var(--cream-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .22s ease, transform .22s ease;
  }

  .mobile-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    font-family: "Fraunces", serif;
    font-size: 1.8rem;
  }

  .menu-open .site-header {
    background: var(--cream-soft);
    border-color: var(--line);
  }

  .hero { padding-top: 125px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 700px; }
  .hero-visual { width: min(620px, 95%); margin: 15px auto 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; row-gap: 28px; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(3) { padding-left: 0; }

  .two-column,
  .model-heading,
  .section-title-row,
  .goals-layout,
  .governance-grid,
  .partner-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .two-column { gap: 20px; }
  .about-copy { padding-top: 10px; }
  .model-heading { gap: 30px; }
  .model-heading .eyebrow { grid-column: auto; margin-bottom: -5px; }
  .pathway { grid-template-columns: 1fr 1fr; }
  .path-arrow { display: none; }
  .section-title-row { gap: 30px; margin-bottom: 55px; }
  .programme-card { grid-column: span 3; }
  .programme-wide { grid-column: span 6; }
  .goals-heading { position: static; }
  .purpose-grid { grid-template-columns: 1fr; }
  .purpose-card { min-height: 360px; }
  .partner-inner { gap: 55px; }
  .contact-grid { gap: 65px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > p { grid-column: 2; }
  .footer-links { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 68px 0; }
  h2 { font-size: clamp(2.25rem, 10.5vw, 2.85rem); line-height: 1.08; }
  .eyebrow { margin-bottom: 16px; }

  .site-header,
  .site-header.scrolled { height: 68px; }
  .brand-logo-header,
  .site-header.scrolled .brand-logo-header { height: 56px; }
  .mobile-nav {
    top: 68px;
    height: calc(100vh - 68px);
    height: calc(100dvh - 68px);
    gap: 14px;
    padding-top: 34px;
  }
  .mobile-nav a { width: min(100%, 300px); font-size: 1.55rem; }
  .mobile-nav a:last-child {
    min-height: 52px;
    margin-top: 8px;
    color: white;
    background: var(--green);
    border-radius: 999px;
    font-family: "DM Sans", sans-serif;
    font-size: .92rem;
    font-weight: 700;
  }

  .hero {
    min-height: auto;
    padding: 104px 0 52px;
  }
  .hero::after,
  .hero-sun { display: none; }
  .hero-grid { gap: 32px; }
  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.7rem, 11.5vw, 3.25rem);
    line-height: 1;
  }
  .hero-lead {
    margin-bottom: 26px;
    font-size: .98rem;
    line-height: 1.6;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
    gap: 8px;
    margin-bottom: 28px;
  }
  .hero-actions .button-primary { width: 100%; }
  .hero-actions .button-text { align-self: flex-start; padding: 10px 2px; }
  .hero-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }
  .hero-proof > div {
    min-width: 0;
    padding: 12px;
    background: rgba(255, 255, 255, .58);
    border: 1px solid rgba(31, 74, 125, .12);
    border-radius: 14px;
  }
  .hero-proof strong { font-size: .75rem; line-height: 1.3; }
  .hero-proof span { margin-top: 3px; font-size: .62rem; line-height: 1.35; }

  .hero-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 0;
    aspect-ratio: auto;
    gap: 10px;
    margin: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }
  .hero-visual::before,
  .hero-visual::after,
  .visual-orbit,
  .visual-centre,
  .visual-note { display: none; }
  .life-card,
  .card-children,
  .card-youth,
  .card-families,
  .card-community {
    position: static;
    min-width: 0;
    padding: 14px 12px;
    gap: 9px;
    color: var(--ink);
    border: 1px solid rgba(23, 56, 89, .08);
    border-radius: 16px;
    box-shadow: none;
    transform: none;
  }
  .card-children { background: var(--tint-red); }
  .card-youth { background: var(--tint-ochre); }
  .card-families { background: var(--tint-green); }
  .card-community { background: var(--tint-blue); }
  .life-icon { width: 34px; height: 34px; background: rgba(255,255,255,.65) !important; border-radius: 10px; }
  .life-card strong { font-size: .77rem; }
  .life-card small { color: rgba(23,56,89,.72); font-size: .57rem; line-height: 1.3; }

  .stats {
    padding: 16px 0;
    background: var(--paper);
  }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat,
  .stat:first-child,
  .stat:nth-child(3) {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 112px;
    gap: 7px;
    padding: 16px;
    border: 0;
    border-radius: 16px;
  }
  .stat:nth-child(1) { background: var(--tint-red); }
  .stat:nth-child(2) { background: var(--tint-blue); }
  .stat:nth-child(3) { background: var(--tint-green); }
  .stat:nth-child(4) { background: var(--tint-ochre); }
  .stat strong { color: var(--ink); font-size: 2rem; }
  .stat span { max-width: 125px; color: rgba(23,56,89,.78); font-size: .65rem; }

  .two-column { gap: 26px; }
  .about-copy { padding-top: 0; }
  .large-copy { font-size: 1.38rem; line-height: 1.42; }
  .model { padding: 68px 0; }
  .model-heading { gap: 22px; }
  .pathway { grid-template-columns: 1fr; gap: 10px; margin-top: 38px; }
  .path-step {
    display: grid;
    grid-template-columns: 42px 1fr;
    min-height: 0;
    column-gap: 13px;
    padding: 18px;
    border-radius: 18px;
  }
  .path-step > span {
    position: static;
    display: grid;
    grid-row: 1 / 3;
    width: 40px;
    height: 40px;
    color: white;
    background: rgba(255,255,255,.12);
    place-items: center;
    border-radius: 50%;
  }
  .path-step:first-child > span { color: var(--ink); background: rgba(255,255,255,.48); }
  .path-step strong { align-self: end; margin: 0 0 2px; font-size: 1.16rem; }
  .path-step small { align-self: start; }

  .section-title-row { gap: 22px; margin-bottom: 38px; }
  .programme-grid { grid-template-columns: 1fr; gap: 12px; }
  .programme-card,
  .programme-wide {
    grid-column: auto;
    min-height: 0;
    gap: 30px;
    padding: 24px;
    border-radius: 20px;
  }
  .programme-card h3 { margin-bottom: 10px; font-size: 1.5rem; }
  .programme-card p:last-child { font-size: .84rem; }
  .programme-symbol { width: 42px; height: 42px; }
  .programme-card.programme-photo {
    display: block;
    min-height: 0;
    padding: 0;
    color: var(--ink);
    background: var(--paper);
    border-color: var(--line);
  }
  .programme-photo::after { display: none; }
  .programme-photo .programme-card-image {
    position: relative;
    inset: auto;
    z-index: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-position: center 38%;
  }
  .programme-dropin .programme-card-image {
    aspect-ratio: 4 / 3;
    object-position: center;
  }
  .programme-photo .programme-top {
    position: absolute;
    top: 16px;
    right: 16px;
    left: 16px;
    z-index: 2;
  }
  .programme-photo .programme-number {
    color: white;
    text-shadow: 0 2px 8px rgba(23, 56, 89, .45);
  }
  .programme-photo-copy { padding: 24px; }
  .programme-photo .card-label { color: var(--green); }
  .programme-photo p:last-child { color: var(--muted); }

  .goals-layout { gap: 36px; }
  .goals-heading > p:last-child { margin-top: 22px; }
  .goal-item { grid-template-columns: 40px 1fr; gap: 14px; padding: 25px 0; }
  .goal-item > span { width: 36px; height: 36px; }
  .goal-item h3 { font-size: 1.18rem; }

  .purpose { padding-bottom: 68px; }
  .purpose-grid { border-radius: 22px; }
  .purpose-card { min-height: 0; padding: 31px 25px; }
  .purpose-vision blockquote { margin-top: 38px; font-size: 1.85rem; }
  .purpose-mission > p:last-child { margin-top: 44px; font-size: 1.35rem; }
  .values { align-items: flex-start; flex-direction: column; gap: 14px; margin-top: 28px; }
  .values ul { gap: 8px; }
  .values li { padding: 6px 11px; font-size: .73rem; }

  .governance-grid { gap: 36px; }
  .governance-copy h2 { margin-bottom: 25px; }
  .partners-card { padding: 26px; }
  .partner-icon { width: 52px; height: 52px; margin-bottom: 36px; }
  .partner { padding: 68px 0; }
  .partner-inner { gap: 42px; }
  .support-options article { grid-template-columns: 38px 1fr; padding: 22px 0; }

  .contact-grid { gap: 42px; }
  .contact-details > p:not(.eyebrow) { margin: 24px 0 30px; }
  .contact-details address { gap: 17px; }
  .contact-details address a { grid-template-columns: 62px 1fr; gap: 10px; }
  .contact-details address strong { min-width: 0; overflow-wrap: anywhere; font-size: .82rem; }
  .contact-form { padding: 24px 18px; border-radius: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form label { margin-bottom: 17px; }
  .contact-form input,
  .contact-form select,
  .contact-form textarea { font-size: 1rem; }

  .whatsapp {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 50px;
    height: 50px;
    border-width: 3px;
  }
  .site-footer { padding-top: 52px; }
  .brand-logo-footer { height: 104px; }
  .footer-main { grid-template-columns: 1fr; gap: 25px; padding-bottom: 38px; }
  .footer-main > p { grid-column: auto; }
  .footer-links { grid-column: auto; flex-wrap: wrap; justify-content: flex-start; gap: 5px 22px; }
  .footer-links a { display: inline-flex; align-items: center; min-height: 42px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; }
}

@media (max-width: 380px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section { padding: 60px 0; }
  h2 { font-size: clamp(2.05rem, 10.8vw, 2.35rem); }
  .hero { padding-top: 96px; }
  .brand-logo-header,
  .site-header.scrolled .brand-logo-header { height: 52px; }
  .hero h1 { font-size: clamp(2.62rem, 12vw, 2.9rem); }
  .hero-proof > div { padding: 10px; }
  .life-card { padding: 11px 9px; gap: 7px; }
  .life-icon { width: 30px; height: 30px; }
  .life-card strong { font-size: .7rem; }
  .life-card small { font-size: .52rem; }
  .stat { min-height: 104px; padding: 14px; }
  .stat strong { font-size: 1.82rem; }
  .programme-card,
  .programme-wide { padding: 21px; }
  .purpose-card { padding: 28px 22px; }
  .purpose-vision blockquote { font-size: 1.68rem; }
  .contact-details address a { grid-template-columns: 1fr; gap: 1px; }
  .contact-form { padding: 22px 15px; }
}

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