/* ==========================================================================
   FEMH Inaugural Report — Master Stylesheet
   "Before Evolution: The State of Mental Health"
   Foundation for Evolution and Mental Health, May 2026
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,300..900;1,8..60,300..900&family=Inter:wght@300;400;500;600;700&display=swap');

/* -------- Design tokens (FEMH design system) ---------------------------- */
:root {
  /* Brand palette */
  --femh-white:        #FFFFFF;
  --femh-forest:       #0F4A44;
  --femh-sage:         #3D6B5E;
  --femh-teal:         #1E8F7E;
  --femh-ink:          #0B2A26;
  --femh-cream:        #F7F4EC;
  --femh-stone:        #E6E3DA;
  --femh-line:         #D9D9D6;
  --femh-forest-08:    #E8EFEE;
  --femh-forest-20:    #CFDDDB;
  --femh-forest-80:    #3D6E69;

  /* Semantic */
  --bg:           var(--femh-white);
  --bg-elev:      var(--femh-cream);
  --bg-inverse:   var(--femh-ink);
  --bg-accent:    var(--femh-forest);
  --fg1:          var(--femh-ink);
  --fg2:          #2E4743;
  --fg3:          #6B7F7B;
  --fg-on-dark:   var(--femh-white);
  --fg-on-dark-2: #CFDDDB;
  --fg-link:      var(--femh-forest);
  --fg-link-hover:var(--femh-teal);
  --border:       var(--femh-line);

  /* Type */
  --font-serif: "Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono:  ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --fs-display: clamp(48px, 6.4vw, 96px);
  --fs-h1:      clamp(40px, 4.8vw, 64px);
  --fs-h2:      clamp(28px, 3.0vw, 40px);
  --fs-h3:      22px;
  --fs-h4:      18px;
  --fs-lead:    22px;
  --fs-body:    18px;
  --fs-small:   14px;
  --fs-caption: 12px;

  --lh-tight: 1.1;
  --lh-snug:  1.25;
  --lh-base:  1.55;
  --lh-loose: 1.7;

  --tracking-caps:   0.14em;
  --tracking-tight: -0.01em;

  /* Spacing (8pt) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Radii / shadows */
  --radius-1: 2px;
  --radius-2: 4px;
  --radius-3: 8px;
  --radius-4: 12px;
  --radius-pill: 999px;

  --shadow-1: 0 1px 2px rgba(11, 42, 38, 0.06);
  --shadow-2: 0 2px 8px rgba(11, 42, 38, 0.08);
  --shadow-3: 0 12px 40px rgba(11, 42, 38, 0.12);

  /* Motion */
  --ease-standard: cubic-bezier(0.2, 0, 0, 1);
  --dur-fast: 160ms;
  --dur-med:  280ms;

  /* Layout */
  --container:        1200px;
  --container-narrow: 860px;
  --container-mid:    980px;
  --nav-h:            72px;
}

/* -------- Reset / base -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-base);
  color: var(--fg1);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  overflow-x: hidden;          /* clip stray decorative imagery on small screens */
}
img { max-width: 100%; display: block; }
hr  { border: 0; border-top: 1px solid var(--border); margin: var(--space-7) 0; }

a {
  color: var(--fg-link);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--dur-fast) var(--ease-standard);
}
a:hover { color: var(--fg-link-hover); }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--femh-ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-2);
  z-index: 200;
  font-weight: 600;
  font-size: 14px;
}
.skip-link:focus { left: 16px; outline: 2px solid var(--femh-teal); outline-offset: 2px; }

/* -------- Type ---------------------------------------------------------- */
h1, h2, h3, h4 { color: var(--fg1); margin: 0 0 var(--space-4); }
h1 { font-family: var(--font-serif); font-weight: 400; font-size: var(--fs-h1); line-height: var(--lh-tight); letter-spacing: var(--tracking-tight); }
h2 { font-family: var(--font-serif); font-weight: 400; font-size: var(--fs-h2); line-height: var(--lh-snug); }
h3 { font-family: var(--font-sans);  font-weight: 600; font-size: var(--fs-h3); line-height: var(--lh-snug); }
h4 { font-family: var(--font-sans);  font-weight: 600; font-size: var(--fs-h4); line-height: var(--lh-snug); }
p  { margin: 0 0 var(--space-4); line-height: var(--lh-loose); }

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: var(--fs-caption);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--fg-link);
  margin: 0 0 var(--space-3);
  display: inline-block;
}
.lead {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--fs-lead);
  line-height: var(--lh-base);
  color: var(--fg2);
}

/* On-dark variants */
.on-dark { color: var(--fg-on-dark); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4, .on-dark p { color: var(--fg-on-dark); }
.on-dark .eyebrow { color: var(--fg-on-dark-2); }
.on-dark a        { color: var(--fg-on-dark); }
.on-dark a:hover  { color: var(--femh-forest-20); }

/* -------- Layout containers --------------------------------------------- */
.container        { max-width: var(--container);        margin: 0 auto; padding: 0 var(--space-6); }
.container-mid    { max-width: var(--container-mid);    margin: 0 auto; padding: 0 var(--space-6); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--space-6); }

