:root {
  --primary: #005021;
  --green: #006b2e;
  --green-2: #1f766e;
  --leaf: #6faf4b;
  --navy: #07315f;
  --gold: #d6a73a;
  --surface: #f7f9ff;
  --warm: #f7f5ec;
  --paper: #f7f9ff;
  --paper-2: #ffffff;
  --sky: #d7e8ef;
  --ink: #121d26;
  --muted: #3f493f;
  --line: #e4e7eb;
  --soft-line: #bfcabc;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  --font-heading: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

svg.material-symbols-outlined {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  stroke-width: 2;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--navy);
  color: white;
  padding: 10px 14px;
  border-radius: 6px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 80px;
  padding: 0 clamp(18px, 4vw, 24px);
  background: rgba(247, 249, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1.42rem;
}

.brand img,
.footer-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  padding: 28px 0 24px;
  border-radius: 0;
  border-bottom: 2px solid transparent;
  color: #364354;
  font-size: 1rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a.active,
.site-nav a[aria-current="page"] {
  color: var(--green);
  background: transparent;
  border-bottom-color: var(--green);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--green);
  color: white;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 107, 46, 0.18);
}

.btn.secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn.navy {
  background: var(--navy);
}

.btn.gold {
  background: var(--gold);
  color: #10243b;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  place-items: center;
  gap: 4px;
  padding: 11px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
}

.section,
.page-hero,
.story-page {
  padding: clamp(48px, 7vw, 80px) clamp(18px, 4vw, 24px);
}

.section-inner,
.page-inner,
.footer-grid {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.hero {
  min-height: auto;
  padding: clamp(64px, 9vw, 104px) clamp(18px, 4vw, 24px);
  color: var(--ink);
  background: var(--warm);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 1fr);
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
}

.hero-content {
  width: min(610px, 100%);
  padding-bottom: 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  line-height: 1.03;
}

.hero h1 {
  color: var(--ink);
  font-size: clamp(2.25rem, 4.4vw, 3rem);
  max-width: 12ch;
  letter-spacing: -0.02em;
  line-height: 1.16;
}

.hero p {
  max-width: 570px;
  margin: 22px 0 38px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.55;
}

.hero-collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  gap: 12px;
  height: 500px;
}

.collage-item {
  overflow: hidden;
  border: 2px solid white;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-main {
  grid-column: span 7;
  grid-row: span 8;
}

.collage-top {
  grid-column: span 5;
  grid-row: span 5;
  transform: translateY(16px);
}

.collage-side {
  grid-column: span 5;
  grid-row: span 7;
}

.collage-wide {
  grid-column: span 7;
  grid-row: span 4;
  transform: translateY(-16px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head h2,
.page-title {
  font-size: clamp(2rem, 3vw, 2rem);
  line-height: 1.25;
  max-width: 760px;
}

.section-head p,
.page-lede {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.7;
}

.focus-grid,
.contact-grid,
.policy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

.stories-grid {
  margin-top: 32px;
}

.story-list {
  display: grid;
  gap: 28px;
}

.story-list .story-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  min-height: 0;
}

.story-list .story-image {
  aspect-ratio: auto;
  min-height: 260px;
}

.story-list .story-body {
  padding: clamp(28px, 4vw, 44px);
}

.story-list .story-body h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

.story-list .story-body p {
  max-width: 760px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 42px;
}

.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: white;
  color: var(--navy);
  padding: 0 14px;
  font-family: var(--font-heading);
  font-weight: 850;
}

.pagination a.active {
  border-color: var(--green);
  background: var(--green);
  color: white;
}

.pagination a.disabled {
  pointer-events: none;
  opacity: 0.42;
}

.focus-card,
.story-card,
.contact-card,
.policy-card,
.empty-state {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.focus-card {
  min-height: 300px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  transition: background 200ms ease, transform 200ms ease;
}

.focus-card:hover {
  background: var(--surface);
}

.focus-card .icon,
.contact-card .icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 107, 46, 0.1);
  color: var(--green);
  font-size: 2.25rem;
}

