/* ==========================================================================
   FRHS India — MSI-style homepage redesign
   Blue-only palette (no MSI colours). Standalone stylesheet.
   ========================================================================== */

:root {
  --navy-deep: #003a70;
  --navy: #005ea8;
  --accent: #0072bc;
  --blue: #00aeef;
  --sky: #4f97d0;
  --aqua: #dff6ff;
  --paper-2: #eef9ff;
  --ink: #062b4d;
  --paper: #ffffff;
  /* warm accents for a women's-health palette */
  --pink: #d81b7a;
  --pink-soft: #ffe3f1;
  --coral: #f2663c;
  --coral-soft: #ffe8e0;
  --plum: #7b3f9e;
  --lav-soft: #f1e9ff;
  --green: #159a6c;
  --green-soft: #dcf5ec;
  --orange: #e0631a;
  --orange-soft: #ffe6d1;
  --yellow: #d9a400;
  --yellow-soft: #fff6d1;
  /* MSI-inspired shades */
  --lime: #d2ed51;
  --black: #151515;
  --sky: #3f8ed0;
  --line: rgba(0, 94, 168, 0.16);
  --display: "Outfit", "Inter", Arial, sans-serif;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --maxw: 1360px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Clears the sticky masthead so in-page anchors don't land underneath it. */
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

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

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ============================ TOP UTILITY BAR ============================ */
.utility-bar {
  background: #fdf1f7;
  color: var(--ink);
  border-bottom: 1px solid rgba(216, 27, 122, 0.08);
}
.utility-inner {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 0;
  min-height: 52px;
}
.utility-bar a { color: var(--ink); }
.utility-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  font-size: 0.9rem;
}
.utility-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.utility-links a svg { width: 18px; height: 18px; }
.utility-search {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 600;
}
.utility-search svg { width: 18px; height: 18px; }
.utility-bar a.utility-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pink);
  color: #fff;
  padding: 0 28px;
  margin-left: 28px;
  font-weight: 700;
  font-size: 0.9rem;
}
.utility-bar a.utility-contact:hover { background: #b3155f; }
.utility-contact svg { width: 18px; height: 18px; }

/* ============================ MAIN HEADER ============================ */
.masthead {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 120;
  border-bottom: 1px solid var(--line);
}
.masthead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
}
.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 14px;
}
.brand img {
  width: 132px;
  flex: 0 0 auto;
}
.brand-tag {
  flex: 0 0 auto;
  border-left: 2px solid var(--ink);
  padding-left: 14px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.84rem;
  letter-spacing: 1.1px;
  line-height: 1.22;
  text-transform: uppercase;
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}
.primary-nav > a,
.nav-drop > button {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
  color: var(--navy);
  background: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
}
.nav-drop { position: relative; }
.nav-drop > button svg { width: 13px; height: 13px; }
.nav-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 26px 60px -34px rgba(0, 58, 112, 0.5);
  padding: 10px;
  min-width: 240px;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  z-index: 40;
}
.nav-drop:hover .nav-menu,
.nav-drop:focus-within .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(6px);
}
.nav-menu a {
  padding: 10px 14px;
  border-radius: 9px;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--sans);
}
.nav-menu a:hover { background: var(--paper-2); color: var(--accent); }

.donate-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pink);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  padding: 14px 26px;
  border-radius: 999px;
}
.donate-btn:hover { background: #b3155f; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
}

/* ============================ HERO ============================ */
.hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: #151515;
}
/* real <img> layer: url() through a CSS var resolves against the stylesheet
   in Chrome, so the background-image approach silently 404s */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(21, 21, 21, 0.22), rgba(21, 21, 21, 0.5));
}
.hero-inner { position: relative; z-index: 2; padding: 60px 0; }
.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 0.92;
  margin: 0;
  font-size: clamp(3.2rem, 9vw, 8rem);
  text-shadow: 0 20px 60px rgba(0, 30, 60, 0.35);
}
.hero .hero-sub {
  margin: 26px auto 0;
  max-width: 620px;
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

/* ---- Home hero slider (crossfade) ---- */
/* the section-level scrim is redrawn per slide so it fades with the image */
.hero-slider::before { content: none; }

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0s linear 0.9s;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.9s ease, visibility 0s;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(21, 21, 21, 0.28), rgba(21, 21, 21, 0.58));
}
/* slow drift on the visible frame only */
.hero-slide .hero-bg { transform: scale(1.06); transition: transform 8s ease-out; }
.hero-slide.is-active .hero-bg { transform: scale(1); }

.hero-slider .hero-inner { padding: 60px 0; }
.hero-slide--compact h1 {
  font-size: clamp(2rem, 5vw, 4.3rem);
  line-height: 1;
  max-width: 20ch;
  margin-inline: auto;
}
.hero-slide--compact .hero-sub { max-width: 660px; }

/* arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(15, 15, 15, 0.28);
  backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.hero-arrow svg { width: 24px; height: 24px; }
.hero-arrow:hover { background: var(--pink); border-color: transparent; }
.hero-arrow:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.hero-arrow--prev { left: clamp(12px, 3vw, 40px); }
.hero-arrow--next { right: clamp(12px, 3vw, 40px); }

/* dots */
.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(20px, 3.5vh, 40px);
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.hero-dots .hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease, border-radius 0.25s ease;
}
.hero-dots .hero-dot:hover { background: rgba(255, 255, 255, 0.55); }
.hero-dots .hero-dot.is-active {
  width: 30px;
  border-radius: 6px;
  background: #fff;
}
.hero-dots .hero-dot:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

@media (max-width: 820px) {
  .hero-slider { min-height: min(86vh, 680px); }
  .hero-arrow { width: 42px; height: 42px; }
  .hero-arrow svg { width: 20px; height: 20px; }
  .hero-slide--compact h1 { max-width: 18ch; }
}
@media (max-width: 560px) {
  .hero-arrow { display: none; }
  .hero-slider .hero-inner { padding: 40px 0 72px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide.is-active { transition: none; }
  .hero-slide .hero-bg,
  .hero-slide.is-active .hero-bg { transform: none; transition: none; }
}

/* ============================ SPLIT STATEMENT ============================ */
.statement {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.statement-panel {
  padding: clamp(48px, 7vw, 104px) clamp(40px, 6vw, 96px);
  display: flex;
  align-items: center;
}
.statement-light {
  background: var(--lime);
  color: var(--ink);
}
.statement-light p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.4vw, 3.1rem);
  line-height: 1.14;
  margin: 0;
}
.statement-dark {
  background: var(--black);
  color: #fff;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.statement-dark p {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  line-height: 1.18;
  margin: 0;
}
.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  padding: 16px 30px;
  border-radius: 6px;
}
.btn-solid { background: var(--sky); }
.btn-solid:hover { background: var(--blue); color: var(--ink); }

/* ============================ CENTERED MISSION ============================ */
.mission {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(38px, 4.8vw, 66px) 0;
  border-top: 1px solid rgba(215, 25, 116, 0.08);
  border-bottom: 1px solid rgba(234, 106, 37, 0.1);
  background:
    radial-gradient(circle at 13% 20%, rgba(247, 200, 223, 0.46), transparent 27%),
    radial-gradient(circle at 88% 82%, rgba(255, 218, 189, 0.52), transparent 30%),
    linear-gradient(115deg, #fffaf5 0%, #fff6fa 48%, #fff9ed 100%);
}
.mission::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image: radial-gradient(rgba(7, 61, 104, 0.18) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
}
.mission .container {
  position: relative;
  z-index: 1;
}
.mission p {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  line-height: 1.2;
  max-width: 940px;
  margin: 0 auto;
  color: var(--ink);
}
.mission p + p {
  max-width: 760px;
  margin-top: 0.58em;
  color: #b82d6c;
  font-size: clamp(1.08rem, 1.75vw, 1.5rem);
}

/* ============================ FIND SERVICES ============================ */
.find-services {
  background: var(--paper-2);
  padding: clamp(60px, 8vw, 104px) 0;
}
.find-head { margin-bottom: 48px; }
.find-head .kicker {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 0.85rem;
  margin: 0 0 10px;
}
.find-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.1;
  margin: 0;
  max-width: 720px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 30px 60px -38px rgba(0, 58, 112, 0.5);
}
.service-ico {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 14px;
  background: var(--aqua);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}
.service-ico svg { width: 28px; height: 28px; display: block; }
/* each service icon a different accent */
.service-card:nth-child(1) .service-ico { background: var(--pink-soft);  color: var(--pink); }
.service-card:nth-child(2) .service-ico { background: var(--aqua);       color: var(--accent); }
.service-card:nth-child(3) .service-ico { background: var(--orange-soft); color: var(--orange); }
.service-card:nth-child(4) .service-ico { background: var(--green-soft); color: var(--green); }
.service-card:nth-child(1) .service-more { color: var(--pink); }
.service-card:nth-child(3) .service-more { color: var(--orange); }
.service-card:nth-child(4) .service-more { color: var(--green); }
.service-card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0;
}
.service-card p {
  margin: 0;
  color: var(--slate, #4f6f85);
  font-size: 0.96rem;
  flex-grow: 1;
}
.service-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-family: var(--display);
  font-weight: 700;
  color: var(--accent);
}
.service-card:hover .service-more svg { transform: translateX(3px); }
.service-more svg { transition: transform 0.2s var(--ease); }

/* ============================ WHAT WE DO — QUADRANTS ============================ */
.quadrants {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 1fr rows on an auto-height grid: both rows match the tallest content,
     so all four boxes stay exactly the same size */
  grid-template-rows: 1fr 1fr;
  min-height: clamp(600px, 100vh, 720px);
}
.quad {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}
.quad.flip { direction: rtl; }
.quad.flip > * { direction: ltr; }
.quad-media {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}
.quad-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 260px 0;
}
.quad.flip .quad-media img { border-radius: 0 0 0 260px; }
.quad-body {
  padding: clamp(28px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.quad-body h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.08;
  margin: 0;
}
.quad-body p { margin: 0; font-size: 1rem; opacity: 0.95; }
.quad-more {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.quad-more svg { width: 22px; height: 14px; }
/* four blue tints */
.quad-1 { background: var(--orange); color: var(--ink); }   /* Safe abortion care  */
.quad-2 { background: var(--pink); color: #fff; }           /* Adolescent health   */
.quad-3 { background: var(--green); color: #fff; }          /* Family planning     */
.quad-4 { background: var(--pink-soft); color: var(--ink); }/* Reaching community  */

/* ============================ HOMEPAGE — FOCUS AREAS ============================ */
.focus-areas {
  padding: clamp(72px, 8vw, 112px) 0;
  background: #fffaf6;
}
.focus-areas-head {
  max-width: 780px;
  margin-bottom: clamp(32px, 5vw, 54px);
}
.focus-areas-head .kicker { color: #b74d19; }
.focus-areas-head h2 {
  margin: 10px 0 0;
  color: #073d68;
  font-family: var(--display);
  font-size: clamp(3rem, 5.8vw, 5.6rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.94;
}
.focus-areas-sub {
  margin: 18px 0 0;
  color: #526c7c;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  line-height: 1.65;
}

/* 12-col grid: two feature cards on top, three below — 5 cards, no orphan */
.focus-areas-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}
.focus-card {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--focus) 20%, #e4ecf1);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 54px -46px rgba(7, 54, 95, 0.5);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}
.focus-card--feature { grid-column: span 6; }
.focus-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--focus) 46%, #e4ecf1);
  box-shadow: 0 32px 68px -40px rgba(7, 54, 95, 0.55);
}
.focus-card:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.focus-card-media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.focus-card--feature .focus-card-media { aspect-ratio: 16 / 10; }
.focus-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.focus-card:hover .focus-card-media img { transform: scale(1.05); }

.focus-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: clamp(24px, 2.4vw, 34px);
  background: var(--focus-light);
}
.focus-card-body h3 {
  margin: 0;
  color: var(--focus);
  font-family: var(--display);
  font-size: clamp(1.3rem, 1.9vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.focus-card--feature .focus-card-body h3 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
.focus-card-body p {
  margin: 12px 0 0;
  color: #4c6474;
  font-size: 1rem;
  line-height: 1.6;
}
/* pushes every link to the card floor so they align across a row */
.focus-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--focus);
  font-family: var(--display);
  font-size: 0.96rem;
  font-weight: 800;
}
.focus-card-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.28s var(--ease);
}
.focus-card:hover .focus-card-link svg { transform: translateX(5px); }

.focus-card--green  { --focus: #0f7350; --focus-light: #e5f5ed; }
.focus-card--pink   { --focus: #c42d72; --focus-light: #ffe6f1; }
.focus-card--plum   { --focus: #6f3f91; --focus-light: #f1e8fa; }
.focus-card--blue   { --focus: #0878b7; --focus-light: #e8f6fc; }
.focus-card--orange { --focus: #c4581f; --focus-light: #ffe9d9; }

@media (max-width: 1080px) {
  .focus-card,
  .focus-card--feature { grid-column: span 6; }
  .focus-card--feature .focus-card-media { aspect-ratio: 4 / 3; }
}
/* two-up leaves the 5th card alone, so let it run the full width instead */
@media (min-width: 701px) and (max-width: 1080px) {
  .focus-areas-grid > .focus-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .focus-areas-grid > .focus-card:last-child:nth-child(odd) .focus-card-media {
    aspect-ratio: 21 / 9;
  }
}
@media (max-width: 700px) {
  .focus-card,
  .focus-card--feature { grid-column: 1 / -1; }
}
@media (prefers-reduced-motion: reduce) {
  .focus-card,
  .focus-card-media img,
  .focus-card-link svg { transition: none; }
  .focus-card:hover { transform: none; }
  .focus-card:hover .focus-card-media img { transform: none; }
  .focus-card:hover .focus-card-link svg { transform: none; }
}
@media (max-width: 1100px) {
  .focus-card--systems,
  .focus-card--adolescent {
    grid-column: 1 / -1;
  }
  .focus-card--advocacy {
    grid-template-columns: minmax(260px, 3fr) minmax(0, 7fr);
  }
}

@media (max-width: 820px) {
  .focus-card--family,
  .focus-card--safe,
  .focus-card--advocacy,
  .focus-card--systems,
  .focus-card--adolescent {
    grid-column: 1 / -1;
  }
  .focus-card,
  .focus-card--advocacy {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .focus-card-media,
  .focus-card--advocacy .focus-card-media {
    order: 0;
    min-height: 0;
    aspect-ratio: 3 / 2;
  }
  .focus-card--safe .focus-card-media,
  .focus-card--adolescent .focus-card-media {
    order: 0;
  }
  .focus-card-media img,
  .focus-card--advocacy .focus-card-media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
  }
  .focus-card-body,
  .focus-card--safe .focus-card-body,
  .focus-card--adolescent .focus-card-body,
  .focus-card--advocacy .focus-card-body {
    order: 1;
  }
  .focus-card--advocacy .focus-card-body h3 {
    font-size: clamp(3.3rem, 9vw, 5rem);
  }
}
@media (max-width: 620px) {
  .donate-btn {
    display: none;
  }
  .focus-areas {
    padding: 58px 0 68px;
  }
  .focus-areas-head {
    margin-bottom: 28px;
  }
  .focus-card,
  .focus-card--advocacy {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 24px;
  }
  .focus-card-media,
  .focus-card--advocacy .focus-card-media {
    min-height: 0;
  }
  .focus-card-media img,
  .focus-card--advocacy .focus-card-media img {
    min-height: 0;
    max-height: none;
  }
  .focus-card-body {
    padding: 30px 26px 34px;
  }
  .focus-card-body h3 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }
  .focus-card--advocacy .focus-card-body h3 {
    font-size: clamp(3rem, 15vw, 4rem);
  }
  .focus-card--advocacy .focus-card-body {
    order: 1;
  }
  .focus-card--advocacy .focus-card-media {
    order: 0;
  }
}

/* ============================ IMPACT STATS STRIP ============================ */
.impact-strip {
  background: #f7f3ec;
  padding: 0;
}
.impact-strip-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  min-height: 630px;
  overflow: hidden;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}
.impact-strip-media {
  min-width: 0;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}
.impact-strip-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 630px;
  object-fit: cover;
  object-position: center;
}
.impact-strip-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(38px, 5vw, 72px);
}
.impact-strip .kicker {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 0.85rem;
}
.impact-strip h2 {
  max-width: 760px;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin: 10px 0 8px;
}
.impact-period {
  margin: 0 0 34px;
  color: #5b7482;
  font-size: 0.92rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.stat dd {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--navy);
  margin: 0;
  line-height: 1;
}
.stat:nth-child(1) dd { color: var(--pink); }
.stat:nth-child(2) dd { color: var(--orange); }
.stat:nth-child(3) dd { color: var(--green); }
.stat dt {
  margin-top: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.3px;
}
.stats-row--impact {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}
.stats-row--impact .stat {
  grid-column: span 2;
  min-width: 0;
  padding: 22px 20px;
  border-radius: 22px;
  background: #fff2f7;
  text-align: left;
}
.stats-row--impact .stat:nth-child(2) {
  background: #fff1e5;
}
.stats-row--impact .stat:nth-child(3) {
  background: #fff8d9;
}
.stats-row--impact .stat:nth-child(4),
.stats-row--impact .stat:nth-child(5) {
  grid-column: span 3;
}
.stats-row--impact .stat:nth-child(4) {
  background: #e9f5ed;
}
.stats-row--impact .stat:nth-child(5) {
  background: #e8f5f7;
}
.stats-row--impact .stat dd {
  font-size: clamp(2rem, 3vw, 3.25rem);
}
.stats-row--impact .stat:nth-child(4) dd {
  color: #16836a;
}
.stats-row--impact .stat:nth-child(5) dd {
  color: #087c91;
}
.stats-row--impact .stat dt {
  margin-top: 8px;
  font-size: 0.9rem;
  line-height: 1.35;
}
@media (max-width: 1080px) {
  .impact-strip-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .impact-strip-media,
  .impact-strip-media img {
    min-height: 320px;
    max-height: 400px;
  }
  .stats-row--impact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .stats-row--impact .stat,
  .stats-row--impact .stat:nth-child(4),
  .stats-row--impact .stat:nth-child(5) {
    grid-column: span 1;
  }
  .stats-row--impact .stat:last-child {
    grid-column: 1 / -1;
  }
}

/* ============================ ANNUAL IMPACT DASHBOARD ============================ */
.annual-impact {
  background: #f7f3ec;
  padding: 0;
}
.annual-impact .container {
  width: 100%;
  margin: 0;
}
.annual-impact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  min-height: 0;
  overflow: hidden;
  background: #ffeadb;
  box-shadow: none;
  gap: 0;
  align-items: stretch;
}
.annual-impact-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(26px, 2.9vw, 42px);
}
.annual-impact-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: clamp(18px, 2.4vw, 26px);
}
.annual-impact .kicker {
  margin: 0 0 10px;
  color: #b74d19;
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.annual-impact h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.7vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.94;
}
.annual-impact-year {
  margin: 0;
  padding: 11px 20px;
  border: 1px solid rgba(183, 77, 25, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #a94216;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.annual-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 14px);
  margin: 0;
}
.annual-impact-card {
  min-width: 0;
  min-height: 0;
  padding: clamp(16px, 1.8vw, 22px);
  border: 1px solid rgba(183, 77, 25, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 22px 50px -42px rgba(121, 52, 18, 0.38);
}
.annual-impact-card dd {
  margin: 0;
  color: #b84c18;
  font-family: var(--display);
  font-size: clamp(1.9rem, 2.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
}
.annual-impact-card dt {
  max-width: 310px;
  margin-top: 8px;
  color: #57341f;
  font-size: clamp(0.92rem, 1.02vw, 1rem);
  font-weight: 700;
  line-height: 1.35;
}
.annual-impact-media {
  min-width: 0;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}
.annual-impact-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 68% center;
}
@media (max-width: 1180px) {
  .annual-impact-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .annual-impact-media {
    min-height: 0;
    padding: 0 clamp(20px, 4vw, 42px) clamp(26px, 4vw, 42px);
  }
  .annual-impact-media img {
    aspect-ratio: 3 / 2;
    height: auto;
    max-width: 780px;
    margin-inline: auto;
    border-radius: 18px;
    object-position: center;
  }
}
@media (max-width: 820px) {
  .annual-impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .annual-impact-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .annual-impact-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================ THE LATEST — CAROUSEL ============================ */
.latest {
  background: var(--black);
  color: #fff;
  padding: clamp(56px, 7vw, 96px) 0;
}
.latest h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 0 0 36px;
}
.carousel { position: relative; }
.slides { overflow: hidden; }
.slide-track {
  display: flex;
  transition: transform 0.5s var(--ease);
}
.slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.slide-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 4px;
}
.slide-body .date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lime);
  font-weight: 700;
  font-size: 0.95rem;
}
.slide-body .date svg { width: 18px; height: 18px; }
.slide-body h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 16px 0 18px;
}
.slide-body p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 460px;
  margin: 0 0 28px;
}
.btn-pop {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--lime);
  color: var(--black);
  font-family: var(--display);
  font-weight: 800;
  padding: 15px 28px;
  border-radius: 4px;
}
.btn-pop:hover { background: #fff; }
.carousel-nav {
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  display: flex;
  gap: 10px;
}
.carousel-btn {
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
  padding: 8px;
}
.carousel-btn svg { width: 34px; height: 34px; }
.carousel-btn:hover { color: var(--blue); }
.dots {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 44px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  padding: 0;
}
.dot.active { background: var(--lime); }

/* ============================ TESTIMONIAL + IMPACT CTA ============================ */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 0;
}
.quote-panel {
  background: #fcaad1;
  color: #7e1c4f;
  padding: clamp(48px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.quote-panel .mark {
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 0.4;
  height: 40px;
}
.quote-panel blockquote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1.25;
  margin: 24px 0;
}
.quote-panel cite {
  font-style: normal;
  font-family: var(--serif);
  font-size: 1.1rem;
  opacity: 0.9;
}
.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-panel {
  background: #ff9340;
  color: #fbf8f7;
  padding: clamp(48px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}
.cta-panel h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.1;
  margin: 0;
}
.cta-panel .btn-solid { background: #903f01; color: #fbf8f7; align-self: flex-start; }
.cta-panel .btn-solid:hover { background: var(--lime); }
.cta-portrait { position: relative; overflow: hidden; }
.cta-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================ FOOTER ============================ */
.site-footer {
  background: #fff;
  padding: clamp(26px, 2.6vw, 36px) 0 18px;
}
.footer-top {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
/* brand on the left, social row on the right — replaces the old middle band */
.footer-masthead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.footer-brand {
  width: max-content;
  max-width: 100%;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 20px 24px;
}
.footer-brand img {
  display: block;
  width: clamp(250px, 24vw, 360px);
  height: auto;
}
/* tagline sits under the logo in the masthead's type treatment */
.footer-brand p {
  margin: 8px 0 0;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-size: clamp(0.7rem, 0.8vw, 0.8rem);
  line-height: 1.22;
}
.footer-col h4 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.95rem;
  margin: 0 0 6px;
}
.footer-col h4 a:hover { color: var(--accent); }
.footer-col a {
  display: block;
  padding: 2px 0;
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.3;
}
.footer-col a:hover { color: var(--accent); }
.socials { display: flex; align-items: center; gap: 12px; }
.socials span { font-family: var(--display); font-weight: 800; font-size: 0.92rem; }
.socials a svg { width: 20px; height: 20px; fill: var(--ink); }
.socials a:hover svg { fill: var(--accent); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 18px;
  padding-top: 14px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--ink);
}
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { text-decoration: underline; text-underline-offset: 3px; }

/* ============================ MOBILE NAV PANEL ============================ */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 32px 28px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 0;
  font-family: var(--display);
  font-weight: 700;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
}

/* ============================ RESPONSIVE ============================ */
@media (max-width: 1280px) {
  .utility-links, .utility-contact { display: none; }
  .footer-cols { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 761px) and (max-width: 1360px) {
  .masthead-inner {
    gap: 12px;
  }
  .brand {
    gap: 10px;
  }
  .brand img {
    width: clamp(104px, 9vw, 124px);
  }
  .brand-tag {
    padding-left: 10px;
    font-size: clamp(0.66rem, 0.82vw, 0.78rem);
    letter-spacing: 0.65px;
  }
  .primary-nav {
    gap: clamp(8px, 1vw, 14px);
  }
  .primary-nav > a,
  .nav-drop > button {
    font-size: clamp(0.68rem, 0.82vw, 0.82rem);
  }
  .donate-btn {
    padding: 10px 16px;
    font-size: 0.82rem;
  }
}
@media (min-width: 761px) and (max-width: 1120px) {
  .masthead-inner {
    flex-wrap: wrap;
    min-height: 0;
    padding-block: 12px 10px;
  }
  .primary-nav {
    order: 3;
    flex: 1 0 100%;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: 0;
    padding-top: 4px;
  }
  .donate-btn {
    margin-left: auto;
  }
}
@media (max-width: 760px) {
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 820px) {
  .statement, .quadrants, .feature-split { grid-template-columns: 1fr; }
  .quadrants { grid-template-rows: none; min-height: 0; }
  .quad { grid-template-columns: 1fr; height: auto; min-height: 0; }
  .quad.flip { direction: ltr; }
  .quad-media { min-height: 240px; }
  .quad-media img, .quad.flip .quad-media img { border-radius: 0; }
  .slide { grid-template-columns: 1fr; }
  .slide-media { order: 2; }
  .carousel-nav { position: static; transform: none; justify-content: center; margin-top: 24px; }
  .stats-row { grid-template-columns: 1fr; gap: 28px; }
  .impact-strip-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .impact-strip-media,
  .impact-strip-media img {
    min-height: 320px;
    max-height: 380px;
  }
  .impact-strip-content {
    padding: 42px 34px 48px;
  }
  .stats-row--impact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .stats-row--impact .stat,
  .stats-row--impact .stat:nth-child(4),
  .stats-row--impact .stat:nth-child(5) {
    grid-column: span 1;
  }
  .stats-row--impact .stat:last-child {
    grid-column: 1 / -1;
  }
  .footer-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .cta-portrait { min-height: 320px; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 40px, var(--maxw)); }
  .footer-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
  }
  .service-grid { grid-template-columns: 1fr; }
  .footer-masthead { align-items: flex-start; gap: 16px; }
  .impact-strip-media,
  .impact-strip-media img {
    min-height: 260px;
    max-height: 300px;
  }
  .impact-strip-content {
    padding: 34px 22px 38px;
  }
  .stats-row--impact {
    grid-template-columns: 1fr;
  }
  .stats-row--impact .stat,
  .stats-row--impact .stat:last-child {
    grid-column: 1;
  }
}
@media (max-width: 360px) {
  .masthead-inner { gap: 8px; }
  .brand { gap: 8px; min-width: 0; }
  .brand img { width: 104px; }
  .brand-tag {
    padding-left: 8px;
    font-size: 0.65rem;
    letter-spacing: 0.55px;
  }
  .nav-toggle { flex: 0 0 42px; }
}

/* ==========================================================================
   INNER PAGES
   ========================================================================== */

/* ---- Page hero (shorter variant of the home hero) ---- */
.hero-page { min-height: min(54vh, 520px); }
.hero-page .hero-kicker {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--lime);
  margin: 0 0 16px;
}
.hero-page h1 { font-size: clamp(2.6rem, 6.5vw, 5.4rem); }
.hero-page .hero-sub { max-width: 680px; }

/* ---- Generic section kicker ---- */
.section-kicker {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 0.85rem;
  margin: 0 0 10px;
}

/* ============================ ABOUT PAGE ============================ */
/* Split hero — sky blue panel + curved image, distinct from the home hero */
.about-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--green-soft);
  color: var(--ink);
  min-height: min(58vh, 560px);
}
.about-hero-copy {
  padding: clamp(48px, 6vw, 96px) clamp(32px, 5vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-hero .hero-kicker {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--green);
  margin: 0 0 16px;
}
.about-hero h1 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 0.95;
  margin: 0;
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
}
.about-hero-sub {
  margin: 24px 0 0;
  max-width: 560px;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 500;
  color: var(--slate, #4f6f85);
}
.about-hero-media { overflow: hidden; }
.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 0 260px;
}