.band            { padding: var(--space-9) 0; }
.band--cream     { background: var(--femh-cream); }
.band--ink       { background: var(--femh-ink);  color: var(--fg-on-dark); }
.band--forest    { background: var(--femh-forest); color: var(--fg-on-dark); }

/* ==========================================================================
   1. Sticky top nav
   ========================================================================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-fast) var(--ease-standard),
              background var(--dur-fast) var(--ease-standard);
}
.site-nav.is-scrolled { border-bottom-color: var(--border); }

.site-nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-6);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: var(--space-5);
}
.site-nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--fg1);
  flex-shrink: 0;
}
.site-nav__brand img { width: 36px; height: 36px; }
.site-nav__brand-text {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: var(--tracking-tight);
}
.site-nav__brand-text small {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--fg3);
  margin-top: 2px;
}

.site-nav__links {
  display: flex;
  gap: var(--space-5);
  margin-left: auto;
  align-items: center;
}
.site-nav__links > a,
.site-nav__links .nav-dropdown__trigger {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg1);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.site-nav__links > a:hover,
.site-nav__links .nav-dropdown__trigger:hover { color: var(--femh-teal); border-bottom-color: var(--femh-teal); }

/* -------- Nav dropdown -------------------------------------------------- */
.nav-dropdown {
  position: relative;
}
.nav-dropdown__chev {
  font-size: 10px;
  color: var(--fg3);
  transition: transform var(--dur-fast) var(--ease-standard),
              color var(--dur-fast) var(--ease-standard);
}
.nav-dropdown:hover .nav-dropdown__chev,
.nav-dropdown:focus-within .nav-dropdown__chev {
  color: var(--femh-teal);
  transform: rotate(180deg);
}
.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 320px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-3);
  box-shadow: var(--shadow-2);
  /* The padding-top creates a hoverable bridge between trigger and menu —
     mousing down from the trigger never crosses an empty gap, so the
     dropdown won't collapse mid-traverse. */
  padding: 16px 0 14px;
  margin-top: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-fast) var(--ease-standard),
              transform var(--dur-fast) var(--ease-standard);
  z-index: 60;
}
/* Invisible hover-buffer just below the trigger, so the cursor stays
   "inside" the dropdown's hover zone the whole way down. */
.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 12px;
  pointer-events: none;
}
.nav-dropdown:hover::after,
.nav-dropdown:focus-within::after {
  pointer-events: auto;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown__heading {
  display: block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--femh-forest);
  padding: 0 18px 8px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.nav-dropdown__menu a {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 8px 18px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg1);
  text-decoration: none;
  border: 0 !important;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-standard);
}
.nav-dropdown__menu a:hover {
  background: var(--femh-cream);
  color: var(--femh-forest);
  border: 0 !important;
}
.nav-dropdown__num {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 18px;
  color: var(--femh-forest);
  text-align: right;
  line-height: 1;
}

/* On mobile (collapsed nav) the dropdown menu becomes inline */
@media (max-width: 880px) {
  .nav-dropdown { width: 100%; }
  .nav-dropdown__menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: 0;
    border-top: 1px solid var(--border);
    background: var(--femh-cream);
    border-radius: 0;
    padding: 8px 0;
    min-width: 0;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-dropdown__chev { display: none; }
  .nav-dropdown__heading { display: none; }
  .nav-dropdown__menu a { padding: 10px 18px 10px 32px; }
}

.btn-print {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--femh-forest);
  color: #fff;
  border: 0;
  padding: 10px 18px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  border-radius: var(--radius-2);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-standard);
}
.btn-print:hover { background: var(--femh-ink); }
.btn-print svg { width: 14px; height: 14px; }