.focus-card h3,
.story-card h3 {
  font-size: 1.18rem;
  line-height: 1.25;
}

.focus-card p,
.story-card p,
.contact-card p,
.policy-card p,
.empty-state p {
  color: var(--muted);
  line-height: 1.6;
}

.feature-band {
  background: var(--navy);
  color: white;
}

.feature-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.feature-photo {
  position: relative;
  min-height: 430px;
  border-radius: 8px;
  overflow: hidden;
  background: url("/assets/hero-banner.png") 42% center / 178% no-repeat;
}

.feature-photo::after {
  content: "Featured activity";
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.94);
  color: var(--green);
  font-weight: 850;
}

.feature-band h2,
.feature-band h3 {
  color: white;
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 14px 0;
}

.tag,
.article-shell > .meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 107, 46, 0.1);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
}

.feature-band .tag,
.feature-band .meta span {
  background: rgba(255, 255, 255, 0.12);
  color: #f6d373;
}

.story-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.story-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.story-card:hover .story-image img {
  transform: scale(1.05);
}

.story-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 32px;
}

.story-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
}

.story-body .meta {
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.meta .material-symbols-outlined {
  font-size: 1rem;
}

.story-body .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--ink);
  font-weight: 850;
}

.impact-band {
  padding: 48px clamp(18px, 4vw, 24px);
  background: var(--primary);
  color: white;
}

.impact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.impact-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.impact-title .material-symbols-outlined {
  font-size: 2.8rem;
  font-variation-settings: "FILL" 1;
}

.impact-title h2,
.contact-cta h2 {
  color: white;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  line-height: 1.25;
}

.impact-metrics,
.mini-stats {
  display: flex;
  gap: 32px;
  text-align: center;
}

.impact-metrics strong,
.mini-stats strong {
  display: block;
  font-size: 1.45rem;
  color: white;
}

.impact-metrics span,
.mini-stats span {
  display: block;
  opacity: 0.78;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-hero {
  background: linear-gradient(180deg, white, var(--surface));
  border-bottom: 1px solid var(--line);
}

.page-hero .page-inner {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 42px;
  align-items: end;
}

.hero-panel {
  min-height: 280px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(7, 49, 95, 0.04), rgba(0, 107, 46, 0.18)),
    url("/assets/hero-cleanup.jpg") center / cover no-repeat;
}

.about-hero {
  position: relative;
  min-height: 614px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #001b3c;
  text-align: center;
  color: white;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 27, 60, 0.96), rgba(0, 27, 60, 0.08) 58%, rgba(0, 27, 60, 0.25)),
    url("/assets/about-hero.jpg") center / cover no-repeat;
  opacity: 0.78;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 48px));
  margin: 0 auto;
}

.about-label {
  display: block;
  margin-bottom: 16px;
  color: #d5e3ff;
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-hero h1 {
  color: white;
  font-size: clamp(2.6rem, 5vw, 3rem);
  line-height: 1.16;
}

.about-hero p {
  max-width: 720px;
  margin: 24px auto 0;
  color: #a8c8ff;
  font-size: 1.16rem;
  line-height: 1.65;
}

.about-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.mission-main,
.mission-philosophy,
.about-value,
.model-card,
.org-card {
  border: 1px solid var(--line);
}

.mission-main {
  grid-column: span 8;
  padding: clamp(32px, 5vw, 48px);
  background: var(--warm);
}

.mission-main h2,
.org-grid h2,
.editorial-block h2 {
  color: var(--primary);
  font-size: 2rem;
  line-height: 1.25;
}

.mission-main p {
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.7;
}

.mission-philosophy {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 48px);
  background: var(--green);
  color: white;
}

.mission-philosophy h3,
.mission-philosophy p {
  color: white;
}

.mission-philosophy .material-symbols-outlined {
  margin-bottom: 16px;
  font-size: 2.6rem;
}