/* About-page statement recolour (soft lavender + plum instead of lime + black) */
.statement-lav { background: var(--lav-soft); }
.statement-plum { background: var(--plum); }
.statement-plum .btn-solid { background: var(--pink); }
.statement-plum .btn-solid:hover { background: var(--pink-soft); color: var(--ink); }

/* About-page stats strip on soft peach */
.impact-soft { background: var(--orange-soft); }
.impact-soft .kicker { color: var(--coral); }
.impact-soft .stats-row .stat:nth-child(1) dd { color: var(--pink); }
.impact-soft .stats-row .stat:nth-child(2) dd { color: var(--plum); }
.impact-soft .stats-row .stat:nth-child(3) dd { color: var(--green); }
.impact-soft .stats-row .stat:nth-child(4) dd { color: var(--orange); }

.about-who { padding: clamp(64px, 8vw, 120px) 0; }
.about-who-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about-who .section-kicker { color: var(--pink); }
.about-who h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.1;
  margin: 0 0 22px;
}
.about-who p {
  margin: 0 0 18px;
  color: var(--slate, #4f6f85);
  font-size: 1.05rem;
}
.about-who p:last-child { margin-bottom: 0; }
.about-who-media img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: 0 0 260px 0;
}

/* ---- Stats strip: four-column variant ---- */
.stats-row.stats-4 { grid-template-columns: repeat(4, 1fr); }
.stats-row.stats-4 .stat:nth-child(4) dd { color: var(--plum); }

/* ---- Objectives ---- */
.objectives { padding: clamp(64px, 8vw, 120px) 0; background: #fff; }
.objectives-head { margin-bottom: 48px; }
.objectives-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.1;
  margin: 0;
  max-width: 760px;
}
.objective-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.objective-card {
  border-radius: 18px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.objective-card .num {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
}
.objective-card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.22rem;
  line-height: 1.2;
  margin: 0;
}
.objective-card p { margin: 0; font-size: 0.96rem; color: var(--ink); }
.objective-card:nth-child(1) { background: var(--pink-soft); }
.objective-card:nth-child(1) .num { color: var(--pink); }
.objective-card:nth-child(2) { background: var(--lav-soft); }
.objective-card:nth-child(2) .num { color: var(--plum); }
.objective-card:nth-child(3) { background: var(--orange-soft); }
.objective-card:nth-child(3) .num { color: var(--orange); }
.objective-card:nth-child(4) { background: var(--yellow-soft); }
.objective-card:nth-child(4) .num { color: var(--yellow); }
.objective-card:nth-child(5) { background: var(--aqua); }
.objective-card:nth-child(5) .num { color: var(--accent); }
.objective-card:nth-child(6) { background: var(--coral-soft); }
.objective-card:nth-child(6) .num { color: var(--coral); }

/* ---- About CTA split ---- */
.about-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.about-cta-panel {
  background: var(--plum);
  color: #fff;
  padding: clamp(48px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}
.about-cta-panel h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.1;
  margin: 0;
}
.about-cta-panel p { margin: 0; font-size: 1.05rem; opacity: 0.92; max-width: 480px; }
.about-cta-copy { display: grid; gap: 14px; }
.about-cta-panel .btn-solid { background: #fff; color: var(--black); align-self: flex-start; }
.about-cta-panel .btn-solid:hover { background: var(--lime); }
.about-cta-media { overflow: hidden; }
.about-cta-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

/* ============================ IMPACT DASHBOARD PAGE ============================ */
.hero-lav { background: var(--lav-soft); }
.hero-lav .hero-kicker { color: var(--plum); }

.dash { padding: clamp(64px, 8vw, 120px) 0; }
.dash-head { margin-bottom: 48px; }
.dash-head .section-kicker { color: var(--plum); }
.dash-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.1;
  margin: 0;
  max-width: 760px;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.metric-card {
  border-radius: 18px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.metric-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  line-height: 1;
}
.metric-card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  margin: 6px 0 0;
}
.metric-card p { margin: 0; font-size: 0.94rem; color: var(--ink); opacity: 0.8; }
.metric-card:nth-child(1) { background: var(--pink-soft); }
.metric-card:nth-child(1) .metric-num { color: var(--pink); }
.metric-card:nth-child(2) { background: var(--yellow-soft); }
.metric-card:nth-child(2) .metric-num { color: var(--yellow); }
.metric-card:nth-child(3) { background: var(--orange-soft); }
.metric-card:nth-child(3) .metric-num { color: var(--orange); }
.metric-card:nth-child(4) { background: var(--green-soft); }
.metric-card:nth-child(4) .metric-num { color: var(--green); }
.metric-card:nth-child(5) { background: var(--aqua); }
.metric-card:nth-child(5) .metric-num { color: var(--accent); }
.metric-card:nth-child(6) { background: var(--coral-soft); }
a.metric-card { transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
a.metric-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -38px rgba(0, 58, 112, 0.5);
}
.metric-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-family: var(--display);
  font-weight: 700;
  color: var(--coral);
}
.metric-more svg { width: 22px; height: 14px; }

/* numbered list for "how we measure impact" */
.measure-list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.measure-list li {
  display: flex;
  gap: 14px;
  align-items: center;
  font-weight: 600;
  color: var(--ink);
}
.measure-list .n {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--lav-soft);
  color: var(--plum);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.95rem;
  flex: 0 0 auto;
}

/* service tag pills */
.tag-heading {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0 0 14px;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}
.tag:nth-child(6n + 1) { background: var(--pink-soft); }
.tag:nth-child(6n + 2) { background: var(--yellow-soft); }
.tag:nth-child(6n + 3) { background: var(--orange-soft); }
.tag:nth-child(6n + 4) { background: var(--green-soft); }
.tag:nth-child(6n + 5) { background: var(--aqua); }
.tag:nth-child(6n + 6) { background: var(--coral-soft); }

/* ============================ LEADERSHIP PAGE ============================ */
.hero-peach { background: var(--orange-soft); }
.hero-peach .hero-kicker { color: var(--orange); }

.lead-intro { padding: clamp(56px, 7vw, 96px) 0 clamp(24px, 4vw, 48px); }
.lead-intro p {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  color: var(--slate, #4f6f85);
  line-height: 1.6;
}

.team-block { padding: clamp(36px, 5vw, 56px) 0; }
.team-block:last-of-type { padding-bottom: clamp(64px, 8vw, 120px); }
.team-heading {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  margin: 0 auto 32px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--line);
  max-width: 1040px;
}
.leader-list {
  display: grid;
  gap: 24px;
  max-width: 1040px;
  margin-inline: auto;
}
.leader-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}
.leader-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.leader-photo img { width: 100%; height: 100%; object-fit: cover; }
.leader-initials {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.6rem;
  color: rgba(6, 43, 77, 0.5);
}
.leader-photo.ph-1 { background: var(--pink-soft); }
.leader-photo.ph-2 { background: var(--lav-soft); }
.leader-photo.ph-3 { background: var(--orange-soft); }
.leader-photo.ph-4 { background: var(--green-soft); }
.leader-photo.ph-5 { background: var(--aqua); }
.leader-photo.ph-6 { background: var(--coral-soft); }
.leader-photo.ph-7 { background: var(--yellow-soft); }
.leader-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.35rem;
  margin: 2px 0 3px;
}
.leader-role {
  font-family: var(--display);
  font-weight: 700;
  color: var(--pink);
  margin: 0 0 14px;
  font-size: 0.98rem;
}
.leader-bio p { margin: 0 0 12px; font-size: 0.97rem; color: var(--slate, #4f6f85); line-height: 1.6; }
.leader-bio p:last-child { margin-bottom: 0; }

/* ============================ PARTNERS PAGE ============================ */
.hero-mint { background: var(--green-soft); }
.hero-mint .hero-kicker { color: var(--green); }

.partners-intro { padding: clamp(56px, 7vw, 96px) 0 clamp(8px, 2vw, 24px); }
.partners-intro p {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  line-height: 1.32;
  color: var(--ink);
}

.partner-block { padding: clamp(34px, 5vw, 52px) 0; }
.partner-block:last-of-type { padding-bottom: clamp(56px, 7vw, 96px); }
.partner-heading {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  margin: 0 0 6px;
}
.partner-sub { color: var(--slate, #4f6f85); margin: 0 0 28px; font-size: 1rem; }
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.partner-card {
  --acc: var(--accent);
  --acc-soft: var(--aqua);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border: 1px solid rgba(6, 43, 77, 0.07);
  border-radius: 18px;
  padding: 28px 26px;
  min-height: 170px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.4;
  color: var(--ink);
  box-shadow: 0 14px 34px -24px rgba(0, 58, 112, 0.3);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  overflow: hidden;
}
.partner-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--acc);
  opacity: 0.9;
}
.partner-card::before {
  content: "";
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 13px;
  background:
    var(--acc)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21h18'/%3E%3Cpath d='M5 21V10'/%3E%3Cpath d='M9 21V10'/%3E%3Cpath d='M15 21V10'/%3E%3Cpath d='M19 21V10'/%3E%3Cpath d='M12 3 3 8h18z'/%3E%3C/svg%3E")
    center / 24px no-repeat;
  box-shadow: 0 8px 18px -8px var(--acc);
}
.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 56px -30px rgba(0, 58, 112, 0.4);
}
.partner-card:nth-child(7n + 1) { --acc: var(--pink);   --acc-soft: var(--pink-soft); }
.partner-card:nth-child(7n + 2) { --acc: var(--plum);   --acc-soft: var(--lav-soft); }
.partner-card:nth-child(7n + 3) { --acc: var(--orange); --acc-soft: var(--orange-soft); }
.partner-card:nth-child(7n + 4) { --acc: var(--green);  --acc-soft: var(--green-soft); }
.partner-card:nth-child(7n + 5) { --acc: var(--accent); --acc-soft: var(--aqua); }
.partner-card:nth-child(7n + 6) { --acc: var(--coral);  --acc-soft: var(--coral-soft); }
.partner-card:nth-child(7n + 7) { --acc: var(--yellow); --acc-soft: var(--yellow-soft); }

.partner-logo-card {
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 230px;
}
.partner-logo-card::before { content: none; }
.partner-card-logo {
  display: block;
  width: min(210px, 100%);
  max-height: 92px;
  object-fit: contain;
  margin-bottom: 4px;
}
.partner-card-name {
  display: block;
}
.partner-card-note {
  display: block;
  margin-top: -8px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.35;
  color: var(--slate, #4f6f85);
}

.partners-page .partners-intro {
  padding: clamp(48px, 6vw, 82px) 0;
}
.partners-page .partners-intro p {
  max-width: 980px;
}
.partners-page .partner-showcase {
  position: relative;
  isolation: isolate;
  padding: clamp(58px, 7vw, 92px) 0;
  overflow: hidden;
}
.partners-page .partner-showcase::before,
.partners-page .partner-showcase::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
}
.partners-page .partner-showcase::before {
  width: 420px;
  height: 420px;
  right: -160px;
  top: -190px;
  background: rgba(0, 174, 239, 0.14);
}
.partners-page .partner-showcase::after {
  width: 260px;
  height: 260px;
  left: -110px;
  bottom: -120px;
  background: rgba(210, 237, 81, 0.3);
}
.partners-page .partner-showcase--government {
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 227, 241, 0.8), transparent 24%),
    linear-gradient(135deg, #eef9ff 0%, #ffffff 54%, #fff6d1 100%);
}
.partners-page .partner-showcase--implementing {
  background:
    radial-gradient(circle at 86% 18%, rgba(220, 245, 236, 0.9), transparent 28%),
    #ffffff;
}
.partners-page .partner-showcase--funding {
  background:
    radial-gradient(circle at 92% 20%, rgba(255, 232, 224, 0.9), transparent 28%),
    linear-gradient(135deg, #fff8df 0%, #ffffff 62%, #e7f7ee 100%);
}
.partners-page .partner-section-head {
  max-width: 850px;
  margin-bottom: clamp(26px, 4vw, 42px);
}
.partners-page .partner-section-head .section-kicker {
  margin-bottom: 8px;
  color: var(--pink);
}
.partners-page .partner-heading {
  max-width: 980px;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin-bottom: 14px;
}
.partners-page .partner-sub {
  max-width: 760px;
  color: rgba(6, 43, 77, 0.68);
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  line-height: 1.55;
  margin-bottom: 0;
}
.partners-page .partner-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 30px);
}
.partners-page .partner-card {
  border: 1px solid rgba(0, 58, 112, 0.08);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 64px -44px rgba(0, 58, 112, 0.45);
  min-height: 220px;
  padding: clamp(24px, 2.2vw, 34px);
  backdrop-filter: blur(10px);
}
.partners-page .partner-card::before {
  content: none;
}
.partners-page .partner-card::after {
  height: 7px;
  border-radius: 32px 32px 0 0;
}
.partners-page .partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 42px 78px -46px rgba(0, 58, 112, 0.55);
}
.partners-page .partner-text-card {
  justify-content: space-between;
}
.partners-page .partner-text-card strong,
.partners-page .partner-card-name {
  font-family: var(--display);
  font-size: clamp(1.04rem, 1.35vw, 1.25rem);
  font-weight: 800;
  line-height: 1.24;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.partners-page .partner-card-mark {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  color: #fff;
  background: var(--acc);
  box-shadow: 0 18px 28px -18px var(--acc);
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.partners-page .partner-logo-card {
  align-items: stretch;
  justify-content: space-between;
  text-align: left;
  min-height: 300px;
}
.partners-page .partner-logo-frame {
  display: grid;
  place-items: center;
  min-height: 124px;
  border-radius: 26px;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(0, 94, 168, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.88), 0 18px 40px -34px rgba(0, 58, 112, 0.45);
}
.partners-page .partner-card-logo {
  width: min(250px, 100%);
  max-height: 112px;
  margin: 0;
}
.partners-page .partner-card-note {
  margin-top: -10px;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(6, 43, 77, 0.62);
}
.partners-page .partner-grid--funding {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
}
.partners-page .partner-logo-card--wide {
  min-height: 280px;
}
.partners-page .partner-note {
  position: relative;
  isolation: isolate;
  margin-top: clamp(26px, 4vw, 46px);
  border: 0;
  border-radius: 36px;
  background:
    radial-gradient(circle at 92% 14%, rgba(0, 174, 239, 0.32), transparent 34%),
    radial-gradient(circle at 8% 105%, rgba(210, 237, 81, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(0, 58, 112, 0.98), rgba(0, 94, 168, 0.92)),
    var(--navy-deep);
  color: #fff;
  box-shadow: 0 34px 80px -48px rgba(0, 58, 112, 0.62);
  overflow: hidden;
}
.partners-page .partner-note h3 {
  color: #fff;
  font-size: clamp(1.45rem, 2.4vw, 2.4rem);
  letter-spacing: -0.03em;
}
.partners-page .partner-note .stats-row {
  gap: 0;
  margin-top: clamp(22px, 3vw, 30px);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.partners-page .partner-note .stat {
  position: relative;
  min-height: 0;
  padding: clamp(22px, 2.6vw, 30px) clamp(20px, 2.6vw, 34px) 4px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.partners-page .partner-note .stat:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.partners-page .partner-note .stat::after {
  content: "";
  position: absolute;
  left: clamp(18px, 2.2vw, 26px);
  top: 0;
  width: 58px;
  height: 3px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(210, 237, 81, 0.78);
}
.partners-page .partner-note .stat dd,
.partners-page .partner-note .stat:nth-child(1) dd,
.partners-page .partner-note .stat:nth-child(2) dd,
.partners-page .partner-note .stat:nth-child(3) dd {
  color: #fff;
}
.partners-page .partner-note .stat dt {
  max-width: 94%;
  color: rgba(255, 255, 255, 0.78);
}
@media (max-width: 980px) {
  .partners-page .partner-grid,
  .partners-page .partner-grid--funding {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .partners-page .partner-showcase {
    padding: 48px 0;
  }
  .partners-page .partner-heading {
    font-size: clamp(2rem, 12vw, 3.1rem);
  }
  .partners-page .partner-grid,
  .partners-page .partner-grid--funding {
    grid-template-columns: 1fr;
  }
  .partners-page .partner-card,
  .partners-page .partner-logo-card,
  .partners-page .partner-logo-card--wide {
    min-height: 0;
  }
  .partners-page .partner-logo-frame {
    min-height: 116px;
  }
  .partners-page .partner-note {
    border-radius: 26px;
  }
  .partners-page .partner-note .stats-row {
    gap: 18px;
    border-top: 0;
  }
  .partners-page .partner-note .stat {
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }
  .partners-page .partner-note .stat:not(:first-child) {
    border-left: 0;
  }
  .partners-page .partner-note .stat::after {
    left: 0;
  }
}

/* ============================ WHERE WE WORK — CLINIC MAP ============================ */
.where-work-page .prog--green {
  background: #eef8f2;
}
.where-work-page .where-work-map-art {
  margin-bottom: 42px;
  overflow: hidden;
  border: 1px solid rgba(21, 123, 89, 0.16);
  background: #fffdf8;
  box-shadow: 0 30px 70px -58px rgba(5, 68, 49, 0.48);
}
.where-work-page .where-work-map-art img {
  display: block;
  width: 100%;
  height: auto;
}
.where-work-page .where-work-map-credit {
  padding: 10px 16px;
  color: #62766f;
  font-size: 0.72rem;
  line-height: 1.4;
  text-align: right;
}
.where-work-page .where-work-map-credit a {
  color: #145f45;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* district reach callout */
.partner-note {
  background: var(--aqua);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 44px);
  margin-top: 24px;
}
.partner-note h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 0 20px;
}
.partner-note .stats-row { gap: 24px; }
.partner-note .stat dd {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  margin: 0;
}
.partner-note .stat:nth-child(1) dd { color: var(--pink); }
.partner-note .stat:nth-child(2) dd { color: var(--orange); }
.partner-note .stat:nth-child(3) dd { color: var(--green); }
.partner-note .stat dt { margin-top: 10px; font-weight: 600; color: var(--ink); }

/* former partners — muted treatment */
.partner-block--past { background: var(--paper-2); }
.partner-block--past .partner-card {
  background: transparent;
  border-left-color: rgba(6, 43, 77, 0.25) !important;
  color: var(--slate, #4f6f85);
  font-weight: 600;
}

/* ---- former-partners logo carousel ---- */
.logo-carousel { position: relative; max-width: 1120px; margin: 8px auto 0; }
.logo-viewport { overflow: hidden; }
.logo-track { display: flex; transition: transform 0.6s var(--ease); }
/* flex rather than a 3-col grid so the final short slide centres its cards
   at the same width instead of leaving a ragged empty column */
.logo-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.logo-card {
  flex: 0 1 calc((100% - 40px) / 3);
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
}
/* sources are 150px square with their own padding — 120px uses more of that
   without upscaling past native resolution */
.logo-card img { max-height: 120px; max-width: 100%; object-fit: contain; }
.logo-ph {
  font-family: var(--display);
  font-weight: 700;
  color: var(--slate, #4f6f85);
  font-size: 0.98rem;
  line-height: 1.4;
}
.logo-dots { display: flex; gap: 10px; justify-content: center; margin-top: 28px; }
.logo-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(0, 94, 168, 0.22);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s var(--ease);
}
.logo-dot.active { background: var(--pink); }

/* ============================ CONTACT PAGES ============================ */
.hero-aqua { background: var(--aqua); }
.hero-aqua .hero-kicker { color: var(--accent); }

.contact-section { padding: clamp(56px, 7vw, 100px) 0; }
.contact-section.section-tint { background: var(--paper-2); }
.contact-section .section-kicker { color: var(--accent); }
.contact-section h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.1;
  margin: 0 0 36px;
}

/* phone + email method cards */
.contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 44px;
}
.contact-method {
  display: flex;
  gap: 18px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 26px;
}
.contact-method .ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--aqua);
  color: var(--accent);
  flex: 0 0 auto;
}
.contact-method .ico svg { width: 24px; height: 24px; }
.contact-method:nth-child(2) .ico { background: var(--pink-soft); color: var(--pink); }
.contact-method .label {
  font-size: 0.78rem;
  color: var(--slate, #4f6f85);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-method .value {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--ink);
  word-break: break-word;
}

/* office cards with maps */
.office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.office-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.office-card .office-body { padding: 26px 28px; }
.office-card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.3rem;
  margin: 0 0 12px;
}
.office-card address {
  font-style: normal;
  color: var(--slate, #4f6f85);
  line-height: 1.6;
  display: flex;
  gap: 10px;
}
.office-card address svg { width: 20px; height: 20px; flex: 0 0 auto; color: var(--pink); margin-top: 3px; }
.office-map {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 0;
  display: block;
  margin-top: auto;
}

/* clinic location cards */
.clinic-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}
.clinic-card {
  --acc: var(--accent);
  --acc-soft: var(--aqua);
  flex: 0 1 calc(25% - 17px);
  position: relative;
  background: #fff;
  border: 1px solid rgba(6, 43, 77, 0.07);
  border-radius: 20px;
  padding: 34px 30px 30px;
  box-shadow: 0 14px 34px -24px rgba(0, 58, 112, 0.3);
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
  overflow: hidden;
}
.clinic-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--acc);
}
.clinic-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 60px -30px rgba(0, 58, 112, 0.42);
}
.clinic-card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.18rem;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.clinic-card h3::before {
  content: "";
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 11px;
  background:
    var(--acc)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E")
    center / 20px no-repeat;
  box-shadow: 0 8px 16px -7px var(--acc);
}
.clinic-card address {
  font-style: normal;
  color: var(--slate, #4f6f85);
  line-height: 1.6;
  margin: 0 0 20px;
  font-size: 0.95rem;
}
.clinic-card .phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 17px;
  border-radius: 999px;
  background: var(--acc-soft);
  color: var(--acc);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.92rem;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.clinic-card .phone svg { width: 16px; height: 16px; }
.clinic-card .phone:hover { background: var(--acc); color: #fff; }
.clinic-card:nth-child(7n + 1) { --acc: var(--pink);   --acc-soft: var(--pink-soft); }
.clinic-card:nth-child(7n + 2) { --acc: var(--plum);   --acc-soft: var(--lav-soft); }
.clinic-card:nth-child(7n + 3) { --acc: var(--orange); --acc-soft: var(--orange-soft); }
.clinic-card:nth-child(7n + 4) { --acc: var(--green);  --acc-soft: var(--green-soft); }
.clinic-card:nth-child(7n + 5) { --acc: var(--accent); --acc-soft: var(--aqua); }
.clinic-card:nth-child(7n + 6) { --acc: var(--coral);  --acc-soft: var(--coral-soft); }
.clinic-card:nth-child(7n + 7) { --acc: var(--yellow); --acc-soft: var(--yellow-soft); }

/* enquiry form */
.enquiry-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.enquiry-head .section-kicker { color: var(--accent); }
.enquiry-head h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.05;
  margin: 6px 0 14px;
}
.enquiry-head .enquiry-intro { color: var(--slate, #4f6f85); font-size: 1.05rem; margin: 0; }
.enquiry-card {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--aqua), var(--paper-2));
  border: 1px solid rgba(0, 94, 168, 0.14);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 52px);
  box-shadow: 0 24px 60px -38px rgba(0, 58, 112, 0.4);
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 0;
  border-color: transparent;
}
.field textarea { min-height: 150px; resize: vertical; }
.enquiry-card .btn-solid {
  border: 0;
  cursor: pointer;
  font-size: 1rem;
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}
.form-note { margin-top: 18px; text-align: center; font-size: 0.9rem; color: var(--slate, #4f6f85); }

/* ============================ GOVERNANCE / DOCUMENTS PAGE ============================ */
.doc-block { margin-bottom: clamp(40px, 5vw, 60px); }
.doc-block:last-child { margin-bottom: 0; }
.doc-block-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  margin: 0 0 8px;
}
.doc-block-sub { color: var(--slate, #4f6f85); margin: 0 0 26px; font-size: 1rem; }
.doc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.doc-card {
  --acc: var(--accent);
  --acc-soft: var(--aqua);
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 26px;
  color: var(--ink);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
a.doc-card:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -34px rgba(0, 58, 112, 0.5); }
.doc-ico {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--acc-soft);
  color: var(--acc);
}
.doc-ico svg { width: 27px; height: 27px; }
.doc-body { flex: 1; min-width: 0; }
.doc-body h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.04rem;
  line-height: 1.32;
  margin: 0 0 6px;
}
.doc-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--acc);
}
.doc-action svg { width: 15px; height: 15px; }
.doc-card--ext .doc-body .doc-action { color: var(--plum); }
.doc-card:nth-child(6n + 1) { --acc: var(--pink);   --acc-soft: var(--pink-soft); }
.doc-card:nth-child(6n + 2) { --acc: var(--accent); --acc-soft: var(--aqua); }
.doc-card:nth-child(6n + 3) { --acc: var(--orange); --acc-soft: var(--orange-soft); }
.doc-card:nth-child(6n + 4) { --acc: var(--green);  --acc-soft: var(--green-soft); }
.doc-card:nth-child(6n + 5) { --acc: var(--plum);   --acc-soft: var(--lav-soft); }
.doc-card:nth-child(6n + 6) { --acc: var(--coral);  --acc-soft: var(--coral-soft); }

/* ============================ ABOUT — STORY PAGE ============================ */
/* green intro panel */
.about-panel { padding: clamp(56px, 7vw, 104px) 0; }
.about-panel--green { background: var(--green-soft); }
.about-panel .section-kicker { color: var(--green); }
.about-panel h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.12;
  margin: 0 0 26px;
  max-width: 920px;
}
.about-panel p {
  max-width: 880px;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.66;
}
.about-panel .about-panel-lead {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  color: var(--green);
  margin: 30px 0 0;
  max-width: none;
}
/* green panel two-column: text + image */
.about-panel-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.about-panel-copy h2,
.about-panel-copy p { max-width: none; }
.about-panel-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 0 0 0 200px;
}

/* About FRHS India — editorial story hero */
.about-story-hero {
  --about-hero-navy: #073d68;
  --about-hero-body: #526c7c;
  --about-hero-magenta: #c42d72;
  --about-hero-green: #126b50;
  overflow: hidden;
  padding: clamp(64px, 7vw, 108px) 0;
  background: #fff9f3;
}
.about-story-hero-top {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  align-items: center;
  gap: clamp(46px, 6vw, 92px);
}
.about-story-hero-copy {
  padding-block: clamp(10px, 2vw, 30px);
}
.about-story-hero-copy h1 {
  max-width: 780px;
  margin: 0;
  color: var(--about-hero-magenta);
  font-family: var(--display);
  font-size: clamp(3.4rem, 5.8vw, 5.7rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.94;
}
.about-page-tagline {
  max-width: 780px;
  margin: 24px 0 30px;
  color: var(--about-hero-navy);
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
}
.about-story-hero-intro {
  max-width: 720px;
  margin: 0;
  color: var(--about-hero-body);
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
  line-height: 1.72;
}
.about-story-hero-media {
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  border-radius: 30px 30px 112px 30px;
  background: #e8f4f0;
  box-shadow: 0 34px 76px -56px rgba(7, 61, 104, 0.58);
}
.about-story-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  object-position: center;
}
.about-story-hero-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(24px, 3vw, 36px);
  margin-top: clamp(44px, 6vw, 78px);
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(7, 61, 104, 0.12);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 70px -62px rgba(7, 61, 104, 0.42);
}
.about-story-hero-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  gap: 0;
}
.about-story-hero-body p {
  margin: 0;
  padding: 0;
  color: var(--about-hero-body);
  font-size: 1rem;
  line-height: 1.72;
}
.about-story-hero-body p + p {
  padding-top: 16px;
}
.about-story-hero-lead {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: clamp(120px, 12vw, 170px);
  margin: 0;
  padding: clamp(18px, 2.5vw, 32px);
  border-radius: 22px;
  background: var(--about-hero-green);
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.65vw, 2.45rem);
  font-weight: 800;
  line-height: 1.28;
}