/* Foundation CTA — used at the bottom of the closing FEMH spotlight */
.btn-foundation {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--femh-forest);
  color: #fff !important;
  text-decoration: none;
  padding: 12px 20px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  border-radius: var(--radius-2);
  transition: background var(--dur-fast) var(--ease-standard), transform var(--dur-fast) var(--ease-standard);
}
.btn-foundation:hover { background: var(--femh-ink); color: #fff !important; transform: translateX(2px); }

.nav-toggle {
  display: none;
  background: none; border: 0; padding: 8px;
  cursor: pointer; color: var(--fg1);
}

@media (max-width: 880px) {
  .site-nav__brand-text small { display: none; }
  .site-nav__links {
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-4) var(--space-6);
    transform: translateY(-12px);
    opacity: 0;
    /* visibility: hidden propagates to descendants — pointer-events: none
       on this parent does NOT, so when the panel is "closed" its children
       (anchor links and dropdown menus) silently intercepted clicks. */
    visibility: hidden;
    pointer-events: none;
    transition: transform var(--dur-fast) var(--ease-standard),
                opacity var(--dur-fast) var(--ease-standard),
                visibility 0s linear var(--dur-fast);
  }
  .site-nav.is-open .site-nav__links {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform var(--dur-fast) var(--ease-standard),
                opacity var(--dur-fast) var(--ease-standard),
                visibility 0s linear 0s;
  }
  .site-nav__links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  .site-nav__links a:last-child { border-bottom: 0; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .btn-print  { display: none; }
}

/* ==========================================================================
   2. Hero (screen) — namespaced as `.site-hero` to avoid colliding with
   figure markup (some figures use `.hero` for stat cards).
   ========================================================================== */
.site-hero {
  position: relative;
  background: var(--femh-ink);
  color: var(--fg-on-dark);
  overflow: hidden;
  isolation: isolate;
}
.site-hero__bg-mark {
  position: absolute;
  right: 4%;                 /* pulled in from -80px so the right face is visible */
  top: 50%;                  /* anchored to vertical centre, not bottom */
  transform: translateY(-50%);
  width: 480px;
  max-width: 50%;
  opacity: 0.10;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 720px) {
  .site-hero__bg-mark {
    right: 4%;
    top: auto;
    bottom: -30px;
    transform: none;
    width: 260px;
    max-width: 60%;
    opacity: 0.08;
  }
}
.site-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(72px, 12vh, 144px) var(--space-6) clamp(96px, 14vh, 160px);
}
.site-hero__eyebrow {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--fg-on-dark-2);
  margin-bottom: var(--space-5);
}
.site-hero__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: var(--tracking-tight);
  color: var(--femh-forest-20);
  margin: 0 0 var(--space-3);
  max-width: 16ch;
}
.site-hero__subtitle {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 var(--space-6);
  max-width: 14ch;
}
.site-hero__lede {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-lead);
  line-height: var(--lh-base);
  color: var(--fg-on-dark-2);
  max-width: 60ch;
  margin: 0 0 var(--space-7);
}
.site-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6) var(--space-8);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.18);
  max-width: 720px;
}
.site-hero__meta-item {
  font-size: 13px;
  line-height: 1.5;
  color: var(--fg-on-dark-2);
}
.site-hero__meta-item strong {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}
.site-hero__currency-note {
  margin-top: var(--space-6);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  max-width: 540px;
}

/* ==========================================================================
   3. Part openers (between Parts I / II / III)
   ========================================================================== */
.part-opener {
  background: var(--femh-forest);
  color: var(--fg-on-dark);
  padding: var(--space-9) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.part-opener__mark {
  position: absolute;
  right: 6%;                 /* pulled in from -40px so the mark sits inside the canvas */
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  max-width: 42%;
  opacity: 0.10;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 720px) {
  .part-opener__mark {
    right: 4%;
    width: 200px;
    opacity: 0.08;
  }
}
.part-opener__inner { position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; padding: 0 var(--space-6); }
.part-opener__num {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(80px, 11vw, 160px);
  line-height: 1;
  color: rgba(255,255,255,0.20);
  margin: 0 0 var(--space-3);
  letter-spacing: -0.02em;
}
.part-opener__label {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--femh-forest-20);
  margin: 0 0 var(--space-3);
}
.part-opener__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  margin: 0;
  max-width: 18ch;
  color: #fff;
}

/* ==========================================================================
   4. Section anchors and headings
   ========================================================================== */
.section { padding: var(--space-9) 0 var(--space-8); position: relative; }
.section + .section { padding-top: 0; }

/* Section header: eyebrow ("Section X") + bold serif title + accent rule. */
.section-num {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--femh-forest);
  margin: 0 0 var(--space-4);
}
.section-num::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--femh-forest);
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.08;
  margin: 0 0 var(--space-7);
  letter-spacing: var(--tracking-tight);
  color: var(--femh-ink);
}

/* For sections that are not in a numbered "Section N" position (like
   "Executive Summary", "Recommendations", "About FEMH"), use a simpler
   variant with extra emphasis. */
.section-title--lead {
  font-size: clamp(40px, 4.8vw, 64px);
  border-bottom: 2px solid var(--femh-forest);
  padding-bottom: var(--space-5);
  margin-bottom: var(--space-7);
}

.subsection-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.2;
  margin: var(--space-7) 0 var(--space-4);   /* tighter — was space-9 */
  color: var(--femh-ink);
}

/* Right-side decorative mark for numbered sections (anchors a sense of
   chapter without needing a divider rule below). */
.section[data-numbered] {
  position: relative;
}
.section[data-numbered]::before {
  content: "";
  position: absolute;
  top: var(--space-9);
  right: 4%;
  width: 280px;
  height: 280px;
  background: url('assets/logo/femh-symbol-forest.png') center/contain no-repeat;
  opacity: 0.045;
  pointer-events: none;
  z-index: 0;
}
.section[data-numbered] > * { position: relative; z-index: 1; }
@media (max-width: 900px) {
  .section[data-numbered]::before { display: none; }
}

/* ==========================================================================
   5. Box types — distinct visual treatments
   ========================================================================== */

/* Shared base */
.box {
  margin: var(--space-7) 0;
  padding: var(--space-6) var(--space-7);
  border-radius: var(--radius-4);
  page-break-inside: avoid;
  break-inside: avoid;
}
.box__eyebrow {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  margin: 0 0 var(--space-3);
  color: var(--femh-forest);
}
.box__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.18;
  margin: 0 0 var(--space-4);
  color: var(--fg1);
}
.box ul { margin: 0 0 var(--space-3); padding-left: 1.4em; }
.box li { margin-bottom: var(--space-3); line-height: var(--lh-loose); }
.box p:last-child { margin-bottom: 0; }