.about-value {
  grid-column: span 4;
  padding: 32px;
  background: white;
  transition: box-shadow 180ms ease;
}

.about-value:hover,
.model-card:hover {
  box-shadow: var(--shadow);
}

.about-value .material-symbols-outlined {
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 2rem;
}

.about-value p,
.model-card p,
.org-grid p,
.editorial-block p,
.editorial-block li {
  color: var(--muted);
  line-height: 1.65;
}

.about-approach {
  padding: clamp(48px, 7vw, 80px) clamp(18px, 4vw, 24px);
  background: #001b3c;
  color: white;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 64px);
  align-items: center;
}

.approach-photo {
  position: relative;
}

.approach-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-left: 8px solid var(--leaf);
}

.approach-copy h2,
.approach-step h3 {
  color: white;
}

.approach-step {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.approach-step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 30px;
  background: var(--primary);
  color: white;
  font-weight: 800;
}

.approach-step p {
  margin: 8px 0 0;
  color: #a8c8ff;
}

.youth-model {
  background: white;
}

.section-center {
  max-width: 760px;
  margin-bottom: 48px;
  text-align: center;
}

.section-center h2 {
  font-size: 2rem;
}

.section-center p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

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

.model-card {
  padding: 32px;
  background: var(--warm);
}

.model-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  background: white;
  color: var(--primary);
}

.editorial-block {
  border-top: 4px solid var(--primary);
  padding-top: 48px;
}

.editorial-block blockquote {
  margin: 24px 0;
  padding: 24px;
  border-radius: 8px;
  background: #e4effd;
  color: #27313c;
  font-style: italic;
  line-height: 1.65;
}

.editorial-block ul {
  display: grid;
  gap: 16px;
  padding: 0;
  list-style: none;
}

.editorial-block li {
  display: flex;
  gap: 12px;
}

.editorial-block li .material-symbols-outlined {
  color: var(--primary);
}

.organisation-band {
  background: var(--warm);
}

.org-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 64px);
  align-items: center;
}

.org-facts {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.org-facts div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.org-facts span {
  color: var(--muted);
  text-align: right;
}

.org-card {
  display: grid;
  justify-items: center;
  padding: clamp(32px, 5vw, 48px);
  background: white;
  text-align: center;
  box-shadow: var(--shadow);
}

.final-cta {
  padding: clamp(48px, 7vw, 80px) clamp(18px, 4vw, 24px);
  text-align: center;
}

.final-cta > div {
  position: relative;
  width: min(820px, 100%);
  margin: 0 auto;
  padding: clamp(40px, 7vw, 80px);
  overflow: hidden;
  background: #001b3c;
  color: white;
}

.final-cta .material-symbols-outlined {
  position: absolute;
  right: 18px;
  top: 8px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 8rem;
}

.final-cta h2 {
  color: white;
  font-size: 2rem;
}

.final-cta p {
  max-width: 620px;
  margin: 18px auto 32px;
  color: #a8c8ff;
  line-height: 1.65;
}

.btn.inverse {
  color: white;
  border-color: white;
}

.filters {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.7fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 48px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: #344253;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.field label span {
  color: #ba1a1a;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: white;
  padding: 11px 16px;
  color: var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy);
  outline: none;
}

.field textarea {
  min-height: 148px;
  resize: vertical;
}

.field small {
  color: var(--muted);
}

.programmes-list {
  display: grid;
  gap: 18px;
}

.programme-row {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 24px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(7, 49, 95, 0.12);
  border-radius: 8px;
  background: var(--paper-2);
}

.programme-row .story-image {
  border-radius: 6px;
  min-height: 260px;
}

.article-shell {
  width: min(880px, 100%);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 72px) clamp(18px, 4vw, 24px) clamp(72px, 9vw, 104px);
}

.post-detail-page {
  padding-bottom: clamp(96px, 12vw, 160px);
}

.post-detail-page .article-shell {
  padding-bottom: 48px;
}

