:root {
  --ink: #151318;
  --text: #29242b;
  --muted: #6f6570;
  --line: #e6dde3;
  --paper: #fbf7f3;
  --white: #ffffff;
  --pink: #fe1f4c;
  --plum: #4a1028;
  --blue: #1e4ed8;
  --mint: #d8f1e4;
  --gold: #d2a331;
  --radius: 8px;
  --measure: 1180px;
}
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: Inter, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
main {
  max-width: 100vw;
  overflow: hidden;
}
a { color: inherit; text-decoration: none; }
p { margin: 0; overflow-wrap: break-word; }
img { max-width: 100%; height: auto; }
.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 12px;
  background: var(--ink);
  color: var(--white);
}
.skip-link:focus { transform: translateY(0); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 243, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(var(--measure), calc(100% - 48px));
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-mark {
  width: 86px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.brand-mark img { width: 58px; display: block; }
.brand-text { display: grid; gap: 1px; }
.brand-text strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.1;
  font-weight: 850;
}
.brand-text small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}
.site-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
}
.site-nav a {
  padding: 30px 0;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  border-color: var(--pink);
}
.header-cta,
.button,
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}
.button--ghost {
  background: transparent;
  color: var(--ink);
}
.home-hero {
  width: min(var(--measure), calc(100% - 48px));
  margin: 0 auto;
  padding: 82px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .72fr);
  gap: 54px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--pink);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: break-word;
}
h1 {
  max-width: 760px;
  font-size: clamp(46px, 5.8vw, 78px);
  font-weight: 880;
}
h2 {
  max-width: 720px;
  font-size: clamp(32px, 4.1vw, 58px);
  font-weight: 860;
}
h3 {
  font-size: 21px;
  font-weight: 850;
}
.lead {
  max-width: 680px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.72;
  font-weight: 620;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.hero-copy,
.home-hero > *,
.section-head > *,
.evidence-home > *,
.resource-panel > *,
.site-cta > *,
.footer-grid > * {
  min-width: 0;
}
.hero-system {
  position: relative;
  min-width: 0;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(254, 31, 76, .12), transparent 42%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(21, 19, 24, .08);
}
.hero-system::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(254, 31, 76, .18);
  border-radius: 6px;
  pointer-events: none;
}
.hero-system img {
  width: 128px;
  display: block;
  margin-bottom: 34px;
}
.system-flow {
  position: relative;
  display: grid;
  gap: 10px;
}
.system-flow span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font-weight: 850;
}
.hero-system p {
  margin-top: 24px;
  color: var(--muted);
  font-weight: 650;
}
.metric-band {
  width: min(var(--measure), calc(100% - 48px));
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.metric-band article {
  padding: 24px;
  border-right: 1px solid var(--line);
}
.metric-band article:last-child { border-right: 0; }
.metric-band strong {
  display: block;
  color: var(--pink);
  font-size: 38px;
  line-height: 1;
}
.metric-band span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.program-showcase,
.method-section,
.audience-section,
.resource-panel,
.evidence-home,
.programme-section,
.evidence-section,
.related-section,
.block-grid-section,
.site-footer {
  width: min(var(--measure), calc(100% - 48px));
  margin: 0 auto;
}
.program-showcase,
.method-section,
.audience-section,
.resource-panel,
.evidence-home,
.programme-section,
.evidence-section,
.related-section,
.block-grid-section {
  padding: 78px 0;
  border-top: 1px solid var(--line);
}
.section-head {
  display: grid;
  grid-template-columns: minmax(220px, .42fr) minmax(0, 1fr);
  gap: 50px;
  align-items: start;
  margin-bottom: 32px;
}
.section-head p {
  max-width: 620px;
  color: var(--muted);
  font-weight: 620;
}
.program-cards,
.detail-grid,
.tiles,
.resource-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.program-card,
.detail,
.tile,
.faq-list article {
  min-width: 0;
  min-height: 230px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.program-card:hover,
.tile:hover,
.program-card:focus-visible,
.tile:focus-visible {
  border-color: rgba(254, 31, 76, .55);
  box-shadow: 0 16px 45px rgba(21, 19, 24, .08);
  transform: translateY(-2px);
}
.program-card span,
.tile span,
.program-strip span {
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.program-card p,
.detail p,
.tile small,
.faq-list p,
.site-footer p {
  color: var(--muted);
  line-height: 1.62;
  font-weight: 600;
}
.method-section {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--measure)) / 2));
  padding-right: max(24px, calc((100vw - var(--measure)) / 2));
  background: var(--ink);
}
.method-section h2,
.method-section h3 { color: var(--white); }
.method-section .section-head p,
.method-section article p { color: rgba(255,255,255,.68); }
.method-steps,
.program-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.18);
}
.method-steps article,
.program-strip article {
  min-width: 0;
  min-height: 190px;
  padding: 22px;
  background: #211d25;
}
.method-steps span {
  display: block;
  margin-bottom: 52px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
}
.evidence-home {
  display: grid;
  grid-template-columns: .62fr 1fr;
  gap: 44px;
  align-items: start;
}
.evidence-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.evidence-list span {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 820;
}
.resource-panel {
  display: grid;
  grid-template-columns: .55fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 52px;
  background: var(--mint);
  border-radius: var(--radius);
  border-top: 0;
}
.resource-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.site-cta {
  width: min(var(--measure), calc(100% - 48px));
  margin: 78px auto;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--plum);
  border-radius: var(--radius);
}
.site-cta h2 { color: var(--white); max-width: 760px; }
.site-cta .button {
  background: var(--white);
  color: var(--plum);
  border-color: var(--white);
}
.content-header-section {
  background:
    linear-gradient(135deg, rgba(254,31,76,.1), transparent 38%),
    var(--white);
  border-bottom: 1px solid var(--line);
}
.content-header-section__body {
  width: min(var(--measure), calc(100% - 48px));
  margin: 0 auto;
  padding: 74px 0 64px;
}
.content-header-section .lead { color: var(--muted); }
.content-header-section.theme-dark,
.theme-dark { color: var(--text); }
.content-header-section.theme-dark h1,
.content-header-section.theme-dark .lead { color: inherit; }
.detail-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.programme-section .program-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: var(--line);
  border-color: var(--line);
}
.programme-section .program-strip article {
  background: var(--white);
}
.programme-section .program-strip h3 { color: var(--ink); }
.related-section .tiles,
.audience-section .tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.site-footer {
  padding: 60px 0 72px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 48px;
  border-top: 1px solid var(--line);
}
.site-footer img { width: 136px; display: block; }
.site-footer p { max-width: 520px; margin-top: 20px; }
.footer-note { color: var(--pink) !important; font-weight: 850; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.footer-grid h2 {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--ink);
}
.footer-grid a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}
@media (max-width: 1020px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 70px;
  }
  .site-nav { display: none; }
  .home-hero,
  .evidence-home,
  .resource-panel,
  .section-head,
  .site-footer {
    grid-template-columns: 1fr;
  }
  .home-hero { padding-top: 54px; }
  .program-cards,
  .detail-grid,
  .tiles,
  .resource-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .method-steps,
  .program-strip,
  .programme-section .program-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  body { min-width: 0; }
  .header-inner,
  .home-hero,
  .metric-band,
  .program-showcase,
  .method-section,
  .audience-section,
  .resource-panel,
  .evidence-home,
  .programme-section,
  .evidence-section,
  .related-section,
  .block-grid-section,
  .site-footer,
  .site-cta,
  .content-header-section__body {
    width: min(calc(100vw - 32px), 374px);
    max-width: calc(100vw - 32px);
    margin-left: 16px;
    margin-right: auto;
  }
  .header-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
  .brand-lockup { width: 100%; }
  .brand-mark { width: 74px; height: 42px; }
  .brand-mark img { width: 52px; }
  .brand-text { min-width: 0; }
  .brand-text strong {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .brand-text small { display: none; }
  .header-cta { display: none; }
  h1 {
    max-width: 100%;
    font-size: 36px;
    line-height: 1.08;
    overflow-wrap: break-word;
  }
  h2 { font-size: 30px; line-height: 1.08; }
  .lead {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.62;
  }
  .actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .button,
  .btn {
    width: 100%;
    padding: 10px 14px;
    white-space: normal;
    text-align: center;
  }
  .home-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    padding: 44px 0 36px;
  }
  .home-hero > *,
  .hero-system {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .hero-system {
    padding: 20px;
    overflow: hidden;
  }
  .hero-system::before { inset: 10px; }
  .hero-system img {
    width: 108px;
    margin-bottom: 24px;
  }
  .system-flow span {
    min-width: 0;
    padding: 0 14px;
  }
  .metric-band,
  .program-cards,
  .detail-grid,
  .tiles,
  .resource-links,
  .evidence-list,
  .faq-list {
    grid-template-columns: 1fr;
  }
  .metric-band article { border-right: 0; border-bottom: 1px solid var(--line); }
  .metric-band article:last-child { border-bottom: 0; }
  .program-showcase,
  .method-section,
  .audience-section,
  .resource-panel,
  .evidence-home,
  .programme-section,
  .evidence-section,
  .related-section,
  .block-grid-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }
  .resource-panel,
  .site-cta { padding: 28px; }
  .site-cta { display: grid; margin: 52px auto; }
}