/* 5.1 Key Findings — opening panel, cream background, navy left rule */
.box-key-findings {
  background: var(--femh-cream);
  border-left: 4px solid var(--femh-forest);
  padding: var(--space-7) var(--space-8);
}
.box-key-findings .box__title {
  font-size: 30px;
  margin-bottom: var(--space-5);
}
.box-key-findings ul { list-style: none; padding-left: 0; }
.box-key-findings li {
  position: relative;
  padding-left: 28px;
  margin-bottom: var(--space-5);
  font-size: 16px;
}
.box-key-findings li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 14px; height: 2px;
  background: var(--femh-forest);
}
.box-key-findings li strong { color: var(--femh-forest); font-weight: 700; }

/* 5.2 Crisis stats panel — small grid of stat cards, with a forest-green
   globe peeking out of the bottom-right corner. */
.box-crisis-stats {
  background: var(--femh-cream);
  padding: var(--space-7) var(--space-7);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.box-crisis-stats::after {
  /* Wireframe globe — only the meridian/parallel lines, no continent
     splodges. Sits large in the bottom-right and is partially clipped by the
     box, which gives the "globe peeking out" effect. */
  content: "";
  position: absolute;
  right: -260px;
  bottom: -260px;
  width: 720px;
  height: 720px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'><g fill='none' stroke='%230F4A44' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'><circle cx='200' cy='200' r='180'/><ellipse cx='200' cy='200' rx='180' ry='32'/><ellipse cx='200' cy='200' rx='180' ry='72'/><ellipse cx='200' cy='200' rx='180' ry='115'/><ellipse cx='200' cy='200' rx='180' ry='155'/><ellipse cx='200' cy='200' rx='32' ry='180'/><ellipse cx='200' cy='200' rx='72' ry='180'/><ellipse cx='200' cy='200' rx='115' ry='180'/><ellipse cx='200' cy='200' rx='155' ry='180'/></g></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.16;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 720px) {
  .box-crisis-stats::after {
    right: -180px; bottom: -180px;
    width: 480px; height: 480px;
  }
}
.box-crisis-stats > * { position: relative; z-index: 1; }
.box-crisis-stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-5);
}
.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-3);
  padding: var(--space-5);
}
.stat-card__region {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--femh-forest);
  margin-bottom: var(--space-2);
}
.stat-card__body { font-size: 14px; line-height: 1.55; color: var(--fg2); margin: 0; }
.stat-card__src {
  margin-top: var(--space-3);
  font-size: 11px;
  color: var(--fg3);
}

/* 5.3 What FEMH Proposes — institutional voice, forest-on-cream */
.box-femh-proposes {
  background: var(--femh-forest);
  color: var(--fg-on-dark);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.box-femh-proposes::after {
  content: "";
  position: absolute;
  right: -40px; bottom: -40px;
  width: 240px; height: 240px;
  background: url('assets/logo/femh-symbol-white.png') center/contain no-repeat;
  opacity: 0.10;
  z-index: 0;
  pointer-events: none;
}
.box-femh-proposes > * { position: relative; z-index: 1; }
.box-femh-proposes .box__eyebrow { color: var(--femh-forest-20); }
.box-femh-proposes .box__title   { color: #fff; }
.box-femh-proposes p, .box-femh-proposes li { color: var(--fg-on-dark-2); }
.box-femh-proposes a { color: #fff; }
.box-femh-proposes strong, .box-femh-proposes h3, .box-femh-proposes h4 { color: #fff; }

/* 5.4 Case Study — narrative, cream + teal top rule */
.box-case-study {
  background: var(--femh-cream);
  border-top: 3px solid var(--femh-teal);
  border-radius: 0 0 var(--radius-4) var(--radius-4);
}
.box-case-study .box__eyebrow { color: var(--femh-teal); }

/* 5.5 Conceptual feature box — clean white card */
.box-feature {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-1);
}

/* 5.6 Institutional spotlight — two-column: meta on left, body on right */
.box-institutional {
  background: #fff;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: var(--space-7);
  padding: var(--space-7);
}
.box-institutional__meta {
  border-right: 1px solid var(--border);
  padding-right: var(--space-6);
}
.box-institutional__name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 var(--space-3);
  color: var(--femh-forest);
}
.box-institutional__detail {
  font-size: 13px;
  color: var(--fg2);
  line-height: 1.6;
  margin: 0 0 var(--space-2);
}
.box-institutional__detail strong { color: var(--fg1); }
@media (max-width: 720px) {
  .box-institutional { grid-template-columns: 1fr; }
  .box-institutional__meta { border-right: 0; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: var(--space-5); }
}

/* 5.7 Expert bio + quote — photo left, bio + quote right */
.box-expert {
  background: var(--femh-cream);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--space-6);
  align-items: start;
  padding: var(--space-6);
}
.box-expert__photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--femh-stone);
  flex-shrink: 0;
}
.box-expert__photo img { width: 100%; height: 100%; object-fit: cover; }
.box-expert__name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 var(--space-2);
  color: var(--femh-forest);
}
.box-expert__bio {
  font-size: 14px;
  font-style: italic;
  color: var(--fg2);
  line-height: 1.5;
  margin: 0 0 var(--space-4);
}
.box-expert__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.45;
  color: var(--fg1);
  margin: 0;
  border-left: 2px solid var(--femh-forest);
  padding-left: var(--space-4);
}
@media (max-width: 640px) {
  .box-expert { grid-template-columns: 1fr; }
  .box-expert__photo { width: 110px; height: 110px; }
}