@media (max-width: 1040px) {
  .about-story-hero-top {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
    gap: 42px;
  }
  .about-story-hero-media,
  .about-story-hero-media img {
    min-height: 550px;
  }
  .about-story-hero-summary {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 820px) {
  .about-story-hero-top {
    grid-template-columns: 1fr;
  }
  .about-story-hero-copy {
    padding-block: 0;
  }
  .about-story-hero-media,
  .about-story-hero-media img {
    min-height: 500px;
  }
}
@media (max-width: 620px) {
  .about-story-hero {
    padding: 52px 0 58px;
  }
  .about-story-hero-top {
    gap: 30px;
  }
  .about-story-hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4rem);
  }
  .about-page-tagline {
    margin: 20px 0 24px;
    font-size: clamp(1.8rem, 8.5vw, 2.5rem);
  }
  .about-story-hero-media,
  .about-story-hero-media img {
    min-height: 390px;
  }
  .about-story-hero-media {
    border-radius: 22px 22px 72px 22px;
  }
  .about-story-hero-summary {
    gap: 24px;
    margin-top: 38px;
    padding: 24px;
    border-radius: 22px;
  }
  .about-story-hero-body {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .about-story-hero-lead {
    padding: 18px 20px;
    border-radius: 18px;
  }
}

/* mission + vision split */
.mv-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: clamp(20px, 3vw, 42px);
  background: #fff9f3;
}
.mv-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  min-height: clamp(360px, 34vw, 510px);
  padding: clamp(40px, 5vw, 72px);
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 30px 70px -58px rgba(73, 42, 98, 0.52);
}
.mv-box::before {
  content: "";
  display: block;
  width: 62px;
  height: 7px;
  margin-bottom: clamp(34px, 4vw, 52px);
  border-radius: 8px;
  background: currentColor;
  opacity: 0.84;
}
.mv-label {
  max-width: 680px;
  margin: 0 0 clamp(24px, 3vw, 36px);
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.035em;
  font-size: clamp(2.15rem, 3.5vw, 3.6rem);
  line-height: 1;
}
.mv-text {
  max-width: 680px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2vw, 1.95rem);
  line-height: 1.34;
  margin: 0;
}
.mv-mission {
  gap: 12px;
  background: var(--lav-soft);
  color: var(--ink);
}
.mv-mission .mv-label {
  margin-bottom: 12px;
}
.mv-mission .mv-label { color: var(--plum); }
.mv-vision { background: var(--plum); color: #fff; }
.mv-vision .mv-label { color: #e7cff5; }

/* approach to change */
.approach {
  padding: clamp(68px, 8vw, 118px) 0;
  background: #f8fbfc;
}
.approach-head {
  max-width: 980px;
  margin-bottom: clamp(38px, 5vw, 58px);
}
.approach-head h2 {
  margin: 0;
  color: var(--pink);
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(3.1rem, 5.4vw, 5.35rem);
  letter-spacing: -0.05em;
  line-height: 0.96;
}
.about-section-tagline {
  max-width: 980px;
  margin: 20px 0 0;
  color: #073d68;
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.25vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 1.06;
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 20px;
}
.approach-card {
  --acc: #073d68;
  height: 100%;
  min-height: 248px;
  padding: clamp(30px, 3.7vw, 46px);
  border: 0;
  border-radius: 24px;
  background: #fff;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.approach-card::before {
  content: "";
  display: block;
  width: 48px;
  height: 5px;
  margin-bottom: 38px;
  border-radius: 4px;
  background: var(--acc);
}
.approach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 52px -38px rgba(7, 61, 104, 0.48);
}
.approach-card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.32rem, 2.1vw, 1.72rem);
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--acc);
}
.approach-card p {
  max-width: 760px;
  margin: 0;
  color: #526c7c;
  line-height: 1.7;
}
.approach-card:nth-child(1) {
  --acc: #ad2663;
  background: #fbe5f0;
}
.approach-card:nth-child(2) {
  --acc: #fff;
  background: #075d8e;
}
.approach-card:nth-child(2) p { color: #eaf8ff; }
.approach-card:nth-child(3) {
  --acc: #b83d43;
  background: #fff2c4;
}
.approach-card:nth-child(3) p { color: #675f4e; }
.approach-card:nth-child(4) {
  --acc: #157b59;
  background: #e4f4ec;
}
.approach-card:nth-child(4) p { color: #506d64; }

@media (max-width: 820px) {
  .approach-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .approach-card,
  .approach-card:nth-child(1),
  .approach-card:nth-child(2),
  .approach-card:nth-child(3),
  .approach-card:nth-child(4) {
    grid-column: 1 / -1;
    height: auto;
  }
}
@media (max-width: 560px) {
  .approach { padding: 58px 0; }
  .approach-card {
    min-height: 0;
    padding: 28px 24px;
    border-radius: 20px;
  }
  .approach-card::before { margin-bottom: 28px; }
}

/* our journey — timeline */
.journey {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 9vw, 132px) 0;
  background:
    linear-gradient(135deg, rgba(251, 229, 240, 0.86), rgba(255, 249, 237, 0.9) 46%, rgba(229, 247, 243, 0.9));
}
.journey::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 9px;
  background: linear-gradient(
    90deg,
    var(--pink) 0 16%,
    var(--coral) 16% 32%,
    var(--orange) 32% 48%,
    var(--yellow) 48% 64%,
    var(--green) 64% 80%,
    var(--accent) 80% 100%
  );
}
.journey::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 58vw;
  height: 180px;
  right: -18vw;
  top: 230px;
  border-radius: 54px;
  background: linear-gradient(90deg, rgba(216, 27, 122, 0.08), rgba(0, 114, 188, 0.08));
  transform: rotate(-12deg);
  filter: blur(1px);
}
.journey-lead {
  display: block;
  margin-bottom: clamp(58px, 8vw, 96px);
}
.journey-head {
  margin: 0;
  max-width: 880px;
}
.journey-head h2 {
  max-width: 800px;
  margin: 0;
  color: var(--plum);
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(3.1rem, 5.7vw, 5.6rem);
  letter-spacing: -0.05em;
  line-height: 0.94;
}
.journey-head .about-section-tagline {
  max-width: 780px;
  color: #073d68;
}
.journey-intro {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--about-hero-body);
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
  line-height: 1.72;
}
.timeline {
  position: relative;
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 163px;
  top: 20px;
  bottom: 20px;
  width: 6px;
  border-radius: 8px;
  background: linear-gradient(
    180deg,
    var(--pink),
    var(--plum) 14%,
    var(--orange) 30%,
    var(--green) 46%,
    var(--accent) 62%,
    var(--coral) 76%,
    var(--yellow) 88%,
    var(--plum)
  );
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.62);
}
.tl-item {
  --acc: var(--pink);
  --acc-soft: var(--pink-soft);
  position: relative;
  display: grid;
  grid-template-columns: 126px 78px minmax(0, 1fr);
  align-items: start;
  min-width: 0;
  margin: 0 0 26px;
  padding: 0;
}
.tl-item:last-child {
  margin-bottom: 0;
}
.tl-item::before {
  content: "";
  position: absolute;
  z-index: 3;
  left: 151px;
  top: 32px;
  width: 18px;
  height: 18px;
  border: 5px solid #fff;
  border-radius: 5px;
  background: var(--acc);
  box-shadow: 0 0 0 5px var(--acc-soft), 0 11px 24px -12px var(--acc);
  transform: rotate(45deg);
}
.tl-item::after {
  content: "";
  position: absolute;
  left: 166px;
  top: 45px;
  width: 38px;
  height: 3px;
  background: linear-gradient(90deg, var(--acc), color-mix(in srgb, var(--acc) 28%, transparent));
}
.tl-year {
  display: inline-flex;
  align-items: center;
  grid-column: 1;
  justify-self: end;
  min-height: 38px;
  margin: 18px 0 0;
  padding: 7px 17px;
  border-radius: 12px;
  background: var(--acc);
  box-shadow: 0 14px 28px -18px var(--acc);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.tl-body {
  position: relative;
  isolation: isolate;
  grid-column: 3;
  min-width: 0;
  overflow: hidden;
  padding: clamp(28px, 3.8vw, 46px);
  border: 1px solid color-mix(in srgb, var(--acc) 20%, transparent);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), color-mix(in srgb, var(--acc-soft) 68%, #fff));
  box-shadow: 0 30px 66px -52px color-mix(in srgb, var(--acc) 72%, transparent);
  transition:
    transform 0.34s var(--ease),
    box-shadow 0.34s var(--ease),
    border-color 0.34s var(--ease);
}
.tl-body::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 9px;
  background: linear-gradient(180deg, var(--acc), color-mix(in srgb, var(--acc) 32%, transparent));
}
.tl-body::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -64px;
  right: -64px;
  width: 160px;
  height: 160px;
  border-radius: 42px;
  background: color-mix(in srgb, var(--acc-soft) 82%, transparent);
  transform: rotate(35deg);
}
.tl-item:hover .tl-body {
  border-color: color-mix(in srgb, var(--acc) 40%, transparent);
  transform: translateX(8px);
  box-shadow: 0 40px 82px -48px color-mix(in srgb, var(--acc) 78%, transparent);
}
.tl-body h3 {
  margin: 0 0 16px;
  color: #073d68;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.3rem, 1.8vw, 1.62rem);
  letter-spacing: -0.022em;
  line-height: 1.16;
}
.tl-title-detail {
  display: block;
  margin-top: 7px;
  color: var(--acc);
}
.tl-body p {
  margin: 0;
  color: var(--slate, #4f6f85);
  font-size: 1rem;
  line-height: 1.7;
}
.tl-item:nth-child(7n + 1) { --acc: var(--pink);   --acc-soft: var(--pink-soft); }
.tl-item:nth-child(7n + 2) { --acc: var(--plum);   --acc-soft: var(--lav-soft); }
.tl-item:nth-child(7n + 3) { --acc: var(--orange); --acc-soft: var(--orange-soft); }
.tl-item:nth-child(7n + 4) { --acc: var(--green);  --acc-soft: var(--green-soft); }
.tl-item:nth-child(7n + 5) { --acc: var(--accent); --acc-soft: var(--aqua); }
.tl-item:nth-child(7n + 6) { --acc: var(--coral);  --acc-soft: var(--coral-soft); }
.tl-item:nth-child(7n + 7) { --acc: var(--yellow); --acc-soft: var(--yellow-soft); }
@media (max-width: 900px) {
  .journey-intro {
    max-width: 720px;
  }
  .timeline::before {
    left: 131px;
  }
  .tl-item {
    grid-template-columns: 100px 66px minmax(0, 1fr);
  }
  .tl-item::before {
    left: 119px;
  }
  .tl-item::after {
    left: 134px;
    width: 32px;
  }
}
@media (max-width: 680px) {
  .timeline::before {
    left: 13px;
    width: 5px;
  }
  .tl-item {
    display: block;
    min-height: 0;
    margin-bottom: 22px;
    padding-left: 40px;
  }
  .tl-item::before {
    left: 2px;
    top: 25px;
    width: 16px;
    height: 16px;
    border-width: 4px;
  }
  .tl-item::after {
    left: 14px;
    top: 37px;
    width: 26px;
  }
  .tl-year {
    position: absolute;
    z-index: 3;
    left: 60px;
    top: 20px;
    min-height: 34px;
    margin: 0;
    padding: 6px 14px;
  }
  .tl-body {
    padding-top: 78px;
  }
  .tl-item:hover .tl-body {
    transform: translateX(4px);
  }
}
@media (max-width: 560px) {
  .journey {
    padding: 64px 0;
  }
  .journey-head h2 {
    font-size: clamp(3rem, 14vw, 4rem);
  }
  .journey-head .about-section-tagline {
    font-size: clamp(1.75rem, 8.5vw, 2.4rem);
  }
  .journey-intro {
    margin-top: 18px;
    font-size: 1rem;
  }
  .tl-body {
    padding: 74px 22px 26px;
    border-radius: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .tl-body,
  .tl-item:hover .tl-body {
    transition: none;
    transform: none;
  }
}

/* our values */
.values { padding: clamp(72px, 8vw, 118px) 0; }
.values-head {
  max-width: 980px;
  margin-bottom: clamp(40px, 5vw, 62px);
}
.values-head h2 {
  margin: 0;
  color: var(--green);
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(3.1rem, 5.4vw, 5.35rem);
  letter-spacing: -0.05em;
  line-height: 0.96;
}
.values-head .about-section-tagline {
  color: #073d68;
}
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { border-radius: 18px; padding: 32px 30px; }
.value-card h3 { font-family: var(--display); font-weight: 800; font-size: 1.22rem; margin: 0 0 10px; }
.value-card p { margin: 0; font-size: 0.97rem; color: var(--ink); line-height: 1.62; }
.value-card:nth-child(6n + 1) { background: var(--pink-soft); }
.value-card:nth-child(6n + 1) h3 { color: var(--pink); }
.value-card:nth-child(6n + 2) { background: var(--aqua); }
.value-card:nth-child(6n + 2) h3 { color: var(--accent); }
.value-card:nth-child(6n + 3) { background: var(--orange-soft); }
.value-card:nth-child(6n + 3) h3 { color: var(--orange); }
.value-card:nth-child(6n + 4) { background: var(--green-soft); }
.value-card:nth-child(6n + 4) h3 { color: var(--green); }
.value-card:nth-child(6n + 5) { background: var(--lav-soft); }
.value-card:nth-child(6n + 5) h3 { color: var(--plum); }
.value-card:nth-child(6n + 6) { background: var(--coral-soft); }
.value-card:nth-child(6n + 6) h3 { color: var(--coral); }

/* ============================ EXPLORE OUR WORK ============================ */
.hero-peach { background: var(--orange-soft); }
.hero-peach .hero-kicker { color: var(--orange); }

/* Our Programmes — page opening */
.programmes-hero {
  overflow: hidden;
  background: #eaf8ff;
}
.programmes-hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: clamp(520px, 33vw, 680px);
}
.programmes-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(52px, 6vw, 96px) clamp(34px, 5vw, 88px);
}
.programmes-hero-copy h1 {
  margin: 0;
  color: #052f57;
  font-family: var(--display);
  font-size: clamp(3.4rem, 5.5vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}
.programmes-hero-copy p {
  max-width: 560px;
  margin: 26px 0 0;
  color: #4f7087;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 500;
  line-height: 1.6;
}
.programmes-hero-media {
  margin: 0;
  overflow: hidden;
  min-width: 0;
}
.programmes-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0 0 0 260px;
}

.programmes-intro {
  padding: clamp(56px, 7vw, 104px) 0;
  background: #fff;
}
.programmes-intro-grid {
  max-width: 1120px;
}
.programmes-intro-grid p {
  margin: 0;
}
.programmes-intro-lead {
  max-width: 1040px;
  color: #052f57;
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.7vw, 1.48rem);
  font-weight: 600;
  line-height: 1.58;
}
.programmes-intro-body {
  max-width: 1040px;
  margin-top: clamp(24px, 3vw, 34px) !important;
  color: #4f7087;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.72;
}

@media (max-width: 820px) {
  .programmes-hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .programmes-hero-copy {
    padding: 52px 32px;
  }
  .programmes-hero-copy h1 {
    font-size: clamp(3.1rem, 11vw, 5rem);
  }
  .programmes-hero-media {
    min-height: clamp(300px, 68vw, 500px);
  }
  .programmes-hero-media img {
    min-height: inherit;
    border-radius: 0 0 0 140px;
  }
}
@media (max-width: 560px) {
  .programmes-hero-copy {
    padding: 44px 24px;
  }
  .programmes-hero-copy h1 {
    font-size: clamp(2.65rem, 13vw, 3.7rem);
    letter-spacing: -0.035em;
    line-height: 0.95;
  }
  .programmes-hero-copy p {
    margin-top: 22px;
    font-size: 1.05rem;
  }
  .programmes-hero-media {
    min-height: clamp(280px, 76vw, 380px);
  }
  .programmes-intro {
    padding: 48px 0 58px;
  }
  .programmes-intro-lead {
    font-size: 1.13rem;
    line-height: 1.55;
  }
  .programmes-intro-body {
    font-size: 0.98rem;
    line-height: 1.66;
  }
}

.prog { padding: clamp(52px, 7vw, 96px) 0; }
.prog.section-tint { background: var(--paper-2); }
.prog-head { margin-bottom: 30px; }
.prog-head .section-kicker { color: var(--accent); }
.prog--pink .section-kicker { color: var(--pink); }
.prog--orange .section-kicker { color: var(--orange); }
.prog--green .section-kicker { color: var(--green); }
.prog--plum .section-kicker { color: var(--plum); }
.prog-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.14;
  margin: 0 0 20px;
  max-width: 900px;
}
.prog-intro {
  max-width: 880px;
  color: var(--slate, #4f6f85);
  font-size: 1.05rem;
  line-height: 1.66;
  margin: 0 0 16px;
}
.prog-sub {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.18rem;
  margin: 36px 0 18px;
  color: var(--ink);
}
.prog .tag-row { margin-top: 4px; }
/* highlight callout (e.g. helpline) */
.prog-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  background: var(--aqua);
  border-radius: 16px;
  padding: 22px 26px;
  margin-top: 26px;
  font-weight: 600;
  color: var(--ink);
}
.prog-note .prog-note-label {
  font-family: var(--display);
  font-weight: 800;
  color: var(--accent);
}
.prog-note a {
  font-family: var(--display);
  font-weight: 800;
  color: var(--pink);
}

/* Family Planning — editorial programme story */
.fp-programme {
  --fp-navy: #052f57;
  --fp-blue: #0879bc;
  --fp-pink: #df247c;
  position: relative;
  overflow: hidden;
  background: #f2faff;
  padding: clamp(68px, 8vw, 118px) 0;
}
.fp-programme::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  top: 14%;
  right: -220px;
  border: 64px solid rgba(0, 114, 188, 0.07);
  border-radius: 50%;
  pointer-events: none;
}
.fp-programme .container { position: relative; }

.fp-story {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
  align-items: stretch;
  gap: clamp(42px, 6vw, 92px);
  margin-bottom: clamp(84px, 10vw, 140px);
}
.fp-story-copy {
  align-self: center;
  padding-block: clamp(10px, 3vw, 42px);
}
.fp-story-copy .section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--fp-pink);
  margin-bottom: 22px;
}
.fp-story-copy h2 {
  max-width: 770px;
  margin: 0 0 30px;
  color: var(--fp-navy);
  font-family: var(--display);
  font-size: clamp(2.35rem, 4.4vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.fp-story-lead {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--fp-navy);
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
  font-weight: 600;
  line-height: 1.6;
}
.fp-story-body {
  max-width: 720px;
  margin: 0;
  color: #4d6f86;
  font-size: 1.02rem;
  line-height: 1.72;
}
.fp-story-media {
  position: relative;
  min-height: 590px;
  margin: 0;
  overflow: hidden;
  border-radius: 32px 32px 112px 32px;
  background: #d6eaf3;
  box-shadow: 0 30px 70px -48px rgba(5, 47, 87, 0.72);
}
.fp-story-media img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
  object-position: 30% center;
}

.fp-section-head {
  max-width: 760px;
  margin-bottom: 32px;
}
.fp-section-head h3 {
  margin: 0;
  color: var(--fp-navy);
  font-family: var(--display);
  font-size: clamp(2rem, 3.3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
}
.fp-offer { margin-bottom: clamp(82px, 10vw, 138px); }
.fp-offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
}
.fp-offer-card {
  min-height: 100%;
  padding: clamp(30px, 4vw, 50px);
  border-radius: 26px;
}
.fp-offer-card--counselling {
  border: 1px solid rgba(5, 47, 87, 0.11);
  background: #fff;
  box-shadow: 0 28px 62px -50px rgba(5, 47, 87, 0.75);
}
.fp-offer-card--methods {
  background: var(--fp-navy);
  color: #fff;
}
.fp-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 54px;
}
.fp-card-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #ffe2f0;
  color: var(--fp-pink);
}
.fp-offer-card--methods .fp-card-icon {
  background: rgba(111, 207, 244, 0.15);
  color: #77d3f5;
}
.fp-card-icon svg {
  width: 28px;
  height: 28px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
.fp-offer-card h4 {
  max-width: 600px;
  margin: 0 0 14px;
  color: var(--fp-navy);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
}
.fp-offer-card--methods h4 { color: #fff; }
.fp-offer-card > p {
  margin: 0;
  color: #547187;
  line-height: 1.68;
}
.fp-offer-card--methods > p { color: #c9dfec; }
.fp-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 28px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.fp-methods li {
  position: relative;
  padding: 13px 0 13px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #f4fbff;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}
.fp-methods li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #77d3f5;
}

.fp-access {
  margin-bottom: clamp(76px, 9vw, 124px);
  padding: clamp(30px, 4.5vw, 62px);
  border: 1px solid rgba(5, 47, 87, 0.1);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 34px 74px -60px rgba(5, 47, 87, 0.72);
}
.fp-access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.fp-access-card {
  overflow: hidden;
  border: 1px solid rgba(5, 47, 87, 0.1);
  border-radius: 22px;
  background: #f8fcff;
}
.fp-access-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #d7e9f1;
}
.fp-access-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.fp-access-card:hover .fp-access-media img { transform: scale(1.035); }
.fp-access-copy { padding: 28px 30px 32px; }
.fp-access-copy h4 {
  margin: 8px 0 10px;
  color: var(--fp-navy);
  font-family: var(--display);
  font-size: clamp(1.28rem, 2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.16;
}
.fp-access-copy > p:last-child {
  margin: 0;
  color: #547187;
  font-size: 0.96rem;
  line-height: 1.66;
}

.fp-impact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
  overflow: hidden;
  padding: clamp(38px, 5vw, 68px);
  border-radius: 30px;
  background: var(--fp-navy);
  color: #fff;
}
.fp-impact::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -120px;
  width: 270px;
  height: 270px;
  border: 48px solid rgba(119, 211, 245, 0.1);
  border-radius: 50%;
}
.fp-impact-label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
}
.fp-impact-label span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--fp-pink);
  color: #fff;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 500;
}
.fp-impact-label p {
  margin: 0;
  color: #94dcf5;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.fp-impact > p {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0;
  color: #f5fbff;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.1vw, 1.72rem);
  font-weight: 600;
  line-height: 1.48;
}