.breadcrumb {
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 750;
}

.article-title {
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.article-deck {
  color: #4e5966;
  font-size: 1.22rem;
  line-height: 1.7;
}

.cover-photo {
  margin: 34px 0;
  border-radius: 8px;
  overflow: hidden;
}

.cover-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.caption {
  padding: 10px 12px;
  background: #fffdf7;
  color: var(--muted);
  font-size: 0.9rem;
}

.article-body {
  color: #2f3945;
  font-size: 1.08rem;
  line-height: 1.86;
}

.article-body h2 {
  margin-top: 34px;
  font-size: 1.8rem;
}

.article-body h3,
.article-body h4 {
  margin-top: 28px;
  font-size: 1.35rem;
}

.article-body p,
.article-body ul,
.article-body ol,
.article-body blockquote,
.article-body figure {
  margin: 20px 0;
}

.article-body ul,
.article-body ol {
  padding-left: 24px;
}

.article-body li {
  margin: 8px 0;
}

.article-body a {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body blockquote {
  border-left: 4px solid var(--primary);
  padding: 18px 22px;
  background: #e4effd;
  color: #27313c;
  font-style: italic;
}

.article-body figure {
  overflow: hidden;
  border-radius: 8px;
  background: #fffdf7;
}

.article-body img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.article-body figure img {
  border-radius: 0;
}

.article-body figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.article-body hr {
  margin: 34px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.article-body + .actions {
  margin-top: 34px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 30px 0;
}

.gallery figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #fffdf7;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.safeguarding-preview {
  background: white;
  border-block: 1px solid var(--line);
}

.safeguarding-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
  outline: 8px solid #e4effd;
}

.safeguarding-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.safeguarding-title .material-symbols-outlined {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(0, 80, 33, 0.1);
  color: var(--primary);
  font-variation-settings: "FILL" 1;
}

.safeguarding-card p,
.feature-layout p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.safeguarding-card ul {
  display: grid;
  gap: 16px;
  margin: 24px 0 32px;
  padding: 0;
  list-style: none;
}

.safeguarding-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 700;
}

.safeguarding-card li .material-symbols-outlined {
  color: var(--primary);
}

.mini-stats {
  margin-top: 26px;
  text-align: left;
}

.mini-stats strong {
  color: var(--green);
}