/* 5.8 Pull quote — no box; vertical rule + display serif. Larger, weightier,
   and visually punchier so it lands as a moment in the reading flow. */
.pull-quote {
  margin: var(--space-9) 0;
  padding: 0 0 0 var(--space-6);
  border-left: 4px solid var(--femh-forest);
  break-inside: avoid;
  page-break-inside: avoid;
}
.pull-quote__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.4;
  color: var(--femh-ink);
  margin: 0 0 var(--space-5);
}
.pull-quote__text::before {
  content: "“";
  display: inline;
  color: var(--femh-forest);
  font-weight: 600;
  margin-right: 0.05em;
}
.pull-quote__text::after {
  content: "”";
  display: inline;
  color: var(--femh-forest);
  font-weight: 600;
  margin-left: 0.05em;
}
.pull-quote__cite {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 14px;
  color: var(--fg2);
  letter-spacing: 0.01em;
  line-height: 1.5;
}
.pull-quote__cite strong { color: var(--femh-forest); font-weight: 700; display: block; margin-bottom: 2px; }

/* "Hero" pull quote variant — used for opening Adam Hunt quote (with photo). */
.pull-quote--hero {
  background: var(--femh-cream);
  border-left: 6px solid var(--femh-forest);
  padding: var(--space-7);
  border-radius: 0 var(--radius-3) var(--radius-3) 0;
  margin: var(--space-9) 0 var(--space-6);
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: var(--space-6);
  align-items: start;
}
.pull-quote--hero .pull-quote__text {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 400;
}
.pull-quote__photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--femh-stone);
  flex-shrink: 0;
}
.pull-quote__photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 640px) {
  .pull-quote--hero { grid-template-columns: 1fr; }
  .pull-quote__photo { width: 96px; height: 96px; }
}

/* "With photo" variant — for any pull quote where we want a portrait
   alongside (e.g. Paul St John-Smith). */
.pull-quote--with-photo {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: var(--space-6);
  align-items: start;
  border-left: 4px solid var(--femh-forest);
  padding-left: var(--space-6);
}
.pull-quote--with-photo .pull-quote__photo {
  width: 110px; height: 110px;
}
@media (max-width: 640px) {
  .pull-quote--with-photo { grid-template-columns: 1fr; }
  .pull-quote--with-photo .pull-quote__photo { width: 90px; height: 90px; }
}

/* 5.9 Next-generation case study — compact bio variant */
.box-next-gen {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--femh-sage);
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--space-5);
  padding: var(--space-5) var(--space-6);
  align-items: start;
}
.box-next-gen__photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--femh-stone);
}
.box-next-gen__photo img { width: 100%; height: 100%; object-fit: cover; }
.box-next-gen__name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 var(--space-2);
  color: var(--femh-forest);
}
.box-next-gen__bio {
  font-size: 13px;
  font-style: italic;
  color: var(--fg2);
  margin: 0 0 var(--space-3);
}
.box-next-gen__body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg1);
  margin: 0;
}
@media (max-width: 640px) {
  .box-next-gen { grid-template-columns: 1fr; }
  .box-next-gen__photo { width: 80px; height: 80px; }
}

/* ==========================================================================
   5b. Executive Summary — three parts stacked vertically (one full-width
   row each) for better readability on every viewport.
   ========================================================================== */
.summary-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-top: var(--space-8);
}
.summary-part {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 5px solid var(--femh-forest);
  border-radius: 0 var(--radius-3) var(--radius-3) 0;
  padding: var(--space-7) var(--space-7) var(--space-6);
  break-inside: avoid;
}
.summary-part__label {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--femh-forest);
  margin-bottom: var(--space-2);
}
.summary-part__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.15;
  margin: 0 0 var(--space-5);
  color: var(--femh-ink);
}
.summary-part h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
  color: var(--femh-forest);
  margin: var(--space-6) 0 var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}
.summary-part h4:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.summary-part p { font-size: 15px; line-height: 1.65; margin: 0 0 var(--space-3); color: var(--fg2); }

/* ==========================================================================
   5c. Principle cards (used for Sec 8 evolution-informed workplace,
   and other lists where each item benefits from icon + headline + body)
   ========================================================================== */