@media (max-width: 1080px) {
  .fp-story {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
    gap: 42px;
  }
  .fp-story-media,
  .fp-story-media img { min-height: 520px; }
  .fp-offer-grid { grid-template-columns: 1fr; }
  .fp-card-topline { margin-bottom: 38px; }
}
@media (max-width: 820px) {
  .fp-story { grid-template-columns: 1fr; }
  .fp-story-copy { padding-block: 0; }
  .fp-story-media,
  .fp-story-media img { min-height: 500px; }
  .fp-access-grid { grid-template-columns: 1fr; }
  .fp-impact {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 560px) {
  .fp-programme { padding: 58px 0; }
  .fp-story { gap: 30px; margin-bottom: 74px; }
  .fp-story-copy h2 {
    margin-bottom: 22px;
    font-size: clamp(2.15rem, 11vw, 3rem);
  }
  .fp-story-media {
    min-height: 420px;
    border-radius: 22px 22px 76px 22px;
  }
  .fp-story-media img { min-height: 420px; }
  .fp-offer { margin-bottom: 74px; }
  .fp-offer-card { padding: 26px 22px 28px; border-radius: 22px; }
  .fp-card-topline { margin-bottom: 30px; }
  .fp-methods { grid-template-columns: 1fr; }
  .fp-access {
    margin-bottom: 66px;
    padding: 20px;
    border-radius: 24px;
  }
  .fp-access-copy { padding: 24px 22px 26px; }
  .fp-impact {
    padding: 30px 24px 34px;
    border-radius: 22px;
  }
}

/* Safe Abortion — editorial programme layout */
.sa-programme {
  --sa-orange: #df5f1a;
  --sa-navy: #052f57;
  position: relative;
  overflow: hidden;
  background: #fffaf6;
  padding: clamp(68px, 8vw, 118px) 0;
}
.sa-programme::after {
  content: "";
  position: absolute;
  top: 8%;
  left: -170px;
  width: 280px;
  height: 280px;
  border: 54px solid rgba(223, 95, 26, 0.07);
  border-radius: 50%;
  pointer-events: none;
}
.sa-programme .container { position: relative; }
.sa-story {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: stretch;
  gap: clamp(44px, 6vw, 88px);
  margin-bottom: clamp(82px, 10vw, 136px);
}
.sa-story-copy {
  align-self: center;
  padding-block: clamp(12px, 3vw, 44px);
}
.sa-story-copy .section-kicker {
  color: var(--sa-orange);
  margin-bottom: 22px;
}
.sa-story-copy h2 {
  max-width: 800px;
  margin: 0 0 30px;
  color: var(--sa-navy);
  font-family: var(--display);
  font-size: clamp(2.35rem, 4.35vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.sa-story-copy > p:last-child {
  max-width: 790px;
  margin: 0;
  color: #526f84;
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  line-height: 1.75;
}
.sa-story-media {
  position: relative;
  min-height: 570px;
  margin: 0;
  overflow: hidden;
  border-radius: 110px 30px 30px 30px;
  background: #e8eff3;
  box-shadow: 0 30px 70px -50px rgba(5, 47, 87, 0.72);
}
.sa-story-media img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
  object-position: center;
}
.sa-offer { margin-bottom: clamp(74px, 9vw, 124px); }
.sa-section-title,
.ay-section-title {
  margin: 0 0 30px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.sa-service-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}
.sa-service-card {
  position: relative;
  grid-column: span 6;
  min-height: 228px;
  overflow: hidden;
  padding: clamp(28px, 3.5vw, 44px);
  border-radius: 24px;
  background: #fff;
}
.sa-service-card::before {
  content: "";
  display: block;
  width: 46px;
  height: 5px;
  margin-bottom: 38px;
  border-radius: 999px;
  background: currentColor;
}
.sa-service-card:nth-child(1) {
  grid-column: span 7;
  background: #ffe9dc;
  color: var(--sa-orange);
}
.sa-service-card:nth-child(2) {
  grid-column: span 5;
  border: 1px solid rgba(0, 114, 188, 0.14);
  background: #edf8fd;
  color: var(--accent);
}
.sa-service-card:nth-child(3) {
  grid-column: span 5;
  border: 1px solid rgba(5, 47, 87, 0.11);
  color: var(--pink);
}
.sa-service-card:nth-child(4) {
  grid-column: span 7;
  background: var(--sa-navy);
  color: #7ed7f5;
}
.sa-service-card h4 {
  margin: 0 0 12px;
  color: currentColor;
  font-family: var(--display);
  font-size: clamp(1.28rem, 2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.15;
}
.sa-service-card p {
  max-width: 700px;
  margin: 0;
  color: #526f84;
  line-height: 1.67;
}
.sa-service-card:nth-child(4) p { color: #d2e6f0; }
.sa-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 22px;
}
.sa-detail-card {
  min-height: 100%;
  padding: clamp(32px, 4vw, 54px);
  border: 1px solid rgba(223, 95, 26, 0.16);
  border-radius: 28px;
  background: #fff;
}
.sa-detail-card--dark {
  border-color: transparent;
  background: var(--sa-orange);
  color: #fff;
}
.sa-detail-card h3 {
  margin: 0 0 14px;
  color: var(--sa-navy);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
}
.sa-detail-card--dark h3 { color: #fff; }
.sa-detail-card p {
  margin: 0;
  color: #526f84;
  line-height: 1.7;
}
.sa-detail-card--dark p { color: #fff4ed; }

/* Adolescent & Youth SRH — editorial programme layout */
.ay-programme {
  --ay-plum: #703b91;
  --ay-navy: #052f57;
  position: relative;
  overflow: hidden;
  background: #eef9ff;
  padding: clamp(68px, 8vw, 118px) 0;
}
.ay-programme::before {
  content: "";
  position: absolute;
  right: -180px;
  bottom: 12%;
  width: 320px;
  height: 320px;
  border: 58px solid rgba(112, 59, 145, 0.07);
  border-radius: 50%;
  pointer-events: none;
}
.ay-programme .container { position: relative; }
.ay-story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: stretch;
  gap: clamp(44px, 6vw, 88px);
  margin-bottom: clamp(82px, 10vw, 136px);
}
.ay-story-copy {
  align-self: center;
  padding-block: clamp(12px, 3vw, 44px);
}
.ay-story-copy .section-kicker {
  max-width: 760px;
  color: var(--ay-plum);
  margin-bottom: 22px;
}
.ay-story-copy h2 {
  max-width: 800px;
  margin: 0 0 30px;
  color: var(--ay-navy);
  font-family: var(--display);
  font-size: clamp(2.35rem, 4.35vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.ay-story-copy > p {
  max-width: 780px;
  margin: 0 0 18px;
  color: #526f84;
  font-size: 1.03rem;
  line-height: 1.72;
}
.ay-story-copy > p:last-child {
  margin-bottom: 0;
  color: var(--ay-navy);
  font-weight: 600;
}
.ay-story-media {
  position: relative;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  border-radius: 30px 30px 120px 30px;
  background: #dbeaf0;
  box-shadow: 0 30px 70px -50px rgba(5, 47, 87, 0.72);
}
.ay-story-media img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  object-position: center 38%;
}
.ay-approach { margin-bottom: 28px; }
.ay-approach-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}
.ay-approach-card {
  grid-column: span 6;
  min-height: 250px;
  padding: clamp(28px, 3.5vw, 44px);
  border: 1px solid rgba(5, 47, 87, 0.1);
  border-radius: 24px;
  background: #fff;
}
.ay-approach-card:nth-child(1) {
  grid-column: span 5;
  border-color: transparent;
  background: #f0e9f7;
}
.ay-approach-card:nth-child(2) {
  grid-column: span 7;
  background: #fff;
}
.ay-approach-card--wide {
  grid-column: span 7;
  border-color: transparent;
  background: var(--ay-plum);
  color: #fff;
}
.ay-approach-card--helpline {
  grid-column: span 5;
  border-color: transparent;
  background: #dff5ff;
}
.ay-approach-card h4 {
  max-width: 620px;
  margin: 0 0 14px;
  color: var(--ay-navy);
  font-family: var(--display);
  font-size: clamp(1.32rem, 2.1vw, 1.72rem);
  font-weight: 800;
  line-height: 1.15;
}
.ay-approach-card--wide h4 { color: #fff; }
.ay-approach-card p {
  max-width: 760px;
  margin: 0;
  color: #526f84;
  line-height: 1.7;
}
.ay-approach-card--wide p { color: #f0e8f5; }
.ay-approach-card strong {
  color: #fff;
  font-family: var(--display);
  font-size: 1.28em;
  font-weight: 800;
}
.ay-helpline {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  gap: 16px 24px;
  margin-top: 20px;
  border: 1px solid rgba(112, 59, 145, 0.14);
  background: #fff;
}
.ay-helpline .prog-note-label { color: var(--ay-plum); }
.ay-helpline a { color: var(--pink); }

@media (max-width: 1080px) {
  .sa-story,
  .ay-story {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.8fr);
    gap: 42px;
  }
  .sa-story-media,
  .sa-story-media img { min-height: 520px; }
  .ay-story-media,
  .ay-story-media img { min-height: 560px; }
}
@media (max-width: 820px) {
  .sa-story,
  .ay-story { grid-template-columns: 1fr; }
  .sa-story-copy,
  .ay-story-copy { padding-block: 0; }
  .sa-story-media,
  .sa-story-media img { min-height: 480px; }
  .ay-story-media,
  .ay-story-media img { min-height: 540px; }
  .sa-service-card,
  .sa-service-card:nth-child(1),
  .sa-service-card:nth-child(2),
  .sa-service-card:nth-child(3),
  .sa-service-card:nth-child(4),
  .ay-approach-card,
  .ay-approach-card:nth-child(1),
  .ay-approach-card:nth-child(2),
  .ay-approach-card--wide,
  .ay-approach-card--helpline { grid-column: 1 / -1; }
  .sa-detail-grid { grid-template-columns: 1fr; }
  .ay-helpline {
    grid-template-columns: 1fr;
    align-items: start;
  }
}
@media (max-width: 560px) {
  .sa-programme,
  .ay-programme { padding: 58px 0; }
  .sa-story,
  .ay-story {
    gap: 30px;
    margin-bottom: 74px;
  }
  .sa-story-copy h2,
  .ay-story-copy h2 {
    margin-bottom: 22px;
    font-size: clamp(2.15rem, 11vw, 3rem);
  }
  .sa-story-media {
    min-height: 410px;
    border-radius: 72px 22px 22px 22px;
  }
  .sa-story-media img { min-height: 410px; }
  .ay-story-media {
    min-height: 480px;
    border-radius: 22px 22px 76px 22px;
  }
  .ay-story-media img { min-height: 480px; }
  .sa-service-card,
  .ay-approach-card {
    min-height: 0;
    padding: 28px 24px;
    border-radius: 20px;
  }
  .sa-service-card::before { margin-bottom: 28px; }
  .sa-detail-card {
    padding: 30px 24px;
    border-radius: 22px;
  }
  .ay-helpline { padding: 24px; }
}

/* Cervical Cancer Prevention — editorial programme layout */
.cc-programme {
  --cc-green: #0f8c61;
  --cc-green-deep: #086345;
  --cc-navy: #052f57;
  background: #f5fbf8;
  padding: clamp(68px, 8vw, 118px) 0;
}
.cc-story {
  display: grid;
  grid-template-columns: minmax(360px, 0.84fr) minmax(0, 1.16fr);
  align-items: stretch;
  gap: clamp(42px, 6vw, 88px);
  margin-bottom: 24px;
}
.cc-story-media {
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border-radius: 28px 28px 108px 28px;
  background: #dcebe4;
  box-shadow: 0 30px 70px -52px rgba(5, 47, 87, 0.7);
}
.cc-story-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
}
.cc-story-copy {
  align-self: center;
  padding-block: clamp(14px, 3vw, 46px);
}
.cc-story-copy .section-kicker {
  color: var(--cc-green);
  margin-bottom: 22px;
}
.cc-story-copy h2 {
  max-width: 840px;
  margin: 0 0 30px;
  color: var(--cc-navy);
  font-family: var(--display);
  font-size: clamp(2.35rem, 4.35vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.cc-story-copy > p:last-child {
  max-width: 800px;
  margin: 0;
  color: #506f83;
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  line-height: 1.76;
}
.cc-detail {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: clamp(36px, 5vw, 66px);
  border-radius: 28px;
  background: var(--cc-green-deep);
}
.cc-detail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 100%;
  background: #49c79a;
}
.cc-detail p {
  position: relative;
  max-width: 1120px;
  margin: 0;
  color: #f2fff9;
  font-family: var(--display);
  font-size: clamp(1.08rem, 1.75vw, 1.38rem);
  font-weight: 500;
  line-height: 1.65;
}

/* Health Systems Strengthening — editorial programme layout */
.hs-programme {
  --hs-navy: #052f57;
  --hs-blue: #0879bc;
  position: relative;
  overflow: hidden;
  background: #edf8fe;
  padding: clamp(68px, 8vw, 118px) 0;
}
.hs-programme::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 12%;
  width: 11px;
  height: 340px;
  background: rgba(8, 121, 188, 0.18);
  pointer-events: none;
}
.hs-programme .container { position: relative; }
.hs-story {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: stretch;
  gap: clamp(44px, 6vw, 88px);
  margin-bottom: clamp(82px, 10vw, 136px);
}
.hs-story-copy {
  align-self: center;
  padding-block: clamp(12px, 3vw, 44px);
}
.hs-story-copy .section-kicker {
  color: var(--hs-blue);
  margin-bottom: 22px;
}
.hs-story-copy h2 {
  max-width: 830px;
  margin: 0 0 30px;
  color: var(--hs-navy);
  font-family: var(--display);
  font-size: clamp(2.35rem, 4.35vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.hs-story-copy > p:last-child {
  max-width: 800px;
  margin: 0;
  color: #506f83;
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  line-height: 1.76;
}
.hs-story-media {
  min-height: 570px;
  margin: 0;
  overflow: hidden;
  border-radius: 28px 28px 28px 108px;
  background: #d8e9f2;
  box-shadow: 0 30px 70px -52px rgba(5, 47, 87, 0.7);
}
.hs-story-media img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
  object-position: center;
}
.hs-section-title {
  margin: 0 0 30px;
  color: var(--hs-navy);
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.hs-focus-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}
.hs-focus-card {
  grid-column: span 6;
  min-height: 248px;
  padding: clamp(30px, 3.7vw, 46px);
  border-radius: 24px;
  background: #fff;
}
.hs-focus-card::before {
  content: "";
  display: block;
  width: 48px;
  height: 5px;
  margin-bottom: 38px;
  border-radius: 4px;
  background: currentColor;
}
.hs-focus-card:nth-child(1) {
  grid-column: span 7;
  background: var(--hs-navy);
  color: #76d2f3;
}
.hs-focus-card:nth-child(2) {
  grid-column: span 5;
  border: 1px solid rgba(5, 47, 87, 0.1);
  color: var(--hs-blue);
}
.hs-focus-card:nth-child(3) {
  grid-column: span 5;
  background: #dff4fd;
  color: var(--pink);
}
.hs-focus-card:nth-child(4) {
  grid-column: span 7;
  background: #dff5ec;
  color: var(--green);
}
.hs-focus-card h4 {
  max-width: 650px;
  margin: 0 0 14px;
  color: currentColor;
  font-family: var(--display);
  font-size: clamp(1.32rem, 2.1vw, 1.72rem);
  font-weight: 800;
  line-height: 1.15;
}
.hs-focus-card p {
  max-width: 760px;
  margin: 0;
  color: #506f83;
  line-height: 1.7;
}
.hs-focus-card:nth-child(1) p { color: #d4e7f1; }

@media (max-width: 1080px) {
  .cc-story {
    grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
    gap: 42px;
  }
  .cc-story-media,
  .cc-story-media img { min-height: 560px; }
  .hs-story {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
    gap: 42px;
  }
  .hs-story-media,
  .hs-story-media img { min-height: 520px; }
}
@media (max-width: 820px) {
  .cc-story,
  .hs-story { grid-template-columns: 1fr; }
  .cc-story-media {
    order: 2;
    min-height: 500px;
  }
  .cc-story-media img { min-height: 500px; }
  .cc-story-copy,
  .hs-story-copy { padding-block: 0; }
  .cc-detail { margin-left: 0; }
  .hs-story-media,
  .hs-story-media img { min-height: 480px; }
  .hs-focus-card,
  .hs-focus-card:nth-child(1),
  .hs-focus-card:nth-child(2),
  .hs-focus-card:nth-child(3),
  .hs-focus-card:nth-child(4) { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .cc-programme,
  .hs-programme { padding: 58px 0; }
  .cc-story,
  .hs-story {
    gap: 30px;
    margin-bottom: 28px;
  }
  .cc-story-copy h2,
  .hs-story-copy h2 {
    margin-bottom: 22px;
    font-size: clamp(2.15rem, 11vw, 3rem);
  }
  .cc-story-media {
    min-height: 410px;
    border-radius: 22px 22px 72px 22px;
  }
  .cc-story-media img { min-height: 410px; }
  .cc-detail {
    padding: 30px 24px 32px 30px;
    border-radius: 22px;
  }
  .cc-detail::before { width: 8px; }
  .hs-story { margin-bottom: 74px; }
  .hs-story-media {
    min-height: 410px;
    border-radius: 22px 22px 22px 72px;
  }
  .hs-story-media img { min-height: 410px; }
  .hs-focus-card {
    min-height: 0;
    padding: 28px 24px;
    border-radius: 20px;
  }
  .hs-focus-card::before { margin-bottom: 28px; }
}

/* Our Programmes — balanced multi-colour programme palette */
.programmes-page {
  --programmes-blue-deep: #073d68;
  --programmes-blue: #0878b7;
  --programmes-blue-light: #e8f6fc;
  --programmes-body: #526c7c;
  --programmes-magenta: #c42d72;
  --programmes-magenta-dark: #871e53;
  --programmes-magenta-light: #fbe5f0;
  --programmes-orange: #cf612f;
  --programmes-red: #b83d43;
  --programmes-red-light: #f8dedf;
  --programmes-green: #157b59;
  --programmes-green-light: #e5f5ed;
  --programmes-teal: #14777b;
  --programmes-teal-light: #e1f4f2;
  --programmes-yellow: #b98200;
  --programmes-yellow-light: #fff3c5;
}
.programmes-page .programmes-hero {
  background: #fdf3f8;
}
.programmes-page .programmes-hero-copy h1,
.programmes-page .programmes-intro-lead {
  color: var(--programmes-blue-deep);
}
.programmes-page .programmes-hero-copy p,
.programmes-page .programmes-intro-body {
  color: var(--programmes-body);
}
.programmes-page .programmes-intro {
  background: #fff;
}

/* Programme names are the parent headings; taglines are supporting copy. */
.programmes-page .fp-story-copy .programme-parent-title,
.programmes-page .sa-story-copy .programme-parent-title,
.programmes-page .ay-story-copy .programme-parent-title,
.programmes-page .cc-story-copy .programme-parent-title,
.programmes-page .hs-story-copy .programme-parent-title {
  display: block;
  max-width: 780px;
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: clamp(3.7rem, 6.2vw, 6.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-transform: none;
}
.programmes-page .fp-story-copy .programme-parent-title {
  color: var(--programmes-magenta);
}
.programmes-page .sa-story-copy .programme-parent-title {
  color: var(--programmes-red);
}
.programmes-page .ay-story-copy .programme-parent-title {
  color: var(--programmes-magenta-dark);
  font-size: clamp(3rem, 5vw, 5rem);
}
.programmes-page .cc-story-copy .programme-parent-title {
  color: var(--programmes-magenta);
  font-size: clamp(3.25rem, 5.4vw, 5.4rem);
}
.programmes-page .hs-story-copy .programme-parent-title {
  color: var(--programmes-red);
  font-size: clamp(3.25rem, 5.4vw, 5.4rem);
}
.programmes-page .fp-story-copy .programme-tagline,
.programmes-page .sa-story-copy .programme-tagline,
.programmes-page .ay-story-copy .programme-tagline,
.programmes-page .cc-story-copy .programme-tagline,
.programmes-page .hs-story-copy .programme-tagline {
  max-width: 790px;
  margin: 0 0 30px;
  color: var(--programmes-blue-deep);
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.15vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
}
@media (max-width: 560px) {
  .programmes-page .fp-story-copy .programme-parent-title,
  .programmes-page .sa-story-copy .programme-parent-title,
  .programmes-page .ay-story-copy .programme-parent-title,
  .programmes-page .cc-story-copy .programme-parent-title,
  .programmes-page .hs-story-copy .programme-parent-title {
    margin-bottom: 18px;
    font-size: clamp(2.8rem, 14vw, 3.7rem);
    line-height: 0.94;
  }
  .programmes-page .fp-story-copy .programme-tagline,
  .programmes-page .sa-story-copy .programme-tagline,
  .programmes-page .ay-story-copy .programme-tagline,
  .programmes-page .cc-story-copy .programme-tagline,
  .programmes-page .hs-story-copy .programme-tagline {
    margin-bottom: 24px;
    font-size: clamp(1.72rem, 8.6vw, 2.25rem);
    line-height: 1.08;
  }
}

.programmes-page .fp-programme {
  --fp-navy: var(--programmes-blue-deep);
  --fp-blue: var(--programmes-blue);
  --fp-pink: var(--programmes-magenta);
  background: #fff;
}
.programmes-page .fp-programme::before,
.programmes-page .sa-programme::after,
.programmes-page .ay-programme::before,
.programmes-page .fp-impact::after {
  display: none;
}
.programmes-page .fp-story-lead {
  color: var(--programmes-magenta-dark);
}
.programmes-page .fp-story-body,
.programmes-page .fp-offer-card > p,
.programmes-page .fp-access-copy > p:last-child {
  color: var(--programmes-body);
}
.programmes-page .fp-story-media,
.programmes-page .fp-access-media {
  background: var(--programmes-blue-light);
  box-shadow: 0 30px 70px -52px rgba(7, 61, 104, 0.42);
}
.programmes-page .fp-offer-card--counselling {
  border-color: rgba(8, 120, 183, 0.16);
  background: #f9fcff;
  box-shadow: 0 28px 62px -52px rgba(7, 61, 104, 0.4);
}
.programmes-page .fp-offer-card--methods {
  background: var(--programmes-magenta-light);
  color: var(--programmes-magenta-dark);
}
.programmes-page .fp-offer-card--methods .fp-card-icon {
  background: var(--programmes-yellow-light);
  color: var(--programmes-orange);
}
.programmes-page .fp-offer-card--methods h4,
.programmes-page .fp-offer-card--methods > p,
.programmes-page .fp-methods li {
  color: var(--programmes-magenta-dark);
}
.programmes-page .fp-methods li {
  border-top-color: rgba(196, 45, 114, 0.17);
}
.programmes-page .fp-methods li::before {
  background: var(--programmes-orange);
}
.programmes-page .fp-access {
  border-color: rgba(8, 120, 183, 0.15);
  background: #fff;
  box-shadow: 0 34px 74px -62px rgba(7, 61, 104, 0.42);
}
.programmes-page .fp-access-card {
  border-color: rgba(8, 120, 183, 0.14);
}
.programmes-page .fp-access-card:nth-child(1) {
  background: var(--programmes-blue-light);
}
.programmes-page .fp-access-card:nth-child(2) {
  background: var(--programmes-green-light);
}
.programmes-page .fp-impact {
  background: var(--programmes-magenta-dark);
  color: #fff;
}
.programmes-page .fp-impact-label span {
  background: var(--programmes-yellow-light);
  color: var(--programmes-magenta-dark);
}
.programmes-page .fp-impact-label p {
  color: #ffd76a;
}
.programmes-page .fp-impact > p {
  color: #fff8fb;
}

@media (min-width: 821px) {
  .programmes-page .fp-story,
  .programmes-page .sa-story,
  .programmes-page .ay-story,
  .programmes-page .hs-story {
    grid-template-columns: minmax(0, 0.94fr) minmax(430px, 1.06fr);
    gap: clamp(34px, 5vw, 72px);
  }

  .programmes-page .cc-story {
    grid-template-columns: minmax(430px, 1.06fr) minmax(0, 0.94fr);
    gap: clamp(34px, 5vw, 72px);
  }
}

/* Keep the three Family Planning detail areas visibly nested together. */
.programmes-page .fp-story {
  margin-bottom: clamp(62px, 7vw, 92px);
}
.programmes-page .fp-subsections {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 4.6vw, 64px);
  border: 1px solid rgba(7, 61, 104, 0.12);
  border-radius: 40px;
  background: linear-gradient(180deg, #f7fbfd 0%, #ffffff 100%);
  box-shadow: 0 36px 82px -68px rgba(7, 61, 104, 0.5);
}
.programmes-page .fp-subsections::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(
    90deg,
    var(--programmes-magenta) 0 25%,
    var(--programmes-orange) 25% 50%,
    var(--programmes-blue) 50% 75%,
    var(--programmes-green) 75% 100%
  );
}
.programmes-page .fp-subsections .fp-offer {
  margin: 0;
  padding: 0 0 clamp(58px, 7vw, 88px);
}
.programmes-page .fp-subsections .fp-access {
  margin: 0;
  padding: clamp(58px, 7vw, 88px) 0;
  border: 0;
  border-top: 1px solid rgba(7, 61, 104, 0.12);
  border-bottom: 1px solid rgba(7, 61, 104, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.programmes-page .fp-subsections .fp-impact {
  margin-top: clamp(58px, 7vw, 88px);
}
.programmes-page .fp-subsections .fp-section-head {
  max-width: none;
  margin-bottom: 36px;
}
.programmes-page .fp-subsections .fp-section-head h3 {
  display: flex;
  align-items: center;
  gap: 18px;
}
.programmes-page .fp-subsections .fp-section-head h3::before {
  content: "01";
  display: grid;
  place-items: center;
  width: 54px;
  height: 40px;
  flex: 0 0 54px;
  border-radius: 12px;
  background: var(--programmes-magenta-light);
  color: var(--programmes-magenta);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.programmes-page .fp-subsections .fp-access .fp-section-head h3::before {
  content: "02";
  background: var(--programmes-green-light);
  color: var(--programmes-green);
}
.programmes-page .fp-subsections .fp-impact-label span {
  width: 54px;
  height: 40px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

@media (max-width: 820px) {
  .programmes-page .fp-subsections {
    padding: 34px 28px;
    border-radius: 30px;
  }
}
@media (max-width: 560px) {
  .programmes-page .fp-story {
    margin-bottom: 54px;
  }
  .programmes-page .fp-subsections {
    padding: 26px 18px 20px;
    border-radius: 24px;
  }
  .programmes-page .fp-subsections .fp-offer {
    padding-bottom: 48px;
  }
  .programmes-page .fp-subsections .fp-access {
    padding: 48px 0;
  }
  .programmes-page .fp-subsections .fp-impact {
    margin-top: 48px;
  }
  .programmes-page .fp-subsections .fp-section-head {
    margin-bottom: 26px;
  }
  .programmes-page .fp-subsections .fp-section-head h3 {
    align-items: flex-start;
    gap: 13px;
  }
  .programmes-page .fp-subsections .fp-section-head h3::before,
  .programmes-page .fp-subsections .fp-impact-label span {
    width: 46px;
    height: 36px;
    flex-basis: 46px;
    border-radius: 10px;
  }
}

.programmes-page .sa-programme {
  --sa-orange: #d35632;
  --sa-navy: var(--programmes-blue-deep);
  background: #fff7f2;
}
.programmes-page .sa-story-copy > p:last-child,
.programmes-page .sa-service-card p,
.programmes-page .sa-detail-card p {
  color: var(--programmes-body);
}
.programmes-page .sa-story-media {
  background: #f7e8df;
  box-shadow: 0 30px 70px -52px rgba(7, 61, 104, 0.4);
}
.programmes-page .sa-section-title {
  color: var(--programmes-blue-deep);
}
.programmes-page .sa-service-card:nth-child(1) {
  background: #ffe2d3;
  color: var(--programmes-orange);
}
.programmes-page .sa-service-card:nth-child(2) {
  border-color: rgba(8, 120, 183, 0.15);
  background: var(--programmes-blue-light);
  color: var(--programmes-blue);
}
.programmes-page .sa-service-card:nth-child(3) {
  border-color: rgba(196, 45, 114, 0.16);
  background: #fff;
  color: var(--programmes-magenta);
}
.programmes-page .sa-service-card:nth-child(4) {
  background: var(--programmes-yellow-light);
  color: var(--programmes-red);
}
.programmes-page .sa-service-card:nth-child(4) p {
  color: #6f5e4e;
}
.programmes-page .sa-detail-card {
  border-color: rgba(184, 61, 67, 0.2);
  background: #fff;
}
.programmes-page .sa-detail-card--dark {
  border-color: transparent;
  background: var(--programmes-red-light);
  color: #8c2931;
}
.programmes-page .sa-detail-card--dark h3,
.programmes-page .sa-detail-card--dark p {
  color: #8c2931;
}
.programmes-page .sa-story {
  margin-bottom: clamp(62px, 7vw, 92px);
}
.programmes-page .sa-subsections {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 4.6vw, 64px);
  border: 1px solid rgba(184, 61, 67, 0.16);
  border-radius: 40px;
  background: linear-gradient(180deg, #fffdfb 0%, #ffffff 100%);
  box-shadow: 0 36px 82px -68px rgba(126, 49, 45, 0.5);
}
.programmes-page .sa-subsections::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(
    90deg,
    var(--programmes-orange) 0 25%,
    var(--programmes-red) 25% 50%,
    var(--programmes-magenta) 50% 75%,
    var(--programmes-yellow) 75% 100%
  );
}
.programmes-page .sa-subsections .sa-offer {
  margin: 0;
  padding: 0 0 clamp(58px, 7vw, 88px);
}
.programmes-page .sa-subsections .sa-service-grid {
  align-items: stretch;
}

.programmes-page .sa-subsections .sa-service-card,
.programmes-page .sa-subsections .sa-service-card:nth-child(1),
.programmes-page .sa-subsections .sa-service-card:nth-child(2),
.programmes-page .sa-subsections .sa-service-card:nth-child(3),
.programmes-page .sa-subsections .sa-service-card:nth-child(4) {
  display: flex;
  flex-direction: column;
  grid-column: span 6;
  min-height: 270px;
  height: 100%;
}
.programmes-page .sa-subsections .sa-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  padding-top: clamp(58px, 7vw, 88px);
  border-top: 1px solid rgba(184, 61, 67, 0.14);
}
.programmes-page .sa-subsections .sa-detail-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  height: 100%;
}
.programmes-page .sa-subsections .sa-section-title,
.programmes-page .sa-subsections .sa-detail-card h3 {
  display: flex;
  align-items: center;
  gap: 18px;
}
.programmes-page .sa-subsections .sa-section-title::before,
.programmes-page .sa-subsections .sa-detail-card h3::before {
  display: grid;
  place-items: center;
  width: 54px;
  height: 40px;
  flex: 0 0 54px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.programmes-page .sa-subsections .sa-section-title::before {
  content: "01";
  background: #ffe2d3;
  color: var(--programmes-orange);
}
.programmes-page .sa-subsections .sa-detail-card:nth-child(1) h3::before {
  content: "02";
  background: var(--programmes-blue-light);
  color: var(--programmes-blue);
}
.programmes-page .sa-subsections .sa-detail-card:nth-child(2) h3::before {
  content: "03";
  background: var(--programmes-yellow-light);
  color: var(--programmes-red);
}
.programmes-page .sa-pratigya-link {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}
.programmes-page .sa-pratigya-link::after {
  content: " ↗";
  white-space: nowrap;
}
.programmes-page .sa-pratigya-link:hover {
  color: var(--programmes-blue-deep);
}
@media (max-width: 820px) {
  .programmes-page .sa-subsections {
    padding: 34px 28px;
    border-radius: 30px;
  }
}
@media (max-width: 560px) {
  .programmes-page .sa-story {
    margin-bottom: 54px;
  }
  .programmes-page .sa-subsections {
    padding: 26px 18px 20px;
    border-radius: 24px;
  }
  .programmes-page .sa-subsections .sa-offer {
    padding-bottom: 48px;
  }
  .programmes-page .sa-subsections .sa-detail-grid {
    padding-top: 48px;
  }
  .programmes-page .sa-subsections .sa-section-title,
  .programmes-page .sa-subsections .sa-detail-card h3 {
    align-items: flex-start;
    gap: 13px;
  }
  .programmes-page .sa-subsections .sa-section-title::before,
  .programmes-page .sa-subsections .sa-detail-card h3::before {
    width: 46px;
    height: 36px;
    flex-basis: 46px;
    border-radius: 10px;
  }
}

.programmes-page .ay-programme {
  --ay-plum: var(--programmes-magenta-dark);
  --ay-navy: var(--programmes-blue-deep);
  background: #fbf1f7;
}
.programmes-page .ay-section-title {
  color: var(--programmes-magenta-dark);
}
.programmes-page .ay-story-copy > p,
.programmes-page .ay-approach-card p {
  color: var(--programmes-body);
}
.programmes-page .ay-story-media {
  background: var(--programmes-magenta-light);
  box-shadow: 0 30px 70px -52px rgba(7, 61, 104, 0.4);
}
.programmes-page .ay-approach-card {
  border-color: rgba(196, 45, 114, 0.14);
}
.programmes-page .ay-approach-card:nth-child(1) {
  background: var(--programmes-magenta-light);
}
.programmes-page .ay-approach-card:nth-child(2) {
  background: #fff;
}
.programmes-page .ay-approach-card--wide {
  background: #116f73;
  color: #fff;
}
.programmes-page .ay-approach-card--helpline {
  background: var(--programmes-yellow-light);
}
.programmes-page .ay-approach-card--wide h4,
.programmes-page .ay-approach-card--wide p {
  color: #f4ffff;
}
.programmes-page .ay-approach-card strong {
  color: #ffe083;
}
.programmes-page .ay-approach-card--helpline h4 {
  color: var(--programmes-teal);
}
.programmes-page .ay-helpline {
  border-color: rgba(20, 119, 123, 0.2);
  background: #fff;
}
.programmes-page .ay-story {
  margin-bottom: clamp(62px, 7vw, 92px);
}
.programmes-page .ay-subsections {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 4.6vw, 64px);
  border: 1px solid rgba(135, 30, 83, 0.15);
  border-radius: 40px;
  background: linear-gradient(180deg, #fffafd 0%, #ffffff 100%);
  box-shadow: 0 36px 82px -68px rgba(103, 42, 91, 0.5);
}
.programmes-page .ay-subsections::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(
    90deg,
    var(--programmes-magenta-dark) 0 25%,
    var(--programmes-magenta) 25% 50%,
    var(--programmes-teal) 50% 75%,
    var(--programmes-yellow) 75% 100%
  );
}
.programmes-page .ay-subsections .ay-approach {
  margin: 0;
}
.programmes-page .ay-subsections .ay-section-title {
  display: block;
}
.programmes-page .ay-subsections .ay-helpline {
  margin-top: 24px;
}
@media (max-width: 820px) {
  .programmes-page .ay-subsections {
    padding: 34px 28px;
    border-radius: 30px;
  }
}
@media (max-width: 560px) {
  .programmes-page .ay-story {
    margin-bottom: 54px;
  }
  .programmes-page .ay-subsections {
    padding: 26px 18px 20px;
    border-radius: 24px;
  }
}

.programmes-page .cc-programme {
  --cc-green: var(--programmes-green);
  --cc-green-deep: #126448;
  --cc-navy: #0d6249;
  background: #f0faf5;
}
.programmes-page .cc-story-media {
  background: var(--programmes-green-light);
  box-shadow: 0 30px 70px -52px rgba(18, 100, 72, 0.4);
}
.programmes-page .cc-story-copy > p:last-child {
  color: #506e66;
}
.programmes-page .cc-story-copy .section-kicker {
  color: var(--programmes-magenta);
}
.programmes-page .cc-detail::before {
  background: #f2c84b;
}
.programmes-page .cc-detail p {
  color: #f5fff9;
}
.programmes-page .cc-story {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.programmes-page .hs-programme {
  --hs-navy: var(--programmes-blue-deep);
  --hs-blue: var(--programmes-blue);
  background: #f9faf8;
}
.programmes-page .hs-programme::after {
  background: rgba(20, 119, 123, 0.24);
}
.programmes-page .hs-story-copy .section-kicker {
  color: var(--programmes-red);
}
.programmes-page .hs-story-copy > p:last-child,
.programmes-page .hs-focus-card p {
  color: var(--programmes-body);
}
.programmes-page .hs-story-media {
  background: var(--programmes-blue-light);
  box-shadow: 0 30px 70px -52px rgba(7, 61, 104, 0.42);
}
.programmes-page .hs-section-title {
  color: var(--programmes-blue-deep);
}
.programmes-page .hs-focus-card:nth-child(1) {
  background: #a9323e;
  color: #fff;
}
.programmes-page .hs-focus-card:nth-child(2) {
  border-color: rgba(8, 120, 183, 0.16);
  background: #fff;
  color: var(--programmes-blue);
}
.programmes-page .hs-focus-card:nth-child(3) {
  background: var(--programmes-yellow-light);
  color: var(--programmes-red);
}
.programmes-page .hs-focus-card:nth-child(4) {
  background: var(--programmes-teal-light);
  color: var(--programmes-teal);
}
.programmes-page .hs-focus-card:nth-child(1) p {
  color: #fff3f3;
}
.programmes-page .hs-story {
  margin-bottom: clamp(62px, 7vw, 92px);
}
.programmes-page .hs-subsections {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 4.6vw, 64px);
  border: 1px solid rgba(7, 61, 104, 0.13);
  border-radius: 40px;
  background: linear-gradient(180deg, #f8fcfd 0%, #ffffff 100%);
  box-shadow: 0 36px 82px -68px rgba(7, 61, 104, 0.5);
}
.programmes-page .hs-subsections::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(
    90deg,
    var(--programmes-red) 0 25%,
    var(--programmes-yellow) 25% 50%,
    var(--programmes-teal) 50% 75%,
    var(--programmes-blue) 75% 100%
  );
}
.programmes-page .hs-subsections .hs-section-title {
  display: block;
}

.programmes-page .hs-subsections .hs-focus-grid {
  align-items: stretch;
}

.programmes-page .hs-subsections .hs-focus-card,
.programmes-page .hs-subsections .hs-focus-card:nth-child(1),
.programmes-page .hs-subsections .hs-focus-card:nth-child(2),
.programmes-page .hs-subsections .hs-focus-card:nth-child(3),
.programmes-page .hs-subsections .hs-focus-card:nth-child(4) {
  display: flex;
  flex-direction: column;
  grid-column: span 6;
  min-height: 320px;
  height: 100%;
}

@media (max-width: 820px) {
  .programmes-page .hs-subsections {
    padding: 34px 28px;
    border-radius: 30px;
  }

  .programmes-page .hs-subsections .hs-focus-card,
  .programmes-page .hs-subsections .hs-focus-card:nth-child(1),
  .programmes-page .hs-subsections .hs-focus-card:nth-child(2),
  .programmes-page .hs-subsections .hs-focus-card:nth-child(3),
  .programmes-page .hs-subsections .hs-focus-card:nth-child(4) {
    min-height: 0;
    height: auto;
  }
}
@media (max-width: 560px) {
  .programmes-page .hs-story {
    margin-bottom: 54px;
  }
  .programmes-page .hs-subsections {
    padding: 26px 18px 20px;
    border-radius: 24px;
  }
}

/* Our Approach page — balanced VIBGYOR editorial system.
   The Impact pages reuse the same tokens so the two sections read as one family. */
.work-approach-page,
.impact-dashboard-page,
.stories-page,
.involve-partner-page {
  --wa-violet: #6f3f91;
  --wa-violet-light: #f1e8fa;
  --wa-indigo: #354d98;
  --wa-indigo-light: #e9edfb;
  --wa-blue: #0878b7;
  --wa-blue-light: #e8f6fc;
  --wa-green: #157b59;
  --wa-green-light: #e5f5ed;
  --wa-yellow: #a87700;
  --wa-yellow-light: #fff2bf;
  --wa-orange: #cc612f;
  --wa-orange-light: #ffe4d5;
  --wa-red: #b83d46;
  --wa-red-light: #fae2e4;
  --wa-ink: #073d68;
  --wa-body: #526c7c;
}

.work-approach-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: clamp(520px, 33vw, 680px);
  overflow: hidden;
  background: var(--wa-violet-light);
}
.work-approach-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(52px, 6vw, 96px) clamp(34px, 5vw, 88px);
}
.work-approach-hero .hero-kicker {
  margin: 0 0 18px;
  color: var(--wa-orange);
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.work-approach-hero h1 {
  margin: 0;
  color: var(--wa-indigo);
  font-family: var(--display);
  font-size: clamp(3.4rem, 5.5vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-transform: uppercase;
}
.work-approach-hero-copy > p:last-child {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--wa-body);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 500;
  line-height: 1.6;
}
.work-approach-hero-media {
  min-width: 0;
  margin: 0;
  overflow: hidden;
}
.work-approach-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0 0 0 260px;
}

.work-approach-branches {
  display: grid;
  gap: clamp(26px, 3.5vw, 52px);
  padding: clamp(48px, 6vw, 88px) 0;
  background: linear-gradient(180deg, #fffaf5 0%, #f8fbfc 100%);
}
.work-approach-branches > section {
  width: min(calc(100% - 48px), 1500px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(7, 61, 104, 0.1);
  border-radius: 44px;
  box-shadow: 0 30px 76px -66px rgba(7, 61, 104, 0.42);
}
.work-approach-service {
  padding: clamp(72px, 8vw, 120px) 0;
  background: #fff;
}
.work-approach-heading {
  max-width: 1060px;
  margin-bottom: clamp(42px, 6vw, 70px);
}
.work-approach-parent-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5.2vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.96;
}
.work-approach-heading .work-approach-parent-title {
  color: var(--wa-blue);
}
.work-approach-tagline {
  max-width: 980px;
  margin: 22px 0 28px;
  color: var(--wa-indigo);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.3vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.work-approach-heading .prog-intro,
.work-approach-advocacy .prog-intro,
.work-approach-research .prog-intro {
  max-width: none;
  margin: 0;
  color: var(--wa-body);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.72;
}
.work-approach-models {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 22px;
}
.work-approach-model {
  padding: clamp(32px, 4vw, 52px);
  border-radius: 28px;
}
.work-approach-model-media,
.work-approach-process-media,
.work-approach-advocacy-media,
.work-approach-research-media {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
}
.work-approach-model-media img,
.work-approach-process-media img,
.work-approach-advocacy-media img,
.work-approach-research-media img,
.work-approach-advocacy-brand img {
  display: block;
  width: 100%;
}
.work-approach-model::before,
.work-approach-process::before,
.work-approach-research-detail::before {
  content: "";
  display: block;
  width: 50px;
  height: 6px;
  margin-bottom: 38px;
  border-radius: 5px;
  background: currentColor;
}
.work-approach-model h3,
.work-approach-process h3 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 800;
  line-height: 1.14;
}
.work-approach-model p,
.work-approach-process p {
  margin: 0 0 18px;
  line-height: 1.72;
}
.work-approach-model p:last-child,
.work-approach-process p:last-child {
  margin-bottom: 0;
}
.work-approach-model--clinics {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  grid-template-rows: auto auto 1fr;
  align-items: start;
  column-gap: clamp(36px, 6vw, 86px);
  background: var(--wa-violet-light);
  color: var(--wa-violet);
}
.work-approach-model--clinics::before {
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 24px;
}
.work-approach-model-media--clinics {
  grid-column: 1;
  grid-row: 1 / span 3;
  align-self: stretch;
  min-height: 100%;
}
.work-approach-model-media--clinics img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}
.work-approach-model--clinics h3 {
  grid-column: 2;
  grid-row: 2;
}
.work-approach-model--clinics .work-approach-model-copy {
  grid-column: 2;
  grid-row: 3;
}
.work-approach-model--clinics p {
  color: #625c73;
}
.work-approach-cot-group {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  align-items: start;
  gap: 0;
  min-width: 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--wa-indigo);
}
.work-approach-model--cot {
  min-width: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
}
.work-approach-model-media--cot {
  margin: 0 0 26px;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.08);
}
.work-approach-model-media--cot img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.work-approach-model--cot p {
  color: #eef1ff;
}
.work-approach-process {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: center;
  margin: clamp(22px, 2.4vw, 34px);
  padding: clamp(26px, 3.5vw, 40px);
  padding-block: clamp(24px, 3vw, 34px);
  border-radius: 22px;
  background: var(--wa-yellow-light);
  color: #6b5000;
}
.work-approach-process::before {
  margin-bottom: 24px;
  background: var(--wa-orange);
}
.work-approach-process h4 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.15;
}
.work-approach-process p {
  color: #625c48;
}
.work-approach-process-media {
  margin-top: clamp(18px, 2.1vw, 28px);
  padding-top: 0;
  aspect-ratio: 4 / 3;
}
.work-approach-process-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.work-approach-advocacy {
  padding: clamp(72px, 8vw, 120px) 0;
  background: var(--wa-red-light);
}
.work-approach-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  gap: clamp(42px, 7vw, 104px);
}
.work-approach-split-heading {
  align-self: start;
}
.work-approach-split-heading .work-approach-parent-title {
  color: var(--wa-red);
}
.work-approach-split-heading .work-approach-tagline {
  margin-bottom: 0;
  color: var(--wa-orange);
}
.work-approach-advocacy-intro {
  display: grid;
  align-content: start;
  gap: 28px;
  min-height: 100%;
  padding: clamp(34px, 4.5vw, 58px);
  border: 1px solid rgba(184, 61, 70, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 244, 244, 0.9) 100%);
}
.work-approach-advocacy-intro .prog-intro {
  color: #6e5c64;
}
.work-approach-advocacy-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.work-approach-advocacy-points li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--wa-red);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.35;
  box-shadow: inset 0 0 0 1px rgba(184, 61, 70, 0.1);
}
.work-approach-advocacy-copy {
  display: flex;
  flex-direction: column;
  /* This card holds less than the Advocacy panel it is stretched to match, so
     spread the surplus height evenly between its blocks. Pinning the CTA to the
     bottom instead left one ~150px hole above it. */
  justify-content: space-between;
  gap: 22px;
  padding: clamp(34px, 4.5vw, 58px);
  border: 1px solid rgba(111, 63, 145, 0.16);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 68px -58px rgba(111, 63, 145, 0.46);
}
.work-approach-advocacy-brand {
  width: min(100%, 220px);
}
.work-approach-advocacy-brand img {
  height: auto;
}
.work-approach-advocacy-media {
  aspect-ratio: 12 / 5;
  background: #f8f2f4;
}
.work-approach-advocacy-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.work-approach-advocacy-copy .prog-intro + .prog-intro {
  margin-top: 22px;
}
.work-approach-advocacy-copy .btn-solid {
  background: var(--wa-violet);
}
.work-approach-advocacy-copy .btn-solid:hover {
  background: var(--wa-indigo);
  color: #fff;
}