.share-panel,
.form-panel {
  margin-top: 28px;
  padding: clamp(32px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.contact-success-dialog {
  width: min(440px, calc(100% - 36px));
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: white;
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 27, 60, 0.24);
}

.contact-success-dialog::backdrop {
  background: rgba(0, 27, 60, 0.46);
}

.contact-success-dialog > div {
  display: grid;
  justify-items: start;
  gap: 16px;
  padding: 32px;
}

.contact-success-dialog .material-symbols-outlined {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(0, 107, 46, 0.1);
  color: var(--green);
  font-size: 2rem;
}

.contact-success-dialog h2 {
  font-size: 1.55rem;
}

.contact-success-dialog p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.share-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.share-btn,
.contact-chip {
  min-height: 40px;
  border: 1px solid rgba(7, 49, 95, 0.18);
  border-radius: 6px;
  background: white;
  padding: 9px 12px;
  color: var(--navy);
  font-weight: 850;
  cursor: pointer;
}

.contact-cta {
  padding: 64px clamp(18px, 4vw, 24px);
  background: var(--ink);
  color: white;
  text-align: center;
}

.contact-cta p {
  max-width: 680px;
  margin: 16px auto 36px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  line-height: 1.55;
}

.contact-actions {
  justify-content: center;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.contact-chip:hover {
  background: rgba(255, 255, 255, 0.2);
}

.contact-chip .material-symbols-outlined {
  font-size: 1.25rem;
}

.qr {
  width: 116px;
  height: 116px;
  margin-top: 14px;
  border: 8px solid white;
  background:
    linear-gradient(90deg, var(--navy) 12px, transparent 12px) 0 0 / 29px 29px,
    linear-gradient(var(--navy) 12px, transparent 12px) 0 0 / 29px 29px,
    var(--paper);
  box-shadow: inset 0 0 0 1px rgba(7, 49, 95, 0.16);
}

.contact-card,
.policy-card,
.empty-state {
  padding: 22px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-left {
  display: grid;
  gap: 24px;
}

.contact-options {
  display: grid;
  gap: 12px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 92px;
  transition: background 180ms ease, border-color 180ms ease;
}

.contact-card:hover {
  background: var(--surface);
  border-color: var(--soft-line);
}

.contact-card h3 {
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-card p {
  margin: 4px 0 0;
}

.contact-photo {
  min-height: 320px;
  border-radius: 8px;
  background: url("/assets/contact-team.jpg") center / cover no-repeat;
  overflow: hidden;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.notice {
  padding: 14px;
  border-radius: 6px;
  background: rgba(31, 118, 110, 0.1);
  color: #31534f;
  line-height: 1.6;
}

.success {
  display: none;
  margin-top: 14px;
  padding: 12px;
  border-radius: 6px;
  background: rgba(0, 107, 46, 0.12);
  color: var(--green);
  font-weight: 850;
}

.success.visible {
  display: block;
}

.site-footer {
  padding: 80px clamp(18px, 4vw, 24px) 32px;
  background: #001b3c;
  color: #d9e3f1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 28px;
}

.footer-brand {
  color: var(--warm);
}

.site-footer h2 {
  margin: 0 0 24px;
  color: white;
  font-size: 1rem;
}

.site-footer a:not(.footer-brand) {
  display: block;
  margin: 14px 0;
  color: #d9e3f1;
}

*:focus-visible {
  outline: 3px solid rgba(214, 167, 58, 0.85);
  outline-offset: 2px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  body.menu-open .site-nav,
  body.menu-open .header-cta {
    display: flex;
  }

  body.menu-open .site-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: #fffdf7;
    border-bottom: 1px solid var(--line);
  }

  body.menu-open .header-cta {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 404px;
  }

  .hero {
    min-height: auto;
  }

  .section-head,
  .page-hero .page-inner,
  .hero-grid,
  .feature-layout,
  .impact-row,
  .programme-row,
  .contact-layout,
  .approach-grid,
  .org-grid {
    grid-template-columns: 1fr;
  }

  .mission-main,
  .mission-philosophy,
  .about-value {
    grid-column: 1 / -1;
  }

  .hero-grid {
    display: grid;
  }

  .hero-collage {
    height: 440px;
  }

  .impact-row {
    display: grid;
    text-align: left;
  }

  .focus-grid,
  .story-grid,
  .contact-grid,
  .policy-grid,
  .model-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-list .story-card {
    grid-template-columns: 1fr;
  }

  .filters {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .brand span {
    max-width: 160px;
    line-height: 1.05;
  }

  .hero {
    padding-top: 48px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-collage {
    height: auto;
    grid-template-rows: none;
  }

  .collage-item {
    grid-column: 1 / -1;
    grid-row: auto;
    transform: none;
    aspect-ratio: 16 / 9;
  }

  .focus-grid,
  .story-grid,
  .contact-grid,
  .policy-grid,
  .model-grid,
  .footer-grid,
  .filters,
  .gallery {
    grid-template-columns: 1fr;
  }

  .about-hero {
    min-height: 520px;
  }

  .about-hero h1 {
    font-size: 2.25rem;
  }

  .mission-main,
  .mission-philosophy,
  .about-value,
  .model-card,
  .org-card {
    padding: 24px;
  }

  .org-facts div {
    display: grid;
  }

  .org-facts span {
    text-align: left;
  }

  .actions,
  .share-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn,
  .share-btn,
  .contact-chip {
    width: 100%;
  }

  .impact-metrics,
  .mini-stats {
    flex-direction: column;
    gap: 18px;
    text-align: left;
  }
}