.principle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
  margin: var(--space-7) 0;
}
.principle-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-3);
  padding: var(--space-6);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-4);
  align-items: start;
  break-inside: avoid;
  transition: box-shadow var(--dur-fast) var(--ease-standard),
              border-color var(--dur-fast) var(--ease-standard);
}
.principle-card:hover {
  box-shadow: var(--shadow-2);
  border-color: var(--femh-forest);
}
.principle-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--femh-forest-08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--femh-forest);
  flex-shrink: 0;
}
.principle-card__icon svg { width: 28px; height: 28px; }
.principle-card__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 var(--space-2);
  color: var(--femh-ink);
}
.principle-card__body {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fg2);
  margin: 0;
}
@media (max-width: 720px) {
  .principle-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   "Stage is Set" closing section — high-impact treatment with giant
   transparent foundation mark filling the background.
   ========================================================================== */
.closing-statement {
  position: relative;
  isolation: isolate;
  padding: var(--space-10) 0 var(--space-9);
  overflow: hidden;
}
.closing-statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/logo/femh-symbol-forest.png') center/min(80vmin, 700px) no-repeat;
  opacity: 0.06;
  z-index: -1;
  pointer-events: none;
}
.closing-statement .subsection-title {
  text-align: center;
  font-size: clamp(36px, 4vw, 52px);
  margin: 0 auto var(--space-7);
  color: var(--femh-forest);
  letter-spacing: var(--tracking-tight);
}
.closing-statement .subsection-title::before {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  background: var(--femh-forest);
  margin: 0 auto var(--space-5);
}
.closing-statement p {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.65;
  color: var(--femh-ink);
  margin-bottom: var(--space-5);
}
.closing-statement p strong {
  color: var(--femh-forest);
  font-weight: 700;
}

/* ==========================================================================
   5d. Section divider — small foundation mark to mark new sections in the
   reading flow (used as a visual breath between long stretches of body).
   ========================================================================== */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--space-9) auto;
  max-width: var(--container-narrow);
  padding: 0 var(--space-6);
  gap: var(--space-5);
}
.section-divider::before,
.section-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.section-divider img {
  width: 36px;
  height: 36px;
  opacity: 0.55;
}

/* ==========================================================================
   5e. Cambridge unified spotlight (and equivalents for any institution
   we want to give standalone-page treatment).
   ========================================================================== */
.spotlight {
  background: linear-gradient(180deg, var(--femh-cream) 0%, #FBFAF4 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-4);
  padding: var(--space-8);
  margin: var(--space-9) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.spotlight::before {
  /* accent rule along the top edge */
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--femh-forest), var(--femh-teal));
  z-index: 1;
}
.spotlight::after {
  /* subtle FEMH symbol watermark, top-right */
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 280px; height: 280px;
  background: url('assets/logo/femh-symbol-forest.png') center/contain no-repeat;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}
.spotlight > * { position: relative; z-index: 1; }
.spotlight__hero {
  position: relative;
  text-align: center;
  margin-bottom: var(--space-7);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--border);
}
.spotlight__eyebrow {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--femh-forest);
  margin-bottom: var(--space-3);
}
.spotlight__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.1;
  margin: 0 0 var(--space-4);
  color: var(--femh-ink);
  letter-spacing: var(--tracking-tight);
}
.spotlight__lede {
  max-width: 60ch;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg2);
}
.spotlight__body {
  max-width: 60ch;
  margin: 0 auto var(--space-7);
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg1);
}
.spotlight__body p { margin-bottom: var(--space-4); }

/* People grid inside a spotlight — compact bios, photo on top */
.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-6);
}
.person-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-3);
  padding: var(--space-5);
  break-inside: avoid;
}
.person-card__top {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  margin-bottom: var(--space-4);
}
.person-card__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--femh-stone);
  flex-shrink: 0;
}
.person-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.person-card__name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.2;
  margin: 0 0 var(--space-1);
  color: var(--femh-forest);
}
.person-card__role {
  font-size: 12px;
  font-style: italic;
  color: var(--fg3);
  margin: 0;
  line-height: 1.4;
}
.person-card__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg1);
  margin: 0 0 var(--space-3);
  border-left: 2px solid var(--femh-forest);
  padding-left: var(--space-3);
}

/* "Read full bio" pill button — opens a modal */
.person-card__expand {
  margin-top: var(--space-3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--femh-forest);
  background: transparent;
  padding: 7px 14px;
  border: 1px solid var(--femh-forest);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--dur-fast), color var(--dur-fast);
}
.person-card__expand:hover {
  background: var(--femh-forest);
  color: #fff;
}
.person-card__expand svg { width: 12px; height: 12px; }

/* Hidden full-bio block — surfaced in print, and copied into the modal on click */
.person-card__full { display: none; }
.person-card__full p {
  margin: 0 0 var(--space-3);
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg1);
}
.person-card__full__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--femh-ink);
  border-left: 3px solid var(--femh-forest);
  padding-left: var(--space-4);
  margin: var(--space-4) 0 0;
}

/* ==========================================================================
   Person modal — full-screen popup with photo + full bio + full quote
   ========================================================================== */
.person-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
  background: rgba(11, 42, 38, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: modal-fade var(--dur-med) var(--ease-standard);
}
.person-modal.is-open { display: flex; }