.work-approach-research {
  padding: clamp(72px, 8vw, 120px) 0;
  background: var(--wa-blue-light);
}
.work-approach-research-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  align-items: stretch;
  column-gap: clamp(36px, 6vw, 86px);
  row-gap: clamp(28px, 4vw, 44px);
}
.work-approach-research-content {
  display: contents;
}
.work-approach-research-heading {
  grid-column: 1;
  align-self: center;
}
.work-approach-research-heading .work-approach-parent-title {
  color: var(--wa-green);
}
.work-approach-research-heading .work-approach-tagline {
  color: var(--wa-blue);
}
.work-approach-research-media {
  grid-column: 2;
  aspect-ratio: 4 / 3;
  background: rgba(21, 123, 89, 0.08);
}
.work-approach-research-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.work-approach-research-detail {
  grid-column: 1 / -1;
  margin: 0;
  padding: clamp(34px, 4.5vw, 58px);
  border-radius: 28px;
  background: var(--wa-yellow-light);
  color: #625c48;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.74;
}
/* Matches the heading treatment of the other yellow panel on this page. */
.work-approach-research-detail h4 {
  margin: 0 0 16px;
  color: #6b5000;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.work-approach-research-detail p {
  margin: 0;
}
.work-approach-research-detail::before {
  color: var(--wa-orange);
}

.work-approach-cta .about-cta-panel {
  background: var(--wa-violet);
}
.work-approach-cta .about-cta-panel .btn-solid {
  background: var(--wa-yellow-light);
  color: #473b19;
}
.work-approach-cta .about-cta-panel .btn-solid:hover {
  background: #fff;
}

@media (max-width: 980px) {
  .work-approach-split,
  .work-approach-research-grid {
    grid-template-columns: 1fr;
  }
  .work-approach-research-heading,
  .work-approach-research-media,
  .work-approach-research-detail {
    grid-column: 1;
  }
}
@media (max-width: 820px) {
  .work-approach-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .work-approach-hero-copy {
    padding: 52px 32px;
  }
  .work-approach-hero h1 {
    font-size: clamp(3.1rem, 11vw, 5rem);
  }
  .work-approach-hero-media {
    min-height: clamp(300px, 68vw, 500px);
  }
  .work-approach-hero-media img {
    min-height: inherit;
    border-radius: 0 0 0 140px;
  }
  .work-approach-branches > section {
    width: min(calc(100% - 32px), 1500px);
    border-radius: 32px;
  }
  .work-approach-cot-group {
    grid-template-columns: 1fr;
  }
  .work-approach-model--clinics {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 24px;
  }
  .work-approach-model--clinics .work-approach-model-media--clinics,
  .work-approach-model--clinics::before,
  .work-approach-model--clinics h3,
  .work-approach-model--clinics .work-approach-model-copy {
    grid-column: 1;
    grid-row: auto;
  }
  .work-approach-model-media--clinics img {
    min-height: 280px;
  }
  .work-approach-model--clinics h3 {
    margin-bottom: 18px;
  }
  .work-approach-advocacy-points {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .work-approach-hero-copy {
    padding: 44px 24px;
  }
  .work-approach-hero h1 {
    font-size: clamp(2.65rem, 13vw, 3.7rem);
  }
  .work-approach-service,
  .work-approach-advocacy,
  .work-approach-research {
    padding: 58px 0;
  }
  .work-approach-branches {
    gap: 22px;
    padding: 28px 0;
  }
  .work-approach-branches > section {
    width: calc(100% - 24px);
    border-radius: 24px;
  }
  .work-approach-parent-title {
    font-size: clamp(2.65rem, 13vw, 3.7rem);
  }
  .work-approach-tagline {
    margin: 18px 0 24px;
    font-size: clamp(1.65rem, 8vw, 2.25rem);
  }
  .work-approach-model,
  .work-approach-process,
  .work-approach-advocacy-copy,
  .work-approach-research-detail {
    padding: 28px 24px;
    border-radius: 21px;
  }
  .work-approach-model-media,
  .work-approach-process-media,
  .work-approach-advocacy-media,
  .work-approach-research-media {
    border-radius: 18px;
  }
  .work-approach-advocacy-points {
    grid-template-columns: 1fr;
  }
  .work-approach-model::before,
  .work-approach-research-detail::before {
    margin-bottom: 28px;
  }
}

/* Contact page — colourful editorial layout */
.contact-page {
  --contact-violet: #6f3f91;
  --contact-violet-light: #f1e8fa;
  --contact-indigo: #354d98;
  --contact-indigo-light: #e9edfb;
  --contact-blue: #0878b7;
  --contact-blue-light: #e8f6fc;
  --contact-green: #157b59;
  --contact-green-light: #e5f5ed;
  --contact-yellow: #a87700;
  --contact-yellow-light: #fff2bf;
  --contact-orange: #c96032;
  --contact-orange-light: #ffe4d5;
  --contact-red: #b83d46;
  --contact-red-light: #fae2e4;
  --contact-ink: #073d68;
  --contact-body: #526c7c;
}

.contact-page-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: clamp(500px, 32vw, 650px);
  overflow: hidden;
  background: #fff8dc;
}
.contact-page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(52px, 6vw, 96px) clamp(34px, 5vw, 88px);
}
.contact-page-hero h1 {
  margin: 0;
  color: var(--contact-indigo);
  font-family: var(--display);
  font-size: clamp(3.8rem, 6.3vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
  text-transform: uppercase;
}
.contact-page-hero-copy p {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--contact-body);
  font-size: clamp(1.05rem, 1.45vw, 1.24rem);
  line-height: 1.7;
}
.contact-page-hero-media {
  min-width: 0;
  margin: 0;
  overflow: hidden;
}
.contact-page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  border-radius: 0 0 0 250px;
}

.contact-page .contact-section {
  padding: clamp(72px, 8vw, 118px) 0;
}
.contact-page .contact-section .section-kicker {
  margin-bottom: 16px;
}
.contact-page .contact-section h2 {
  color: var(--contact-ink);
  font-size: clamp(2.35rem, 4vw, 3.75rem);
  letter-spacing: -0.035em;
  line-height: 1.03;
}
.contact-page .contact-overview {
  background: #fff;
}
.contact-page .contact-overview .section-kicker {
  color: var(--contact-red);
}
.contact-page .contact-methods {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}
.contact-page .contact-method {
  --method-accent: var(--contact-blue);
  --method-soft: var(--contact-blue-light);
  position: relative;
  min-width: 0;
  min-height: 154px;
  gap: 24px;
  padding: 34px 36px;
  overflow: hidden;
  border: 1px solid rgba(7, 61, 104, 0.1);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 54px -44px rgba(7, 61, 104, 0.46);
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
}
.contact-page .contact-method::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--method-accent);
}
.contact-page .contact-method:first-child {
  --method-accent: var(--contact-blue);
  --method-soft: var(--contact-blue-light);
}
.contact-page .contact-method:nth-child(2) {
  --method-accent: var(--contact-red);
  --method-soft: var(--contact-red-light);
}
.contact-page .contact-method .ico {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--method-soft);
  color: var(--method-accent);
}
.contact-page .contact-method .label {
  color: var(--contact-body);
}
.contact-page .contact-method .value {
  color: var(--contact-ink);
}
.contact-page .contact-method:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -42px rgba(7, 61, 104, 0.55);
}
.contact-page .contact-method .value {
  font-size: clamp(1.12rem, 1.6vw, 1.35rem);
}

.contact-page .office-grid {
  gap: 22px;
}
.contact-page .office-card {
  border: 0;
  border-radius: 28px;
}
.contact-page .office-card--delhi {
  background: var(--contact-indigo-light);
}
.contact-page .office-card--jaipur {
  background: var(--contact-orange-light);
}
.contact-page .office-card .office-body {
  padding: 34px 38px;
}
.contact-page .office-card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}
.contact-page .office-card h4 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-page .office-card--delhi h3,
.contact-page .office-card--delhi h4 {
  color: var(--contact-indigo);
}
.contact-page .office-card--jaipur h3,
.contact-page .office-card--jaipur h4 {
  color: var(--contact-orange);
}
.contact-page .office-card address {
  color: var(--contact-body);
}
.contact-page .office-card--delhi address svg {
  color: var(--contact-indigo);
}
.contact-page .office-card--jaipur address svg {
  color: var(--contact-red);
}
.contact-page .office-map {
  aspect-ratio: 16 / 8.5;
}