@keyframes modal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.person-modal__panel {
  position: relative;
  background: #fff;
  border-radius: var(--radius-4);
  padding: var(--space-8);
  max-width: 760px;
  width: 100%;
  /* Sit comfortably inside the modal's vertical padding (var(--space-5) on
     each side = 48px total). Was --space-6 (32px), which let the panel
     overflow the padding zone and bump against the browser top. */
  max-height: calc(100vh - var(--space-8));
  overflow-y: auto;
  box-shadow: var(--shadow-3);
  animation: modal-rise var(--dur-med) var(--ease-standard);
}
@keyframes modal-rise {
  from { transform: translateY(16px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.person-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--femh-cream);
  border: 1px solid var(--border);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--fg1);
  transition: background var(--dur-fast);
}
.person-modal__close:hover { background: var(--femh-forest); color: #fff; border-color: var(--femh-forest); }
.person-modal__close svg { width: 18px; height: 18px; }

.person-modal__top {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: var(--space-6);
  align-items: center;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--border);
}
.person-modal__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--femh-stone);
}
.person-modal__photo img { width: 100%; height: 100%; object-fit: cover; }
.person-modal__name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.15;
  margin: 0 0 var(--space-2);
  color: var(--femh-forest);
}
.person-modal__role {
  font-size: 14px;
  font-style: italic;
  color: var(--fg2);
  line-height: 1.5;
  margin: 0;
}
.person-modal__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg1);
}
.person-modal__body p { margin: 0 0 var(--space-4); }
.person-modal__body blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--femh-ink);
  border-left: 3px solid var(--femh-forest);
  padding-left: var(--space-5);
  margin: var(--space-5) 0 0;
}

@media (max-width: 640px) {
  .person-modal__panel { padding: var(--space-6) var(--space-5); }
  .person-modal__top { grid-template-columns: 1fr; gap: var(--space-4); text-align: center; }
  .person-modal__photo { width: 120px; height: 120px; margin: 0 auto; }
  .person-modal__name { font-size: 26px; }
}

/* ==========================================================================
   6. Recommendations grid (numbered cards)
   ========================================================================== */
.recommendations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-6);
}
.rec-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-3);
  padding: var(--space-6);
  break-inside: avoid;
}
.rec-card__num {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 52px;
  line-height: 1;
  color: var(--femh-forest);
  margin-bottom: var(--space-3);
  display: block;
}
.rec-card__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.25;
  margin: 0 0 var(--space-3);
}
.rec-card__body { font-size: 14px; line-height: 1.6; color: var(--fg2); margin: 0; }

/* ==========================================================================
   7. Figure container (wraps the inlined figure HTMLs from design pkg)
   The inlined figures already have their own card styling. We just
   constrain width and provide vertical breathing room.
   ========================================================================== */
.figure-wrap {
  margin: var(--space-8) 0;
  break-inside: avoid;
  page-break-inside: avoid;
}
.figure-wrap .figure-block { width: 100%; }
.figure-wrap .figure-block .figure { margin: 0 auto; }

/* Inside figures, headings should inherit colour from their container so that
   light-on-dark panels (e.g. fig 2.1's "taught" column) read correctly. The
   figures' own CSS uses `color: inherit`, which our master h2 rules override. */
.figure-block h1,
.figure-block h2,
.figure-block h3,
.figure-block h4 { color: inherit; }

/* Figures: every figure has its own internal @media reflow rules, so on
   mobile we let them shrink to the viewport rather than forcing horizontal
   scrolling. Just tighten the inner padding and headline size. */
@media (max-width: 720px) {
  .figure-wrap .figure-block .figure {
    padding: 24px !important;
  }
  .figure-wrap .figure-block .fig-title { font-size: 24px !important; }
}

/* ==========================================================================
   Mobile UX overrides
   - Mobile menu scrolls when section list exceeds viewport.
   - Figs 8.1 (workplace) and 9.1 (schools) get extra-tight spacing so they
     come close to fitting on a single mobile screen.
   - Key Findings panel sheds its left bracket and box padding on mobile so
     the text gets the full container width.
   ========================================================================== */