.contact-page #locations {
  background: #f4faf7;
}
.contact-page #locations .section-kicker {
  color: var(--contact-green);
}
.contact-page #locations h2 {
  color: var(--contact-green);
}
.contact-page .clinic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}
.contact-page .clinic-card {
  flex: none;
  grid-column: auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 348px;
  padding: 64px 32px 32px;
  border: 0;
  background: var(--acc-soft);
  box-shadow: none;
  cursor: pointer;
}
.contact-page .clinic-card:nth-child(7) {
  grid-column: 2;
}
.contact-page .clinic-card::before {
  top: 32px;
  left: 32px;
  right: auto;
  width: 48px;
  height: 5px;
  border-radius: 4px;
}
.contact-page .clinic-card h3::before {
  background-color: var(--acc);
}
.contact-page .clinic-card address {
  color: #536b75;
  margin-bottom: 26px;
}
.contact-page .clinic-card .phone {
  position: relative;
  z-index: 2;
  margin-top: auto;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.82);
}
.contact-page .clinic-card .clinic-map-hit {
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
}
.contact-page .clinic-card .clinic-map-hit:focus-visible {
  outline: 4px solid var(--acc);
  outline-offset: 4px;
}
.contact-page .clinic-card:nth-child(7n + 1) { --acc: #b92d6c; --acc-soft: #fbe5f0; }
.contact-page .clinic-card:nth-child(7n + 2) { --acc: #6f3f91; --acc-soft: #f1e8fa; }
.contact-page .clinic-card:nth-child(7n + 3) { --acc: #c96032; --acc-soft: #ffe4d5; }
.contact-page .clinic-card:nth-child(7n + 4) { --acc: #157b59; --acc-soft: #e5f5ed; }
.contact-page .clinic-card:nth-child(7n + 5) { --acc: #0878b7; --acc-soft: #e8f6fc; }
.contact-page .clinic-card:nth-child(7n + 6) { --acc: #b83d46; --acc-soft: #fae2e4; }
.contact-page .clinic-card:nth-child(7n + 7) { --acc: #a87700; --acc-soft: #fff2bf; }

.contact-page .enquiry-section {
  background: var(--contact-violet-light);
}
.contact-page .contact-enquiry-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  align-items: stretch;
  gap: 24px;
}
.contact-page .enquiry-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
  margin: 0;
  padding: clamp(36px, 5vw, 64px);
  border-radius: 28px;
  background: var(--contact-violet);
  color: #fff;
  text-align: left;
}
.contact-page .enquiry-head .section-kicker {
  color: #ffe27b;
}
.contact-page .enquiry-head h2 {
  margin: 0 0 20px;
  color: #fff;
}
.contact-page .enquiry-head .enquiry-intro {
  color: #f4ecfa;
  line-height: 1.7;
}
.contact-page .enquiry-card {
  max-width: none;
  margin: 0;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(111, 63, 145, 0.13);
  background: #fff;
  box-shadow: 0 28px 68px -56px rgba(52, 49, 112, 0.48);
}
.contact-page .enquiry-card form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.contact-page .enquiry-card .field {
  margin: 0;
}
.contact-page .enquiry-card .field:nth-child(3),
.contact-page .enquiry-card .field:nth-child(4),
.contact-page .enquiry-card .btn-solid {
  grid-column: 1 / -1;
}
.contact-page .field input,
.contact-page .field textarea {
  border-color: rgba(53, 77, 152, 0.2);
  border-radius: 12px;
  background: #fbfcff;
}
.contact-page .field input:focus,
.contact-page .field textarea:focus {
  outline-color: var(--contact-indigo);
}
.contact-page .enquiry-card .btn-solid {
  background: var(--contact-red);
}
.contact-page .enquiry-card .btn-solid:hover {
  background: var(--contact-violet);
  color: #fff;
}

@media (max-width: 1080px) {
  .contact-page .clinic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-page .clinic-card {
    grid-column: auto;
  }
  .contact-page .clinic-card:nth-child(7) {
    grid-column: 1 / -1;
    width: calc((100% - 24px) / 2);
    justify-self: center;
  }
}
@media (max-width: 820px) {
  .contact-page-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .contact-page-hero-copy {
    padding: 52px 32px;
  }
  .contact-page-hero-media {
    min-height: clamp(300px, 68vw, 480px);
  }
  .contact-page-hero-media img {
    min-height: inherit;
    border-radius: 0 0 0 140px;
  }
  .contact-page .contact-methods,
  .contact-page .contact-enquiry-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .contact-page-hero-copy {
    padding: 44px 24px;
  }
  .contact-page-hero h1 {
    font-size: clamp(3.2rem, 17vw, 4.2rem);
  }
  .contact-page .contact-section {
    padding: 58px 0;
  }
  .contact-page .contact-method,
  .contact-page .office-card .office-body,
  .contact-page .enquiry-head,
  .contact-page .enquiry-card {
    padding: 28px 24px;
  }
  .contact-page .clinic-card,
  .contact-page .clinic-card:nth-child(7) {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 380px;
  }
  .contact-page .enquiry-card form {
    grid-template-columns: 1fr;
  }
  .contact-page .enquiry-card .field,
  .contact-page .enquiry-card .btn-solid {
    grid-column: 1 / -1;
  }
}

/* ---- Inner pages: responsive ---- */
@media (max-width: 1200px) {
  .objective-grid { grid-template-columns: 1fr 1fr; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .clinic-card { flex-basis: calc(33.333% - 15px); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .doc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .clinic-card { flex-basis: calc(50% - 11px); }
}
@media (max-width: 560px) {
  .clinic-card { flex-basis: 100%; }
}
@media (max-width: 1024px) {
  .stats-row.stats-4 { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 820px) {
  .about-hero { grid-template-columns: 1fr; }
  .about-hero-copy,
  .about-hero-media { min-width: 0; }
  .about-hero-media img { min-height: 260px; border-radius: 0 0 0 140px; }
  .about-who-grid { grid-template-columns: 1fr; }
  .about-who-media img { min-height: 300px; border-radius: 0 0 160px 0; }
  .about-cta { grid-template-columns: 1fr; }
  .contact-methods { grid-template-columns: 1fr; }
  .office-grid { grid-template-columns: 1fr; }
  .mv-split { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .about-panel-grid { grid-template-columns: 1fr; }
  .about-panel-media img { min-height: 300px; border-radius: 0 0 0 120px; }
}
@media (max-width: 620px) {
  .leader-card { grid-template-columns: 1fr; gap: 18px; }
  .leader-photo { max-width: 180px; }
}
@media (max-width: 560px) {
  .objective-grid { grid-template-columns: 1fr; }
  .metric-grid { grid-template-columns: 1fr; }
  .stats-row.stats-4 { grid-template-columns: 1fr; }
  .logo-slide { gap: 10px; }
  .logo-card { min-height: 96px; padding: 12px; border-radius: 12px; }
  .logo-ph { font-size: 0.72rem; }
  .logo-card img { max-height: 60px; }
}
@media (max-width: 360px) {
  .about-hero-copy { padding: 42px 24px; }
  .about-hero h1 { font-size: 2.2rem; }
}

/* ==========================================================================
   AWARDS & RECOGNITION
   ========================================================================== */
.awards-page {
  --awards-navy: #073d68;
  --awards-copy: #4f6d80;
  background: #fffaf5;
}
.awards-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 213, 64, 0.34), transparent 24%),
    radial-gradient(circle at 8% 88%, rgba(215, 25, 116, 0.16), transparent 28%),
    linear-gradient(118deg, #fff8ed 0%, #fff2f8 52%, #eef9f6 100%);
}
.awards-hero::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -150px;
  width: 360px;
  height: 360px;
  border: 46px solid rgba(12, 133, 177, 0.1);
  border-radius: 50%;
}
.awards-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
  min-height: 520px;
  padding-block: clamp(64px, 8vw, 110px);
}
.awards-hero-copy {
  max-width: 790px;
}
.awards-hero .hero-kicker {
  margin: 0 0 22px;
  color: #c42d72;
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.awards-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--awards-navy);
  font-family: var(--display);
  font-size: clamp(4rem, 7.3vw, 7.2rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.88;
}
.awards-hero-highlight {
  position: relative;
  min-height: 330px;
  padding: clamp(34px, 5vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(7, 61, 104, 0.09);
  border-radius: 34px 34px 112px 34px;
  background: #fff;
  box-shadow: 0 36px 80px -58px rgba(7, 61, 104, 0.7);
}
.awards-hero-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, #d71974, #ef5b2a, #f0bd2f, #14956b, #0878b7, #733e9f);
}
.awards-hero-highlight strong {
  display: block;
  color: #d71974;
  font-family: var(--display);
  font-size: clamp(6rem, 10vw, 9.5rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.78;
}
.awards-hero-highlight span {
  display: block;
  margin-top: 22px;
  color: var(--awards-navy);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 800;
  line-height: 1.05;
}
.awards-hero-highlight p {
  max-width: 280px;
  margin: 15px 0 0;
  color: var(--awards-copy);
  font-size: 0.96rem;
  line-height: 1.55;
}
.awards-timeline-section {
  padding: clamp(72px, 9vw, 124px) 0;
  background: #fff;
}
.awards-timeline {
  position: relative;
  display: grid;
  gap: clamp(28px, 4vw, 46px);
}
.award-card {
  --award-accent: #d71974;
  --award-surface: #fff0f7;
  position: relative;
  display: grid;
  grid-template-columns: 184px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 58px);
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid color-mix(in srgb, var(--award-accent) 18%, transparent);
  border-radius: 32px;
  background: var(--award-surface);
  box-shadow: 0 30px 70px -58px rgba(7, 61, 104, 0.48);
}
.award-card:nth-child(2) {
  --award-accent: #c63d46;
  --award-surface: #fff6d7;
}
.award-card:nth-child(3) {
  --award-accent: #733e9f;
  --award-surface: #f2e9fa;
}
.award-card:nth-child(4) {
  --award-accent: #0878b7;
  --award-surface: #e9f6fd;
}
.award-card:nth-child(5) {
  --award-accent: #d85c28;
  --award-surface: #fff0e3;
}
.award-card:nth-child(6) {
  --award-accent: #13825f;
  --award-surface: #e7f6ef;
}
.award-marker {
  align-self: start;
  display: grid;
  place-items: center;
  width: 158px;
  min-height: 96px;
  padding: 18px 22px;
  border: 0;
  border-radius: 18px;
  background: var(--award-accent);
  color: #fff;
  box-shadow: 0 15px 34px -20px color-mix(in srgb, var(--award-accent) 72%, transparent);
  text-align: center;
}
.award-marker strong {
  font-family: var(--display);
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1;
}
.award-marker small {
  display: block;
  margin-top: 4px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.05;
  text-transform: uppercase;
}
.award-content {
  min-width: 0;
}
.award-content h2 {
  max-width: 1000px;
  margin: 0 0 24px;
  color: var(--award-accent);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
}
.award-content p {
  max-width: 1040px;
  margin: 0;
  color: #3f5d70;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.75;
}
.award-content p + p {
  margin-top: 20px;
}
.award-content em {
  color: var(--award-accent);
  font-style: italic;
  font-weight: 700;
}
.award-media {
  max-width: 1040px;
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--award-accent) 16%, transparent);
  border-radius: 20px;
  background: #1b1512;
}
.award-media img {
  display: block;
  width: 100%;
  height: auto;
}
/* Cap smaller sources at their native width so they stay sharp instead of being
   upscaled to fill the content column. */
.award-media--compact {
  max-width: 450px;
}
.award-media--portrait {
  max-width: 500px;
  background: #fff;
}
/* Narrow images sat in a 992px column with ~500px of dead space beside them.
   Float them so the copy wraps alongside, as Stories of Change does. */
.award-media--float {
  float: left;
  width: clamp(280px, 27vw, 420px);
  max-width: none;
  margin: 5px 36px 20px 0;
}
.award-content::after {
  content: "";
  display: block;
  clear: both;
}
.award-content--media-row {
  --award-row-media: clamp(390px, 30vw, 450px);
  display: grid;
  grid-template-columns: var(--award-row-media) minmax(0, 1fr);
  column-gap: clamp(30px, 3vw, 42px);
  align-items: start;
}
.award-content--media-row h2 {
  grid-column: 1 / -1;
}
.award-content--media-row p {
  max-width: none;
}
.award-content--media-row::after {
  display: none;
}
.award-content--media-row .award-media--float,
.award-content--media-row .award-slideshow--float {
  float: none;
  width: 100%;
  max-width: none;
  margin: 0;
}
.award-content--slideshow-row {
  --award-row-media: clamp(440px, 36vw, 520px);
}
@media (max-width: 980px) {
  .award-content--media-row {
    display: block;
  }
  .award-content--media-row::after {
    content: "";
    display: block;
    clear: both;
  }
  .award-content--media-row .award-media--float,
  .award-content--media-row .award-slideshow--float {
    width: 100%;
    max-width: 520px;
    margin: 0 0 24px;
  }
  .award-content--media-row .award-media--float {
    max-width: 450px;
  }
}
/* A tall portrait document beside short copy always left a void, whatever width
   it was given. So it becomes a third column instead, and the image is taken out
   of flow (absolute) — the row height is then set by the text alone and the
   image scales to fit it exactly. No dead space above, below or beside. */
.award-card--aside {
  grid-template-columns: 184px minmax(0, 1fr) clamp(190px, 21vw, 300px);
}
.award-aside {
  position: relative;
  align-self: stretch;
  min-height: 240px;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--award-accent) 16%, transparent);
  background: #fff;
}
.award-aside img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ---- award photo slideshow ---- */
.award-slideshow {
  position: relative;
  max-width: 620px;
  margin: 28px 0 0;
}
.award-slideshow--wide {
  max-width: 1040px;
  margin: 0 0 28px;
}
.award-slideshow--wide .award-slide img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
/* Floated so the copy wraps alongside instead of leaving a column of dead
   space to its right, matching the other image cards. */
.award-slideshow--float {
  float: left;
  width: clamp(340px, 37vw, 500px);
  max-width: none;
  margin: 5px 36px 20px 0;
}
@media (max-width: 720px) {
  .award-slideshow--float {
    float: none;
    width: 100%;
    max-width: 420px;
    margin: 0 0 24px;
  }
}
.award-slideshow-viewport {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--award-accent) 16%, transparent);
  background: #0d1b26;
}
.award-slideshow-track {
  display: flex;
  transition: transform 0.45s var(--ease);
}
.award-slide {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
}
.award-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 600 / 412;
  object-fit: cover;
}
.award-slide-arrow {
  position: absolute;
  top: calc(50% - 26px);
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(11, 27, 38, 0.62);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.award-slide-arrow:hover { background: var(--award-accent); }
.award-slide-arrow:focus-visible { outline: 3px solid var(--award-accent); outline-offset: 3px; }
.award-slide-arrow svg { width: 20px; height: 20px; }
.award-slide-arrow--prev { left: 12px; }
.award-slide-arrow--next { right: 12px; }
.award-slide-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 14px;
}
.award-slide-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: color-mix(in srgb, var(--award-accent) 28%, transparent);
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.award-slide-dot.is-active {
  background: var(--award-accent);
  transform: scale(1.35);
}
.award-slide-dot:focus-visible { outline: 2px solid var(--award-accent); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  .award-slideshow-track { transition: none; }
}
@media (max-width: 720px) {
  .award-media--float {
    float: none;
    width: 100%;
    max-width: 320px;
    margin: 0 0 22px;
  }
}
@media (max-width: 820px) {
  .awards-hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .awards-hero-highlight {
    max-width: 540px;
  }
  .award-card,
  .award-card--aside {
    grid-template-columns: 124px minmax(0, 1fr);
    gap: 24px;
  }
  /* Stacks below the copy, spanning the text column. */
  .award-card--aside .award-aside {
    grid-column: 2;
    align-self: start;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 500 / 711;
    min-height: 0;
  }
  .award-marker {
    width: 110px;
    min-height: 78px;
    padding: 14px;
    border-radius: 18px;
  }
  .award-marker strong {
    font-size: 1rem;
  }
}
@media (max-width: 560px) {
  .awards-hero-inner {
    gap: 34px;
    padding-block: 52px 60px;
  }
  .awards-hero h1 {
    font-size: clamp(3.45rem, 17vw, 4.7rem);
    line-height: 0.9;
  }
  .awards-hero-highlight {
    min-height: 270px;
    padding: 36px 30px;
    border-radius: 26px 26px 82px 26px;
  }
  .awards-timeline-section {
    padding: 58px 0 70px;
  }
  .awards-timeline {
    gap: 22px;
  }
  .award-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 24px 32px;
    border-radius: 24px;
  }
  .award-marker {
    width: max-content;
    min-width: 124px;
    min-height: 76px;
    padding: 16px 22px;
    border-radius: 20px;
  }
  .award-content h2 {
    margin-bottom: 18px;
    font-size: clamp(1.65rem, 8.2vw, 2.25rem);
  }
  .award-content p {
    font-size: 0.98rem;
    line-height: 1.68;
  }
}

/* Homepage testimonial split: softer supporting colour panels. */
.feature-split .quote-panel {
  background: #f7c8df;
  color: #7e1c4f;
}
.feature-split .cta-panel {
  background: #ffdabd;
  color: #81370f;
}

/* ==========================================================
   ACCESS SERVICES — consolidated service-finder page
   ========================================================== */
.access-services-page {
  --access-navy: #07365f;
  --access-copy: #557187;
  --access-pink: #db1972;
  --access-orange: #e85e16;
  --access-yellow: #e1a600;
  --access-green: #168765;
  --access-teal: #0b8e98;
  --access-blue: #087abd;
  --access-purple: #7440a0;
  background: #fff;
  color: var(--access-navy);
}
.access-services-page [hidden] {
  display: none !important;
}
.access-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  min-height: 660px;
  background: #fff7f2;
  overflow: hidden;
}
.access-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 8vw, 130px) clamp(34px, 7vw, 130px);
  background:
    radial-gradient(circle at 6% 15%, rgba(219, 25, 114, .13), transparent 28%),
    radial-gradient(circle at 88% 90%, rgba(232, 94, 22, .14), transparent 32%),
    #fff9f6;
}
.access-eyebrow {
  margin: 0 0 20px;
  color: var(--access-pink);
  font-family: "Outfit", sans-serif;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.access-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--access-navy);
  font-family: "Outfit", sans-serif;
  font-size: clamp(4.4rem, 7.2vw, 8.2rem);
  font-weight: 800;
  line-height: .88;
  letter-spacing: -.065em;
}
.access-hero-copy > p:not(.access-eyebrow) {
  max-width: 670px;
  margin: 34px 0 0;
  color: var(--access-copy);
  font-size: clamp(1.06rem, 1.35vw, 1.3rem);
  line-height: 1.65;
}
.access-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.access-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 13px 25px;
  border: 2px solid var(--access-pink);
  border-radius: 999px;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.access-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(7, 54, 95, .12);
}
.access-btn--primary {
  background: var(--access-pink);
  color: #fff;
}
.access-btn--secondary {
  background: #fff;
  color: var(--access-pink);
}
.access-hero-media {
  min-height: 660px;
  margin: 0;
  clip-path: ellipse(90% 94% at 100% 48%);
}
.access-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.access-section-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1320px, calc(100% - 48px));
  margin: -38px auto 0;
  position: relative;
  z-index: 3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(7, 54, 95, .13);
}
.access-section-nav a {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 78px;
  padding: 18px 22px;
  background: #fff;
  color: var(--access-navy);
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  text-decoration: none;
  border-right: 1px solid #e1eaf0;
}
.access-section-nav a:last-child {
  border-right: 0;
}
.access-section-nav a:nth-child(1) span { color: var(--access-pink); background: #fde8f2; }
.access-section-nav a:nth-child(2) span { color: var(--access-orange); background: #fff0e6; }
.access-section-nav a:nth-child(3) span { color: var(--access-green); background: #e7f5ef; }
.access-section-nav a:nth-child(4) span { color: var(--access-purple); background: #f1eafa; }
.access-section-nav span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 12px;
  font-size: .78rem;
}
.access-section {
  padding: clamp(76px, 8vw, 125px) 0;
}
.access-section-heading {
  max-width: 900px;
  margin-bottom: 52px;
}
.access-section-heading h2 {
  margin: 0;
  color: var(--access-navy);
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.7rem, 5vw, 5.3rem);
  line-height: .98;
  letter-spacing: -.045em;
}
.access-section-heading > p:last-child {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--access-copy);
  font-size: 1.08rem;
  line-height: 1.7;
}
.access-section-heading--light h2,
.access-section-heading--light > p:last-child {
  color: #fff;
}
.access-section-heading--light .access-eyebrow {
  color: #ffd443;
}
.access-clinics {
  background: #fff;
}
.access-clinic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.access-clinic-card {
  --card-accent: var(--access-pink);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 34px;
  border: 1px solid color-mix(in srgb, var(--card-accent) 25%, #dbe6ec);
  border-radius: 26px;
  background: color-mix(in srgb, var(--card-accent) 7%, #fff);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}
.access-clinic-card::before {
  content: "";
  width: 60px;
  height: 7px;
  margin-bottom: 32px;
  border-radius: 99px;
  background: var(--card-accent);
}
.access-clinic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 38px rgba(7, 54, 95, .12);
}
.access-clinic-card--orange { --card-accent: var(--access-orange); }
.access-clinic-card--yellow { --card-accent: var(--access-yellow); }
.access-clinic-card--green { --card-accent: var(--access-green); }
.access-clinic-card--teal { --card-accent: var(--access-teal); }
.access-clinic-card--blue { --card-accent: var(--access-blue); }
.access-clinic-card--purple { --card-accent: var(--access-purple); }
.access-clinic-card:last-child {
  grid-column: 2;
}
.access-clinic-city {
  margin: 0 0 9px;
  color: var(--card-accent);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.access-clinic-card h3 {
  margin: 0;
  color: var(--access-navy);
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  line-height: 1.12;
}
.access-clinic-card address {
  margin: 17px 0 26px;
  color: var(--access-copy);
  font-size: .98rem;
  font-style: normal;
  line-height: 1.62;
}
.access-clinic-phone {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 15px;
  border-radius: 999px;
  background: #fff;
  color: var(--card-accent);
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 5px 16px rgba(7, 54, 95, .08);
}
.access-clinic-map {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.access-services-directory {
  background: var(--access-navy);
}
.access-service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 26px;
  align-items: stretch;
}
.access-service-panel {
  padding: clamp(34px, 4vw, 58px);
  border-radius: 30px;
}
.access-service-panel--family {
  background: #fce5f0;
  color: #8d1d55;
}
.access-service-panel--abortion {
  background: #ffeadc;
  color: #984117;
}
.access-panel-number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 0 32px;
  border-radius: 16px;
  background: rgba(255,255,255,.7);
  font-weight: 800;
}
.access-service-panel h3 {
  margin: 0 0 28px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1;
  letter-spacing: -.035em;
}
.access-service-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.access-service-panel--abortion ul {
  grid-template-columns: 1fr;
}
.access-service-panel li {
  position: relative;
  padding: 15px 0 15px 24px;
  border-top: 1px solid currentColor;
  border-color: color-mix(in srgb, currentColor 18%, transparent);
  font-weight: 700;
  line-height: 1.35;
}
.access-service-panel li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 22px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.access-appointments {
  background: #fffaf3;
}
.access-appointments .access-eyebrow {
  color: var(--access-orange);
}
.access-appointment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.access-appointment-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: clamp(35px, 4vw, 58px);
  border-radius: 30px;
}
.access-appointment-card--clinic {
  background: #e4f4ee;
  color: #126a51;
}
.access-appointment-card--helpline {
  background: #e6f4fa;
  color: #086991;
}
.access-card-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: #fff;
  font-weight: 800;
}
.access-appointment-card h3 {
  margin: 58px 0 18px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}
.access-appointment-card p {
  max-width: 670px;
  margin: 0 0 32px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.access-appointment-card > a {
  align-self: flex-start;
  margin-top: auto;
  color: currentColor;
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}
.access-faqs {
  background: #5b2d86;
}
.access-faq-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}
.access-faq-group {
  padding: clamp(30px, 4vw, 48px);
  border-radius: 30px;
  background: #fff;
}
.access-faq-group:first-child {
  border-top: 8px solid var(--access-pink);
}
.access-faq-group:last-child {
  border-top: 8px solid var(--access-orange);
}
.access-faq-group > h3 {
  margin: 0 0 25px;
  color: var(--access-navy);
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
}
.access-faq-group details {
  border-top: 1px solid #dbe5eb;
}
.access-faq-group details:last-child {
  border-bottom: 1px solid #dbe5eb;
}
.access-faq-group summary {
  position: relative;
  padding: 21px 42px 21px 0;
  color: var(--access-navy);
  font-family: "Outfit", sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}
.access-faq-group summary::-webkit-details-marker { display: none; }
.access-faq-group summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 17px;
  color: var(--access-pink);
  font-size: 1.7rem;
  line-height: 1;
}
.access-faq-group details[open] summary::after { content: "−"; }
.access-faq-group details p {
  margin: -3px 0 23px;
  color: var(--access-copy);
  line-height: 1.68;
}
.access-faq-group details a {
  color: var(--access-blue);
  font-weight: 700;
}
@media (max-width: 1100px) {
  .access-hero {
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
  }
  .access-hero-media { min-height: 580px; }
  .access-hero h1 { font-size: clamp(4rem, 8vw, 6rem); }
  .access-section-nav {
    grid-template-columns: repeat(2, 1fr);
  }
  .access-section-nav a:nth-child(2) { border-right: 0; }
  .access-section-nav a:nth-child(-n+2) { border-bottom: 1px solid #e1eaf0; }
}
@media (max-width: 900px) {
  .access-hero {
    grid-template-columns: 1fr;
  }
  .access-hero-copy { padding: 70px 34px 58px; }
  .access-hero-media {
    min-height: 470px;
    clip-path: none;
  }
  .access-clinic-grid,
  .access-service-grid,
  .access-appointment-grid,
  .access-faq-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .access-clinic-card:last-child {
    grid-column: 1 / -1;
  }
  .access-service-grid,
  .access-appointment-grid,
  .access-faq-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .access-hero h1 { font-size: clamp(3.7rem, 18vw, 5.2rem); }
  .access-hero-media { min-height: 340px; }
  .access-section-nav {
    grid-template-columns: 1fr;
    width: calc(100% - 30px);
    margin-top: -25px;
    border-radius: 20px;
  }
  .access-section-nav a {
    min-height: 65px;
    border-right: 0;
    border-bottom: 1px solid #e1eaf0;
  }
  .access-section-nav a:nth-child(3) { border-bottom: 1px solid #e1eaf0; }
  .access-section-nav a:last-child { border-bottom: 0; }
  .access-clinic-grid { grid-template-columns: 1fr; }
  .access-clinic-card:last-child { grid-column: auto; }
  .access-service-panel ul { grid-template-columns: 1fr; }
  .access-clinic-card,
  .access-service-panel,
  .access-appointment-card,
  .access-faq-group { border-radius: 22px; }
  .access-appointment-card { min-height: 0; }
  .access-appointment-card h3 { margin-top: 38px; }
}

/* ==========================================================
   IMPACT DASHBOARD — 2013–2026 cumulative + 2026 delivery
   ========================================================== */
.impact-dashboard-page #main {
  display: flex;
  flex-direction: column;
}
.impact-dashboard-page .about-hero { order: 0; }
.impact-dashboard-page .impact-strip { order: 1; }
.impact-dashboard-page .dash { order: 2; }
.impact-dashboard-page .about-who { order: 3; }
.impact-dashboard-page .about-cta { order: 4; }
.impact-dashboard-page .impact-soft {
  padding: clamp(72px, 8vw, 120px) 0;
  background: #fff5ed;
}
.impact-dashboard-page .impact-soft h2 {
  max-width: 920px;
  margin: 12px 0 44px;
  color: var(--navy);
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: .94;
  letter-spacing: -.05em;
}
.impact-dashboard-page .impact-soft .kicker {
  color: #c84b28;
}
.impact-dashboard-page .impact-soft .stats-row {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}
.impact-dashboard-page .impact-soft .stat {
  grid-column: span 2;
  min-width: 0;
  min-height: 190px;
  padding: 30px 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 42px -34px rgba(0, 58, 112, .34);
}
.impact-dashboard-page .impact-soft .stat:nth-child(1) { background: #fdeaf3; }
.impact-dashboard-page .impact-soft .stat:nth-child(2) { background: #ffeadb; }
.impact-dashboard-page .impact-soft .stat:nth-child(3) { background: #fff6cf; }
.impact-dashboard-page .impact-soft .stat:nth-child(4),
.impact-dashboard-page .impact-soft .stat:nth-child(5) { grid-column: span 3; }
.impact-dashboard-page .impact-soft .stat:nth-child(4) { background: #e7f4eb; }
.impact-dashboard-page .impact-soft .stat:nth-child(5) { background: #e4f3f7; }
.impact-dashboard-page .impact-soft .stat dd {
  font-size: clamp(2.25rem, 4vw, 4rem);
  overflow-wrap: anywhere;
}
.impact-dashboard-page .impact-soft .stat:nth-child(4) dd { color: #16836a; }
.impact-dashboard-page .impact-soft .stat:nth-child(5) dd { color: #087c91; }
.impact-dashboard-page .impact-soft .stat dt {
  max-width: 320px;
  font-size: 1rem;
  line-height: 1.4;
}
.impact-dashboard-page .dash {
  background: #fff;
}
.impact-dashboard-page .dash-head .section-kicker {
  color: var(--orange);
}
.impact-dashboard-page .dash-head h2 {
  font-size: clamp(3rem, 5.7vw, 5.3rem);
  line-height: .96;
  letter-spacing: -.045em;
}
.impact-dashboard-page .metric-card {
  min-height: 220px;
  padding: 36px 32px;
  border-radius: 24px;
}
.impact-dashboard-page .metric-card h3 {
  max-width: 320px;
  font-size: 1.2rem;
  line-height: 1.3;
}
@media (max-width: 820px) {
  .impact-dashboard-page .impact-soft .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .impact-dashboard-page .impact-soft .stat,
  .impact-dashboard-page .impact-soft .stat:nth-child(4),
  .impact-dashboard-page .impact-soft .stat:nth-child(5) {
    grid-column: auto;
  }
  .impact-dashboard-page .impact-soft .stat:last-child {
    grid-column: 1 / -1;
  }
}
@media (max-width: 560px) {
  .impact-dashboard-page .impact-soft .stats-row,
  .impact-dashboard-page .metric-grid {
    grid-template-columns: 1fr;
  }
  .impact-dashboard-page .impact-soft .stat:last-child { grid-column: auto; }
  .impact-dashboard-page .impact-soft .stat,
  .impact-dashboard-page .metric-card { min-height: 0; }
}

/* ==========================================================
   STORIES OF CHANGE — searchable editorial story library
   ========================================================== */
/* .ki-case-page reuses this story-card accordion, so it needs the same palette —
   without it --story-accent is undefined and the "+" toggle renders invisible. */
.stories-page,
.ki-case-page {
  --stories-navy: #07365f;
  --stories-copy: #567185;
  --stories-pink: #dc1971;
  --stories-orange: #e9611b;
  --stories-yellow: #d69d00;
  --stories-green: #178765;
  --stories-teal: #0b8c96;
  --stories-blue: #0b79b7;
  --stories-purple: #71409b;
  background: #fffaf6;
}
.stories-hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
  min-height: 680px;
  background: #fceaf2;
  overflow: hidden;
}
.stories-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 130px);
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 255, 255, .95), transparent 28%),
    linear-gradient(135deg, #fce8f1 0%, #fff1e7 100%);
}
.stories-hero .hero-kicker {
  margin: 0 0 24px;
  color: var(--stories-pink);
  font-family: var(--display);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.stories-hero h1 {
  margin: 0;
  color: var(--stories-navy);
  font-family: var(--display);
  font-size: clamp(4.3rem, 7.4vw, 8.2rem);
  font-weight: 800;
  line-height: .88;
  letter-spacing: -.065em;
}
.stories-hero-sub {
  max-width: 600px;
  margin: 34px 0 0;
  color: var(--stories-copy);
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  line-height: 1.65;
}
.stories-hero-media {
  min-height: 680px;
  clip-path: ellipse(92% 96% at 100% 50%);
  overflow: hidden;
}
.stories-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.stories-library {
  padding: clamp(72px, 8vw, 125px) 0;
  background: #fffaf6;
}
.stories-library-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 20px;
}
.stories-library-head .section-kicker {
  color: var(--stories-orange);
}
.stories-library-head h2 {
  margin: 0;
  color: var(--stories-navy);
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: .94;
  letter-spacing: -.05em;
}
.stories-search {
  display: grid;
  gap: 9px;
  width: min(100%, 390px);
  color: var(--stories-navy);
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.stories-search input {
  width: 100%;
  min-height: 54px;
  padding: 13px 20px;
  border: 2px solid #d7e3ea;
  border-radius: 999px;
  background: #fff;
  color: var(--stories-navy);
  font: 500 1rem/1.2 "Inter", sans-serif;
  outline: none;
}
.stories-search input:focus {
  border-color: var(--stories-pink);
  box-shadow: 0 0 0 4px rgba(220, 25, 113, .1);
}
.stories-count {
  margin: 0 0 38px;
  color: var(--stories-copy);
  font-weight: 700;
}
.stories-grid {
  display: grid;
  gap: 22px;
}
.story-card {
  --story-accent: var(--stories-pink);
  border: 1px solid color-mix(in srgb, var(--story-accent) 22%, #dce6eb);
  border-radius: 28px;
  background: color-mix(in srgb, var(--story-accent) 6%, #fff);
  overflow: hidden;
  box-shadow: 0 18px 50px -46px rgba(7, 54, 95, .5);
}
.story-card--2 { --story-accent: var(--stories-orange); }
.story-card--3 { --story-accent: var(--stories-yellow); }
.story-card--4 { --story-accent: var(--stories-green); }
.story-card--5 { --story-accent: var(--stories-teal); }
.story-card--6 { --story-accent: var(--stories-blue); }
.story-card--7 { --story-accent: var(--stories-purple); }
.story-card summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 4vw, 52px);
  min-height: 160px;
  padding: 28px clamp(28px, 4.5vw, 64px);
  cursor: pointer;
  list-style: none;
}
.story-card summary::-webkit-details-marker { display: none; }
.story-number {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: var(--story-accent);
  color: #fff;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 800;
}
.story-card h2 {
  max-width: 920px;
  margin: 0;
  color: var(--stories-navy);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.8vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -.025em;
}
.story-action {
  min-width: 108px;
  color: var(--story-accent);
  font-family: var(--display);
  font-weight: 800;
  text-align: right;
}
.story-action::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-left: 12px;
  border-radius: 50%;
  background: var(--story-accent);
  color: #fff;
}
.story-card[open] .story-action::after { content: "−"; }
.story-body {
  max-width: 1040px;
  margin-left: 0;
  padding: 0 clamp(28px, 4.5vw, 64px) 46px;
}
.story-body p {
  margin: 0 0 1.2em;
  color: var(--stories-copy);
  font-size: 1.04rem;
  line-height: 1.78;
}
.story-body p:last-child { margin-bottom: 0; }
.stories-empty,
.stories-noscript {
  padding: 30px;
  border-radius: 22px;
  background: #fff;
  color: var(--stories-copy);
  text-align: center;
}
@media (max-width: 900px) {
  .stories-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .stories-hero-copy { padding: 70px 34px 58px; }
  .stories-hero-media {
    min-height: 500px;
    clip-path: none;
  }
  .stories-library-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .stories-search { width: 100%; }
}
@media (max-width: 620px) {
  .stories-hero h1 { font-size: clamp(3.8rem, 18vw, 5rem); }
  .stories-hero-media { min-height: 360px; }
  .story-card { border-radius: 22px; }
  .story-card summary {
    grid-template-columns: minmax(0, 1fr);
    gap: 17px;
    min-height: 0;
    padding: 24px 20px;
  }
  .story-action {
    grid-column: 1;
    min-width: 0;
    text-align: left;
  }
  .story-action::after {
    width: 28px;
    height: 28px;
  }
  .story-body {
    margin-left: 0;
    padding: 0 20px 30px;
  }
  .story-body p { font-size: .98rem; line-height: 1.7; }
}

/* Stories of Change: editorial card library */
.stories-page { overflow-x: hidden; }
.stories-hero {
  grid-template-columns: minmax(0, .84fr) minmax(590px, 1.16fr);
  min-height: 700px;
  background: #fff4ef;
}
.stories-hero-copy {
  position: relative;
  z-index: 2;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, .82), transparent 52%),
    linear-gradient(145deg, #ffe9f1 0%, #fff1df 100%);
}
.stories-hero-media {
  position: relative;
  min-height: 700px;
  padding: 0;
  clip-path: none;
  overflow: hidden;
  background: linear-gradient(145deg, #813f9d 0 34%, #e96218 34% 67%, #128e73 67% 100%);
}
.stories-hero-photo {
  position: absolute;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, .92);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 26px 65px rgba(29, 31, 55, .26);
}
.stories-hero-photo--main {
  top: 7%;
  left: 5%;
  width: 56%;
  height: 79%;
}
.stories-hero-photo--portrait {
  top: 7%;
  right: 5%;
  z-index: 2;
  width: 37%;
  height: 46%;
}
.stories-hero-photo--wide {
  right: 5%;
  bottom: 7%;
  z-index: 3;
  width: 49%;
  height: 36%;
}
.stories-hero-media .stories-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stories-hero-photo--main img { object-position: center 30%; }
.stories-hero-photo--portrait img { object-position: center 25%; }
.stories-hero-photo--wide img { object-position: center; }
.stories-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 24px;
}
.story-card {
  min-width: 0;
  height: fit-content;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.story-card:not([open]) { min-height: 268px; }
.story-card:not([open]):hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--story-accent) 48%, #dce6eb);
  box-shadow: 0 24px 54px -40px rgba(7, 54, 95, .58);
}
.story-card-media {
  width: clamp(160px, 23%, 235px);
  height: 190px;
  margin: 30px 0 30px 30px;
  overflow: hidden;
  border-radius: 18px;
  background: color-mix(in srgb, var(--story-accent) 18%, #fff);
}
.story-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.story-card-media--detail { display: none; }
.story-card:not([open]) .story-card-media--preview { display: none; }
.story-card[open] {
  grid-column: 1 / -1;
  box-shadow: 0 28px 72px -52px rgba(7, 54, 95, .65);
}
.story-card summary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  min-height: 268px;
  padding: 38px;
}
.story-card[open] summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "copy action";
  align-items: center;
  min-height: 148px;
  border-bottom: 1px solid color-mix(in srgb, var(--story-accent) 18%, #dce6eb);
}
.story-card[open] .story-card-media--preview { display: none; }
.story-summary-copy {
  grid-area: copy;
  min-width: 0;
  width: 100%;
}
.story-card h2 {
  max-width: none;
  overflow-wrap: anywhere;
  font-size: clamp(1.55rem, 2.25vw, 2.35rem);
}
.story-preview {
  display: -webkit-box;
  width: 100%;
  max-width: none;
  margin: 17px 0 0;
  overflow: hidden;
  color: var(--stories-copy);
  font-size: .98rem;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.story-card[open] .story-preview { display: none; }
.story-action {
  grid-area: action;
  min-width: 0;
  text-align: left;
}
.story-card:not([open]) .story-action {
  margin-top: auto;
}
.story-card[open] .story-action { text-align: right; }
.story-body {
  max-width: 1100px;
  margin-left: 0;
  padding-top: 40px;
}
.story-card[open] .story-body {
  max-width: none;
  padding: 38px;
}
.story-card[open] .story-card-media--detail {
  display: block;
  float: left;
  width: clamp(220px, 25vw, 340px);
  height: 240px;
  margin: 0 32px 18px 0;
}
.story-card[open] .story-body::after {
  content: "";
  display: block;
  clear: both;
}

/* ---- Case Studies: same accordion, driven by markup rather than JS ---- */
/* One case study at present, so a full-width accordion row reads better than
   a half-empty two-column grid. */
.ki-case-page .stories-grid { grid-template-columns: minmax(0, 1fr); }
/* Stories of Change swaps this label in JS; here it is done with CSS so the
   page needs no script. */
.story-action-close { display: none; }
.story-card[open] .story-action-open { display: none; }
.story-card[open] .story-action-close { display: inline; }
/* Subheadings inside the body — h2 is reserved for the card title. */
.story-body h3 {
  margin: 30px 0 12px;
  color: var(--story-accent);
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.6vw, 1.42rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.story-body > p:first-of-type { margin-top: 0; }
/* Supporting photo inside the body — capped at its native width so a small
   source is never upscaled. */
.story-body-figure {
  float: right;
  width: min(100%, 330px);
  margin: 6px 0 22px 30px;
  overflow: hidden;
  border-radius: 18px;
}
.story-body-figure img { display: block; width: 100%; height: auto; }
@media (max-width: 720px) {
  .story-body-figure { float: none; width: 100%; margin: 22px 0; }
}

@media (max-width: 1080px) {
  .stories-hero {
    grid-template-columns: minmax(0, .78fr) minmax(520px, 1.22fr);
  }
  .stories-hero-copy { padding-inline: 56px; }
  .story-card summary { padding: 32px; }
}

@media (max-width: 900px) {
  .stories-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .stories-hero-media { min-height: 620px; }
  .stories-grid { grid-template-columns: 1fr; }
  .story-card[open] { grid-column: auto; }
}

@media (max-width: 620px) {
  .stories-hero-copy { padding: 58px 24px 48px; }
  .stories-hero-media { min-height: 500px; }
  .stories-hero-photo {
    border-width: 3px;
    border-radius: 18px;
  }
  .stories-hero-photo--main {
    top: 5%;
    left: 4%;
    width: 58%;
    height: 70%;
  }
  .stories-hero-photo--portrait {
    top: 6%;
    right: 4%;
    width: 39%;
    height: 41%;
  }
  .stories-hero-photo--wide {
    right: 4%;
    bottom: 5%;
    width: 56%;
    height: 32%;
  }
  .stories-library { padding-block: 64px; }
  .story-card:not([open]) { min-height: 0; }
  .story-card-media,
  .story-card[open] .story-card-media--detail {
    width: calc(100% - 40px);
    height: 190px;
    margin: 20px;
    border-radius: 16px;
  }
  .story-card[open] .story-card-media--detail { float: none; }
  .story-card summary,
  .story-card[open] summary {
    display: flex;
    flex-direction: column;
    align-items: start;
    min-height: 0;
    padding: 24px 20px;
    gap: 15px;
  }
  .story-card[open] summary { border-bottom: 1px solid color-mix(in srgb, var(--story-accent) 18%, #dce6eb); }
  .story-card h2 { font-size: 1.45rem; }
  .story-preview {
    margin-top: 12px;
    font-size: .92rem;
    -webkit-line-clamp: 4;
  }
  .story-card[open] .story-action { text-align: left; }
  .story-body {
    margin-left: 0;
    padding-top: 27px;
  }
}

/* ==========================================================================
   IMPACT & STORIES — shares the Our Approach panel system
   Soft gradient field, big rounded section panels, kicker → colour title →
   tagline, and inset cards carrying a short accent dash.
   ========================================================================== */
.impact-branches {
  display: grid;
  gap: clamp(26px, 3.5vw, 52px);
  padding: clamp(48px, 6vw, 88px) 0;
  background: linear-gradient(180deg, #fffaf5 0%, #f8fbfc 100%);
}
.impact-branch {
  width: min(calc(100% - 48px), 1500px);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 88px) 0;
  overflow: hidden;
  border: 1px solid rgba(7, 61, 104, 0.1);
  border-radius: 44px;
  background: #fff;
  box-shadow: 0 30px 76px -66px rgba(7, 61, 104, 0.42);
}

/* per-branch accent, consumed by the head and any inset cards */
.impact-branch--blue { --branch: var(--wa-blue); --branch-light: var(--wa-blue-light); }
.impact-branch--violet { --branch: var(--wa-violet); --branch-light: var(--wa-violet-light); }
.impact-branch--green { --branch: var(--wa-green); --branch-light: var(--wa-green-light); }
.impact-branch--red { --branch: var(--wa-red); --branch-light: var(--wa-red-light); }
.impact-branch--orange { --branch: var(--wa-orange); --branch-light: var(--wa-orange-light); }
.impact-branch--indigo { --branch: var(--wa-indigo); --branch-light: var(--wa-indigo-light); }

.impact-branch-head {
  max-width: 1060px;
  margin-bottom: clamp(36px, 4.5vw, 58px);
}
.impact-branch-head .section-kicker { color: var(--branch); }
.impact-branch-title {
  margin: 10px 0 0;
  color: var(--branch);
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.4vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
}
.impact-branch-tagline {
  max-width: 900px;
  margin: 18px 0 0;
  color: var(--wa-indigo);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.1vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.14;
}

/* ---- service-delivery metric cards ---- */
.impact-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}
.impact-metric {
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 2.6vw, 38px);
  border-radius: 28px;
  background: var(--metric-light);
  color: var(--metric);
}
.impact-metric::before {
  content: "";
  display: block;
  width: 50px;
  height: 6px;
  margin-bottom: 26px;
  border-radius: 5px;
  background: currentColor;
}
.impact-metric-num {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.impact-metric h3 {
  margin: 14px 0 0;
  color: var(--wa-ink);
  font-family: var(--display);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 800;
  line-height: 1.25;
}
.impact-metric p {
  margin: 8px 0 0;
  color: var(--wa-body);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* ---- cumulative figures ---- */
.impact-figures {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
  margin: 0;
}
.impact-figure {
  padding: clamp(26px, 2.6vw, 38px);
  border-radius: 28px;
  border: 1px solid color-mix(in srgb, var(--metric) 24%, #e4ecf1);
  background: var(--metric-light);
  color: var(--metric);
}
.impact-figure dd {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.impact-figure dt {
  margin-top: 12px;
  color: var(--wa-ink);
  font-family: var(--display);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.3;
}

/* accent tokens shared by metric cards and figures */
.impact-metric--violet, .impact-figure--violet { --metric: var(--wa-violet); --metric-light: var(--wa-violet-light); }
.impact-metric--blue,   .impact-figure--blue   { --metric: var(--wa-blue);   --metric-light: var(--wa-blue-light); }
.impact-metric--orange, .impact-figure--orange { --metric: var(--wa-orange); --metric-light: var(--wa-orange-light); }
.impact-metric--green,  .impact-figure--green  { --metric: var(--wa-green);  --metric-light: var(--wa-green-light); }
.impact-metric--indigo, .impact-figure--indigo { --metric: var(--wa-indigo); --metric-light: var(--wa-indigo-light); }
.impact-metric--red,    .impact-figure--red    { --metric: var(--wa-red);    --metric-light: var(--wa-red-light); }

/* ---- how we measure ---- */
.impact-measure-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
  gap: clamp(30px, 4vw, 64px);
}
.impact-measure-media {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
}
.impact-measure-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

/* ---- Stories library sits in the same panel ---- */
.stories-page .stories-library {
  padding-block: clamp(48px, 6vw, 88px);
  background: none;
}
.stories-page .stories-library-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  max-width: none;
}

/* Equal-size story boxes: reserve two title lines and three preview lines so
   every closed card resolves to the same height, then stretch within the row. */
.stories-page .stories-grid { align-items: stretch; }
.stories-page .story-card { height: 100%; }
.stories-page .story-card:not([open]) h2 {
  display: -webkit-box;
  overflow: hidden;
  min-height: calc(2em * 1.08);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.stories-page .story-preview { min-height: calc(3em * 1.65); }

@media (max-width: 1080px) {
  .impact-metrics,
  .impact-figures { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .impact-measure-grid { grid-template-columns: 1fr; }
  .impact-measure-media img { min-height: 260px; }
}
@media (max-width: 620px) {
  .impact-branch {
    width: calc(100% - 24px);
    border-radius: 30px;
  }
  .impact-metrics,
  .impact-figures { grid-template-columns: 1fr; }
  /* the preview clamps to 4 lines at this width, so reserve 4 to stay uniform */
  .stories-page .story-preview { min-height: calc(4em * 1.65); }
}

/* Stories hero: story1.jpg is taller in aspect than the other hero images, and
   height:100% on an auto-height row resolves to auto — so the image was setting
   the row height (730px) instead of the 560px cap its sibling pages get.
   Taking it out of flow lets the section's own min-height govern. */
@media (min-width: 821px) {
  .stories-page .about-hero-media { position: relative; }
  .stories-page .about-hero-media img {
    position: absolute;
    inset: 0;
    height: 100%;
  }
}

/* stacked layout: crop to the same 3:2 the sibling hero images happen to have,
   so the stories hero doesn't tower over them on phones and tablets */
@media (max-width: 820px) {
  .stories-page .about-hero-media img {
    height: auto;
    aspect-ratio: 3 / 2;
  }
}

/* search control removed from the stories library */
.stories-page .stories-library-head { justify-content: flex-start; }

/* Home — Impact Dashboard CTA, in the section's own rust palette */
.annual-impact-cta {
  margin-top: clamp(22px, 2.4vw, 30px);
}
.btn-impact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 32px;
  border-radius: 999px;
  background: #b84c18;
  color: #fff;
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 20px 44px -30px rgba(121, 52, 18, 0.85);
  transition: background 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}
.btn-impact svg { flex: 0 0 auto; transition: transform 0.24s ease; }
.btn-impact:hover {
  background: #8f3a10;
  transform: translateY(-2px);
  box-shadow: 0 26px 52px -28px rgba(121, 52, 18, 0.9);
}
.btn-impact:hover svg { transform: translateX(4px); }
.btn-impact:focus-visible {
  outline: 3px solid #57341f;
  outline-offset: 3px;
}
@media (max-width: 560px) {
  .btn-impact {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 0.96rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .btn-impact,
  .btn-impact svg { transition: none; }
  .btn-impact:hover { transform: none; }
  .btn-impact:hover svg { transform: none; }
}

/* ==========================================================
   GET INVOLVED — partner, donate, careers and volunteer
   ========================================================== */
.involve-page {
  --involve-navy: #07365f;
  --involve-copy: #526f83;
  --involve-pink: #d81770;
  --involve-orange: #e95e18;
  --involve-gold: #d89d00;
  --involve-green: #168267;
  --involve-teal: #0b8991;
  --involve-purple: #77439d;
  color: var(--involve-navy);
  background: #fff;
}
.involve-page .primary-nav svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}
.involve-kicker {
  margin: 0 0 16px;
  color: var(--involve-pink);
  font-family: var(--display);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.involve-hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(470px, 1.08fr);
  min-height: 620px;
  overflow: hidden;
  background: #fff1e8;
}
.involve-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(65px, 7vw, 120px);
  background:
    linear-gradient(130deg, rgba(255, 255, 255, .78), transparent 58%),
    #fff0e7;
}
.involve-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--involve-navy);
  font-family: var(--display);
  font-size: clamp(3.8rem, 6.4vw, 7.3rem);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.06em;
  overflow-wrap: normal;
}
.involve-hero-copy > p:last-child {
  max-width: 690px;
  margin: 32px 0 0;
  color: var(--involve-copy);
  font-size: clamp(1.04rem, 1.4vw, 1.27rem);
  line-height: 1.66;
}
.involve-hero-media {
  min-width: 0;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
}
.involve-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.involve-hero--partner .involve-hero-copy { background: #fce7f0; }
.involve-hero--partner .involve-hero-media img { object-position: center 36%; }
.involve-hero--partner {
  grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr);
  min-height: 640px;
  background: linear-gradient(120deg, #fdeaf2 0%, #fff6ef 100%);
}
.involve-hero--partner .involve-hero-copy {
  background: transparent;
  padding-right: clamp(36px, 5vw, 70px);
}
.involve-hero--partner .involve-hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(26px, 4vw, 44px);
  min-height: 640px;
}
.involve-hero--partner .involve-hero-media img {
  width: 100%;
  max-width: 520px;
  height: min(74vh, 520px);
  min-height: 360px;
  border-radius: 28px;
  border: 1px solid #f0d7c8;
  box-shadow: 0 26px 60px -46px rgba(7, 54, 95, .48);
  object-fit: cover;
  object-position: center;
}
.involve-partner-intro {
  padding: clamp(48px, 6vw, 86px) 0;
  background: #fff;
}
.involve-partner-intro .container {
  max-width: 980px;
}
.involve-partner-intro p {
  margin: 0;
  color: var(--involve-copy);
  font-size: clamp(1.03rem, 1.25vw, 1.16rem);
  line-height: 1.75;
}
.involve-partner-intro p + p {
  margin-top: 18px;
}
.involve-hero--donate .involve-hero-copy { background: #fff1d9; }
.involve-hero--careers .involve-hero-copy { background: #e6f4ee; }
.involve-hero--careers .involve-kicker { color: var(--involve-green); }
.involve-hero--careers .involve-hero-media img { object-position: center; }
.involve-hero--volunteer .involve-hero-copy { background: #ece8f8; }
.involve-hero--volunteer .involve-kicker { color: var(--involve-purple); }

.involve-section {
  padding: clamp(72px, 8vw, 124px) 0;
}
.involve-section--soft { background: #fffaf5; }
.involve-section--packages { background: #eef8f4; }
.involve-section-head {
  max-width: 980px;
  margin-bottom: clamp(36px, 5vw, 62px);
}
.involve-section-head h2,
.career-intro h2,
.career-contact h2,
.volunteer-contact h2,
.volunteer-benefits h2,
.donate-form-intro h2,
.involve-individuals h2 {
  margin: 0;
  color: var(--involve-navy);
  font-family: var(--display);
  font-size: clamp(2.7rem, 5.2vw, 5.6rem);
  font-weight: 800;
  line-height: .96;
  letter-spacing: -.05em;
}
.involve-section-head > p:last-child {
  max-width: 900px;
  margin: 24px 0 0;
  color: var(--involve-copy);
  font-size: 1.08rem;
  line-height: 1.72;
}
.involve-section-head > p + p {
  max-width: 900px;
  margin: 18px 0 0;
  color: var(--involve-copy);
  font-size: 1.08rem;
  line-height: 1.72;
}
.involve-quote-band {
  padding: clamp(60px, 7vw, 105px) 0;
  background: #7a4199;
  color: #fff;
}
.involve-quote-band blockquote {
  max-width: 1160px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.3vw, 3.65rem);
  line-height: 1.3;
}
.involve-quote-band cite {
  display: block;
  margin-top: 28px;
  color: #f6dbff;
  font-style: normal;
  font-weight: 700;
}
.involve-stat-grid {
  display: grid;
  gap: 18px;
}
.involve-stat-grid--five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.involve-stat-grid--need { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.involve-stat-grid article,
.involve-return-grid article {
  min-width: 0;
  min-height: 190px;
  padding: 28px;
  border-radius: 24px;
  background: #fde8f1;
}
.involve-stat-grid article:nth-child(2) { background: #ffeadc; }
.involve-stat-grid article:nth-child(3) { background: #fff3c9; }
.involve-stat-grid article:nth-child(4) { background: #e4f4eb; }
.involve-stat-grid article:nth-child(5) { background: #e3f3f7; }
.involve-stat-grid strong,
.involve-return-grid strong {
  display: block;
  margin-bottom: 18px;
  color: var(--involve-pink);
  font-family: var(--display);
  font-size: clamp(2rem, 3.3vw, 3.7rem);
  line-height: .98;
  letter-spacing: -.045em;
}
.involve-stat-grid article:nth-child(2) strong { color: var(--involve-orange); }
.involve-stat-grid article:nth-child(3) strong { color: #b58100; }
.involve-stat-grid article:nth-child(4) strong { color: var(--involve-green); }
.involve-stat-grid article:nth-child(5) strong { color: var(--involve-teal); }
.involve-stat-grid span,
.involve-return-grid span {
  display: block;
  color: var(--involve-navy);
  font-weight: 750;
  line-height: 1.4;
}
.involve-return-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}
.involve-return-grid article { grid-column: span 2; }
.involve-return-grid article:nth-child(1),
.involve-return-grid article:nth-child(2) { grid-column: span 3; }
.involve-return-grid article:nth-child(1) { background: #fce6f0; }
.involve-return-grid article:nth-child(2) { background: #fff1cf; }
.involve-return-grid article:nth-child(3) { background: #e7f4ec; }
.involve-return-grid article:nth-child(4) { background: #e5f3f5; }
.involve-return-grid article:nth-child(5) { background: #eee8f7; }
.involve-return-grid article:nth-child(2) strong { color: #b67d00; }

.involve-body-copy {
  max-width: 980px;
  margin-top: 26px;
}
.involve-body-copy p {
  margin: 0;
  color: var(--involve-copy);
  font-size: 1.06rem;
  line-height: 1.72;
}
.involve-body-copy p + p { margin-top: 16px; }

.involve-package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.involve-package-grid--single-tone {
  grid-template-columns: minmax(0, 1fr);
}
.involve-package-grid--single-tone .involve-package-card {
  background: #fff;
  border-color: #d8e6dc;
}
.involve-package-card {
  min-width: 0;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid #d3e7de;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 50px -44px rgba(7, 54, 95, .4);
}
.involve-package-card:nth-child(2) { background: #fff0e8; border-color: #f3d8c9; }
.involve-package-card:nth-child(3) { background: #fff8da; border-color: #eadfab; }
.involve-package-card:nth-child(4) { background: #e9f3fa; border-color: #cfe2ef; }
.involve-package-card:nth-child(5) { background: #f7eaf9; border-color: #e3d3e8; }
.involve-package-card:nth-child(6) { background: #fce8f1; border-color: #edd1de; }
.package-cost {
  margin: 0 0 20px;
  color: var(--involve-green);
  font-family: var(--display);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.involve-package-card h3 {
  margin: 0 0 24px;
  color: var(--involve-navy);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  line-height: 1.08;
}
.involve-package-card p:not(.package-cost),
.involve-package-card li {
  color: var(--involve-copy);
  line-height: 1.65;
}
.involve-package-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding-left: 20px;
}
.involve-individuals {
  padding: clamp(70px, 8vw, 120px) 0;
  background: #083b67;
  color: #fff;
}
.involve-individuals-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(480px, 1.2fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}
.involve-individuals .involve-kicker { color: #ff91bf; }
.involve-individuals h2 { color: #fff; }
.involve-individuals p { font-size: 1.05rem; line-height: 1.65; }
.individual-options {
  display: grid;
  gap: 16px;
}
.individual-options > p {
  margin: 0;
  padding: 22px 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .1);
}
.individual-options strong { color: #ffd85e; font-family: var(--display); font-size: 1.35rem; }
.individual-options small { color: #d6e5ef; line-height: 1.6; }
.involve-button {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 54px;
  padding: 15px 25px;
  border: 0;
  border-radius: 999px;
  background: var(--involve-pink);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.involve-button:hover { transform: translateY(-2px); background: #b9105d; }
.individual-options .involve-button { margin-top: 8px; background: #fff; color: var(--involve-navy); }

.involve-individuals--csr .involve-kicker { color: #ffdba0; }
.involve-individuals--csr .individual-options > p {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-weight: 650;
}
.involve-individuals--csr .individual-options small {
  color: #d8e8f5;
}

.involve-section--partner-cta {
  background: #eef6fb;
}
.involve-section--partner-cta .involve-button {
  background: var(--involve-navy);
}
.involve-section--partner-cta .involve-button:hover {
  background: #0a4e87;
}

/* Donate */
.donate-impact {
  padding: clamp(56px, 6vw, 90px) 0;
  background: #fffaf6;
}
.donate-impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(280px, .8fr);
  gap: 20px;
}
.donate-impact article,
.donate-impact aside {
  min-width: 0;
  padding: clamp(28px, 3vw, 42px);
  border-radius: 26px;
}
.donate-impact article:first-child { background: #fce8f1; }
.donate-impact article:nth-child(2) { background: #fff0d4; }
.donate-impact aside { background: #e7f4ed; }
.donate-impact strong {
  display: block;
  color: var(--involve-pink);
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 4.3rem);
  line-height: 1;
}
.donate-impact article:nth-child(2) strong { color: var(--involve-orange); }
.donate-impact p { margin: 18px 0 0; color: var(--involve-copy); line-height: 1.6; }
.donate-impact aside p { margin-top: 0; color: #24624f; font-weight: 700; }
.donate-form-section {
  padding: clamp(72px, 8vw, 124px) 0;
  background: #edf6f8;
}
.donate-form-layout {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(560px, 1.28fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}
.donate-form-intro {
  position: sticky;
  top: 130px;
}
.donate-form-intro > p:not(.involve-kicker) {
  color: var(--involve-copy);
  font-size: 1.05rem;
  line-height: 1.65;
}
.donate-trust-note {
  margin-top: 36px;
  padding: 28px;
  border-radius: 22px;
  background: #dff0e8;
  color: #225e4c;
}
.donate-trust-note p { margin: 10px 0 0; line-height: 1.55; }
.donate-form {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid #d4e5e9;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 28px 70px -54px rgba(7, 54, 95, .55);
}
.donate-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.donate-form-row--name { grid-template-columns: 150px minmax(0, 1fr); }
.donate-form label:not(.donate-consent) {
  display: grid;
  gap: 9px;
  color: var(--involve-navy);
  font-family: var(--display);
  font-size: .86rem;
  font-weight: 800;
}
.donate-form input:not([type="checkbox"]),
.donate-form select,
.donate-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid #cadce3;
  border-radius: 12px;
  background: #fbfdfe;
  color: var(--involve-navy);
  font: 500 1rem/1.35 "Inter", sans-serif;
}
.donate-form textarea { resize: vertical; }
.donate-form input:focus,
.donate-form select:focus,
.donate-form textarea:focus {
  border-color: var(--involve-pink);
  outline: 3px solid rgba(216, 23, 112, .1);
}
.donate-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--involve-copy);
  font-size: .94rem;
  line-height: 1.5;
}
.donate-consent input { width: 19px; height: 19px; margin-top: 2px; accent-color: var(--involve-pink); }
.donate-consent a,
.donate-policy-links a { color: var(--involve-pink); text-decoration: underline; text-underline-offset: 3px; }
.donate-submit { font-size: 1rem; }
.donate-policy-links { display: flex; gap: 16px 24px; flex-wrap: wrap; font-size: .84rem; }

/* Careers */
.career-intro {
  padding: clamp(70px, 8vw, 118px) 0;
  background: #fff;
}
.career-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(45px, 8vw, 120px);
  align-items: end;
}
.career-intro-grid > p {
  margin: 0;
  color: var(--involve-copy);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.7;
}
.career-openings {
  padding: clamp(72px, 8vw, 120px) 0;
  background: #fff8ef;
}
.career-openings .involve-section-head a { color: var(--involve-pink); text-decoration: underline; }
.career-list { display: grid; gap: 18px; }
.career-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 35px;
  align-items: center;
  padding: clamp(26px, 3.4vw, 44px);
  border: 1px solid #eddfd0;
  border-radius: 26px;
  background: #fff;
}
.career-card:nth-child(2) { background: #fceaf3; border-color: #efd5e1; }
.career-card:nth-child(3) { background: #e9f5ef; border-color: #d4e7de; }
.career-card:nth-child(4) { background: #e8f3f7; border-color: #d4e3e8; }
.career-card:nth-child(5) { background: #f0eaf8; border-color: #e1d7eb; }
.career-count {
  color: var(--involve-orange);
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.career-card h3 {
  margin: 9px 0 10px;
  color: var(--involve-navy);
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  line-height: 1.08;
}
.career-card p { margin: 0; color: var(--involve-copy); line-height: 1.55; }
.career-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px 24px;
  flex-wrap: wrap;
}
.career-actions > a:not(.involve-button) {
  color: var(--involve-navy);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.career-contact {
  padding: clamp(65px, 7vw, 104px) 0;
  background: #0e8067;
  color: #fff;
}
.career-contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}
.career-contact h2 { color: #fff; }
.career-contact .involve-kicker { color: #bff4df; }
.career-contact p { max-width: 800px; color: #e0f5ed; line-height: 1.65; }
.involve-button--light { flex: 0 0 auto; background: #fff; color: var(--involve-green); }

/* Volunteer */
.volunteer-intro {
  padding: clamp(70px, 8vw, 120px) 0;
  background: #fff8f2;
}
.volunteer-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: clamp(45px, 8vw, 120px);
  align-items: center;
}
.volunteer-intro-grid p {
  margin: 0 0 1.3em;
  color: var(--involve-copy);
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
  line-height: 1.76;
}
.volunteer-intro-grid aside {
  padding: clamp(34px, 5vw, 64px);
  border-radius: 28px;
  background: #74429c;
  color: #fff;
}
.volunteer-intro-grid aside strong {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 1.1;
}
.volunteer-benefits {
  padding: clamp(72px, 8vw, 122px) 0;
  background: #edf7f2;
}
.volunteer-benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}
.volunteer-benefit-grid article {
  grid-column: span 2;
  display: flex;
  height: 180px;
  min-height: 180px;
  padding: 22px 28px;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 24px;
  background: #fff;
}
.volunteer-benefit-grid article:nth-child(4) { grid-column: 2 / span 2; }
.volunteer-benefit-grid article:nth-child(5) { grid-column: 4 / span 2; }
.volunteer-benefit-grid span {
  display: block;
  color: var(--involve-pink);
  font-family: var(--display);
  font-weight: 800;
}
.volunteer-benefit-grid article:nth-child(2) span { color: var(--involve-orange); }
.volunteer-benefit-grid article:nth-child(3) span { color: var(--involve-gold); }
.volunteer-benefit-grid article:nth-child(4) span { color: var(--involve-green); }
.volunteer-benefit-grid article:nth-child(5) span { color: var(--involve-teal); }
.volunteer-benefit-grid p {
  margin: 28px 0 0;
  color: var(--involve-navy);
  font-family: var(--display);
  font-size: clamp(1.35rem, 1.6vw, 1.6rem);
  font-weight: 700;
  line-height: 1.38;
}
.volunteer-contact {
  padding: clamp(72px, 8vw, 122px) 0;
  background: #fff;
}
.volunteer-contact-grid {
  display: grid;
  grid-template-columns: minmax(380px, .85fr) minmax(0, 1.15fr);
  gap: clamp(45px, 8vw, 110px);
  align-items: center;
}
.volunteer-contact figure {
  min-height: 580px;
  margin: 0;
  overflow: hidden;
  border-radius: 32px;
}
.volunteer-contact img { display: block; width: 100%; height: 100%; min-height: 580px; object-fit: cover; object-position: 70% center; }
.volunteer-contact p {
  color: var(--involve-copy);
  font-size: 1.04rem;
  line-height: 1.72;
}
.volunteer-contact .involve-button { margin-top: 20px; }

@media (max-width: 1080px) {
  .involve-stat-grid--five { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .involve-return-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .involve-return-grid article,
  .involve-return-grid article:nth-child(1),
  .involve-return-grid article:nth-child(2) { grid-column: auto; }
  .involve-return-grid article:last-child { grid-column: 1 / -1; }
  .donate-impact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .donate-impact aside { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .involve-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .involve-hero-copy { padding: 70px 34px 60px; }
  .involve-hero-media,
  .involve-hero-media img { min-height: 470px; max-height: 560px; }
  .involve-hero--partner .involve-hero-media {
    min-height: 0;
    padding-top: 0;
  }
  .involve-hero--partner .involve-hero-media img {
    max-width: none;
    height: 460px;
    min-height: 360px;
  }
  .involve-package-grid,
  .involve-individuals-grid,
  .donate-form-layout,
  .career-intro-grid,
  .volunteer-intro-grid,
  .volunteer-contact-grid { grid-template-columns: 1fr; }
  .donate-form-intro { position: static; }
  .career-contact-inner { align-items: flex-start; flex-direction: column; }
  .volunteer-contact figure,
  .volunteer-contact img { min-height: 430px; max-height: 520px; }
}
@media (max-width: 720px) {
  .involve-stat-grid--need { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .involve-stat-grid--five,
  .involve-return-grid,
  .donate-impact-grid,
  .donate-form-row,
  .donate-form-row--name { grid-template-columns: 1fr; }
  .involve-return-grid article:last-child,
  .involve-stat-grid--need { grid-template-columns: 1fr; }
  .donate-impact aside { grid-column: auto; }
  .involve-stat-grid article,
  .involve-return-grid article { min-height: 0; }
  .career-card { grid-template-columns: 1fr; gap: 24px; }
  .career-actions { justify-content: flex-start; }
  .volunteer-benefit-grid { grid-template-columns: 1fr; }
  .volunteer-benefit-grid article,
  .volunteer-benefit-grid article:nth-child(4),
  .volunteer-benefit-grid article:nth-child(5) {
    grid-column: auto;
    height: auto;
    min-height: 165px;
  }
}
@media (max-width: 560px) {
  .involve-page .utility-bar { display: none; }
  .involve-hero h1 { font-size: clamp(2.9rem, 12vw, 4.2rem); }
  .involve-hero-copy { padding-inline: 24px; }
  .involve-hero-media,
  .involve-hero-media img { min-height: 340px; }
  .involve-hero--partner .involve-hero-media {
    padding: 0 18px 18px;
  }
  .involve-hero--partner .involve-hero-media img {
    height: 340px;
    min-height: 0;
    border-radius: 22px;
  }
  .involve-package-card,
  .donate-form { border-radius: 22px; }
  .involve-button { width: 100%; }
  .donate-policy-links { flex-direction: column; }
  .volunteer-contact figure,
  .volunteer-contact img { min-height: 330px; }
}

/* ==========================================================================
   SITE-WIDE RESPONSIVE HARDENING
   Keeps shared content stable on laptops, tablets and narrow phones. Page-
   specific layouts above still control their individual visual treatments.
   ========================================================================== */
html,
body {
  max-width: 100%;
  /* `hidden` makes the body a scroll container, which silently disables
     position: sticky on the masthead. `clip` contains the same overflow
     without creating one, so the header stays pinned. The `hidden`
     declaration is kept first as a fallback for browsers without `clip`. */
  overflow-x: hidden;
  overflow-x: clip;
}

main,
section,
article,
aside,
.container,
.masthead-inner,
.mobile-nav {
  min-width: 0;
}

picture,
video,
iframe,
canvas,
svg {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
p,
li,
dd,
dt,
address,
figcaption {
  overflow-wrap: break-word;
}

input,
select,
textarea,
button {
  max-width: 100%;
}

@media (max-width: 1280px) {
  /* The utility actions are repeated in the mobile navigation. Hiding the
     complete strip also removes the empty 52px bar on tablets and phones. */
  .utility-bar {
    display: none;
  }

  .utility-bar .utility-links,
  .utility-bar a.utility-contact {
    display: none;
  }

  html {
    scroll-padding-top: 96px;
  }

  .masthead-inner {
    min-height: 84px;
  }

  .mobile-nav {
    max-height: calc(100dvh - 84px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 40px, var(--maxw));
  }

  /* Wide data remains usable instead of forcing the whole page to scroll. */
  main table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-nav {
    padding: 12px 24px 24px;
  }

  .mobile-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .site-footer {
    padding-top: 26px;
  }

  .footer-masthead {
    margin-bottom: 18px;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 92px;
  }

  .masthead-inner {
    min-height: 80px;
    gap: 10px;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand img {
    width: 120px;
  }

  .brand-tag {
    padding-left: 10px;
    font-size: 0.74rem;
    letter-spacing: 0.75px;
  }

  .nav-toggle {
    flex: 0 0 42px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
  }

  .mobile-nav {
    max-height: calc(100dvh - 80px);
    padding-inline: 20px;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }

  .footer-cols {
    gap: 16px 18px;
  }

  .footer-col h4 {
    font-size: 0.9rem;
  }

  .footer-col a {
    font-size: 0.82rem;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 32px, var(--maxw));
  }

  .brand img {
    width: 112px;
  }

  .brand-tag {
    font-size: 0.68rem;
    letter-spacing: 0.55px;
  }

  .footer-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 340px) {
  .brand img {
    width: 98px;
  }

  .brand-tag {
    padding-left: 8px;
    font-size: 0.62rem;
    letter-spacing: 0.4px;
  }

  .footer-cols {
    grid-template-columns: 1fr;
  }
}

/* Keep the primary Donate action visible in the mobile header. */
@media (max-width: 620px) {
  .masthead-inner {
    justify-content: flex-start;
    gap: 8px;
  }

  .brand {
    margin-right: auto;
  }

  .donate-btn {
    display: inline-flex;
    flex: 0 0 auto;
    min-height: 40px;
    padding: 9px 14px;
    font-size: 0.8rem;
    line-height: 1;
    white-space: nowrap;
  }

  .donate-btn svg {
    display: none;
  }
}

@media (max-width: 370px) {
  .brand {
    gap: 7px;
  }

  .brand img {
    width: 96px;
  }

  .brand-tag {
    padding-left: 7px;
    font-size: 0.6rem;
    letter-spacing: 0.4px;
  }

  .donate-btn {
    min-height: 38px;
    padding: 8px 11px;
    font-size: 0.74rem;
  }

  .nav-toggle {
    flex-basis: 38px;
    padding-inline: 6px;
  }
}

@media (max-width: 340px) {
  .brand img {
    width: 82px;
  }

  .brand-tag {
    padding-left: 6px;
    font-size: 0.54rem;
    letter-spacing: 0.3px;
  }

  .donate-btn {
    padding-inline: 9px;
    font-size: 0.7rem;
  }

  .nav-toggle {
    flex-basis: 36px;
  }
}

/* Mobile/tablet navigation mirrors the desktop dropdown hierarchy. */
.mobile-nav-group {
  border-bottom: 1px solid var(--line);
}

.mobile-nav-parent {
  width: 100%;
  min-height: 52px;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
}

.mobile-nav-caret {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: #eef7fb;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease);
}

.mobile-nav-caret::before,
.mobile-nav-caret::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.mobile-nav-caret::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 0.2s var(--ease);
}

.mobile-nav-parent[aria-expanded="true"] .mobile-nav-caret {
  transform: rotate(180deg);
  background: #fde5f1;
  color: var(--pink);
}

.mobile-nav-parent[aria-expanded="true"] .mobile-nav-caret::after {
  opacity: 0;
}

.mobile-submenu {
  display: grid;
  gap: 4px;
  padding: 0 0 14px 14px;
}

.mobile-submenu[hidden] {
  display: none;
}

.mobile-nav .mobile-submenu a {
  min-height: 42px;
  padding: 10px 14px;
  border: 0;
  border-left: 3px solid #cce8f4;
  border-radius: 0 10px 10px 0;
  background: #f8fcfe;
  color: #345b73;
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.35;
}

.mobile-nav .mobile-submenu a:hover,
.mobile-nav .mobile-submenu a:focus-visible {
  border-left-color: var(--pink);
  background: #fdf1f7;
  color: var(--navy);
}

.mobile-nav > .mobile-nav-link,
.mobile-nav > .mobile-nav-extra {
  min-height: 52px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.mobile-nav > .mobile-nav-extra:last-child {
  margin-top: 8px;
  min-height: 46px;
  padding: 12px 18px;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
}

/* Our Programmes — August 2026 content review refinements */
.programmes-page .programmes-intro {
  padding: clamp(28px, 3vw, 46px) 0;
}

.programmes-page .programmes-intro-body {
  margin-top: clamp(14px, 1.8vw, 22px) !important;
}

/* The detail headings now read as children of each programme without counters. */
.programmes-page .fp-subsections .fp-section-head h3::before,
.programmes-page .sa-subsections .sa-section-title::before,
.programmes-page .sa-subsections .sa-detail-card h3::before {
  display: none;
  content: none;
}

.programmes-page .fp-subsections .fp-section-head h3,
.programmes-page .sa-subsections .sa-section-title,
.programmes-page .sa-subsections .sa-detail-card h3 {
  gap: 0;
}

.programmes-page .fp-impact {
  grid-template-columns: minmax(230px, 0.38fr) minmax(0, 1fr);
}

.programmes-page .fp-impact-label p {
  color: #ffd76a;
  font-size: clamp(2.325rem, 3.525vw, 3.3rem);
  letter-spacing: 0.015em;
  line-height: 1.05;
}

/* Stack the two Safe Abortion follow-on areas for a clearer reading order. */
.programmes-page .sa-subsections .sa-detail-grid {
  grid-template-columns: 1fr;
  align-items: start;
}

.programmes-page .sa-subsections .sa-detail-card {
  min-height: 0;
  height: auto;
}

/* Four equal cards make the Adolescent Health approach easy to scan. */
.programmes-page .ay-subsections .ay-approach-grid {
  align-items: stretch;
}

.programmes-page .ay-subsections .ay-approach-card,
.programmes-page .ay-subsections .ay-approach-card:nth-child(1),
.programmes-page .ay-subsections .ay-approach-card:nth-child(2),
.programmes-page .ay-subsections .ay-approach-card--wide,
.programmes-page .ay-subsections .ay-approach-card--helpline {
  display: flex;
  flex-direction: column;
  grid-column: span 6;
  min-height: 280px;
  height: 280px;
}

.programmes-page .ay-subsections .ay-approach-card--helpline {
  display: flex;
  flex-direction: column;
}

.programmes-page .ay-helpline-inline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(20, 119, 123, 0.2);
}

.programmes-page .ay-helpline-inline span {
  color: #4e695f;
  font-weight: 700;
  line-height: 1.45;
}

.programmes-page .ay-helpline-inline a {
  display: inline-flex;
  padding: 9px 14px;
  border: 1px solid rgba(20, 119, 123, 0.2);
  border-radius: 999px;
  background: #fff;
  color: var(--programmes-teal);
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  box-shadow: 0 14px 28px -22px rgba(20, 119, 123, 0.7);
}

.programmes-page .ay-helpline-inline a:hover,
.programmes-page .ay-helpline-inline a:focus-visible {
  background: var(--programmes-teal);
  color: #fff;
}

@media (max-width: 820px) {
  .programmes-page .fp-impact {
    grid-template-columns: 1fr;
  }

  .programmes-page .sa-subsections .sa-detail-grid {
    grid-template-columns: 1fr;
  }

  .programmes-page .sa-subsections .sa-service-card,
  .programmes-page .sa-subsections .sa-service-card:nth-child(1),
  .programmes-page .sa-subsections .sa-service-card:nth-child(2),
  .programmes-page .sa-subsections .sa-service-card:nth-child(3),
  .programmes-page .sa-subsections .sa-service-card:nth-child(4),
  .programmes-page .sa-subsections .sa-detail-card {
    min-height: 0;
    height: auto;
  }

  .programmes-page .ay-subsections .ay-approach-card,
  .programmes-page .ay-subsections .ay-approach-card:nth-child(1),
  .programmes-page .ay-subsections .ay-approach-card:nth-child(2),
  .programmes-page .ay-subsections .ay-approach-card--wide,
  .programmes-page .ay-subsections .ay-approach-card--helpline {
    grid-column: 1 / -1;
    min-height: 0;
    height: auto;
  }
}

@media (max-width: 560px) {
  .programmes-page .programmes-intro {
    padding: 30px 0 36px;
  }

  .programmes-page .programmes-intro-body {
    margin-top: 12px !important;
  }

  .programmes-page .fp-impact-label p {
    font-size: 2.325rem;
  }

  .programmes-page .ay-helpline-inline {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   PARTNER WITH US — same section-panel system as Impact / Our Approach
   ========================================================================== */
.involve-partner-page .partner-intro {
  padding: clamp(48px, 6vw, 84px) 0 clamp(8px, 1vw, 16px);
  background: #fff;
}
.involve-partner-page .partner-intro p {
  max-width: 900px;
  margin: 0 0 18px;
  color: var(--wa-body);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}
.involve-partner-page .partner-intro p:first-child {
  max-width: 980px;
  color: var(--wa-ink);
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.1vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.24;
}
.involve-partner-page .partner-intro p:last-child { margin-bottom: 0; }

.partner-copy {
  max-width: 980px;
  margin-bottom: clamp(26px, 3vw, 38px);
}
.partner-copy p {
  margin: 0 0 16px;
  color: var(--wa-body);
  font-size: 1.02rem;
  line-height: 1.75;
}
.partner-copy p:last-child { margin-bottom: 0; }

/* four figures, so they sit on one row rather than breaking 3 + orphan */
.partner-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: clamp(26px, 3vw, 38px);
}
.partner-metrics .impact-metric h3 { margin-top: 12px; }
@media (max-width: 1080px) {
  .partner-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .partner-metrics { grid-template-columns: 1fr; }
}

/* checklist blocks — one accent per branch */
.partner-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
/* an odd final item would otherwise sit alone with a dead cell beside it */
.partner-points > .partner-point:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}
.partner-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 26px;
  border-radius: 20px;
  background: var(--branch-light);
  color: var(--wa-ink);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}
.partner-point::before {
  content: "";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--branch)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5 5L20 6.5'/%3E%3C/svg%3E")
    center / 13px no-repeat;
}

.partner-aside {
  max-width: 900px;
  margin: clamp(22px, 2.6vw, 32px) 0 0;
  padding-left: 20px;
  border-left: 4px solid var(--branch);
  color: var(--wa-body);
  font-size: 0.98rem;
  line-height: 1.7;
}

.partner-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 32px;
  border-radius: 999px;
  background: var(--branch);
  color: #fff;
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 800;
  transition: filter 0.24s ease, transform 0.24s ease;
}
.partner-btn svg { flex: 0 0 auto; transition: transform 0.24s ease; }
.partner-btn:hover { filter: brightness(0.88); transform: translateY(-2px); color: #fff; }
.partner-btn:hover svg { transform: translateX(4px); }
.partner-btn:focus-visible { outline: 3px solid var(--wa-ink); outline-offset: 3px; }

@media (max-width: 1080px) {
  .partner-points { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .partner-point { padding: 18px 20px; font-size: 0.96rem; }
  .partner-btn { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .partner-btn,
  .partner-btn svg { transition: none; }
  .partner-btn:hover { transform: none; }
  .partner-btn:hover svg { transform: none; }
}

/* ---- Partner With Us: panel colours per the content brief ---- */
.hero-pink { background: var(--pink-soft); }
.hero-pink .hero-kicker { color: #c42d72; }

/* each panel sets its own surface plus the accent its cards inherit */
.partner-panel--pink {
  background: #fff2f8;
  --branch: #c42d72;
  --branch-light: #ffe1ef;
}
.partner-panel--white {
  background: #fff;
  --branch: var(--wa-blue);
  --branch-light: var(--wa-blue-light);
}
.partner-panel--green {
  background: #e9f7f0;
  --branch: #0f7350;
  --branch-light: #d5efe3;
}
.partner-panel--peach {
  background: #fff4ea;
  --branch: #c4581f;
  --branch-light: #ffe3d1;
}
.partner-panel--navy {
  background: var(--navy-deep);
  border-color: transparent;
  --branch: #7fd4ff;
  --branch-light: rgba(255, 255, 255, 0.09);
}

/* the metric cards on the pink panel carry their own tints, so only the
   figure colours need re-pointing — everything else follows --branch */
.partner-panel--pink .impact-metric { background: #fff; }

/* dark panel needs the type inverted */
.partner-panel--navy .section-kicker { color: #7fd4ff; }
.partner-panel--navy .impact-branch-title { color: #fff; }
.partner-panel--navy .impact-branch-tagline { color: #a9dcff; }
.partner-panel--navy .partner-copy p { color: rgba(255, 255, 255, 0.84); }
.partner-panel--navy .partner-point { color: #fff; }
.partner-panel--navy .partner-aside {
  color: rgba(255, 255, 255, 0.78);
  border-left-color: #7fd4ff;
}

.partner-lead {
  margin: 22px 0 0;
  color: var(--branch);
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* ==========================================================================
   KNOWLEDGE & INSIGHTS — reuses the shared panel system
   ========================================================================== */
.ki-page {
  --wa-violet: #6f3f91; --wa-violet-light: #f1e8fa;
  --wa-indigo: #354d98; --wa-indigo-light: #e9edfb;
  --wa-blue: #0878b7;   --wa-blue-light: #e8f6fc;
  --wa-green: #157b59;  --wa-green-light: #e5f5ed;
  --wa-yellow: #a87700; --wa-yellow-light: #fff2bf;
  --wa-orange: #cc612f; --wa-orange-light: #ffe4d5;
  --wa-red: #b83d46;    --wa-red-light: #fae2e4;
  --wa-ink: #073d68;    --wa-body: #526c7c;
}

/* ---- document / link cards ---- */
.ki-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.ki-card {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.6vw, 34px);
  border: 1px solid color-mix(in srgb, var(--branch) 22%, #e4ecf1);
  border-radius: 26px;
  background: var(--branch-light);
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), border-color 0.24s var(--ease);
}
.ki-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--branch) 50%, #e4ecf1);
  box-shadow: 0 24px 54px -42px rgba(7, 54, 95, 0.55);
}
.ki-card:focus-visible { outline: 3px solid var(--branch); outline-offset: 4px; }
.ki-card-kind {
  color: var(--branch);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
/* The 12px offset assumes a kind label above; drop it when the title leads. */
.ki-card > h3:first-child { margin-top: 0; }
.ki-card h3 {
  margin: 12px 0 0;
  color: var(--wa-ink);
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.ki-card-desc {
  margin: 12px 0 0;
  color: var(--wa-body);
  font-size: 0.98rem;
  line-height: 1.62;
}
.ki-card-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--branch);
  font-family: var(--display);
  font-size: 0.94rem;
  font-weight: 800;
}
.ki-card:hover .ki-card-link svg { transform: translate(3px, -3px); }
.ki-card-link svg { transition: transform 0.24s var(--ease); }

/* Entries published in several languages or as a set of state factsheets. The
   card itself cannot be the link (anchors can't nest), so it is a plain div
   holding one chip per document. */
.ki-card--multi:hover {
  transform: none;
  box-shadow: none;
  border-color: color-mix(in srgb, var(--branch) 22%, #e4ecf1);
}
.ki-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
}
.ki-card-links a {
  display: inline-flex;
  align-items: center;
  padding: 7px 15px;
  border: 1px solid color-mix(in srgb, var(--branch) 30%, #e4ecf1);
  border-radius: 999px;
  background: #fff;
  color: var(--branch);
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.3;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.ki-card-links a:hover,
.ki-card-links a:focus-visible {
  border-color: var(--branch);
  background: var(--branch);
  color: #fff;
}

/* ---- blog listing ---- */
.ki-posts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.ki-post {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e4ecf1;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 54px -48px rgba(7, 54, 95, 0.5);
  transition: transform 0.26s var(--ease), box-shadow 0.26s var(--ease);
}
.ki-post:hover { transform: translateY(-5px); box-shadow: 0 30px 66px -42px rgba(7, 54, 95, 0.55); }
.ki-post:focus-visible { outline: 3px solid var(--branch); outline-offset: 4px; }
.ki-post-media { margin: 0; overflow: hidden; aspect-ratio: 16 / 9; }
.ki-post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.ki-post:hover .ki-post-media img { transform: scale(1.05); }
.ki-post-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: clamp(22px, 2.4vw, 32px);
}
.ki-post-body h3 {
  margin: 0;
  color: var(--wa-ink);
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.16;
}
.ki-post-by {
  margin-top: 10px;
  color: var(--branch);
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 800;
}
.ki-post-body p {
  margin: 12px 0 0;
  color: var(--wa-body);
  font-size: 0.98rem;
  line-height: 1.62;
}
.ki-post .ki-card-link { color: var(--wa-blue); }

/* Earlier posts exist only as PDFs on frhsi.org.in — there is no cover image,
   so the card leads with a document label and its publication date instead. */
.ki-post-kind {
  color: var(--wa-blue);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ki-post-kind + h3 { margin-top: 12px; }
.ki-post-date {
  margin-top: 10px;
  color: var(--wa-body);
  font-size: 0.88rem;
}

/* ---- long-form article ---- */
.ki-article { max-width: 780px; }
.ki-article-by {
  margin: 0 0 26px;
  color: var(--wa-blue);
  font-family: var(--display);
  font-weight: 800;
}
.ki-article h2 {
  margin: 38px 0 14px;
  color: var(--wa-ink);
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.16;
}
.ki-article h2:first-child { margin-top: 0; }
.ki-article p {
  margin: 0 0 1.15em;
  color: var(--wa-body);
  font-size: 1.06rem;
  line-height: 1.78;
}
.ki-article li { margin-bottom: 0.6em; color: var(--wa-body); line-height: 1.7; }
.ki-quote, .ki-pull {
  margin: 30px 0;
  padding: 24px 28px;
  border-left: 5px solid var(--wa-blue);
  border-radius: 0 18px 18px 0;
  background: var(--wa-blue-light);
}
.ki-pull { border-left-color: var(--wa-violet); background: var(--wa-violet-light); }
.ki-quote p, .ki-pull p {
  margin: 0 0 10px;
  color: var(--wa-ink);
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  font-weight: 800;
  line-height: 1.35;
}
.ki-quote cite, .ki-pull cite {
  color: var(--wa-body);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 700;
}
.ki-article-source {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid #e4ecf1;
  font-size: 0.94rem;
}
.ki-article-source a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--wa-blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---- more-from-blog ---- */
.ki-more { margin-top: clamp(40px, 5vw, 64px); }
.ki-more h2 {
  margin: 0 0 18px;
  color: var(--wa-ink);
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 800;
}
.ki-more-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.ki-more-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 22px;
  border: 1px solid #e4ecf1;
  border-radius: 20px;
  background: #fff;
  color: var(--wa-ink);
  font-family: var(--display);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.28;
  transition: border-color 0.24s var(--ease), transform 0.24s var(--ease);
}
.ki-more-card svg { flex: 0 0 auto; color: var(--wa-blue); }
.ki-more-card:hover { transform: translateY(-3px); border-color: var(--wa-blue); }

/* ---- video grid ---- */
/* Two across, so the four videos sit as an even 2x2 rather than 3 + 1. */
.ki-videos { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.ki-video { margin: 0; }
.ki-video-frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  background: #0b2438;
}
.ki-video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.ki-video figcaption {
  margin-top: 14px;
  color: var(--wa-ink);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

/* ---- placeholder state ---- */
.ki-empty {
  padding: clamp(30px, 4vw, 48px);
  border: 1px dashed color-mix(in srgb, var(--branch) 45%, #d7e3ea);
  border-radius: 26px;
  background: var(--branch-light);
}
.ki-empty-lead {
  margin: 0 0 10px;
  color: var(--branch);
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.ki-empty p { margin: 0 0 6px; color: var(--wa-body); line-height: 1.7; }
.ki-empty-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--branch);
  font-family: var(--display);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .ki-more-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .ki-grid,
  .ki-posts,
  .ki-videos { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .ki-card, .ki-post, .ki-more-card, .ki-post-media img, .ki-card-link svg { transition: none; }
  .ki-card:hover, .ki-post:hover, .ki-more-card:hover { transform: none; }
  .ki-post:hover .ki-post-media img { transform: none; }
}

/* article titles run long, so drop the uppercase display treatment here */
.ki-article-page .about-hero h1 {
  font-size: clamp(1.7rem, 3vw, 2.9rem);
  text-transform: none;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.ki-article-page .about-hero-sub {
  font-family: var(--display);
  font-weight: 800;
}
/* an odd final card would otherwise sit beside a dead cell */
.ki-grid > .ki-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