/* 1. Mobile menu scrollability */
@media (max-width: 880px) {
  .site-nav.is-open .site-nav__links {
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
}

@media (max-width: 720px) {
  /* 2. Workplace figure (8.1) — tighter mobile spacing */
  #fig-8-1-anchor .fig-8-1 .figure {
    margin: 16px 0 !important;
    padding: 22px 16px !important;
  }
  #fig-8-1-anchor .fig-8-1 .col { padding: 22px 18px 18px; }
  #fig-8-1-anchor .fig-8-1 .col-title { font-size: 20px; }
  #fig-8-1-anchor .fig-8-1 .col-sub { font-size: 12px; }
  #fig-8-1-anchor .fig-8-1 .trait { padding: 12px 0; }
  #fig-8-1-anchor .fig-8-1 .trait-headline { font-size: 16px; }
  #fig-8-1-anchor .fig-8-1 .trait-desc { font-size: 12px; line-height: 1.45; }
  #fig-8-1-anchor .fig-8-1 .trait-stat { font-size: 18px; }

  /* 3. Schools figure (9.1) — tighter spacing, shorter illustrations */
  #fig-9-1-anchor .fig-9-1 .figure {
    margin: 16px 0 !important;
    padding: 22px 16px !important;
  }
  #fig-9-1-anchor .fig-9-1 .panels { gap: 16px; }
  #fig-9-1-anchor .fig-9-1 .panel-head { padding: 14px 18px 12px; }
  #fig-9-1-anchor .fig-9-1 .panel-title { font-size: 20px; }
  #fig-9-1-anchor .fig-9-1 .panel-sub { font-size: 12px; }
  #fig-9-1-anchor .fig-9-1 .scene-art { height: 150px; }
  #fig-9-1-anchor .fig-9-1 .traits { padding: 4px 18px 18px; }
  #fig-9-1-anchor .fig-9-1 .trait { padding: 10px 0; }
  #fig-9-1-anchor .fig-9-1 .trait-headline { font-size: 15px; }
  #fig-9-1-anchor .fig-9-1 .trait-desc { font-size: 12px; line-height: 1.45; }
  #fig-9-1-anchor .fig-9-1 .fig-foot { margin-top: 16px; padding-top: 18px; }

  /* 4. Key Findings — remove the left-bracket border and panel padding so
     the text fills the container. Cream background is already provided by
     the surrounding band, so the panel framing isn't needed on mobile. */
  .box-key-findings {
    border-left: 0;
    padding: 24px 0;
    margin: var(--space-5) 0;
  }

  /* 5. Clinician curriculum figure (2.1) — tighter mobile spacing.
     The internal @media at 900px already stacks .columns to 1fr. */
  #fig-2-1-anchor .fig-2-1 .figure {
    margin: 16px 0 !important;
    padding: 22px 16px !important;
  }
  #fig-2-1-anchor .fig-2-1 .columns { gap: 14px; }

  /* 6. Therapy bar-chart figure (3.1) — tighter mobile spacing. Bars are
     already a vertical stack natively. */
  #fig-3-1-anchor .fig-3-1 .figure {
    margin: 16px 0 !important;
    padding: 22px 16px !important;
  }

  /* 7. Triage flow figure (3.2) — force the bottom row of cards from 2
     columns to 1 on phones (the snippet's own @media at 720px keeps 2),
     and tighten outer padding. */
  #fig-3-2-anchor .fig-3-2 .figure {
    margin: 16px 0 !important;
    padding: 22px 16px !important;
  }
  #fig-3-2-anchor .fig-3-2 .row-bottom {
    grid-template-columns: 1fr;
  }

  /* 8. Figs 4.1 (drug-discovery timeline) and 11.1 (field-building) are
     information-dense and don't reflow gracefully to phone width — keep
     them at desktop width with horizontal scrolling. Note: no
     touch-action: pan-x here — that would block vertical page scrolling
     while a finger is on the figure (users got stuck on tall figures).
     The browser's default heuristic decides axis on each swipe. */
  #fig-4-1-anchor,
  #fig-11-1-anchor {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    margin-left: calc(-1 * var(--space-6));
    margin-right: calc(-1 * var(--space-6));
    padding: 0 var(--space-6);
  }
  #fig-4-1-anchor .figure-block,
  #fig-11-1-anchor .figure-block {
    min-width: 760px;
  }

  /* 9. Fig 3.1 percentage labels — scale down so they fit cleanly on the
     narrower mobile bars instead of crowding/overflowing. The bars and
     dots already scale; only the text was hard-coded too large. */
  #fig-3-1-anchor .fig-3-1 .range .pct {
    font-size: 14px;
  }
  #fig-3-1-anchor .fig-3-1 .range .low .pct {
    top: 6px;
  }
  #fig-3-1-anchor .fig-3-1 .bar.general .pct {
    font-size: 16px;
    top: 6px;
  }
  #fig-3-1-anchor .fig-3-1 .bar.general .pct small {
    font-size: 9px;
    margin-top: 2px;
  }

  /* 10. Fig 3.1 bar labels — disorder names (<h3>) shrink so they don't
     dominate the narrow column. Reveal the inline hyphen+break inside
     "General psychotherapy" so it wraps cleanly instead of overflowing
     into the neighbouring bar. */
  #fig-3-1-anchor .fig-3-1 .bar-labels h3 {
    font-size: 15px;
    line-height: 1.2;
  }
  #fig-3-1-anchor .fig-3-1 .bar-labels p {
    font-size: 12px;
    line-height: 1.45;
  }
  #fig-3-1-anchor .fig-3-1 .hyphen-break {
    display: inline;
  }
}

/* Default: the mobile-only hyphen+break inside "General psychotherapy" is
   hidden on desktop so the eyebrow reads as one unbroken word. */
.fig-3-1 .hyphen-break {
  display: none;
}

/* ==========================================================================
   8. Footer
   ========================================================================== */
.site-footer {
  background: var(--femh-ink);
  color: var(--fg-on-dark-2);
  padding: var(--space-7) 0;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.site-footer a { color: #fff; }
.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-3);
}
.site-footer__brand img { width: 32px; height: 32px; }
.site-footer__line { margin: 0; }
.site-footer__sep  { color: rgba(255,255,255,0.35); margin: 0 8px; }

/* ==========================================================================
   9. Body content prose helpers
   ========================================================================== */
.prose          { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--space-6); }
.prose-mid      { max-width: var(--container-mid);    margin: 0 auto; padding: 0 var(--space-6); }
.prose p        { font-size: 17px; line-height: 1.75; color: var(--fg1); }
.prose p strong { font-weight: 700; color: var(--fg1); }
.prose ul       { padding-left: 1.4em; }
.prose ul li    { margin-bottom: var(--space-3); line-height: var(--lh-loose); }

/* ==========================================================================
   10. Print-only cover (hidden on screen, shown in print)
   ========================================================================== */
.print-cover { display: none; }
