
   /* ============================================================
   ADHD Junction — refined editorial system
   Shared stylesheet
   ============================================================ */

:root {
  --navy:        #1c2936;
  --navy-deep:   #13202b;
  --navy-soft:   #253544;

  --ink:   #172434;
  --body:  #34495b;
  --muted: #687784;

  --cream:      #f7f4ed;
  --cream-deep: #eee8dc;
  --white:      #ffffff;

  --mint:      #93dec5;
  --mint-pale: #e3eae7;

  --teal:      #0b7b77;
  --teal-dark: #075c5a;

  --ochre:      #a9682a;
  --ochre-pale: #f7ecdf;

  --rule:      #d8d3c8;
  --rule-soft: #e5e0d6;
  --rule-dark: rgba(255, 255, 255, .15);

  --reading: 720px;
  --wide:    1040px;
  --frame:   1180px;

  --gut:  48px;
  --gutm: 36px;

  --display: "Bricolage Grotesque", "Source Sans 3", sans-serif;
  --sans:    "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:    "Source Code Pro", ui-monospace, SFMono-Regular, Consolas, monospace;
}

* { box-sizing: border-box; }

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--body);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.66;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a   { color: inherit; }
a, button, summary { touch-action: manipulation; }

p, ul, ol, blockquote, figure { margin-top: 0; }
p { margin-bottom: 1.25em; }

strong { color: var(--ink); font-weight: 650; }

::selection { background: var(--mint); color: var(--navy-deep); }

a:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 12px 18px;
  background: var(--mint);
  color: var(--navy-deep);
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}


/* ===== widths ============================================= */

.reading-column { width: min(calc(100% - var(--gut)), var(--reading)); margin-inline: auto; }
.wide-column    { width: min(calc(100% - var(--gut)), var(--wide));    margin-inline: auto; }
.frame-column   { width: min(calc(100% - var(--gut)), var(--frame));   margin-inline: auto; }
.reading-width  { max-width: var(--reading); }


/* ===== labels ============================================= */

.eyebrow,
.micro-label,
.section-number,
.rail-label {
  font-family: var(--mono);
  font-weight: 600;
  letter-spacing: .085em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--mint);
  font-size: 12px;
}

.micro-label {
  display: block;
  color: var(--teal);
  font-size: 11px;
  line-height: 1.4;
}


/* ===== header ============================================= */

.site-header {
  position: relative;
  z-index: 100;
  background: var(--navy-deep);
  color: var(--white);
  border-bottom: 1px solid var(--rule-dark);
}

.site-header__inner {
  width: min(calc(100% - var(--gut)), var(--frame));
  min-height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  text-decoration: none;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -.025em;
  white-space: nowrap;
}

.brand__mark { display: block; flex: 0 0 auto; color: var(--mint); }
.brand__mark--image { width: 31px; height: 30px; object-fit: contain; }
.brand__mark-accent { fill: var(--teal); }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 15px;
  line-height: 1;
}

.desktop-nav > a,
.nav-dropdown > summary {
  color: rgba(255, 255, 255, .84);
  text-decoration: none;
  cursor: pointer;
  font-weight: 550;
}

.desktop-nav > a:hover,
.nav-dropdown > summary:hover { color: var(--mint); }

.nav-dropdown { position: relative; }

.nav-dropdown > summary {
  display: flex;
  align-items: center;
  gap: 7px;
  list-style: none;
}
.nav-dropdown > summary::-webkit-details-marker { display: none; }

.nav-chevron { position: relative; top: -1px; color: var(--mint); font-size: 16px; }
.nav-dropdown[open] > summary { color: var(--mint); }

.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 24px);
  left: -24px;
  width: 350px;
  padding: 18px 0 7px;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 36px rgba(6, 14, 21, .22);
}

.nav-dropdown__panel::before {
  content: "";
  position: absolute;
  top: -25px; left: 0;
  width: 100%; height: 25px;
}

.nav-dropdown__label,
.mobile-menu__label {
  display: block;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
}

.nav-dropdown__label { padding: 0 22px 12px; }

.nav-dropdown__panel a {
  min-height: 48px;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .87);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.35;
}

.nav-dropdown__panel a:hover { background: rgba(147, 222, 197, .08); color: var(--mint); }
.nav-dropdown__panel a span:last-child { color: var(--mint); font-family: var(--mono); }

.mobile-menu { display: none; }

.mobile-menu > summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--cream);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.mobile-menu > summary::-webkit-details-marker { display: none; }

.mobile-menu__panel {
  position: absolute;
  top: 100%; left: 0; right: 0;
  padding: 24px;
  background: var(--navy);
  border-top: 1px solid var(--rule-dark);
  box-shadow: 0 18px 30px rgba(5, 14, 20, .18);
}

.mobile-menu__label { margin-bottom: 9px; }

.mobile-menu__panel a {
  min-height: 47px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  color: rgba(255, 255, 255, .88);
  text-decoration: none;
  font-size: 16px;
}
.mobile-menu__panel a:hover { color: var(--mint); }
.mobile-menu__rule { height: 20px; }


/* ===== hero =============================================== */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .06;
  background-image:
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 22%, #000 74%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0, #000 22%, #000 74%, transparent 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - var(--gut)), var(--frame));
  margin-inline: auto;
  padding: 42px 0 86px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(300px, .68fr);
  gap: 72px;
  align-items: end;
}

.breadcrumb {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .56);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

.breadcrumb a { color: rgba(255, 255, 255, .73); text-decoration: none; }
.breadcrumb a:hover { color: var(--mint); }

.hero h1 {
  max-width: 15ch;
  margin: 0;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(46px, 5.4vw, 70px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.05em;
}

.hero-accent { display: block; color: var(--mint); }

.hero__standfirst {
  max-width: 58ch;
  margin-top: 33px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 21px;
  line-height: 1.55;
}

.hero-text-link {
  color: inherit;
  text-decoration-color: rgba(147, 222, 197, .62);
  text-decoration-thickness: 1px;
  text-underline-offset: .18em;
}
.hero-text-link:hover { color: var(--mint); text-decoration-thickness: 2px; }

.hero__note {
  max-width: 62ch;
  margin-top: 24px;
  margin-bottom: 0;
  padding-left: 18px;
  border-left: 2px solid var(--mint);
  color: rgba(255, 255, 255, .64);
  font-size: 15px;
  line-height: 1.62;
}


/* ===== hero ledger (signature object) ====================== */

.page-ledger {
  position: relative;
  padding: 28px 30px 26px;
  background: var(--navy-soft);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
}

.page-ledger__stamp {
  position: absolute;
  top: -14px;
  right: -12px;
  padding: 7px 11px;
  background: var(--teal);
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  transform: rotate(3deg);
  border-radius: 4px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .28);
}

.page-ledger h2 {
  margin: 0 0 16px;
  color: var(--cream);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -.015em;
}

.page-ledger dl {
  margin: 0;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.5;
}

.page-ledger__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 22px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .17);
}
.page-ledger__row:last-child { border-bottom: 0; padding-bottom: 0; }

.page-ledger dt { color: rgba(255, 255, 255, .58); white-space: nowrap; }
.page-ledger dd { margin: 0; color: var(--mint); font-weight: 600; text-align: right; }


/* ===== sticky section index ================================ */

.section-index {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 244, 237, .94);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
          backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--rule);
}

.section-index__inner {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 52px;
  overflow-x: auto;
  scrollbar-width: none;
}
.section-index__inner::-webkit-scrollbar { display: none; }

.rail-label {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 10.5px;
}

.section-index ul {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
}

.section-index a {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 16px 0 15px;
  border-bottom: 2px solid transparent;
  color: var(--body);
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
}

.section-index a b {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
}

.section-index a:hover { color: var(--teal); }
.section-index a:hover b { color: var(--teal); }

.section-index a.is-current {
  color: var(--ink);
  border-bottom-color: var(--teal);
  font-weight: 600;
}
.section-index a.is-current b { color: var(--teal); }


/* ===== in-short summary ==================================== */

.in-short {
  padding: 52px 0 4px;
}

.in-short__box {
  padding: 30px 34px 26px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--ink);
  border-radius: 12px;
}

.in-short h2 {
  margin: 10px 0 18px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 650;
  letter-spacing: -.02em;
}

.in-short ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: pt;
}

.in-short li {
  counter-increment: pt;
  position: relative;
  padding: 13px 0 13px 40px;
  border-top: 1px solid var(--rule-soft);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
}

.in-short li::before {
  content: counter(pt, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 15px;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .06em;
}


/* ===== article ============================================= */

.article-section { padding: 82px 0; }

.article-section--soft {
  background: var(--white);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.section-number {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 12px;
}

.section-number::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: var(--rule);
}

.section-heading { margin-bottom: 38px; }

.article-section h2,
.questions-section h2,
.onward-section h2 {
  margin: 0 0 28px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(31px, 3.25vw, 40px);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: -.026em;
  text-wrap: balance;
}

.article-section h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 23px;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -.018em;
}

.article-section p { max-width: 68ch; }

.lead {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.5;
  text-wrap: pretty;
}


/* ===== image breaks ======================================== */

.image-break { margin-top: 62px; margin-bottom: 62px; }
.image-break--hero { margin-top: 56px; margin-bottom: 10px; }

.placeholder-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(147,222,197,.17), rgba(169,104,42,.06)),
    var(--cream-deep);
}

.image-break--hero .placeholder-image,
.image-break--hero.placeholder-image { aspect-ratio: 21 / 9; }

.placeholder-image::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(23, 36, 52, .16);
  pointer-events: none;
}

.placeholder-image__inner {
  position: absolute;
  inset: 0;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  color: var(--ink);
}

.placeholder-image__inner strong {
  max-width: 44ch;
  margin-top: 8px;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 650;
  line-height: 1.14;
  letter-spacing: -.03em;
}

.placeholder-image__inner > span:last-child {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13.5px;
}

.article-illustration {
  width: min(100%, 420px);
  margin: 46px 0 50px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid var(--rule);
  border-radius: 18px;
  background: var(--mint-pale);
  box-shadow: 0 14px 34px rgba(19, 32, 43, .065);
}

.article-illustration--lead { width: min(100%, 470px); margin-top: 48px; }
.article-illustration--right { margin-left: auto; }

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

.article-heading-with-art {
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 148px;
  gap: 28px;
  align-items: center;
}

.article-heading-with-art--reverse {
  grid-template-columns: 148px minmax(0, 1fr);
}

.article-heading-with-art--reverse > div { grid-column: 2; }
.article-heading-with-art--reverse > figure { grid-column: 1; grid-row: 1; }
.article-heading-with-art .section-number { margin-bottom: 15px; }
.article-heading-with-art h2 { margin-bottom: 0; }
.article-heading-with-art figure { width: 148px; margin: 0; }
.article-heading-with-art img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 15px rgba(19, 32, 43, .08));
}


/* ===== callouts ============================================ */

.key-point {
  margin: 42px 0 0;
  padding: 26px 30px 25px 32px;
  border-left: 4px solid var(--teal);
  border-radius: 12px;
  background: var(--mint-pale);
}

.key-point p {
  margin: 10px 0 0;
  max-width: 64ch;
  color: var(--body);
  font-size: 18px;
}

.side-callout {
  padding: 28px 30px;
  border-top: 4px solid var(--teal);
  border-radius: 12px;
  background: var(--mint-pale);
}

.side-callout p { margin-bottom: 17px; font-size: 16.5px; line-height: 1.62; }
.side-callout p:last-child { margin-bottom: 0; }

/* ochre = something to do, teal = something to know */

.practical-note {
  margin-top: 40px;
  padding: 22px 26px;
  border-left: 4px solid var(--ochre);
  border-radius: 12px;
  background: var(--ochre-pale);
}

.practical-note .micro-label { color: var(--ochre); }

.practical-note p {
  margin: 8px 0 0;
  max-width: 64ch;
  color: var(--body);
}


/* ===== split, lists, cards ================================= */

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(285px, .75fr);
  gap: 58px;
  align-items: start;
}

.check-list { margin: 0; padding: 0; list-style: none; }

.check-list li {
  position: relative;
  padding: 13px 0 13px 36px;
  border-bottom: 1px solid var(--rule-soft);
  color: var(--ink);
  font-size: 17.5px;
  line-height: 1.5;
}

.check-list li:first-child { border-top: 1px solid var(--rule-soft); }

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 6px;
  top: 13px;
  color: var(--teal);
  font-family: var(--mono);
  font-weight: 700;
}

.outcome-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
}

.outcome-card {
  padding: 28px 26px 30px;
  background: var(--cream);
}

.outcome-card__number {
  display: block;
  margin-bottom: 34px;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .085em;
}

.outcome-card h3 { margin-bottom: 12px; font-size: 21px; }

.outcome-card p {
  margin: 0;
  color: var(--body);
  font-size: 16px;
  line-height: 1.56;
}

.pull-quote {
  margin: 44px 0;
  padding: 6px 0 8px 27px;
  border-left: 4px solid var(--mint);
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 37px);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -.033em;
  text-wrap: balance;
}

.after-group { margin-top: 42px; }
.after-group + .after-group { padding-top: 30px; border-top: 1px solid var(--rule-soft); }


/* ===== questions =========================================== */

.questions-section {
  padding: 90px 0;
  background: var(--cream-deep);
  border-bottom: 1px solid var(--rule);
}

.questions-intro { max-width: var(--reading); margin-bottom: 42px; }
.questions-intro p:last-child { max-width: 62ch; }

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

.question-group {
  padding: 28px 30px 32px;
  background: var(--cream-deep);
  border: 1px solid var(--rule);
  border-radius: 12px;
}

.question-group h3 {
  margin: 10px 0 20px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 650;
  line-height: 1.18;
  letter-spacing: -.018em;
}

.question-group ul { margin: 0; padding: 0; list-style: none; }

.question-group li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.5;
}

.question-group li::before {
  content: "?";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
}

.question-group li:last-child { margin-bottom: 0; }


/* ===== checklist panel ===================================== */

.checklist-section {
  padding: 82px 0;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}

.checklist-panel {
  padding: 42px 44px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(220px, .45fr);
  gap: 60px;
  align-items: center;
  border-top: 5px solid var(--teal);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  border-radius: 12px;
  background: var(--mint-pale);
}

.checklist-panel__copy { max-width: 700px; }

.checklist-panel h2 {
  max-width: 22ch;
  margin: 12px 0 20px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(29px, 3vw, 35px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -.024em;
}

.checklist-panel h2 span { display: block; color: var(--teal); }

.checklist-panel__lead { color: var(--ink); font-size: 19px; line-height: 1.58; }
.checklist-panel p { max-width: 66ch; }

.checklist-panel__privacy {
  margin-top: 24px;
  margin-bottom: 0;
  color: var(--teal-dark);
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.55;
}

.checklist-panel__action { display: flex; justify-content: flex-end; }

.button {
  min-height: 52px;
  padding: 14px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.2;
  transition: background .15s ease, color .15s ease;
}

.button--dark { background: var(--navy); color: var(--cream); }
.button--dark:hover { background: var(--teal-dark); color: var(--white); }


/* ===== onward ============================================== */

.onward-section { padding: 88px 0 96px; background: var(--cream); }

.onward-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.onward-card {
  position: relative;
  padding: 24px 60px 24px 26px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: var(--white);
  color: var(--body);
  text-decoration: none;
  transition: border-color .15s ease, background .15s ease;
}

.onward-card:hover { border-color: var(--teal); background: var(--mint-pale); }

.onward-card h3 {
  margin: 10px 0 8px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 650;
  line-height: 1.18;
  letter-spacing: -.018em;
}

.onward-card p { max-width: 44ch; margin: 0; font-size: 15.5px; line-height: 1.5; }

.onward-card__arrow {
  position: absolute;
  right: 24px;
  top: 24px;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 400;
}


/* ===== editorial note ====================================== */

.editorial-note {
  padding: 38px 0;
  background: var(--cream-deep);
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.56;
}

.editorial-note__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, auto);
  gap: 40px;
  align-items: start;
}
.editorial-note__grid--single { grid-template-columns: 1fr; }

.editorial-note p { margin-bottom: 9px; max-width: 68ch; }
.editorial-note p:last-child { margin-bottom: 0; }

.editorial-note__review {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.editorial-note__meta {
  padding-top: 2px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-align: right;
}

.editorial-note__meta span { display: block; color: var(--teal); }


/* ===== footer ============================================== */

.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, .68); }

.site-footer__inner {
  width: min(calc(100% - var(--gut)), var(--frame));
  margin-inline: auto;
  padding: 46px 0 54px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.brand--footer { margin-bottom: 14px; }

.site-footer p { max-width: 52ch; margin: 0; font-size: 14px; line-height: 1.56; }

.footer-links {
  max-width: 440px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
  gap: 10px 22px;
  font-size: 13px;
}

.footer-links a { color: rgba(255, 255, 255, .72); text-decoration: none; }
.footer-links a:hover { color: var(--mint); }




/* ============================================================
   HUB PAGE
   ============================================================ */


/* ===== utility ============================================= */

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


/* ===== hub hero ============================================ */

/* Two-sentence headline needs more room than the guide pages. */
.hero--hub h1 { max-width: 20ch; }
.hero--hub .hero__inner { padding-bottom: 76px; }


/* ===== hub card grid ======================================= */

.hub-section { padding: 62px 0 12px; }

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

.hub-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 16px 16px 26px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: var(--white);
  color: var(--body);
  text-decoration: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(23, 93, 91, .16);
  transition: border-color .15s ease, background .15s ease, transform .08s ease;
}

.hub-card:hover {
  border-color: var(--teal);
  background: var(--mint-pale);
}

.hub-card:active {
  border-color: var(--teal);
  background: var(--mint-pale);
  transform: translateY(1px);
}

.hub-card__media {
  aspect-ratio: 4 / 3;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(147,222,197,.17), rgba(169,104,42,.06)),
    var(--cream-deep);
}

.hub-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hub-card__media span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
}

.hub-card h3 {
  margin: 0 0 9px;
  padding-right: 8px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 650;
  line-height: 1.18;
  letter-spacing: -.018em;
  text-wrap: balance;
}

.hub-card p {
  margin: 0;
  padding-right: 34px;
  font-size: 15.5px;
  line-height: 1.5;
}

.hub-card__arrow {
  position: absolute;
  right: 18px;
  bottom: 20px;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 21px;
  font-weight: 400;
}


/* ===== trust strip ========================================= */

.trust-strip {
  padding: 46px 0 54px;
  background: var(--cream-deep);
  border-top: 1px solid var(--rule);
  text-align: center;
}

.trust-strip .micro-label { margin-bottom: 16px; }

.trust-strip ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

.trust-strip li { padding: 0 16px; }

.trust-strip li + li::before {
  content: "·";
  margin-left: -20px;
  margin-right: 16px;
  color: var(--muted);
}




/* ============================================================
   HOMEPAGE
   ============================================================ */

/* ===== homepage hero ======================================= */

.hero--home h1 {
  max-width: 20ch;
  font-size: clamp(42px, 5.4vw, 70px);
}

.hero--home .hero__inner {
  padding-top: 66px;
  padding-bottom: 122px;
}

.hero--home .hero__standfirst {
  max-width: 54ch;
  font-size: 20px;
}


/* ===== hero checklist chooser ============================== */

.hero-cta {
  position: relative;
  margin-top: 34px;
  max-width: 520px;
}

.hero-cta > summary {
  list-style: none;
  cursor: pointer;
  min-height: 56px;
  padding: 15px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.25;
  transition: background .15s ease;
}

.hero-cta > summary::-webkit-details-marker { display: none; }
.hero-cta > summary:hover { background: #a8e6d1; }

.hero-cta__chevron {
  font-family: var(--mono);
  font-size: 18px;
  transition: transform .15s ease;
}

.hero-cta[open] > summary .hero-cta__chevron { transform: rotate(90deg); }

.hero-cta__panel {
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 10px;
  background: var(--navy-soft);
  box-shadow: 0 16px 38px rgba(6, 14, 21, .3);
}

.hero-cta__panel a {
  display: block;
  position: relative;
  padding: 17px 46px 18px 22px;
  color: rgba(255, 255, 255, .88);
  text-decoration: none;
  transition: background .15s ease;
}

.hero-cta__panel a + a { border-top: 1px solid rgba(255, 255, 255, .12); }
.hero-cta__panel a:hover { background: rgba(147, 222, 197, .09); }

.hero-cta__label {
  display: block;
  margin-bottom: 3px;
  color: var(--cream);
  font-weight: 650;
  font-size: 16.5px;
  line-height: 1.3;
}

.hero-cta__desc {
  display: block;
  color: rgba(255, 255, 255, .62);
  font-size: 14.5px;
  line-height: 1.5;
}

.hero-cta__arrow {
  position: absolute;
  right: 20px;
  top: 20px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 18px;
}

.hero-cta__note {
  margin-top: 18px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .58);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .05em;
  text-transform: uppercase;
}


/* ===== illustrated panoramic band ========================== */

.scene {
  --scene-image-height: min(35.7vw, 731px);
  position: relative;
  display: flow-root;
  padding-bottom: 104px;
  background-color: var(--cream-deep);
  background-image: url("../images/home/adhd-junction-panorama.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: min(100%, 2048px) auto;
}

.scene::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(28, 41, 54, .28), rgba(28, 41, 54, 0));
}

.scene::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: var(--scene-image-height);
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(238, 232, 220, 0) 64%, var(--cream-deep) 100%);
}

.scene > * {
  position: relative;
  z-index: 1;
}


/* ===== route cards ========================================= */

.route-section {
  position: relative;
  z-index: 2;
  margin-top: -68px;
  padding-bottom: 8px;
}

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

.hub-card .micro-label { margin-bottom: 8px; }
.hub-card > .micro-label:first-child { margin-top: 2px; }

.route-section .hub-card,
.tools-panel .hub-card {
  box-shadow: 0 10px 26px rgba(19, 32, 43, .10);
  border-left: 6px solid var(--feature-accent, var(--teal));
}

.route-section .hub-card:nth-child(1) { --feature-accent: #8fa77f; }
.route-section .hub-card:nth-child(2) { --feature-accent: #d1a13b; }
.route-section .hub-card:nth-child(3) { --feature-accent: #76a9bf; }
.route-section .hub-card:nth-child(4) { --feature-accent: #b995b4; }
.tools-panel .hub-card:nth-child(1) { --feature-accent: #7ea997; }
.tools-panel .hub-card:nth-child(2) { --feature-accent: #b7a58b; }
.tools-panel .hub-card:nth-child(3) { --feature-accent: #7d9eb1; }


/* ===== free tools panel ==================================== */

.tools-section { padding-top: 138px; }

.tools-panel {
  padding: 44px 46px 46px;
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: rgba(247, 244, 237, .96);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  box-shadow: 0 22px 60px rgba(19, 32, 43, .18);
}

.tools-panel__head {
  max-width: var(--reading);
  margin-bottom: 34px;
}

.tools-panel__head h2 { margin-bottom: 18px; }
.tools-panel__head p { max-width: 58ch; margin-bottom: 0; }


/* ===== contributors ======================================== */

.contributors {
  padding: 54px 0 58px;
  background: var(--cream);
  border-top: 1px solid var(--rule);
}

.contributors .micro-label { margin-bottom: 20px; }

.contributors__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 48px;
}

.contributor {
  padding: 18px 0 0;
  border-top: 1px solid var(--rule);
}

.contributor__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 11px;
}

.contributor__portrait {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border: 2px solid var(--mint);
  border-radius: 50%;
  background: var(--paper);
  object-fit: cover;
  box-shadow: 0 3px 10px rgba(22, 45, 51, .09);
}

.contributor h3 {
  margin: 0 0 3px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -.015em;
}

.contributor__postnominal {
  margin-left: .22em;
  color: var(--teal);
  font-family: var(--sans);
  font-size: .62em;
  font-weight: 600;
  letter-spacing: .035em;
  white-space: nowrap;
}

.contributor__role {
  margin: 0;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.contributor__role--credentials {
  max-width: 47ch;
  font-size: 10.5px;
  line-height: 1.42;
  letter-spacing: .025em;
  text-transform: none;
}

.contributor p:last-child {
  margin: 0;
  max-width: 44ch;
  font-size: 15.5px;
  line-height: 1.55;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; gap: 44px; align-items: start; }
  .page-ledger { max-width: 480px; }
  .page-ledger__stamp { right: 12px; }

  .hub-grid { grid-template-columns: repeat(2, 1fr); }
  .hub-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .tools-panel { padding: 38px 34px 40px; }
}

@media (max-width: 900px) {

  body { font-size: 17px; }
  html { scroll-padding-top: 84px; }

  .desktop-nav { display: none; }
  .mobile-menu { position: relative; display: block; }
  .mobile-menu__panel {
    top: calc(100% + 17px);
    left: auto;
    right: 0;
    width: min(420px, calc(100vw - 32px));
    max-height: calc(100dvh - 92px);
    padding: 16px 24px 18px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 13px;
    box-shadow: 0 20px 42px rgba(5, 14, 20, .28);
  }
  .mobile-menu__label { margin-bottom: 4px; }
  .mobile-menu__panel a { min-height: 41px; font-size: 15px; }
  .mobile-menu__rule { height: 10px; }
  .site-search-trigger--mobile { min-height: 41px; padding-block: 7px; font-size: 15px; }
  .mobile-menu[open] > summary span:last-child { display: none; }
  .mobile-menu[open] > summary::after {
    content: "×";
    position: relative;
    top: -1px;
    color: var(--mint);
    font: 400 21px/1 var(--sans);
  }

  .hero__inner { padding-top: 34px; padding-bottom: 68px; }
  .breadcrumb { margin-bottom: 40px; }
  .hero h1 { max-width: 16ch; }
  .hero__standfirst { font-size: 20px; }

  .hero--home .hero__inner { padding-top: 52px; padding-bottom: 104px; }
  .hero-cta { max-width: none; }
  .hub-grid--four {
    width: 100%;
    max-width: 780px;
    margin-inline: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .route-section .hub-card__media { aspect-ratio: 16 / 10; }
  .route-section { margin-top: -58px; }
  .tools-section { padding-top: 60px; }
  .scene { padding-bottom: 84px; }
  .contributors { padding: 46px 0 50px; }

  .hub-section { padding-top: 52px; }
  .hero--hub .hero__inner { padding-bottom: 62px; }

  .in-short { padding-top: 44px; }
  .in-short__box { padding: 26px 26px 22px; }

  .article-section { padding: 70px 0; }

  .split-layout { grid-template-columns: 1fr; gap: 34px; }
  .side-callout { max-width: var(--reading); }

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

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

  .checklist-panel { grid-template-columns: 1fr; gap: 28px; }
  .checklist-panel__action { justify-content: flex-start; }

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

  .editorial-note__grid { grid-template-columns: 1fr; gap: 18px; }
  .editorial-note__meta { text-align: left; }

  .site-footer__inner { flex-direction: column; gap: 30px; }
  .footer-links { justify-content: flex-start; }
}


@media (max-width: 640px) {
  .hero--home h1 { max-width: none; }
  .hero--home .hero__inner { padding-top: 42px; padding-bottom: 92px; }

  .hero-cta > summary {
    width: 100%;
    font-size: 16px;
    padding: 15px 18px;
  }

  .route-section { margin-top: -52px; }

  .hub-grid,
  .hub-grid--four {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hub-card__media,
  .route-section .hub-card__media { aspect-ratio: 16 / 9; }
  .hub-section { padding-top: 44px; }

  .scene {
    background-position: center top;
    background-size: 100% auto;
    padding-bottom: 68px;
  }

  .scene::before { height: 110px; }
  .scene::after { height: var(--scene-image-height); }

  .tools-section { padding-top: 56px; }
  .tools-panel { padding: 28px 22px 30px; border-radius: 12px; }
  .tools-panel__head { margin-bottom: 26px; }

  .contributors__grid { grid-template-columns: 1fr; gap: 0; }
  .contributor { padding-top: 16px; }
  .contributor + .contributor { margin-top: 18px; }

  .trust-strip { padding: 40px 0 46px; }
  .trust-strip ul { font-size: 15px; }
}


/* ============================================================
   PHONE
   ============================================================ */

@media (max-width: 560px) {

  :root { --gut: var(--gutm); }

  .reading-column,
  .wide-column,
  .frame-column,
  .site-header__inner,
  .hero__inner,
  .site-footer__inner {
    width: min(calc(100% - var(--gutm)), var(--wide));
  }

  body { font-size: 17px; line-height: 1.62; }
  html { scroll-padding-top: 76px; }

  .site-header__inner { min-height: 64px; padding: 13px 0; }
  .brand { font-size: 19px; }
  .brand__mark { width: 25px; height: 25px; }
  .mobile-menu__panel {
    top: calc(100% + 14px);
    width: min(360px, calc(100vw - 24px));
    max-height: calc(100dvh - 82px);
    padding: 12px 18px 14px;
  }

  .hero__inner { padding-top: 26px; padding-bottom: 52px; }

  .breadcrumb { margin-bottom: 32px; font-size: 11px; }
  .breadcrumb span[aria-hidden="true"],
  .breadcrumb span:last-child { display: none; }
  .breadcrumb a::before { content: "← "; }

  .hero h1 { font-size: clamp(37px, 11.5vw, 50px); line-height: 1; max-width: none; }
  .hero__standfirst { margin-top: 25px; font-size: 18px; }
  .hero__note { font-size: 14px; }

  .page-ledger { padding: 24px 22px 22px; }
  .page-ledger__stamp { right: 10px; top: -13px; }
  .page-ledger__row { gap: 14px; }

  .section-index__inner { min-height: 46px; gap: 18px; }
  .rail-label { display: none; }

  .in-short { padding-top: 38px; }
  .in-short__box { padding: 24px 20px 20px; }
  .in-short li { font-size: 16.5px; padding-left: 36px; }

  .image-break { margin-top: 44px; margin-bottom: 44px; }
  .article-illustration,
  .article-illustration--lead {
    width: min(82vw, 390px);
    margin-top: 38px;
    margin-bottom: 42px;
  }
  .article-heading-with-art,
  .article-heading-with-art--reverse {
    grid-template-columns: minmax(0, 1fr) 104px;
    gap: 15px;
  }
  .article-heading-with-art--reverse > div { grid-column: 1; }
  .article-heading-with-art--reverse > figure { grid-column: 2; }
  .article-heading-with-art figure { width: 104px; }
  .placeholder-image { aspect-ratio: 4 / 3; }
  .image-break--hero .placeholder-image,
  .image-break--hero.placeholder-image { aspect-ratio: 3 / 2; }
  .placeholder-image::before { inset: 10px; }
  .placeholder-image__inner { padding: 24px; }
  .placeholder-image__inner strong { font-size: 22px; }

  .article-section { padding: 56px 0; }

  .article-section h2,
  .questions-section h2,
  .onward-section h2 { margin-bottom: 22px; font-size: 31px; }

  .lead { font-size: 20px; }

  .key-point { margin-top: 32px; padding: 22px 20px 21px; }
  .side-callout { padding: 24px 20px; }
  .practical-note { padding: 20px 20px; }

  .pull-quote { margin: 34px 0; padding-left: 20px; font-size: 28px; }

  .questions-section { padding: 58px 0; }
  .question-group { padding: 24px 20px 28px; }

  .checklist-section { padding: 56px 0; }
  .checklist-panel { padding: 28px 22px; }
  .checklist-panel h2 { font-size: 30px; }
  .checklist-panel__lead { font-size: 18px; }
  .button { width: 100%; }

  .onward-section { padding: 58px 0 66px; }
  .onward-card { padding: 22px 52px 22px 20px; }

  .site-footer__inner { padding: 38px 0 44px; }
  .footer-links { display: grid; grid-template-columns: 1fr 1fr; }
}


/* ===== print =============================================== */

@media print {
  .site-header, .section-index, .checklist-section,
  .onward-section, .site-footer, .image-break,
  .article-illustration { display: none; }
  .hero { background: none; color: #000; }
  .hero h1, .hero__standfirst, .hero__note { color: #000; }
  body { background: #fff; font-size: 11pt; }
  .article-section { padding: 18pt 0; page-break-inside: avoid; }
}


/* ============================================================
   NHS ADHD DATA FEED
   Homepage card and explainer-page revision log
   ============================================================ */

/* The homepage now uses the shared two-column hero grid. */
.hero--home .hero__grid {
  align-items: center;
}

.hero--home .hero__copy {
  min-width: 0;
}

.nhs-card {
  position: relative;
  width: 100%;
  min-width: 0;
  padding: 26px 28px 24px;
  background: var(--navy-soft);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
}

/* Reserve the card's eventual space while the JSON is arriving. */
.nhs-card[data-state="loading"] {
  min-height: 510px;
}

.nhs-card__badge {
  position: absolute;
  z-index: 1;
  top: -13px;
  right: -10px;
  padding: 6px 11px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .09em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: rotate(3deg);
  border-radius: 4px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .28);
}

.nhs-card[data-state="overdue"] .nhs-card__badge,
.nhs-card[data-state="review"] .nhs-card__badge,
.nhs-card[data-state="error"] .nhs-card__badge {
  background: var(--ochre);
}

.nhs-card__eyebrow {
  margin: 0 0 18px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.nhs-card__fallback {
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: 14px;
  line-height: 1.55;
}

.nhs-card__body {
  display: none;
}

.nhs-card[data-state="current"] .nhs-card__fallback,
.nhs-card[data-state="overdue"] .nhs-card__fallback,
.nhs-card[data-state="review"] .nhs-card__fallback,
.nhs-card[data-state="error"] .nhs-card__fallback {
  display: none;
}

.nhs-card[data-state="current"] .nhs-card__body,
.nhs-card[data-state="overdue"] .nhs-card__body,
.nhs-card[data-state="review"] .nhs-card__body,
.nhs-card[data-state="error"] .nhs-card__body {
  display: block;
}

.nhs-card__qualifier {
  margin: 0 0 3px;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  line-height: 1.3;
}

.nhs-card__figure {
  margin: 0 0 8px;
  color: var(--cream);
  font-family: var(--display);
  font-size: 40px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
}

.nhs-card__figure--small {
  margin-bottom: 6px;
  font-size: 26px;
  letter-spacing: -.02em;
}

.nhs-card__caption {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.5;
}

.nhs-card__secondary .nhs-card__caption {
  color: rgba(255, 255, 255, .68);
  font-size: 13.5px;
}

.nhs-card__body > .nhs-card__caption {
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(255, 255, 255, .17);
}

.nhs-card__secondary {
  padding: 16px 0 18px;
  border-bottom: 1px dashed rgba(255, 255, 255, .17);
}

.nhs-card__note {
  margin: 0;
  padding: 15px 0 17px;
  border-bottom: 1px dashed rgba(255, 255, 255, .17);
  color: rgba(255, 255, 255, .6);
  font-size: 13.5px;
  line-height: 1.5;
}

.nhs-card__meta {
  margin: 0;
  padding-top: 16px;
  color: rgba(255, 255, 255, .56);
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.75;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nhs-card__meta p {
  margin: 0;
}

.nhs-card__meta p:empty {
  display: none;
}

.nhs-card[data-state="overdue"] .nhs-card__meta p:last-child,
.nhs-card[data-state="review"] .nhs-card__meta p:last-child,
.nhs-card[data-state="error"] .nhs-card__meta p:last-child {
  color: #d9a86a;
}

.nhs-card__cta {
  min-height: 46px;
  margin-top: 18px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: #347f7a;
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  transition: background .15s ease;
}

.nhs-card__cta:hover {
  background: #3f918a;
}

.nhs-card__cta:focus-visible {
  outline: 3px solid var(--cream);
  outline-offset: 3px;
}

/* Revision history on the NHS figures explainer page. */
.revision-log {
  margin-top: 34px;
}

.revision-log__list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.revision-log__item {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid rgba(20, 43, 58, .16);
}

.revision-log__values {
  font-variant-numeric: tabular-nums;
}

.revision-log__meta {
  opacity: .72;
  font-size: .88rem;
}

.revision-log__empty {
  opacity: .72;
}

@media (max-width: 1000px) {
  .hero--home .hero__grid {
    align-items: start;
  }

  .nhs-card {
    width: min(100%, 480px);
  }

  .nhs-card__badge {
    right: 12px;
  }
}

@media (max-width: 560px) {
  .nhs-card {
    width: 100%;
    padding: 24px 22px 22px;
  }

  .nhs-card[data-state="loading"] {
    min-height: 500px;
  }

  .nhs-card__badge {
    top: -13px;
    right: 10px;
  }

  .nhs-card__figure {
    font-size: 36px;
  }
}

@media print {
  .nhs-card {
    display: none;
  }

  .hero--home .hero__grid {
    display: block;
  }
}


/* ============================================================
   NHS EXPLAINER DIALOG
   Progressive enhancement of the full explanation page
   ============================================================ */

body.nhs-modal-open {
  overflow: hidden;
}

.nhs-modal {
  width: min(1040px, calc(100vw - 48px));
  height: min(900px, calc(100dvh - 48px));
  max-width: none;
  max-height: none;
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 20px;
  background: var(--cream);
  color: var(--body);
  box-shadow:
    0 32px 90px rgba(5, 12, 18, .48),
    0 8px 24px rgba(5, 12, 18, .22);
}

.nhs-modal:not([open]) {
  display: none;
}

.nhs-modal[open] {
  display: block;
  animation: nhs-modal-in .18s ease-out both;
}

.nhs-modal::backdrop {
  background: rgba(8, 16, 22, .72);
  -webkit-backdrop-filter: blur(8px) saturate(85%);
  backdrop-filter: blur(8px) saturate(85%);
  animation: nhs-backdrop-in .18s ease-out both;
}

@keyframes nhs-modal-in {
  from { opacity: 0; transform: translateY(14px) scale(.985); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes nhs-backdrop-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.nhs-modal__frame {
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: var(--cream);
}

.nhs-modal__bar {
  position: relative;
  z-index: 5;
  flex: 0 0 auto;
  min-height: 78px;
  padding: 14px 16px 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(247, 244, 237, .96);
  border-bottom: 1px solid var(--rule);
  -webkit-backdrop-filter: blur(12px) saturate(125%);
  backdrop-filter: blur(12px) saturate(125%);
}

.nhs-modal__heading {
  min-width: 0;
}

.nhs-modal__label {
  display: block;
  margin-bottom: 2px;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: .09em;
}

.nhs-modal__heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.025em;
}

.nhs-modal__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nhs-modal__full-link {
  min-height: 42px;
  padding: 9px 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--rule);
  border-radius: 9px;
  color: var(--body);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 650;
  line-height: 1.2;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}

.nhs-modal__full-link:hover {
  border-color: var(--teal);
  background: var(--mint-pale);
  color: var(--teal-dark);
}

.nhs-modal__close {
  width: 46px;
  height: 46px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  cursor: pointer;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}

.nhs-modal__close:hover {
  background: var(--teal-dark);
  color: var(--mint);
  transform: rotate(3deg);
}

.nhs-modal__close svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.nhs-modal__scroll {
  min-height: 0;
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  background: var(--cream);
}

.nhs-modal__scroll:focus {
  outline: none;
}

.nhs-modal__loading,
.nhs-modal__error {
  min-height: 240px;
  padding: 56px 28px;
  display: grid;
  place-items: center;
  color: var(--muted);
  text-align: center;
}

.nhs-modal__error p {
  max-width: 42ch;
  margin: 0;
}

.nhs-modal__error a {
  color: var(--teal-dark);
  font-weight: 700;
}

.nhs-modal__document {
  min-height: 100%;
  background: var(--cream);
}

/* The modal has its own title bar, so the page breadcrumb is redundant. */
.nhs-modal__document .breadcrumb {
  display: none;
}

.nhs-modal__document .hero__inner {
  width: min(calc(100% - 72px), 780px);
  padding-top: 54px;
  padding-bottom: 62px;
}

.nhs-modal__document .hero h1 {
  font-size: clamp(44px, 6vw, 64px);
}

/* Sticky within the dialog's scroll pane rather than the browser window. */
.nhs-modal__document .section-index {
  top: 0;
}

@media (max-width: 640px) {
  .nhs-modal {
    width: calc(100vw - 16px);
    height: calc(100dvh - 16px);
    border-radius: 14px;
  }

  .nhs-modal__bar {
    min-height: 68px;
    padding: 10px 10px 10px 16px;
    gap: 12px;
  }

  .nhs-modal__label {
    font-size: 9px;
  }

  .nhs-modal__heading h2 {
    max-width: 22ch;
    font-size: 16px;
  }

  .nhs-modal__actions {
    gap: 7px;
  }

  .nhs-modal__full-link {
    width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    justify-content: center;
  }

  .nhs-modal__full-link span:first-child {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .nhs-modal__close {
    width: 42px;
    height: 42px;
  }

  .nhs-modal__document .hero__inner {
    width: min(calc(100% - 36px), 780px);
    padding-top: 40px;
    padding-bottom: 46px;
  }

  .nhs-modal__document .hero h1 {
    font-size: clamp(37px, 10.8vw, 48px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nhs-modal[open],
  .nhs-modal::backdrop {
    animation: none;
  }
}

@media print {
  .nhs-modal {
    display: none;
  }
}


/* ===== site search ======================================== */

.site-search-trigger {
  min-height: 39px;
  padding: 7px 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 9px;
  background: rgba(255, 255, 255, .055);
  color: rgba(255, 255, 255, .9);
  cursor: pointer;
  font: 600 14px/1 var(--sans);
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}

.site-search-trigger:hover {
  border-color: rgba(147, 222, 197, .62);
  background: rgba(147, 222, 197, .1);
  color: var(--mint);
}

.site-search-trigger svg,
.site-search-form__icon svg,
.site-search-dialog__close svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.site-search-trigger svg {
  width: 17px;
  height: 17px;
}

.site-search-trigger kbd {
  margin-left: 2px;
  padding: 3px 5px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 5px;
  color: rgba(255, 255, 255, .48);
  background: rgba(0, 0, 0, .12);
  font: 500 9px/1 var(--mono);
  letter-spacing: .02em;
}

.site-search-trigger--mobile {
  width: 100%;
  min-height: 47px;
  padding: 10px 0;
  justify-content: flex-start;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, .88);
  font-size: 16px;
  font-weight: 400;
}

.site-search-dialog {
  width: min(880px, calc(100vw - 40px));
  height: min(760px, calc(100dvh - 40px));
  max-width: none;
  max-height: none;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  overflow: hidden;
  background: var(--cream);
  color: var(--body);
  box-shadow: 0 28px 80px rgba(4, 12, 18, .4);
}

.site-search-dialog[open] {
  display: block;
  animation: site-search-in .18s ease-out both;
}

.site-search-dialog::backdrop {
  background: rgba(8, 16, 22, .74);
  -webkit-backdrop-filter: blur(9px) saturate(85%);
  backdrop-filter: blur(9px) saturate(85%);
  animation: site-search-backdrop-in .18s ease-out both;
}

@keyframes site-search-in {
  from { opacity: 0; transform: translateY(14px) scale(.985); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes site-search-backdrop-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.site-search-dialog__frame {
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.site-search-dialog__bar {
  min-height: 84px;
  padding: 15px 18px 15px 28px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--navy);
  color: var(--cream);
  border-bottom: 1px solid var(--rule-dark);
}

.site-search-dialog__label {
  display: block;
  margin-bottom: 3px;
  color: var(--mint);
  font: 650 9.5px/1.3 var(--mono);
  letter-spacing: .1em;
}

.site-search-dialog__bar h2 {
  margin: 0;
  color: var(--cream);
  font: 700 23px/1.16 var(--display);
  letter-spacing: -.03em;
}

.site-search-dialog__close {
  width: 46px;
  height: 46px;
  padding: 0;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  color: var(--cream);
  cursor: pointer;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}

.site-search-dialog__close:hover {
  background: var(--teal-dark);
  color: var(--mint);
  transform: rotate(3deg);
}

.site-search-dialog__close svg {
  width: 21px;
  height: 21px;
}

.site-search-dialog__body {
  min-height: 0;
  padding: 30px 34px 38px;
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.site-search-form {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--ink);
}

.site-search-form__icon {
  position: absolute;
  left: 18px;
  z-index: 1;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  pointer-events: none;
}

.site-search-form__icon svg {
  width: 22px;
  height: 22px;
}

.site-search-form input {
  width: 100%;
  height: 62px;
  padding: 10px 88px 10px 54px;
  border: 2px solid var(--rule);
  border-radius: 13px;
  background: var(--white);
  color: var(--ink);
  font: 600 20px/1.2 var(--sans);
  caret-color: var(--teal);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.site-search-form input::-webkit-search-cancel-button { display: none; }

.site-search-form input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(11, 123, 119, .12);
}

.site-search-form input::placeholder {
  color: var(--muted);
  opacity: .78;
}

.site-search-form__clear {
  position: absolute;
  right: 13px;
  min-height: 36px;
  padding: 7px 10px;
  border: 0;
  border-radius: 7px;
  background: var(--mint-pale);
  color: var(--teal-dark);
  cursor: pointer;
  font: 700 12px/1 var(--sans);
}

.site-search-summary {
  min-height: 26px;
  margin: 13px 2px 3px;
  color: var(--muted);
  font: 550 13px/1.5 var(--mono);
}

.site-search-results {
  border-top: 1px solid var(--rule);
}

.site-search-result {
  margin: 0;
  border-bottom: 1px solid var(--rule);
}

.site-search-result__link {
  position: relative;
  padding: 20px 50px 20px 2px;
  display: block;
  text-decoration: none;
}

.site-search-result__link:hover h3 { color: var(--teal-dark); }
.site-search-result__link:hover .site-search-result__arrow { transform: translateX(4px); }

.site-search-result__type {
  display: block;
  margin-bottom: 5px;
  color: var(--teal);
  font: 650 9.5px/1.35 var(--mono);
  letter-spacing: .09em;
  text-transform: uppercase;
}

.site-search-result h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font: 700 21px/1.2 var(--display);
  letter-spacing: -.025em;
  transition: color .15s ease;
}

.site-search-result__excerpt {
  max-width: 65ch;
  margin: 0;
  color: var(--body);
  font-size: 15.5px;
  line-height: 1.48;
}

.site-search-result mark {
  padding: 0 .08em;
  border-radius: 2px;
  background: var(--mint);
  color: var(--navy-deep);
}

.site-search-result__arrow {
  position: absolute;
  top: 50%;
  right: 12px;
  color: var(--teal);
  font: 650 21px/1 var(--mono);
  transform: translateY(-50%);
  transition: transform .15s ease;
}

.site-search-empty {
  padding: 32px 3px;
  color: var(--body);
}

.site-search-empty p { margin-bottom: 5px; }
.site-search-empty__examples { color: var(--muted); font-size: 15px; }

.site-search-all {
  min-height: 48px;
  margin-top: 22px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 9px;
  background: var(--mint);
  color: var(--navy-deep);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}

.site-search-all:hover { background: #a8e7d1; }

.site-search-all[hidden],
.site-search-form__clear[hidden] {
  display: none !important;
}

/* Dedicated search page */
.search-page__hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 60px;
  background: var(--navy);
  color: var(--cream);
}

.search-page__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .06;
  background-image:
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 64px 64px;
}

.search-page__hero .wide-column { position: relative; z-index: 1; }
.search-page__hero .breadcrumb { margin-bottom: 36px; }

.search-page__hero h1 {
  margin: 0 0 16px;
  color: var(--cream);
  font: 700 clamp(45px, 6vw, 70px)/1 var(--display);
  letter-spacing: -.05em;
}

.search-page__hero p:last-child {
  max-width: 62ch;
  margin: 0;
  color: rgba(255, 255, 255, .73);
  font-size: 19px;
  line-height: 1.55;
}

.search-page__content { padding: 52px 0 90px; }

.site-search-page-panel {
  width: min(100%, 850px);
  min-height: 420px;
  margin-inline: auto;
  padding: 34px;
  border: 1px solid var(--rule);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 14px 35px rgba(20, 31, 39, .07);
}

.site-search-results--page .site-search-result__link {
  padding-top: 25px;
  padding-bottom: 25px;
}

@media (max-width: 1060px) {
  .site-search-trigger kbd { display: none; }
}

@media (max-width: 640px) {
  .site-search-dialog {
    width: calc(100vw - 16px);
    height: calc(100dvh - 16px);
    border-radius: 15px;
  }

  .site-search-dialog__bar {
    min-height: 70px;
    padding: 10px 10px 10px 18px;
  }

  .site-search-dialog__bar h2 { font-size: 19px; }
  .site-search-dialog__close { width: 43px; height: 43px; }
  .site-search-dialog__body { padding: 20px 18px 28px; }

  .site-search-form input {
    height: 56px;
    padding-left: 50px;
    font-size: 17px;
  }

  .site-search-result__link { padding: 18px 38px 18px 1px; }
  .site-search-result h3 { font-size: 19px; }
  .site-search-result__excerpt { font-size: 14.5px; }
  .site-search-result__arrow { right: 3px; }

  .search-page__hero { padding: 36px 0 46px; }
  .search-page__hero .breadcrumb { margin-bottom: 28px; }
  .search-page__hero p:last-child { font-size: 17px; }
  .search-page__content { padding: 24px 0 60px; }
  .site-search-page-panel { padding: 20px 18px 28px; border-radius: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .site-search-dialog[open],
  .site-search-dialog::backdrop { animation: none; }
}

@media print {
  .site-search-trigger,
  .site-search-dialog { display: none; }
}


/* ===== questions and answers ============================== */

.desktop-nav a[aria-current="page"],
.mobile-menu__panel a[aria-current="page"] {
  color: var(--mint);
}

.faq-hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 72px;
  background: var(--navy);
  color: var(--cream);
}

.faq-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .06;
  background-image:
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 26%, #000 100%);
          mask-image: linear-gradient(to bottom, transparent 0, #000 26%, #000 100%);
}

.faq-hero .wide-column {
  position: relative;
  z-index: 1;
}

.faq-hero .wide-column::before {
  content: "FAQ";
  position: absolute;
  z-index: 0;
  top: 78px;
  right: -10px;
  color: rgba(126, 188, 220, .06);
  font: 760 clamp(150px, 18vw, 228px)/.78 var(--display);
  letter-spacing: -.085em;
  white-space: nowrap;
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
}

.faq-hero .wide-column > * {
  position: relative;
  z-index: 1;
}

.faq-hero .breadcrumb { margin-bottom: 46px; }

.faq-hero h1 {
  max-width: 13ch;
  margin: 0 0 22px;
  color: var(--cream);
  font: 700 clamp(48px, 6vw, 74px)/.98 var(--display);
  letter-spacing: -.052em;
}

.faq-hero__standfirst {
  max-width: 660px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, .78);
  font-size: 20px;
  line-height: 1.55;
}

.faq-hero__note {
  margin: 0;
  color: rgba(255, 255, 255, .53);
  font: 500 12px/1.5 var(--mono);
}

.faq-jump {
  position: sticky;
  top: 0;
  z-index: 70;
  border-bottom: 1px solid var(--rule);
  background: rgba(247, 244, 237, .95);
  -webkit-backdrop-filter: blur(12px) saturate(125%);
  backdrop-filter: blur(12px) saturate(125%);
}

.faq-jump .wide-column {
  padding: 13px 0;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.faq-jump .wide-column::-webkit-scrollbar { display: none; }

.faq-jump a {
  min-height: 34px;
  padding: 7px 11px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: rgba(255, 255, 255, .56);
  color: var(--body);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1;
}

.faq-jump a:hover {
  border-color: var(--teal);
  background: var(--mint-pale);
  color: var(--teal-dark);
}

.faq-content {
  padding-top: 34px;
  padding-bottom: 110px;
}

.faq-toolbar {
  margin-bottom: 30px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  border-radius: 14px;
  background: var(--teal-dark);
  box-shadow: 0 10px 28px rgba(13, 44, 49, .09);
}

.faq-toolbar p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  font-weight: 600;
}

.faq-toolbar p span {
  margin-right: 5px;
  color: var(--mint);
  font-family: var(--mono);
  font-weight: 700;
}

.faq-toolbar button {
  min-height: 38px;
  padding: 9px 13px;
  border: 0;
  border-radius: 8px;
  background: var(--mint);
  color: var(--navy-deep);
  cursor: pointer;
  font: 700 13px/1 var(--sans);
}

.faq-toolbar button:hover { background: #a8e7d1; }

.faq-section {
  --faq-panel: #eee8de;
  --faq-accent: #8d6d50;
  scroll-margin-top: 78px;
  padding: 37px 36px 29px;
  border: 1px solid rgba(28, 41, 54, .08);
  border-left: 7px solid var(--faq-accent);
  border-radius: 24px;
  background: var(--faq-panel);
  box-shadow: 0 13px 34px rgba(28, 41, 54, .045);
}

.faq-section + .faq-section {
  margin-top: 28px;
}

.faq-section#starting-to-wonder { --faq-panel: #f0e7da; --faq-accent: #9a673e; }
.faq-section#assessment { --faq-panel: #e3ece6; --faq-accent: #587665; }
.faq-section#right-to-choose { --faq-panel: #dfeaed; --faq-accent: #3f7776; }
.faq-section#private-assessment { --faq-panel: #ebe4e9; --faq-accent: #745f70; }
.faq-section#medication-aftercare { --faq-panel: #eee4df; --faq-accent: #8d5d4d; }
.faq-section#children-education { --faq-panel: #e3ece8; --faq-accent: #577a6c; }
.faq-section#work-relationships { --faq-panel: #e1e9ed; --faq-accent: #506f82; }
.faq-section#privacy { --faq-panel: #ebe6dd; --faq-accent: #786652; }

.faq-section__header {
  margin-bottom: 25px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 19px;
  align-items: start;
}

.faq-section__number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--faq-accent);
  color: var(--white);
  font: 650 12px/1 var(--mono);
  letter-spacing: .05em;
}

.faq-section__header .micro-label { margin-bottom: 4px; color: var(--faq-accent); }

.faq-section__header h2 {
  margin: 0;
  color: var(--ink);
  font: 700 clamp(30px, 4vw, 43px)/1.05 var(--display);
  letter-spacing: -.042em;
}

.faq-section--featured {
  position: relative;
  border-color: rgba(63, 119, 118, .22);
  border-left-color: var(--faq-accent);
  box-shadow: 0 15px 38px rgba(34, 83, 82, .075);
}

.faq-list {
  overflow: hidden;
  border: 1px solid rgba(28, 41, 54, .09);
  border-radius: 14px;
  background: rgba(255, 255, 255, .28);
}

.faq-item {
  border-bottom: 1px solid rgba(28, 41, 54, .10);
  background: rgba(255, 255, 255, .33);
}

.faq-item:last-child { border-bottom: 0; }

.faq-item > summary {
  position: relative;
  min-height: 76px;
  padding: 21px 66px 21px 17px;
  display: flex;
  align-items: center;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
}

.faq-item > summary::-webkit-details-marker { display: none; }

.faq-item > summary h3 {
  margin: 0;
  color: inherit;
  font: 680 clamp(18px, 2vw, 21px)/1.32 var(--display);
  letter-spacing: -.022em;
}

.faq-item > summary > span {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  background: var(--white);
  transform: translateY(-50%);
  transition: border-color .15s ease, background .15s ease, transform .18s ease;
}

.faq-item > summary > span::before,
.faq-item > summary > span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--teal-dark);
  transform: translate(-50%, -50%);
}

.faq-item > summary > span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity .15s ease, transform .18s ease;
}

.faq-item > summary:hover { color: var(--teal-dark); }

.faq-item > summary:hover > span {
  border-color: var(--teal);
  background: var(--mint-pale);
}

.faq-item[open] > summary {
  color: var(--teal-dark);
  background: rgba(255, 255, 255, .19);
}

.faq-item[open] > summary > span {
  border-color: var(--teal);
  background: var(--mint);
  transform: translateY(-50%) rotate(2deg);
}

.faq-item[open] > summary > span::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0);
}

.faq-item__answer {
  max-width: 760px;
  padding: 0 64px 25px 17px;
  color: var(--body);
  font-size: 17px;
  line-height: 1.62;
  animation: faq-answer-in .16s ease-out both;
}

.faq-item__answer p:last-child { margin-bottom: 0; }

@keyframes faq-answer-in {
  from { opacity: 0; transform: translateY(-5px); }
  to   { opacity: 1; transform: translateY(0); }
}

.faq-closing {
  margin-top: 88px;
  padding: 38px 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 50px;
  align-items: end;
  border-radius: 16px;
  background: var(--navy);
  color: var(--cream);
}

.faq-closing .micro-label {
  grid-column: 1 / -1;
  margin-bottom: 10px;
  color: var(--mint);
}

.faq-closing h2 {
  margin: 0 0 8px;
  color: var(--cream);
  font: 700 clamp(30px, 4vw, 42px)/1.05 var(--display);
  letter-spacing: -.04em;
}

.faq-closing p:not(.micro-label) {
  max-width: 56ch;
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 16px;
  line-height: 1.5;
}

.faq-closing__button {
  min-width: 220px;
  min-height: 52px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  border-radius: 9px;
  background: var(--mint);
  color: var(--navy-deep);
  cursor: pointer;
  font: 700 15px/1.2 var(--sans);
}

.faq-closing__button:hover { background: #a8e7d1; }

@media (max-width: 760px) {
  .faq-hero { padding: 34px 0 52px; }
  .faq-hero .breadcrumb { margin-bottom: 34px; }
  .faq-hero__standfirst { font-size: 18px; }
  .faq-hero .wide-column::before {
    top: 96px;
    right: -20px;
    color: rgba(126, 188, 220, .032);
    font-size: clamp(108px, 29vw, 150px);
  }

  .faq-jump .wide-column {
    width: 100%;
    padding-inline: 18px;
  }

  .faq-content { padding-top: 24px; padding-bottom: 72px; }

  .faq-toolbar {
    margin-bottom: 24px;
    padding: 15px 16px;
    gap: 14px;
  }

  .faq-toolbar p { font-size: 12.5px; }
  .faq-toolbar button { white-space: nowrap; }

  .faq-section {
    padding: 28px 18px 20px;
    border-left-width: 5px;
    border-radius: 18px;
  }
  .faq-section + .faq-section { margin-top: 22px; }

  .faq-section__header {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 13px;
  }

  .faq-section__number { width: 42px; height: 42px; font-size: 10.5px; }

  .faq-section--featured {
    padding: 28px 18px 20px;
    border-radius: 18px;
  }

  .faq-item > summary {
    min-height: 68px;
    padding: 18px 48px 18px 13px;
  }

  .faq-item > summary > span { right: 9px; width: 30px; height: 30px; }
  .faq-item__answer { padding: 0 44px 22px 13px; font-size: 16px; }

  .faq-closing {
    margin-top: 64px;
    padding: 30px 24px;
    display: block;
  }

  .faq-closing p:not(.micro-label) { margin-bottom: 24px; }
  .faq-closing__button { width: 100%; min-width: 0; }
}

@media (max-width: 430px) {
  .faq-hero .wide-column::before { display: none; }
  .faq-toolbar { align-items: flex-start; flex-direction: column; }
  .faq-toolbar button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item__answer { animation: none; }
}

@media print {
  .faq-hero .wide-column::before,
  .faq-jump,
  .faq-toolbar,
  .faq-closing { display: none; }

  .faq-hero {
    padding: 24px 0;
    background: white;
    color: black;
  }

  .faq-hero h1,
  .faq-hero__standfirst,
  .faq-hero__note { color: black; }

  .faq-item { break-inside: avoid; }
  .faq-item > summary > span { display: none; }
  .faq-item__answer { display: block !important; }
}


/* ===== wondering about ADHD journey ======================= */

.journey-hero,
.routes-hero,
.screener-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--cream);
}

.journey-hero::after,
.routes-hero::after,
.screener-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .06;
  background-image:
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 28%, #000 100%);
          mask-image: linear-gradient(to bottom, transparent 0, #000 28%, #000 100%);
}

.journey-hero .wide-column,
.routes-hero .wide-column,
.screener-hero .wide-column {
  position: relative;
  z-index: 1;
  padding-top: 42px;
  padding-bottom: 74px;
}

.journey-hero .breadcrumb,
.routes-hero .breadcrumb,
.screener-hero .breadcrumb { margin-bottom: 48px; }

.journey-hero__grid,
.screener-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: 74px;
  align-items: end;
}

.journey-hero h1,
.routes-hero h1,
.screener-hero h1 {
  margin: 0;
  color: var(--cream);
  font: 700 clamp(48px, 6vw, 72px)/.98 var(--display);
  letter-spacing: -.052em;
}

.journey-hero h1 { max-width: 12ch; }

.journey-hero__standfirst,
.routes-hero__standfirst,
.screener-hero__standfirst {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 20px;
  line-height: 1.56;
}

.pattern-intro { padding: 76px 0 68px; }

.pattern-intro__grid {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  gap: 90px;
  align-items: start;
}

.pattern-intro h2,
.pattern-prompts h2,
.next-choice h2,
.route-cards h2,
.route-table-section h2,
.after-assessment h2,
.screener-tool h2,
.screener-method h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font: 700 clamp(32px, 4vw, 45px)/1.05 var(--display);
  letter-spacing: -.042em;
}

.pattern-intro__copy { font-size: 18px; line-height: 1.66; }
.pattern-intro__copy p:last-child { margin-bottom: 0; }

.therapist-view { padding: 0 0 78px; }

.therapist-view__card {
  position: relative;
  padding: 46px 50px 49px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 62px;
  border: 1px solid rgba(11,123,119,.27);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 20px 48px rgba(19,32,43,.07);
}

.therapist-view__card::before {
  content: "“";
  position: absolute;
  right: 34px;
  top: 9px;
  color: var(--mint-pale);
  font: 700 118px/1 var(--display);
}

.therapist-view__identity { position: relative; z-index: 1; }

.therapist-view__initials {
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--mint);
  font: 650 16px/1 var(--mono);
}

.therapist-view__portrait {
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  border: 2px solid var(--mint);
  border-radius: 50%;
  background: var(--cream);
  object-fit: cover;
  box-shadow: 0 3px 10px rgba(22, 45, 51, .09);
}

.therapist-view__name {
  margin: 7px 0 5px;
  color: var(--ink);
  font: 700 22px/1.2 var(--display);
}

.therapist-view__identity div > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.therapist-view__copy { position: relative; z-index: 1; }
.therapist-view__copy h2 { margin: 0 0 21px; color: var(--ink); font: 700 38px/1.05 var(--display); letter-spacing: -.04em; }
.therapist-view__copy p { font-size: 17px; line-height: 1.65; }
.therapist-view__copy p:last-child { margin-bottom: 0; }

.pattern-prompts {
  padding: 76px 0 80px;
  background: var(--mint-pale);
  border-block: 1px solid rgba(11,123,119,.12);
}

.pattern-prompts__grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pattern-prompts__grid article {
  min-height: 190px;
  padding: 24px 23px;
  border: 1px solid rgba(11,123,119,.17);
  border-radius: 12px;
  background: rgba(255,255,255,.65);
}

.pattern-prompts__grid article > span { color: var(--teal); font: 650 11px/1 var(--mono); letter-spacing: .07em; }
.pattern-prompts__grid h3 { margin: 28px 0 8px; color: var(--ink); font: 700 22px/1.1 var(--display); letter-spacing: -.025em; }
.pattern-prompts__grid p { margin: 0; font-size: 15.5px; line-height: 1.5; }
.pattern-prompts__note { margin: 23px 0 0; color: var(--muted); font-size: 14px; }

.next-choice { padding: 88px 0 105px; }
.next-choice__intro { max-width: 670px; margin: 17px 0 34px; font-size: 18px; }

.next-choice__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.next-choice__card {
  position: relative;
  min-height: 375px;
  padding: 30px 28px 27px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rule);
  border-radius: 15px;
  background: var(--white);
  color: var(--body);
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.next-choice__card:hover { transform: translateY(-4px); box-shadow: 0 18px 34px rgba(19,32,43,.09); border-color: var(--teal); }
.next-choice__number { position: absolute; top: 25px; right: 25px; color: var(--muted); font: 600 11px/1 var(--mono); }
.next-choice__card .micro-label { margin-bottom: 27px; }
.next-choice__card h3 { max-width: 12ch; margin: 0 0 15px; color: var(--ink); font: 700 29px/1.05 var(--display); letter-spacing: -.037em; }
.next-choice__card > p:not(.micro-label) { margin-bottom: 30px; font-size: 16px; line-height: 1.55; }
.next-choice__link { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--rule-soft); color: var(--teal-dark); font-size: 15px; font-weight: 700; }
.next-choice__link b { float: right; }
.next-choice__card--screener { border-top: 5px solid var(--teal); }
.next-choice__card--routes { border-top: 5px solid var(--ochre); }
.next-choice__card--guide { border-top: 5px solid var(--navy); }

.next-choice__quiet {
  margin-top: 24px;
  padding: 18px 22px;
  border-left: 3px solid var(--teal);
  background: rgba(255,255,255,.55);
}
.next-choice__quiet p { margin: 0; font-size: 15.5px; }
.next-choice__quiet a { color: var(--teal-dark); font-weight: 650; }


/* ===== assessment routes ================================== */

.routes-hero .wide-column { padding-bottom: 82px; }
.routes-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
  gap: 72px;
  align-items: end;
}
.routes-hero h1 { max-width: 13ch; }
.routes-hero__standfirst { max-width: 720px; margin-top: 28px; }
.routes-hero__summary {
  margin: 0 0 4px;
  padding: 24px 25px 22px;
  border: 1px solid rgba(246, 225, 112, .43);
  border-radius: 11px;
  background: rgba(9, 22, 35, .28);
  box-shadow: inset 3px 0 0 rgba(246, 225, 112, .24);
  color: #f6e170;
}
.routes-hero__summary span {
  display: block;
  font: 650 11px/1.2 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.routes-hero__summary strong {
  display: block;
  margin-top: 15px;
  color: #fff3a8;
  font: 680 21px/1.28 var(--display);
}
.routes-hero__summary p {
  margin: 11px 0 0;
  color: rgba(255, 247, 190, .78);
  font-size: 14.5px;
  line-height: 1.48;
}

.routes-principle { padding: 38px 0 0; }
.routes-principle__inner { padding: 26px 30px; display: grid; grid-template-columns: 48px minmax(0,1fr); gap: 20px; align-items: start; border: 1px solid rgba(11,123,119,.2); border-radius: 13px; background: var(--mint-pale); }
.routes-principle__mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--teal-dark); color: var(--mint); font: 700 18px/1 var(--display); }
.routes-principle h2 { margin: 5px 0 6px; color: var(--ink); font: 700 23px/1.15 var(--display); letter-spacing: -.026em; }
.routes-principle p:last-child { margin: 0; font-size: 15.5px; }

.route-cards { padding: 82px 0 92px; }
.route-cards__grid { margin-top: 32px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.route-card { overflow: hidden; border: 1px solid var(--rule); border-radius: 15px; background: var(--white); }
.route-card header { min-height: 174px; padding: 25px 26px 23px; position: relative; background: var(--navy); color: var(--white); }
.route-card header > span { position: absolute; top: 25px; right: 24px; font: 600 11px/1 var(--mono); opacity: .66; }
.route-card header p { margin: 0 0 32px; color: var(--mint); font: 600 10px/1 var(--mono); letter-spacing: .08em; }
.route-card header h3 { margin: 0; color: var(--cream); font: 700 38px/1 var(--display); letter-spacing: -.045em; }
.route-card > p:not(.route-card__watch) { min-height: 104px; margin: 0; padding: 23px 26px; font-size: 16px; line-height: 1.5; }
.route-card dl { margin: 0; padding: 0 26px; }
.route-card dl div { padding: 15px 0; border-top: 1px solid var(--rule-soft); }
.route-card dt { color: var(--muted); font: 600 10px/1.3 var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.route-card dd { margin: 5px 0 0; color: var(--ink); font-size: 14.5px; line-height: 1.4; }
.route-card__watch { min-height: 147px; margin: 17px 18px 18px; padding: 17px 18px; border-radius: 9px; background: var(--cream); font-size: 14.5px; line-height: 1.5; }
.route-card--rtc { border-color: rgba(11,123,119,.45); box-shadow: 0 18px 38px rgba(7,92,90,.09); }
.route-card--rtc header { background: var(--teal-dark); }
.route-card--rtc .route-card__watch { background: var(--mint-pale); }
.route-card--private header { background: #78502d; }
.route-card--private header p { color: #ffd6a9; }
.route-card--private .route-card__watch { background: var(--ochre-pale); }

.route-table-section { padding: 84px 0 94px; border-block: 1px solid var(--rule); background: var(--white); }
.route-table-section__heading { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: end; margin-bottom: 31px; }
.route-table-section__heading > p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }
.route-table-wrap { overflow-x: auto; border: 1px solid var(--rule); border-radius: 12px; }
.route-table-wrap:focus-visible { outline: 3px solid var(--mint); outline-offset: 3px; }
.route-table { width: 100%; min-width: 820px; border-collapse: collapse; font-size: 14.5px; line-height: 1.42; }
.route-table th, .route-table td { padding: 17px 18px; border-right: 1px solid var(--rule-soft); border-bottom: 1px solid var(--rule-soft); text-align: left; vertical-align: top; }
.route-table tr:last-child th, .route-table tr:last-child td { border-bottom: 0; }
.route-table th:last-child, .route-table td:last-child { border-right: 0; }
.route-table thead th { background: var(--navy); color: var(--cream); font-family: var(--display); font-size: 16px; }
.route-table thead th:nth-child(3) { background: var(--teal-dark); }
.route-table thead th:nth-child(4) { background: #78502d; }
.route-table tbody th { width: 23%; color: var(--ink); background: var(--cream); font-weight: 650; }
.route-table tbody td:nth-child(3) { background: rgba(227,234,231,.55); }
.route-table tbody td:nth-child(4) { background: rgba(247,236,223,.45); }

.after-assessment { padding: 92px 0; background: var(--navy); color: rgba(255,255,255,.72); }
.after-assessment__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.after-assessment .micro-label { color: var(--mint); }
.after-assessment h2 { margin-bottom: 21px; color: var(--cream); }
.after-assessment__grid > div > p:last-child { margin: 0; font-size: 16px; }
.after-assessment ol { margin: 0; padding: 0; list-style: none; }
.after-assessment li { padding: 20px 0; display: grid; grid-template-columns: 40px 1fr; gap: 16px; border-top: 1px solid rgba(255,255,255,.14); }
.after-assessment li:first-child { padding-top: 0; border-top: 0; }
.after-assessment li > span { color: var(--mint); font: 600 11px/1.5 var(--mono); }
.after-assessment li p { margin: 0; font-size: 15.5px; line-height: 1.53; }
.after-assessment li strong { color: var(--white); display: block; margin-bottom: 3px; }

.route-actions { padding: 80px 0 104px; }
.route-actions__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.route-action { min-height: 290px; padding: 34px 35px 29px; display: flex; flex-direction: column; border: 1px solid var(--rule); border-radius: 14px; background: var(--white); color: var(--body); text-decoration: none; }
.route-action h2 { max-width: 13ch; margin: 14px 0 13px; color: var(--ink); font: 700 31px/1.06 var(--display); letter-spacing: -.036em; }
.route-action > p:not(.micro-label) { font-size: 15.5px; line-height: 1.5; }
.route-action > span { margin-top: auto; padding-top: 17px; border-top: 1px solid var(--rule-soft); color: var(--teal-dark); font-size: 15px; font-weight: 700; }
.route-action > span b { float: right; }
.route-action:hover { border-color: var(--teal); box-shadow: 0 14px 30px rgba(19,32,43,.07); }
.route-action--primary { background: var(--mint-pale); border-color: rgba(11,123,119,.25); }
.routes-principle__guide-link { margin: 19px 0 0; }
.routes-principle__guide-link a { color: var(--mint); font-size: 15px; font-weight: 700; text-underline-offset: 3px; }


/* ===== adult screener ====================================== */

.screener-hero__grid { grid-template-columns: minmax(0,1.12fr) minmax(300px,.88fr); }
.screener-hero h1 { max-width: 10ch; }
.screener-hero__standfirst { max-width: 570px; margin-top: 24px; }
.screener-hero__alternate { max-width: 660px; margin: 19px 0 0; color: rgba(255,255,255,.64); font-size: 14.5px; line-height: 1.55; }
.screener-hero__alternate a { color: var(--mint); font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.screener-hero__alternate a:hover { color: var(--white); }
.screener-privacy { padding: 24px 25px; display: grid; grid-template-columns: 40px 1fr; gap: 15px; border: 1px solid rgba(147,222,197,.35); border-radius: 12px; background: rgba(37,53,68,.9); }
.screener-privacy > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: var(--navy-deep); font-weight: 800; }
.screener-privacy .micro-label { margin-bottom: 7px; color: var(--mint); }
.screener-privacy p:last-child { margin: 0; color: rgba(255,255,255,.72); font-size: 14.5px; line-height: 1.5; }

.screener-caution { padding: 24px 0; border-bottom: 1px solid var(--rule); background: var(--ochre-pale); }
.screener-caution p { margin: 0; font-size: 15.5px; line-height: 1.55; }
.screener-caution a { color: var(--teal-dark); font-weight: 650; }

.screener-tool { padding: 78px 0 94px; }
.screener-tool__header { margin-bottom: 35px; display: grid; grid-template-columns: 1fr 1fr; gap: 75px; align-items: end; }
.screener-tool__header > p { margin: 0; color: var(--muted); font-size: 16px; }
.screener-question { margin: 0 0 14px; padding: 27px 28px 25px; border: 1px solid var(--rule); border-radius: 12px; background: var(--white); }
.screener-question legend { width: 100%; margin: 0 0 22px; padding: 0; float: left; color: var(--ink); font: 680 19px/1.38 var(--display); letter-spacing: -.018em; }
.screener-question legend span { margin-right: 12px; color: var(--teal); font: 650 11px/1 var(--mono); letter-spacing: .05em; }
.screener-options { margin-top: 0; clear: both; display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.screener-options label { position: relative; cursor: pointer; }
.screener-options input { position: absolute; opacity: 0; pointer-events: none; }
.screener-options span { min-height: 46px; padding: 9px 7px; display: grid; place-items: center; border: 1px solid var(--rule); border-radius: 8px; background: var(--cream); color: var(--body); text-align: center; font-size: 14px; font-weight: 600; transition: border-color .15s ease, background .15s ease, color .15s ease; }
.screener-options label:hover span { border-color: var(--teal); background: var(--mint-pale); }
.screener-options input:checked + span { border-color: var(--teal-dark); background: var(--teal-dark); color: var(--white); box-shadow: inset 0 0 0 1px var(--teal-dark); }
.screener-options input:focus-visible + span { outline: 3px solid var(--mint); outline-offset: 3px; }
.screener-submit { margin-top: 28px; display: flex; align-items: center; gap: 22px; }
.screener-submit button { min-width: 285px; min-height: 54px; padding: 13px 18px; display: flex; align-items: center; justify-content: space-between; border: 0; border-radius: 9px; background: var(--mint); color: var(--navy-deep); cursor: pointer; font: 700 16px/1 var(--sans); }
.screener-submit button:disabled { background: var(--rule); color: var(--muted); cursor: not-allowed; }
.screener-submit p { margin: 0; color: var(--muted); font-size: 14px; }

.screener-result { margin-top: 35px; padding: 37px 40px 39px; border: 1px solid rgba(11,123,119,.3); border-radius: 15px; background: var(--mint-pale); }
.screener-result[hidden] { display: none; }
.screener-result__status { display: flex; align-items: center; gap: 9px; }
.screener-result__status span { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--teal-dark); color: var(--white); font-size: 12px; }
.screener-result__status p { margin: 0; color: var(--teal-dark); font: 650 10.5px/1 var(--mono); letter-spacing: .07em; text-transform: uppercase; }
.screener-result h2 { max-width: 18ch; margin: 18px 0 17px; }
.screener-result > p { max-width: 720px; font-size: 16.5px; }
.screener-result__reflection { max-width: 800px; margin-top: 26px; padding: 21px 23px 22px; border: 1px solid rgba(178,112,45,.2); border-left: 4px solid var(--ochre); border-radius: 10px; background: rgba(255,255,255,.72); }
.screener-result__reflection .micro-label { margin-bottom: 8px; color: var(--ochre); }
.screener-result__reflection h3 { margin: 0 0 8px; color: var(--ink); font: 700 22px/1.15 var(--display); letter-spacing: -.025em; }
.screener-result__reflection p:last-child { max-width: 710px; margin: 0; color: var(--body); font-size: 15.5px; line-height: 1.58; }
.screener-result__actions { margin: 27px 0 22px; display: flex; flex-wrap: wrap; gap: 10px; }
.screener-result__actions a { min-height: 45px; padding: 11px 14px; display: inline-flex; align-items: center; gap: 25px; border-radius: 8px; background: var(--teal-dark); color: var(--white); text-decoration: none; font-size: 14px; font-weight: 650; }
.screener-result #screener-reset { padding: 4px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--teal-dark); cursor: pointer; font: 650 14px/1.2 var(--sans); }

.screener-method { padding: 76px 0 96px; border-top: 1px solid var(--rule); background: var(--white); }
.screener-method h2 { margin-bottom: 21px; }
.screener-method > .reading-column > p { font-size: 16.5px; }
.screener-method details { margin-top: 26px; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.screener-method summary { padding: 17px 0; color: var(--teal-dark); cursor: pointer; font-weight: 700; }
.screener-method details p { font-size: 14px; line-height: 1.5; }


/* ===== new journey responsive ============================== */

@media (max-width: 880px) {
  .journey-hero__grid,
  .routes-hero__grid,
  .screener-hero__grid,
  .pattern-intro__grid,
  .therapist-view__card,
  .after-assessment__grid { grid-template-columns: 1fr; gap: 35px; }

  .journey-hero h1,
  .routes-hero h1,
  .screener-hero h1 { max-width: 14ch; }

  .pattern-prompts__grid { grid-template-columns: 1fr 1fr; }
  .next-choice__grid,
  .route-cards__grid { grid-template-columns: 1fr; }
  .next-choice__card { min-height: 300px; }
  .route-card > p:not(.route-card__watch), .route-card__watch { min-height: 0; }
  .route-table-section__heading, .screener-tool__header { grid-template-columns: 1fr; gap: 20px; }
  .routes-hero__summary { max-width: 520px; }
}

@media (max-width: 650px) {
  .journey-hero .wide-column,
  .routes-hero .wide-column,
  .screener-hero .wide-column { padding-top: 32px; padding-bottom: 54px; }
  .journey-hero .breadcrumb,
  .routes-hero .breadcrumb,
  .screener-hero .breadcrumb { margin-bottom: 34px; }
  .journey-hero h1,
  .routes-hero h1,
  .screener-hero h1 { font-size: clamp(42px, 13vw, 56px); }
  .journey-hero__standfirst, .routes-hero__standfirst, .screener-hero__standfirst { font-size: 18px; }
  .routes-hero__grid { gap: 31px; }
  .routes-hero__summary { padding: 20px 21px 19px; }
  .pattern-intro, .route-cards, .screener-tool { padding: 58px 0 66px; }
  .therapist-view { padding-bottom: 58px; }
  .therapist-view__card { padding: 31px 25px 33px; border-radius: 13px; }
  .therapist-view__copy h2 { font-size: 32px; }
  .pattern-prompts { padding: 58px 0 62px; }
  .pattern-prompts__grid { grid-template-columns: 1fr; }
  .pattern-prompts__grid article { min-height: 0; }
  .pattern-prompts__grid h3 { margin-top: 18px; }
  .next-choice { padding: 64px 0 76px; }
  .next-choice__card { min-height: 0; }
  .routes-principle__inner { padding: 22px; grid-template-columns: 1fr; }
  .route-table-section { padding: 62px 0 70px; }
  .route-table-wrap::after { content: "Scroll sideways to compare all three routes →"; display: block; padding: 10px 14px; background: var(--cream); color: var(--muted); font: 600 10px/1.4 var(--mono); }
  .after-assessment { padding: 65px 0; }
  .route-actions { padding: 60px 0 76px; }
  .route-actions__grid { grid-template-columns: 1fr; }
  .route-action { min-height: 270px; padding: 29px 27px 25px; }
  .screener-privacy { padding: 20px; }
  .screener-question { padding: 23px 20px 21px; }
  .screener-options { grid-template-columns: 1fr; gap: 7px; }
  .screener-options span { min-height: 42px; justify-content: start; padding-inline: 15px; }
  .screener-submit { align-items: stretch; flex-direction: column; }
  .screener-submit button { width: 100%; min-width: 0; }
  .screener-result { padding: 30px 24px 32px; }
  .screener-result__reflection { padding: 18px 18px 19px; }
  .screener-result__actions { flex-direction: column; }
  .screener-result__actions a { justify-content: space-between; }
  .screener-method { padding: 60px 0 72px; }
}

@media print {
  .journey-hero,
  .routes-hero,
  .screener-hero,
  .after-assessment { background: white; color: black; }
  .journey-hero h1,
  .routes-hero h1,
  .screener-hero h1,
  .after-assessment h2,
  .after-assessment li strong { color: black; }
  .next-choice__card,
  .route-card,
  .screener-question { break-inside: avoid; }
  .screener-submit,
  .screener-result { display: none !important; }
}


/* ============================================================
   Resource library and long-form guides
   ============================================================ */

/* ===== resource hub ========================================= */

.resources-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 91px;
  background: var(--navy);
  color: var(--white);
}

.resources-hero::after,
.guide-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .055;
  background-image:
    linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 64px 64px;
}

.resources-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr);
  gap: 90px;
  align-items: end;
}

.resources-hero h1 {
  max-width: 14ch;
  margin: 0;
  color: var(--white);
  font: 720 clamp(48px, 5.8vw, 76px)/.99 var(--display);
  letter-spacing: -.052em;
}

.resources-hero__standfirst {
  margin: 0 0 4px;
  color: rgba(255,255,255,.78);
  font-size: 19px;
  line-height: 1.52;
}

.resources-hero__fact {
  margin: 0 0 4px;
  padding: 25px 27px 23px;
  border: 1px solid rgba(126, 188, 220, .4);
  border-radius: 12px;
  background: rgba(6, 21, 34, .28);
  box-shadow: inset 3px 0 0 rgba(126, 188, 220, .25);
  color: #b2d8ea;
}
.resources-hero__fact p { margin: 0; font-size: 17px; line-height: 1.48; }
.resources-hero__fact-number {
  margin-bottom: 13px !important;
  color: #8fc6df;
  font: 700 27px/1.1 var(--display) !important;
  letter-spacing: -.025em;
}
.resources-hero__fact small {
  display: block;
  margin-top: 16px;
  color: rgba(255,255,255,.58);
  font: 600 9.5px/1.5 var(--mono);
  letter-spacing: .055em;
  text-transform: uppercase;
}

.resource-group { padding: 86px 0 96px; }
.resource-group--tools { border-bottom: 1px solid var(--rule); }
.resource-group--guides { background: var(--white); }

.resource-group__head {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .58fr);
  gap: 70px;
  align-items: end;
}

.resource-group__head h2,
.resource-principles h2 {
  max-width: 18ch;
  margin: 10px 0 0;
  color: var(--ink);
  font: 680 clamp(34px, 4vw, 50px)/1.05 var(--display);
  letter-spacing: -.04em;
}

.resource-group__head > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.resource-tool-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 15px;
}

.resource-tool-card {
  --resource-accent: #2d8986;
  position: relative;
  min-height: 315px;
  padding: 28px 27px 25px 31px;
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  overflow: hidden;
  border: 1px solid var(--rule);
  border-radius: 13px;
  background: var(--white);
  color: var(--body);
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.resource-tool-card::before,
.guide-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--resource-accent);
}

.resource-tool-card:nth-child(4),
.resource-tool-card:nth-child(5) { grid-column: span 3; min-height: 275px; }

.resource-tool-card--featured {
  background: var(--mint-pale);
  border-color: rgba(11,123,119,.32);
}
.resource-tool-card:nth-child(1) { --resource-accent: #2b8d87; background: #e8f2ef; }
.resource-tool-card:nth-child(2) { --resource-accent: #7695ac; background: #eef2f4; }
.resource-tool-card:nth-child(3) { --resource-accent: #b88345; background: #f5eee5; }
.resource-tool-card:nth-child(4) { --resource-accent: #897aa0; background: #f1eef4; }
.resource-tool-card:nth-child(5) { --resource-accent: #75906b; background: #edf2ea; }

.resource-tool-card:hover,
.guide-card:hover {
  transform: translateY(-3px);
  border-color: rgba(11,123,119,.48);
  box-shadow: 0 15px 32px rgba(19,32,43,.08);
}

.resource-card__number {
  position: absolute;
  top: 25px;
  right: 25px;
  color: var(--ochre);
  font: 650 11px/1 var(--mono);
}

.resource-tool-card .micro-label { padding-right: 42px; }
.resource-tool-card h3 {
  max-width: 14ch;
  margin: 31px 0 15px;
  color: var(--ink);
  font: 680 27px/1.08 var(--display);
  letter-spacing: -.032em;
}

.resource-tool-card > p:not(.micro-label) {
  margin-bottom: 27px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.5;
}

.resource-card__link,
.guide-card__link {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 700;
}

.guide-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.guide-card {
  --resource-accent: #2d8986;
  position: relative;
  min-height: 370px;
  padding: 25px 27px 23px 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: var(--cream);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.guide-card__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--teal);
  font: 600 10px/1.35 var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.guide-card__top span:first-child { color: var(--ochre); }
.guide-card h3 {
  margin: 26px 0 14px;
  color: var(--ink);
  font: 680 28px/1.08 var(--display);
  letter-spacing: -.036em;
}
.guide-card h3 a { text-decoration: none; }
.guide-card h3 a:hover { color: var(--teal-dark); }
.guide-card > p { color: var(--muted); font-size: 15.5px; line-height: 1.52; }

.guide-card dl {
  margin: 23px 0 20px;
  padding-top: 17px;
  border-top: 1px solid var(--rule);
}

.guide-card dl div {
  margin-top: 7px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  font-size: 13px;
  line-height: 1.35;
}
.guide-card dt { color: var(--muted); }
.guide-card dd { margin: 0; color: var(--ink); font-weight: 650; }
.guide-card dd small { font-size: .72em; font-weight: 650; }
.guide-card--benefits {
  background: #eef3f1;
  border-color: rgba(44, 100, 96, .24);
}
.guide-card:nth-child(1) { --resource-accent: #b77a38; background: #f5eee5; }
.guide-card:nth-child(2) { --resource-accent: #4f879f; background: #edf2f4; }
.guide-card:nth-child(3) { --resource-accent: #82729b; background: #f1eef4; }
.guide-card:nth-child(4) { --resource-accent: #4f8a72; background: #eaf2ed; }

.resource-principles {
  padding: 47px 0 51px;
  background: var(--navy-deep);
  color: var(--white);
}
.resource-principles .wide-column {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  align-items: center;
}
.resource-principles h2 { color: var(--white); font-size: 31px; }
.resource-principles ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
  list-style: none;
  color: rgba(255,255,255,.76);
  font-size: 14px;
}
.resource-principles li::before { content: "✓"; margin-right: 9px; color: var(--mint); font-weight: 800; }


/* ===== guide shell ========================================= */

.guide-hero {
  position: relative;
  overflow: hidden;
  padding: 36px 0 76px;
  background: var(--navy);
  color: var(--white);
}
.guide-hero .wide-column { position: relative; z-index: 1; }
.guide-hero .breadcrumb { margin-bottom: 58px; color: rgba(255,255,255,.6); }
.guide-hero .breadcrumb a:hover { color: var(--mint); }
.guide-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(265px, .52fr);
  gap: 80px;
  align-items: end;
}
.guide-hero h1 {
  max-width: 18ch;
  margin: 0 0 24px;
  color: var(--white);
  font: 720 clamp(44px, 5.1vw, 68px)/1.01 var(--display);
  letter-spacing: -.052em;
}
.guide-hero__standfirst {
  max-width: 65ch;
  margin: 0;
  color: rgba(255,255,255,.77);
  font-size: 19px;
  line-height: 1.53;
}

.guide-meta {
  padding: 25px 24px 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: rgba(255,255,255,.045);
}
.guide-meta__author { margin-bottom: 21px; }
.guide-meta__author strong,
.guide-meta__author span { display: block; }
.guide-meta__author strong { color: var(--white); font: 680 18px/1.3 var(--display); }
.guide-meta__author span { margin-top: 6px; color: rgba(255,255,255,.66); font-size: 13px; line-height: 1.45; }
.guide-meta dl { margin: 0 0 20px; }
.guide-meta dl div {
  padding: 9px 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
  line-height: 1.35;
}
.guide-meta dt { color: rgba(255,255,255,.56); }
.guide-meta dd { margin: 0; color: var(--white); text-align: right; font-weight: 650; }

.print-button {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 8px;
  background: var(--mint);
  color: var(--navy-deep);
  cursor: pointer;
  font: 700 14px/1 var(--sans);
}
.print-button:hover { background: #a9ead3; }

.guide-layout {
  padding-top: 78px;
  padding-bottom: 104px;
  display: grid;
  grid-template-columns: 232px minmax(0, var(--reading));
  gap: 72px;
  align-items: start;
}

.guide-contents {
  position: sticky;
  top: 28px;
  max-height: calc(100vh - 56px);
  padding: 23px 21px 20px;
  overflow: auto;
  border: 1px solid var(--rule);
  border-radius: 11px;
  background: var(--white);
}
.guide-contents ol { margin: 15px 0 0; padding: 0; list-style: none; }
.guide-contents li { border-top: 1px solid var(--rule-soft); }
.guide-contents li:first-child { border-top: 0; }
.guide-contents a {
  padding: 9px 0;
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 12.5px;
  line-height: 1.35;
}
.guide-contents a:hover { color: var(--teal-dark); }

.article-body { min-width: 0; color: var(--body); }
.article-body > :first-child:not(.print-credit) { margin-top: 0; }
.article-body p { font-size: 18px; line-height: 1.69; }
.article-body h2 {
  margin: 3.15rem 0 1.12rem;
  scroll-margin-top: 25px;
  color: var(--ink);
  font: 690 clamp(30px, 3.2vw, 40px)/1.11 var(--display);
  letter-spacing: -.036em;
  text-wrap: balance;
}
.article-body h2 code {
  margin-right: 9px;
  color: var(--ochre);
  font: 600 12px/1 var(--mono);
  letter-spacing: .06em;
  vertical-align: .25em;
}
.article-body h3 {
  margin: 2.25rem 0 .85rem;
  scroll-margin-top: 25px;
  color: var(--teal-dark);
  font: 680 23px/1.25 var(--display);
  letter-spacing: -.022em;
}
.article-body h3 em { font-style: normal; }
.article-body ul,
.article-body ol { margin: 0 0 1.55rem; padding-left: 1.35em; }
.article-body li { margin: .45em 0; padding-left: .25em; font-size: 17.5px; line-height: 1.55; }
.article-body li::marker { color: var(--teal); font-weight: 700; }
.article-body blockquote,
.article-emphasis {
  margin: 1.7rem 0;
  padding: 20px 23px;
  border-left: 4px solid var(--teal);
  border-radius: 0 9px 9px 0;
  background: var(--mint-pale);
  color: var(--ink);
}
.article-body blockquote p,
.article-body .article-emphasis { font: 650 19px/1.5 var(--display); }
.article-body a { color: var(--teal-dark); text-underline-offset: 3px; }
.article-body a:hover { text-decoration-thickness: 2px; }
.article-body .print-credit { display: none; }

.article-sources {
  margin-top: 4.2rem;
  padding-top: 3rem;
  border-top: 2px solid var(--ink);
}
.article-sources > h2 { margin-top: 0; }
.article-sources h3 {
  margin-top: 2rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--rule);
  color: var(--ink);
  font-size: 20px;
}
.article-sources p,
.article-sources li { color: var(--muted); font-size: 14px; line-height: 1.55; }
.article-sources ul { padding-left: 1.25em; }
.article-sources li { margin-bottom: .75em; }
.article-sources p > br { display: block; margin-bottom: .38em; content: ""; }
.article-sources p > a { margin-left: .35em; font-weight: 700; white-space: nowrap; }
.article-sources p > a:first-of-type { margin-left: 0; }

.guide-next { padding: 56px 0 60px; border-top: 1px solid var(--rule); background: var(--mint-pale); }
.guide-next__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: center;
}
.guide-next h2 {
  max-width: 22ch;
  margin: 8px 0 9px;
  color: var(--ink);
  font: 680 34px/1.08 var(--display);
  letter-spacing: -.035em;
}
.guide-next p:last-child { max-width: 65ch; margin: 0; font-size: 15.5px; }
.guide-next__link {
  min-width: 250px;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  border-radius: 8px;
  background: var(--teal-dark);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

/* ===== benefits guide ===================================== */

.benefits-page .guide-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(147, 222, 197, .16) 0 13%, transparent 13.3%),
    linear-gradient(135deg, #172632 0%, #203b42 100%);
}
.benefits-page .guide-meta__author small {
  margin-left: .2em;
  font-size: .62em;
  font-weight: 650;
  letter-spacing: .04em;
}
.benefit-rule {
  margin: 0 0 2.3rem;
  padding: 25px 26px 24px;
  border: 1px solid rgba(44, 100, 96, .28);
  border-left: 5px solid var(--teal);
  border-radius: 10px;
  background: #edf5f1;
}
.benefit-rule .micro-label { margin-bottom: 10px; color: var(--teal-dark); }
.benefit-rule p { margin: 0; color: var(--ink); font: 650 20px/1.5 var(--display); }
.benefit-route-grid {
  margin: 2rem 0 2.7rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.benefit-route-card {
  min-height: 138px;
  padding: 20px 21px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(25, 39, 49, .11);
  border-radius: 12px;
  color: var(--ink) !important;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease;
}
.benefit-route-card:hover { transform: translateY(-2px); border-color: rgba(11, 123, 119, .45); }
.benefit-route-card:nth-child(1) { background: #e6eff3; }
.benefit-route-card:nth-child(2) { background: #f4e9dc; }
.benefit-route-card:nth-child(3) { background: #e4eee8; }
.benefit-route-card:nth-child(4) { background: #ece7f0; }
.benefit-route-card small { color: var(--teal-dark); font: 650 10px/1.2 var(--mono); letter-spacing: .07em; }
.benefit-route-card strong { margin-top: auto; font: 680 22px/1.15 var(--display); letter-spacing: -.025em; }
.benefit-route-card span { margin-top: 8px; color: var(--muted); font-size: 14px; line-height: 1.4; }
.benefit-overview {
  margin: 1.8rem 0 2.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.benefit-overview article {
  padding: 20px 21px 19px;
  border: 1px solid var(--rule);
  border-radius: 11px;
  background: var(--white);
}
.benefit-overview h3 { margin: 0 0 7px; color: var(--ink); font-size: 20px; }
.benefit-overview p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.48; }
.benefit-rates {
  margin: 1.4rem 0 1.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.benefit-rate {
  padding: 18px 19px;
  border-radius: 10px;
  background: #f2eee7;
}
.benefit-rate small { display: block; color: var(--muted); font-size: 12px; }
.benefit-rate strong { display: block; margin-top: 4px; color: var(--ink); font: 690 23px/1.2 var(--display); }
.benefit-country-note,
.benefit-rate-note {
  padding: 18px 20px;
  border-radius: 9px;
  background: #f3f0e9;
  color: var(--muted);
}
.article-body .benefit-country-note,
.article-body .benefit-rate-note { font-size: 15px; line-height: 1.55; }
.benefit-checklist {
  margin: 1.7rem 0;
  padding: 25px 27px 22px;
  border-radius: 12px;
  background: #e8f1ef;
}
.benefit-checklist h3 { margin-top: 0; }
.benefit-checklist ul { margin-bottom: 0; }
.benefit-reviewed {
  margin-top: 2rem;
  color: var(--muted);
  font: 600 12px/1.5 var(--mono);
  letter-spacing: .025em;
}


/* ===== resource and guide responsive ====================== */

@media (max-width: 920px) {
  .resources-hero__grid,
  .guide-hero__grid { grid-template-columns: 1fr; gap: 42px; }
  .resources-hero__standfirst { max-width: 40em; }
  .resources-hero__fact { max-width: 620px; }
  .resource-tool-card { grid-column: span 3; }
  .resource-tool-card:nth-child(5) { grid-column: 2 / span 4; }
  .guide-card-grid { grid-template-columns: 1fr; }
  .guide-card { min-height: 0; }
  .guide-card dl { margin-top: 25px; }
  .guide-layout { grid-template-columns: 1fr; gap: 43px; }
  .guide-contents { position: static; max-height: none; }
  .guide-contents ol { columns: 2; column-gap: 35px; }
  .guide-contents li { break-inside: avoid; }
}

@media (max-width: 680px) {
  .resources-hero { padding: 59px 0 65px; }
  .resources-hero h1,
  .guide-hero h1 { font-size: clamp(40px, 12.5vw, 55px); }
  .resources-hero__standfirst,
  .guide-hero__standfirst { font-size: 17.5px; }
  .resources-hero__fact { padding: 21px 21px 20px; }
  .resources-hero__fact p { font-size: 16px; }
  .resources-hero__fact-number { font-size: 24px !important; }
  .resource-group { padding: 60px 0 68px; }
  .resource-group__head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 29px; }
  .resource-tool-grid { grid-template-columns: 1fr; }
  .resource-tool-card,
  .resource-tool-card:nth-child(4),
  .resource-tool-card:nth-child(5) { min-height: 0; grid-column: auto; }
  .resource-tool-card { padding: 25px 23px 23px 27px; }
  .resource-tool-card h3 { margin-top: 26px; }
  .guide-card { padding: 25px 22px 23px 27px; }
  .resource-principles .wide-column { grid-template-columns: 1fr; gap: 30px; }
  .resource-principles ul { grid-template-columns: 1fr; }
  .guide-hero { padding: 31px 0 58px; }
  .guide-hero .breadcrumb { margin-bottom: 37px; }
  .guide-hero__grid { gap: 34px; }
  .guide-meta { padding: 22px 20px 20px; }
  .guide-layout { padding-top: 48px; padding-bottom: 72px; }
  .guide-contents { padding: 21px 19px 18px; }
  .guide-contents ol { columns: 1; }
  .article-body p { font-size: 17px; line-height: 1.65; }
  .article-body li { font-size: 16.5px; }
  .article-body h2 { margin-top: 2.7rem; font-size: 31px; }
  .article-emphasis,
  .article-body blockquote { padding: 18px 19px; }
  .guide-next__inner { grid-template-columns: 1fr; gap: 27px; }
  .guide-next__link { min-width: 0; }
  .benefit-rule { padding: 21px 20px 20px; }
  .benefit-rule p { font-size: 18px; }
  .benefit-route-grid,
  .benefit-overview,
  .benefit-rates { grid-template-columns: 1fr; }
  .benefit-route-card { min-height: 122px; }
  .benefit-checklist { padding: 22px 20px 19px; }
}


/* ===== contact form ======================================= */

.contact-page {
  background:
    radial-gradient(circle at 84% 4%, rgba(147, 222, 197, .18), transparent 25rem),
    var(--cream);
}
.contact-column {
  width: min(calc(100% - var(--gut)), 620px);
  margin-inline: auto;
}
.contact-intro {
  padding: 54px 0 42px;
}
.contact-intro .eyebrow {
  margin-top: 40px;
  margin-bottom: 13px;
  color: var(--teal);
}
.contact-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
}
.contact-back:hover { text-decoration: underline; text-underline-offset: 4px; }
.contact-intro h1 {
  margin: 0;
  color: var(--ink);
  font: 690 clamp(48px, 8vw, 70px)/.98 var(--display);
  letter-spacing: -.045em;
}
.contact-intro__standfirst {
  max-width: 570px;
  margin: 22px 0 0;
  color: var(--body);
  font-size: 20px;
  line-height: 1.52;
}
.contact-area { padding: 0 0 94px; }
.contact-card {
  padding: 39px 42px 42px;
  border: 1px solid var(--rule);
  border-top: 5px solid var(--mint);
  border-radius: 24px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 48px rgba(28, 41, 54, .075);
}
.contact-card__heading {
  margin-bottom: 31px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--rule-soft);
}
.contact-card__heading .micro-label { margin-bottom: 8px; }
.contact-card__heading h2,
.contact-result h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font: 670 29px/1.12 var(--display);
  letter-spacing: -.025em;
}
.contact-card__heading p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.contact-form__field { margin-bottom: 23px; }
.contact-form__pair {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 18px;
}
.contact-form__field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 680;
  line-height: 1.35;
}
.contact-form__optional {
  margin-left: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 450;
}
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  border: 1px solid #bdb8ae;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font: 400 17px/1.45 var(--sans);
}
.contact-form__field input,
.contact-form__field select { min-height: 48px; padding: 10px 12px; }
.contact-form__field select {
  appearance: auto;
  cursor: pointer;
}
.contact-form__field textarea {
  min-height: 174px;
  padding: 12px 13px;
  resize: vertical;
}
.contact-form__field input::placeholder { color: #858e95; opacity: 1; }
.contact-form__field input:hover,
.contact-form__field select:hover,
.contact-form__field textarea:hover { border-color: #8f8b83; }
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(147, 222, 197, .45);
  outline-offset: 1px;
}
.contact-form__field input:user-invalid,
.contact-form__field select:user-invalid,
.contact-form__field textarea:user-invalid { border-color: #a64f45; }
.contact-form__label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}
.contact-form__label-row > span {
  color: var(--muted);
  font: 500 11px/1.2 var(--mono);
}
.contact-form__hint {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}
.contact-form__warning {
  margin: 7px 0 23px;
  padding: 16px 17px;
  display: grid;
  gap: 3px;
  border-left: 4px solid var(--ochre);
  border-radius: 0 9px 9px 0;
  background: var(--ochre-pale);
  color: var(--body);
  font-size: 14px;
  line-height: 1.45;
}
.contact-form__warning strong { font-size: 14.5px; }
.contact-form__privacy {
  margin: 0 0 21px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}
.contact-form__privacy a {
  color: var(--teal-dark);
  font-weight: 650;
  text-underline-offset: 3px;
}
.contact-form__notice {
  margin: 0 0 15px;
  padding: 12px 14px;
  border: 1px solid #d5c197;
  border-radius: 9px;
  background: #fbf4e5;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}
.contact-form__submit {
  width: 100%;
  min-height: 54px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  border-radius: 11px;
  background: var(--teal-dark);
  color: var(--white);
  cursor: pointer;
  font: 700 16px/1.2 var(--sans);
}
.contact-form__submit:hover { background: var(--navy); }
.contact-form__submit:disabled {
  background: #71817f;
  cursor: not-allowed;
  opacity: .8;
}
.contact-form__verification {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.4;
  text-align: center;
}
.contact-form__trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.contact-result {
  padding: 8px 0 3px;
  outline: none;
}
.contact-result .micro-label { margin-bottom: 10px; }
.contact-result p { margin-bottom: 20px; font-size: 17px; }
.contact-result a {
  color: var(--teal-dark);
  font-weight: 700;
  text-underline-offset: 4px;
}
.contact-result--error {
  margin-top: 22px;
  padding: 18px;
  border-left: 4px solid #a64f45;
  background: #f8e9e6;
}
.contact-afterword {
  max-width: 555px;
  margin: 23px auto 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
  text-align: center;
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 680px) {
  .contact-column { width: min(calc(100% - 34px), 620px); }
  .contact-intro { padding: 36px 0 30px; }
  .contact-intro .eyebrow { margin-top: 28px; }
  .contact-intro__standfirst { font-size: 18px; }
  .contact-area { padding-bottom: 66px; }
  .contact-card {
    padding: 29px 22px 31px;
    border-radius: 18px;
  }
  .contact-card__heading h2 { font-size: 26px; }
  .contact-form__pair { grid-template-columns: 1fr; gap: 0; }
}

@media print {
  .contact-page main { display: none; }
}


/* ===== privacy and formalities ============================ */

.formalities-hero {
  padding: 72px 0 78px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}
.formalities-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--white);
  font: 690 clamp(48px, 7vw, 78px)/.98 var(--display);
  letter-spacing: -.045em;
}
.formalities-hero__standfirst {
  max-width: 680px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, .8);
  font-size: 20px;
  line-height: 1.5;
}
.formalities-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 720px);
  gap: 82px;
  align-items: start;
  padding-top: 72px;
  padding-bottom: 100px;
}
.formalities-index {
  position: sticky;
  top: 94px;
  padding: 22px 20px 19px;
  border: 1px solid var(--rule);
  border-top: 4px solid var(--mint);
  background: rgba(255, 255, 255, .55);
}
.formalities-index .micro-label { margin-bottom: 12px; }
.formalities-index nav { display: grid; }
.formalities-index a {
  padding: 8px 0;
  border-bottom: 1px solid var(--rule-soft);
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.3;
  text-decoration: none;
}
.formalities-index a:last-child { border-bottom: 0; }
.formalities-index a:hover { color: var(--teal); }
.formalities-content { min-width: 0; }
.formalities-section {
  margin-bottom: 78px;
  scroll-margin-top: 100px;
}
.formalities-section + .formalities-section {
  padding-top: 72px;
  border-top: 1px solid var(--rule);
}
.formalities-section .section-number {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 12px;
}
.formalities-section h2 {
  margin: 0 0 25px;
  color: var(--ink);
  font: 680 clamp(36px, 5vw, 50px)/1.05 var(--display);
  letter-spacing: -.035em;
}
.formalities-section h3 {
  margin: 40px 0 10px;
  scroll-margin-top: 100px;
  color: var(--ink);
  font: 650 23px/1.2 var(--display);
  letter-spacing: -.018em;
}
.formalities-section p { font-size: 17.5px; line-height: 1.66; }
.formalities-section a:not(.formalities-contact-link) {
  color: var(--teal-dark);
  font-weight: 650;
  text-underline-offset: 3px;
}
.formalities-section .section-intro {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.52;
}
.formalities-warning {
  margin: 28px 0 34px;
  padding: 19px 21px;
  border-left: 4px solid var(--ochre);
  background: var(--ochre-pale);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.52;
}
.formalities-updated {
  margin-top: 36px;
  color: var(--muted);
  font-size: 15px !important;
}
.formalities-contact-link {
  width: min(100%, 360px);
  margin: 23px 0 8px;
  padding: 15px 18px;
  display: inline-flex;
  justify-content: space-between;
  gap: 24px;
  border-radius: 7px;
  background: var(--teal-dark);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}
.formalities-contact-link:hover { background: var(--navy); }
.formalities-principles {
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  list-style: none;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.formalities-principles li {
  padding: 15px 16px;
  background: var(--white);
  color: var(--ink);
  font: 650 15px/1.35 var(--display);
}
.formalities-principles li:last-child { grid-column: 1 / -1; }
.formalities-standards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--rule);
  background: var(--rule);
}
.formalities-standards section {
  min-width: 0;
  padding: 24px 23px 22px;
  background: rgba(255, 255, 255, .62);
}
.formalities-standards section:last-child { grid-column: 1 / -1; }
.formalities-standards h3 { margin: 0 0 8px; font-size: 20px; }
.formalities-standards p { margin: 0; font-size: 16px; line-height: 1.5; }

@media (max-width: 820px) {
  .formalities-layout { grid-template-columns: 1fr; gap: 45px; }
  .formalities-index { position: static; }
  .formalities-index nav { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 22px; }
}

@media (max-width: 680px) {
  .formalities-hero { padding: 58px 0 62px; }
  .formalities-hero__standfirst { font-size: 18px; }
  .formalities-layout { padding-top: 44px; padding-bottom: 68px; }
  .formalities-index nav,
  .formalities-principles,
  .formalities-standards { grid-template-columns: 1fr; }
  .formalities-principles li:last-child,
  .formalities-standards section:last-child { grid-column: auto; }
  .formalities-section { margin-bottom: 58px; }
  .formalities-section + .formalities-section { padding-top: 54px; }
  .formalities-section p { font-size: 17px; }
  .formalities-section .section-intro { font-size: 19px; }
}


/* ===== children and young people ========================== */

.young-page {
  --young-yellow: #f6edc9;
  --young-blue: #dcebf2;
  --young-pink: #f3dfe2;
  --young-mint: #dceee7;
  --young-lilac: #e8e2ef;
  --young-sage: #e2eadb;
  background: #faf8f3;
}
.young-page .site-header { position: relative; z-index: 20; }
.young-page .nav-dropdown__panel a[aria-current="page"],
.young-page .mobile-menu__panel a[aria-current="page"] { color: var(--mint); }
.young-pastel--yellow { background: var(--young-yellow); }
.young-pastel--blue { background: var(--young-blue); }
.young-pastel--pink { background: var(--young-pink); }
.young-pastel--mint { background: var(--young-mint); }
.young-pastel--lilac { background: var(--young-lilac); }
.young-pastel--sage { background: var(--young-sage); }

.young-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 12%, rgba(246, 237, 201, .78) 0 13%, transparent 13.2%),
    radial-gradient(circle at 86% 15%, rgba(220, 235, 242, .9) 0 22%, transparent 22.2%),
    #f8f4eb;
}
.young-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -185px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(243, 223, 226, .72);
}
.young-hero__grid {
  position: relative;
  z-index: 1;
  min-height: 665px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
  gap: 55px;
  align-items: center;
}
.young-hero__copy { padding: 76px 0 84px; }
.young-hero .eyebrow { margin-bottom: 19px; color: var(--teal); }
.young-hero h1 {
  max-width: 690px;
  margin: 0;
  color: var(--ink);
  font: 690 clamp(54px, 6.2vw, 82px)/.96 var(--display);
  letter-spacing: -.052em;
}
.young-hero__second-question {
  max-width: 620px;
  margin: 11px 0 0;
  color: var(--teal-dark);
  font: 650 clamp(30px, 3.7vw, 48px)/1.05 var(--display);
  letter-spacing: -.035em;
}
.young-hero__standfirst {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--body);
  font-size: 19.5px;
  line-height: 1.55;
}
.young-hero__choices {
  max-width: 530px;
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.young-hero__choices a {
  min-height: 58px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}
.young-hero__choices a:hover { border-color: var(--teal); background: var(--white); }
.young-hero__choices b { color: var(--teal); font-family: var(--mono); }
.young-hero__art {
  position: relative;
  align-self: end;
  min-height: 720px;
  margin: 0;
}
.young-hero__art img {
  position: absolute;
  z-index: 2;
  right: -150px;
  bottom: -1px;
  width: min(980px, 70vw);
  height: auto;
  filter: drop-shadow(0 22px 30px rgba(25, 39, 49, .09));
}
.young-hero__shape {
  position: absolute;
  left: -35px;
  top: 68px;
  width: 520px;
  height: 575px;
  border-radius: 48% 52% 45% 55% / 40% 43% 57% 60%;
  background: rgba(220, 238, 231, .85);
  transform: rotate(-6deg);
}

.young-intro { padding: 82px 0 84px; background: var(--white); }
.young-intro h2,
.young-section-heading h2,
.young-next h2 {
  margin: 8px 0 20px;
  color: var(--ink);
  font: 680 clamp(36px, 5vw, 52px)/1.04 var(--display);
  letter-spacing: -.04em;
}
.young-intro p:last-child { margin-bottom: 0; color: var(--body); font-size: 19px; line-height: 1.65; }

.young-patterns { padding: 82px 0 92px; background: #f8f4eb; scroll-margin-top: 90px; }
.young-section-heading {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 65px;
  align-items: end;
}
.young-section-heading h2 { margin-bottom: 0; }
.young-section-heading > p { margin: 0 0 4px; font-size: 17px; line-height: 1.6; }
.young-pattern-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
.young-pattern-card {
  min-height: 265px;
  padding: 26px 25px 24px;
  border: 1px solid rgba(23, 36, 52, .08);
  border-radius: 11px;
}
.young-pattern-card__number {
  display: block;
  margin-bottom: 38px;
  color: var(--teal-dark);
  font: 650 11px/1 var(--mono);
  letter-spacing: .08em;
}
.young-pattern-card h3 { margin: 0 0 10px; color: var(--ink); font: 650 23px/1.12 var(--display); letter-spacing: -.02em; }
.young-pattern-card p { margin: 0; color: var(--body); font-size: 15.5px; line-height: 1.53; }

.young-feelings { padding: 88px 0 96px; background: var(--navy); color: rgba(255, 255, 255, .78); }
.young-feelings .micro-label { color: var(--mint); }
.young-feelings .young-section-heading h2 { color: var(--white); }
.young-feelings .young-section-heading > p { color: rgba(255, 255, 255, .7); }
.young-section-heading--compact { margin-bottom: 36px; }
.young-feelings-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.young-feeling {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 11px;
  color: var(--ink);
}
.young-feeling img { width: 100%; aspect-ratio: 1.15 / 1; object-fit: cover; mix-blend-mode: multiply; }
.young-feeling figcaption { min-height: 92px; padding: 16px 18px 18px; display: grid; align-content: start; gap: 3px; }
.young-feeling strong { font: 660 18px/1.2 var(--display); }
.young-feeling span { color: var(--body); font-size: 14px; line-height: 1.4; }

.young-questions { padding: 92px 0 104px; background: #faf8f3; }
.young-accordion { display: grid; gap: 12px; }
.young-question {
  scroll-margin-top: 92px;
  overflow: hidden;
  border: 1px solid var(--rule);
  border-left: 7px solid var(--young-accent, var(--mint));
  border-radius: 9px;
  background: var(--white);
}
.young-question--yellow { --young-accent: #dfc96d; }
.young-question--blue { --young-accent: #91bccf; }
.young-question--pink { --young-accent: #d9a8ae; }
.young-question--mint { --young-accent: #8ecdb7; }
.young-question--lilac { --young-accent: #b8a5cd; }
.young-question--sage { --young-accent: #a8bf97; }
.young-question--teen { --young-accent: var(--teal); background: #eef6f3; }
.young-question summary {
  min-height: 83px;
  padding: 20px 25px 20px 20px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 30px;
  gap: 11px;
  align-items: center;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font: 650 22px/1.2 var(--display);
  letter-spacing: -.015em;
}
.young-question summary::-webkit-details-marker { display: none; }
.young-question summary:hover { background: color-mix(in srgb, var(--young-accent) 10%, white); }
.young-question__number { color: var(--teal); font: 650 11px/1 var(--mono); letter-spacing: .08em; }
.young-question summary b { color: var(--teal-dark); font: 500 25px/1 var(--mono); text-align: right; }
.young-question__body { padding: 4px 72px 29px; border-top: 1px solid var(--rule-soft); }
.young-question__body p { max-width: 780px; margin: 21px 0 0; font-size: 17px; line-height: 1.65; }
.young-inline-link { display: inline-flex; gap: 18px; color: var(--teal-dark); font-weight: 700; text-underline-offset: 3px; }

.young-next { padding: 78px 0 90px; overflow: hidden; background: var(--young-yellow); }
.young-next__grid { display: grid; grid-template-columns: minmax(270px, .78fr) minmax(0, 1.22fr); gap: 75px; align-items: center; }
.young-next__art { position: relative; min-height: 410px; margin: 0; }
.young-next__art span { position: absolute; inset: 35px 4px 5px 50px; border-radius: 50%; background: rgba(255, 255, 255, .62); }
.young-next__art img { position: relative; z-index: 1; width: 100%; height: auto; }
.young-next h2 { max-width: 630px; }
.young-next__links { display: grid; gap: 8px; }
.young-next__links a {
  min-height: 82px;
  padding: 17px 19px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  border: 1px solid rgba(23, 36, 52, .13);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  text-decoration: none;
}
.young-next__links a:hover { border-color: var(--teal); background: var(--white); }
.young-next__links span { display: grid; gap: 3px; }
.young-next__links small { color: var(--teal-dark); font: 650 9px/1.2 var(--mono); letter-spacing: .07em; }
.young-next__links strong { font: 650 19px/1.25 var(--display); }
.young-next__links b { color: var(--teal); font-family: var(--mono); }

@media (max-width: 940px) {
  .young-hero__grid { min-height: 0; grid-template-columns: 1fr; gap: 0; }
  .young-hero__copy { padding-bottom: 35px; }
  .young-hero__art { min-height: 575px; }
  .young-hero__art img { right: 50%; width: min(570px, 77vw); transform: translateX(50%); }
  .young-hero__shape { left: 50%; top: 48px; width: 430px; height: 475px; transform: translateX(-50%) rotate(-6deg); }
  .young-pattern-grid,
  .young-feelings-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .young-next__grid { grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr); gap: 45px; }
}

@media (max-width: 680px) {
  .young-hero::after { right: -170px; bottom: -120px; }
  .young-hero__copy { padding: 56px 0 28px; }
  .young-hero h1 { font-size: clamp(48px, 14vw, 63px); }
  .young-hero__second-question { margin-top: 13px; font-size: 31px; }
  .young-hero__standfirst { margin-top: 25px; font-size: 18px; }
  .young-hero__choices { grid-template-columns: 1fr; }
  .young-hero__choices a { min-height: 52px; }
  .young-hero__art { min-height: clamp(350px, 76vw, 480px); }
  .young-hero__art img { width: min(430px, 84vw); }
  .young-hero__shape { top: 24px; width: min(300px, 64vw); height: min(330px, 70vw); }
  .young-intro,
  .young-patterns,
  .young-feelings,
  .young-questions { padding-top: 62px; padding-bottom: 68px; }
  .young-section-heading { grid-template-columns: 1fr; gap: 17px; margin-bottom: 30px; }
  .young-section-heading > p { font-size: 16.5px; }
  .young-pattern-grid,
  .young-feelings-grid { grid-template-columns: 1fr; }
  .young-pattern-card { min-height: 0; padding: 23px 22px; }
  .young-pattern-card__number { margin-bottom: 25px; }
  .young-feeling { display: grid; grid-template-columns: 43% minmax(0, 1fr); }
  .young-feeling img { height: 100%; aspect-ratio: auto; }
  .young-feeling figcaption { min-height: 132px; padding: 18px 16px; align-content: center; }
  .young-question summary { min-height: 76px; padding: 17px 16px 17px 14px; grid-template-columns: 31px minmax(0, 1fr) 21px; gap: 8px; font-size: 19px; }
  .young-question__body { padding: 2px 18px 25px; }
  .young-question__body p { font-size: 16.5px; }
  .young-next { padding: 58px 0 66px; }
  .young-next__grid { grid-template-columns: 1fr; gap: 28px; }
  .young-next__art { min-height: 0; width: min(100%, 350px); margin-inline: auto; }
  .young-next__links strong { font-size: 17px; }
}

@media print {
  .young-page .site-header,
  .young-page .site-footer,
  .young-hero__choices,
  .young-hero__art,
  .young-feelings,
  .young-next { display: none !important; }
  .young-page,
  .young-hero,
  .young-intro,
  .young-patterns,
  .young-questions { background: #fff !important; }
  .young-hero__grid { min-height: 0; display: block; }
  .young-hero__copy { padding: 0 0 8mm; }
  .young-hero h1 { font-size: 29pt; }
  .young-hero__second-question { font-size: 20pt; }
  .young-intro,
  .young-patterns,
  .young-questions { padding: 8mm 0; }
  .young-pattern-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3mm; }
  .young-pattern-card { min-height: 0; padding: 4mm; break-inside: avoid; border: 1px solid #aaa; background: #fff !important; }
  .young-pattern-card__number { margin-bottom: 3mm; }
  .young-question { break-inside: avoid; border: 1px solid #aaa; }
  .young-question summary { min-height: 0; padding: 4mm; font-size: 13pt; }
  .young-question summary b { display: none; }
  .young-question:not([open]) > .young-question__body { display: block; }
  .young-question__body { padding: 0 8mm 5mm 15mm; }
  .young-question__body p { font-size: 9.5pt; }
}


/* ===== already-booked child assessment =================== */

.booked-child-page {
  --booked-yellow: #f6edc9;
  --booked-blue: #dcebf2;
  --booked-pink: #f3dfe2;
  --booked-mint: #dceee7;
  --booked-lilac: #e8e2ef;
  --booked-sage: #e2eadb;
  background: #faf8f3;
}

.booked-child-page .hero {
  background:
    radial-gradient(circle at 7% 13%, rgba(246, 237, 201, .82) 0 14%, transparent 14.2%),
    radial-gradient(circle at 88% 18%, rgba(220, 235, 242, .92) 0 24%, transparent 24.2%),
    #f8f4eb;
  color: var(--ink);
}
.booked-child-page .hero::after {
  opacity: .035;
  background-image:
    linear-gradient(rgba(23,36,52,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,36,52,.16) 1px, transparent 1px);
}
.booked-child-page .breadcrumb { color: rgba(23, 36, 52, .55); }
.booked-child-page .breadcrumb a { color: var(--teal-dark); }
.booked-child-page .hero .eyebrow { color: var(--teal); }
.booked-child-page .hero h1 { color: var(--ink); }
.booked-child-page .hero-accent { color: var(--teal-dark); }
.booked-child-page .hero__standfirst { color: var(--body); }
.booked-child-page .hero__note {
  border-left-color: #8ebfd3;
  color: var(--muted);
}
.booked-child-page .page-ledger {
  border-color: rgba(20, 71, 78, .18);
  background: #315f63;
  box-shadow: 0 18px 38px rgba(27, 58, 61, .12);
}
.booked-child-page .page-ledger__stamp { background: #c47d72; }
.booked-child-page .page-ledger dd { color: #fff0a7; }

.booked-child-page .section-index { background: rgba(250, 248, 243, .95); }
.booked-child-page .in-short { padding: 58px 0; background: var(--white); }
.booked-child-page .in-short__box {
  border-left-color: #d4b94f;
  background: #fbf6df;
}

.booked-child-page #while-we-wait { background: #faf8f3; }
.booked-child-page #what-to-have-ready {
  border-color: rgba(70, 112, 132, .12);
  background: var(--booked-blue);
}
.booked-child-page #what-happens { background: var(--white); }
.booked-child-page #prepare-my-child { background: var(--booked-yellow); }
.booked-child-page #afterwards {
  border-color: rgba(76, 122, 104, .12);
  background: var(--booked-mint);
}
.booked-child-page .section-number { color: #3f7f9d; }

.booked-child-page .key-point {
  border-left-color: #d59ca5;
  background: var(--booked-pink);
}
.booked-child-page .key-point .micro-label { color: #8b5961; }
.booked-child-page .side-callout {
  border-top-color: #9f8bb6;
  background: var(--booked-lilac);
}
.booked-child-page .side-callout .micro-label { color: #675778; }
.booked-child-page .practical-note {
  border-left-color: #76a9be;
  background: var(--booked-blue);
}
.booked-child-page .practical-note .micro-label { color: #426f83; }
.booked-child-page .pull-quote { border-left-color: #d5a5ad; }

.booked-child-page .outcome-grid {
  gap: 12px;
  border: 0;
  background: transparent;
}
.booked-child-page .outcome-card {
  border: 1px solid rgba(23, 36, 52, .08);
  border-radius: 12px;
}
.booked-child-page .outcome-card:nth-child(1) { background: var(--booked-mint); }
.booked-child-page .outcome-card:nth-child(2) { background: var(--booked-pink); }
.booked-child-page .outcome-card:nth-child(3) { background: var(--booked-lilac); }

.booked-child-page .questions-section {
  border-color: rgba(61, 82, 104, .12);
  background: #e9eef1;
}
.booked-child-page .question-group { border-color: rgba(23, 36, 52, .09); }
.booked-child-page .question-group:nth-child(1) { background: var(--booked-yellow); }
.booked-child-page .question-group:nth-child(2) { background: var(--booked-blue); }
.booked-child-page .question-group:nth-child(3) { background: var(--booked-lilac); }
.booked-child-page .question-group li::before { color: #3f7f9d; }

.booked-child-page .checklist-section { background: #faf8f3; }
.booked-child-page .checklist-panel {
  border-top-color: #74a9bf;
  background: var(--booked-blue);
}
.booked-child-page .onward-section { background: #f8f4eb; }
.booked-child-page .onward-card:nth-child(1) { background: var(--booked-yellow); }
.booked-child-page .onward-card:nth-child(2) { background: var(--booked-mint); }
.booked-child-page .onward-card:nth-child(3) { background: var(--booked-pink); }
.booked-child-page .onward-card:nth-child(4) { background: var(--booked-lilac); }
.booked-child-page .editorial-note { background: #eee9df; }
.booked-child-page .editorial-note__grid { grid-template-columns: 1fr; }

@media (max-width: 680px) {
  .booked-child-page .hero__inner { padding-bottom: 62px; }
  .booked-child-page .in-short { padding: 42px 0; }
  .booked-child-page .outcome-grid { gap: 10px; }
}

@media print {
  .booked-child-page .hero,
  .booked-child-page .in-short,
  .booked-child-page .article-section,
  .booked-child-page .questions-section,
  .booked-child-page .checklist-section,
  .booked-child-page .onward-section,
  .booked-child-page .editorial-note,
  .booked-child-page .outcome-card,
  .booked-child-page .question-group { background: #fff !important; }
}


/* ===== purposeful A4 guide print =========================== */

@page guide { size: A4; margin: 17mm 16mm 19mm; }

@media print {
  html { scroll-padding-top: 0; }
  body.guide-page { page: guide; background: #fff; color: #20272d; font-size: 10.5pt; line-height: 1.48; }
  .guide-page .print-hidden,
  .guide-page .site-header,
  .guide-page .site-footer,
  .guide-page .guide-meta,
  .guide-page .guide-contents,
  .guide-page .guide-next { display: none !important; }
  .guide-page .guide-hero {
    padding: 0 0 8mm;
    overflow: visible;
    border-bottom: 1.2pt solid #20272d;
    background: #fff;
    color: #20272d;
  }
  .guide-page .guide-hero::after { display: none; }
  .guide-page .guide-hero__grid { display: block; }
  .guide-page .guide-hero .eyebrow { margin-bottom: 4mm; color: #333; font-size: 8pt; }
  .guide-page .guide-hero h1 {
    max-width: none;
    margin: 0 0 4mm;
    color: #111;
    font-size: 26pt;
    line-height: 1.04;
    letter-spacing: -.02em;
  }
  .guide-page .guide-hero__standfirst { max-width: none; color: #333; font-size: 11.2pt; line-height: 1.42; }
  .guide-page .guide-layout {
    width: auto;
    margin: 0;
    padding: 7mm 0 0;
    display: block;
  }
  .guide-page .article-body { max-width: none; color: #20272d; }
  .guide-page .article-body .print-credit {
    margin: 0 0 8mm;
    display: block;
    color: #444;
    font-size: 8.7pt;
    line-height: 1.4;
  }
  .guide-page .article-body p { margin-bottom: 3.4mm; color: #20272d; font-size: 10.3pt; line-height: 1.48; }
  .guide-page .article-body h2 {
    margin: 8mm 0 3.3mm;
    break-after: avoid;
    page-break-after: avoid;
    color: #111;
    font-size: 17pt;
    line-height: 1.13;
  }
  .guide-page .article-body h3 {
    margin: 6mm 0 2.5mm;
    break-after: avoid;
    page-break-after: avoid;
    color: #222;
    font-size: 12.5pt;
  }
  .guide-page .article-body h2 + p,
  .guide-page .article-body h3 + p,
  .guide-page .article-body h2 + ul,
  .guide-page .article-body h3 + ul { break-before: avoid; page-break-before: avoid; }
  .guide-page .article-body ul,
  .guide-page .article-body ol { margin-bottom: 4mm; }
  .guide-page .article-body li { margin: 1.2mm 0; color: #20272d; font-size: 9.9pt; line-height: 1.42; }
  .guide-page .article-body .short-list { break-inside: avoid; page-break-inside: avoid; }
  .guide-page .article-body li { break-inside: avoid; page-break-inside: avoid; }
  .guide-page .article-emphasis,
  .guide-page .article-body blockquote {
    margin: 5mm 0;
    padding: 3.5mm 4mm;
    break-inside: avoid;
    page-break-inside: avoid;
    border: 1px solid #999;
    border-left: 3px solid #333;
    background: #fff;
    color: #111;
  }
  .guide-page .article-sources {
    margin-top: 10mm;
    padding-top: 7mm;
    border-top: 1.2pt solid #222;
  }
  .guide-page .article-sources h3 { break-after: avoid; }
  .guide-page .article-sources p,
  .guide-page .article-sources li { font-size: 8.5pt; line-height: 1.38; }
  .guide-page .article-sources p { break-inside: auto; page-break-inside: auto; }
  .guide-page .article-body a { color: #111; text-decoration: underline; }
  .guide-page .article-body a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-family: var(--sans);
    font-size: .88em;
    font-weight: 400;
    overflow-wrap: anywhere;
  }
}

/* ============================================================
   HOW TO BOOK AN ADHD ASSESSMENT
   ============================================================ */

.home-booking-signpost {
  margin: 28px 0 0;
  padding: 25px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  border: 1px solid rgba(28, 41, 54, .13);
  border-radius: 22px;
  background: linear-gradient(115deg, #e5dfd5, #f2eee7);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(28, 41, 54, .08);
}
.home-booking-signpost:hover { border-color: var(--teal-dark); transform: translateY(-1px); }
.home-booking-signpost .micro-label { margin-bottom: 6px; color: var(--teal-dark); }
.home-booking-signpost h2 {
  margin: 0 0 5px;
  color: var(--ink);
  font: 670 26px/1.12 var(--display);
  letter-spacing: -.025em;
}
.home-booking-signpost p { max-width: 680px; margin: 0; color: var(--body); font-size: 15.5px; line-height: 1.48; }
.home-booking-signpost__action {
  min-width: 232px;
  padding: 13px 15px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-radius: 9px;
  background: var(--teal-dark);
  color: var(--white);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.3;
}

.booking-page {
  --book-clay: #95551f;
  --book-clay-pale: #f1e1d1;
  --book-sage: #dce8df;
  --book-blue: #dce7ec;
  --book-stone: #e9e5dd;
  background: var(--cream);
}
.booking-hero {
  position: relative;
  overflow: hidden;
  padding: 51px 0 76px;
  background:
    radial-gradient(circle at 87% 18%, rgba(147, 222, 197, .2), transparent 22rem),
    linear-gradient(118deg, #202f3d 0%, var(--navy) 60%, #263b43 100%);
  color: var(--white);
}
.booking-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .055;
  background-image: linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px);
  background-size: 58px 58px;
}
.booking-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, .65fr);
  gap: 68px;
  align-items: end;
}
.booking-hero .breadcrumb { margin-bottom: 42px; }
.booking-hero .breadcrumb,
.booking-hero .breadcrumb a { color: rgba(255, 255, 255, .68); }
.booking-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font: 690 clamp(50px, 7.3vw, 82px)/.97 var(--display);
  letter-spacing: -.05em;
}
.booking-hero__standfirst {
  max-width: 700px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, .8);
  font-size: 20px;
  line-height: 1.52;
}
.booking-hero__backlink {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--mint);
  font-size: 15px;
  font-weight: 700;
  text-underline-offset: 4px;
}
.booking-hero__backlink:hover { color: var(--white); }
.booking-map {
  position: relative;
  padding: 26px 24px 24px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 22px;
  background: rgba(10, 25, 33, .4);
  box-shadow: 0 18px 45px rgba(5, 15, 22, .16);
}
.booking-map::before {
  content: "";
  position: absolute;
  left: 39px;
  top: 48px;
  bottom: 47px;
  width: 2px;
  background: linear-gradient(var(--mint), #d5975f);
}
.booking-map > div {
  position: relative;
  min-height: 64px;
  padding: 7px 0 7px 55px;
  display: grid;
}
.booking-map i {
  position: absolute;
  left: 0;
  top: 7px;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
  font: 700 12px/1 var(--mono);
}
.booking-map b { color: var(--white); font: 650 17px/1.25 var(--display); }
.booking-map div span { color: rgba(255, 255, 255, .62); font-size: 13.5px; }
.booking-map__start,
.booking-map__end {
  display: block;
  color: var(--mint);
  font: 650 10px/1 var(--mono);
  letter-spacing: .1em;
}
.booking-map__start { margin: 0 0 10px 55px; }
.booking-map__end { margin: 10px 0 0 55px; color: #efb67e; }

.booking-index { border-bottom: 1px solid var(--rule); background: rgba(255,255,255,.68); }
.booking-index__inner { min-height: 57px; display: flex; align-items: center; gap: 28px; }
.booking-index__inner .micro-label { margin-right: 8px; }
.booking-index__inner a { color: var(--ink); font-size: 14px; font-weight: 650; text-decoration: none; }
.booking-index__inner a:hover { color: var(--teal-dark); text-decoration: underline; text-underline-offset: 4px; }

.booking-orientation,
.booking-routes,
.booking-check,
.booking-after,
.booking-sources { scroll-margin-top: 90px; }
.booking-orientation { padding: 82px 0 90px; }
.booking-section-heading { max-width: 760px; margin-bottom: 38px; }
.booking-section-heading .section-number,
.booking-check__intro .section-number { margin-bottom: 11px; color: var(--book-clay); }
.booking-section-heading h2,
.booking-check__intro h2,
.booking-gateway h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font: 680 clamp(36px, 5vw, 52px)/1.04 var(--display);
  letter-spacing: -.04em;
}
.booking-section-heading > p:last-child,
.booking-section-heading--split > p { margin: 0; color: var(--body); font-size: 18px; line-height: 1.56; }
.booking-inline-link { color: var(--teal-dark); font-weight: 700; text-underline-offset: 4px; }
.booking-person-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.booking-person {
  padding: 31px 31px 29px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(28, 41, 54, .12);
  border-radius: 21px;
}
.booking-person--adult { background: var(--book-blue); }
.booking-person--child { background: var(--book-sage); }
.booking-person .micro-label { margin-bottom: 12px; }
.booking-person h3 {
  margin: 0 0 17px;
  color: var(--ink);
  font: 670 27px/1.12 var(--display);
  letter-spacing: -.025em;
}
.booking-person p { margin-bottom: 14px; font-size: 16.5px; line-height: 1.55; }
.booking-person a { color: var(--teal-dark); font-size: 15px; font-weight: 700; text-underline-offset: 4px; }
.booking-person .booking-free-guide {
  min-height: 64px;
  margin-top: auto;
  padding: 12px 14px 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(7, 92, 90, .22);
  border-radius: 11px;
  background: rgba(255,255,255,.72);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 7px 18px rgba(28, 41, 54, .06);
}
.booking-free-guide span { display: grid; gap: 4px; }
.booking-free-guide small { color: var(--teal-dark); font: 700 9px/1 var(--mono); letter-spacing: .11em; }
.booking-free-guide strong { font: 670 16px/1.25 var(--display); }
.booking-free-guide b { color: var(--teal); font: 500 20px/1 var(--mono); }
.booking-person .booking-free-guide:hover { border-color: var(--teal); background: var(--white); }
.booking-nations {
  margin-top: 20px;
  padding: 20px 23px;
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: 25px;
  align-items: start;
  border-left: 5px solid var(--book-clay);
  border-radius: 0 12px 12px 0;
  background: var(--book-stone);
}
.booking-nations strong { color: var(--ink); font: 660 19px/1.3 var(--display); }
.booking-nations p { margin: 0; font-size: 15.5px; line-height: 1.5; }

.booking-routes { padding: 88px 0 96px; background: #ede9e2; }
.booking-section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
  gap: 70px;
  align-items: end;
}
.booking-section-heading--split > p { padding-bottom: 4px; }
.booking-paths { display: grid; gap: 17px; }
.booking-path {
  padding: 27px 30px 25px;
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr) 245px;
  gap: 28px;
  align-items: start;
  border: 1px solid rgba(28, 41, 54, .13);
  border-radius: 19px;
  background: rgba(255,255,255,.78);
}
.booking-path--nhs { border-left: 7px solid #7097a8; }
.booking-path--rtc { border-left: 7px solid #5e9079; }
.booking-path--private { border-left: 7px solid #b1743e; }
.booking-path header { display: flex; gap: 15px; align-items: flex-start; }
.booking-path header > span {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font: 650 11px/1 var(--mono);
}
.booking-path header .micro-label { margin: 2px 0 5px; font-size: 9.5px; }
.booking-path h3 { margin: 0; color: var(--ink); font: 680 25px/1.1 var(--display); letter-spacing: -.025em; }
.booking-path ol { margin: 0; padding: 0; display: grid; gap: 14px; list-style: none; counter-reset: path; }
.booking-path li { position: relative; padding-left: 29px; counter-increment: path; }
.booking-path li::before { content: counter(path); position: absolute; left: 0; top: 2px; color: var(--book-clay); font: 700 11px/1.4 var(--mono); }
.booking-path li strong { display: block; margin-bottom: 2px; color: var(--ink); font-size: 15.5px; line-height: 1.35; }
.booking-path li span { display: block; font-size: 14.5px; line-height: 1.47; }
.booking-path__note {
  margin: 0;
  padding: 15px 16px;
  border-radius: 10px;
  background: var(--book-stone);
  color: var(--body);
  font-size: 14px;
  line-height: 1.48;
}
.booking-routes__more { margin: 25px 0 0; text-align: right; }
.booking-routes__more a { color: var(--teal-dark); font-weight: 700; text-underline-offset: 4px; }

.booking-check { padding: 94px 0 98px; background: var(--navy); color: rgba(255,255,255,.75); }
.booking-check__grid { display: grid; grid-template-columns: 330px minmax(0, 1fr); gap: 72px; align-items: start; }
.booking-check__intro { position: sticky; top: 100px; }
.booking-check__intro .section-number { color: #efb67e; }
.booking-check__intro h2 { color: var(--white); }
.booking-check__intro p { margin-bottom: 25px; font-size: 17px; line-height: 1.53; }
.booking-check__button {
  padding: 13px 15px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-radius: 9px;
  background: var(--book-clay);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}
.booking-check__button:hover { background: #b06b2d; }
.booking-checklist { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; list-style: none; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.13); }
.booking-checklist li { min-height: 164px; padding: 22px 23px; background: rgba(255,255,255,.055); }
.booking-checklist li > span { display: block; margin-bottom: 13px; color: var(--mint); font: 650 11px/1 var(--mono); }
.booking-checklist p { margin: 0; font-size: 14.5px; line-height: 1.5; }
.booking-checklist strong { display: block; margin-bottom: 5px; color: var(--white); font-size: 15.5px; line-height: 1.35; }

.booking-after { padding: 91px 0 97px; }
.booking-after__steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; border: 1px solid var(--rule); background: var(--rule); }
.booking-after__guide { margin-top: 17px !important; font-size: 16px !important; }
.booking-after__guide a { color: var(--teal-dark); font-weight: 700; text-underline-offset: 4px; }
.booking-after__steps > div { padding: 24px 21px 22px; background: rgba(255,255,255,.72); }
.booking-after__steps span { width: 30px; height: 30px; margin-bottom: 14px; display: grid; place-items: center; border-radius: 50%; background: var(--book-clay-pale); color: var(--book-clay); font: 700 11px/1 var(--mono); }
.booking-after__steps strong { display: block; margin-bottom: 7px; color: var(--ink); font: 660 18px/1.25 var(--display); }
.booking-after__steps p { margin: 0; font-size: 14px; line-height: 1.48; }
.booking-after__choices { margin-top: 21px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.booking-after__choices a {
  padding: 19px 21px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 18px;
  align-items: center;
  border: 1px solid rgba(28, 41, 54, .13);
  border-radius: 13px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
}
.booking-after__choices .micro-label { grid-column: 1 / -1; }
.booking-after__choices strong { font: 660 18px/1.3 var(--display); }
.booking-after__choices a > span:last-child { color: var(--teal); }
.booking-after__choices a:hover { border-color: var(--teal); }

.booking-gateway { padding: 70px 0; background: var(--book-clay-pale); }
.booking-gateway__inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 64px; align-items: center; }
.booking-gateway .micro-label { margin-bottom: 10px; color: var(--book-clay); }
.booking-gateway h2 { font-size: clamp(34px, 4.5vw, 48px); }
.booking-gateway p { max-width: 700px; margin: 0; font-size: 17px; line-height: 1.55; }
.booking-gateway__inner > a,
.booking-gateway__inner > button { min-width: 255px; padding: 15px 17px; display: flex; justify-content: space-between; gap: 24px; border: 0; border-radius: 10px; background: var(--navy); color: var(--white); font: 700 15px/1.35 var(--sans); text-align: left; text-decoration: none; cursor: pointer; }
.booking-gateway__inner > a:hover,
.booking-gateway__inner > button:hover { background: var(--teal-dark); }

.provider-alert {
  width: min(calc(100% - 34px), 620px);
  max-height: min(760px, calc(100vh - 34px));
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 18px;
  background: var(--cream);
  color: var(--body);
  box-shadow: 0 26px 80px rgba(9, 20, 28, .38);
}
.provider-alert[open] { animation: provider-alert-in .18s ease-out; }
.provider-alert::backdrop { background: rgba(10, 22, 31, .72); backdrop-filter: blur(3px); }
.provider-alert__frame { position: relative; padding: 39px 40px 34px; border-top: 7px solid var(--teal); }
.provider-alert__close {
  position: absolute;
  top: 16px;
  right: 17px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--rule);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font: 400 25px/1 var(--sans);
  cursor: pointer;
}
.provider-alert__close:hover { border-color: var(--teal); }
.provider-alert .micro-label { margin-bottom: 10px; color: var(--teal-dark); }
.provider-alert h2 { max-width: 500px; margin: 0 42px 15px 0; color: var(--ink); font: 680 34px/1.08 var(--display); letter-spacing: -.035em; }
.provider-alert__frame > p:not(.micro-label) { margin: 0; font-size: 17px; line-height: 1.58; }
.provider-alert__reveal,
.provider-alert__submit {
  width: 100%;
  min-height: 52px;
  margin-top: 24px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  border-radius: 9px;
  background: var(--teal-dark);
  color: var(--white);
  font: 700 15.5px/1.3 var(--sans);
  text-align: left;
  cursor: pointer;
}
.provider-alert__reveal:hover,
.provider-alert__submit:hover { background: var(--navy); }
.provider-alert__form { margin-top: 25px; padding-top: 24px; border-top: 1px solid var(--rule); }
.provider-alert__field label { display: block; margin-bottom: 7px; color: var(--ink); font-weight: 700; font-size: 15px; }
.provider-alert__field input {
  width: 100%;
  min-height: 50px;
  padding: 10px 12px;
  border: 1px solid #a8a39a;
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}
.provider-alert__field input:focus { outline: 3px solid rgba(11,123,119,.18); border-color: var(--teal-dark); }
.provider-alert__privacy { margin: 11px 0 0; color: var(--muted); font-size: 13.5px; line-height: 1.48; }
.provider-alert__privacy a { color: var(--teal-dark); font-weight: 700; }
.provider-alert__notice { margin-top: 16px; padding: 12px 14px; border-left: 4px solid var(--book-clay); background: var(--book-clay-pale); color: var(--ink); font-size: 13.5px; line-height: 1.45; }
.provider-alert__submit:disabled { background: #8d9697; cursor: not-allowed; opacity: .82; }
.provider-alert__verification { margin: 9px 0 0; color: var(--muted); font: 500 10px/1.4 var(--mono); letter-spacing: .035em; text-transform: uppercase; }
.provider-alert__result { margin-top: 26px; padding: 21px; border-left: 5px solid var(--teal); background: var(--book-sage); }
.provider-alert__result h2 { margin-right: 0; font-size: 27px; }
.provider-alert__result p:last-child { margin-bottom: 0; }
.provider-alert__result--error { border-left-color: #a64f45; background: #f7e9e6; }
.provider-alert__guide { margin-top: 24px; display: inline-flex; gap: 15px; color: var(--teal-dark); font-size: 14px; font-weight: 700; text-underline-offset: 4px; }
@keyframes provider-alert-in { from { opacity: 0; transform: translateY(10px) scale(.985); } to { opacity: 1; transform: none; } }

.booking-sources { padding: 74px 0 83px; background: #ece8df; }
.booking-sources__grid {
  display: grid;
  grid-template-columns: 160px minmax(0, 700px);
  gap: clamp(32px, 4vw, 48px);
  align-items: center;
}
.booking-sources__copy { max-width: 700px; }
.booking-sources h2 { margin: 0 0 16px; color: var(--ink); font: 670 30px/1.15 var(--display); }
.booking-sources p,
.booking-sources li { font-size: 14.5px; line-height: 1.55; }
.booking-sources ul { margin: 22px 0; padding-left: 21px; }
.booking-sources a { color: var(--teal-dark); font-weight: 650; text-underline-offset: 3px; }
.booking-sources__reviewed { margin-top: 25px; color: var(--muted); }
.booking-sources__illustration { width: 160px; margin: 0; }
.booking-sources__illustration img { width: 100%; height: auto; display: block; }

@media (max-width: 1080px) {
  .desktop-nav { gap: 18px; }
  .booking-path { grid-template-columns: 180px minmax(0, 1fr) 215px; gap: 20px; }
}

@media (max-width: 900px) {
  .booking-hero__grid { grid-template-columns: 1fr; gap: 38px; }
  .booking-map { max-width: 500px; }
  .booking-person-grid { grid-template-columns: 1fr; }
  .booking-section-heading--split { grid-template-columns: 1fr; gap: 12px; }
  .booking-path { grid-template-columns: 1fr; }
  .booking-path header { align-items: center; }
  .booking-path__note { margin-left: 67px; }
  .booking-check__grid { grid-template-columns: 1fr; gap: 38px; }
  .booking-check__intro { position: static; max-width: 650px; }
  .booking-check__button { max-width: 330px; }
  .booking-after__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .booking-gateway__inner { grid-template-columns: 1fr; gap: 27px; }
  .booking-gateway__inner > a,
  .booking-gateway__inner > button { max-width: 330px; }
  .booking-sources__grid { grid-template-columns: 145px minmax(0, 1fr); gap: 32px; }
  .booking-sources__illustration { width: 145px; }
}

@media (max-width: 680px) {
  .home-booking-signpost { padding: 23px 21px; grid-template-columns: 1fr; gap: 18px; border-radius: 17px; }
  .home-booking-signpost__action { min-width: 0; width: 100%; }
  .booking-hero { padding: 33px 0 55px; }
  .booking-hero .breadcrumb { margin-bottom: 30px; }
  .booking-hero h1 { font-size: clamp(41px, 12.5vw, 57px); }
  .booking-hero__standfirst { font-size: 18px; }
  .booking-map { padding: 23px 20px 21px; border-radius: 17px; }
  .booking-map::before { left: 35px; }
  .booking-index { overflow-x: auto; }
  .booking-index__inner { width: max-content; min-width: 100%; padding-right: 18px; gap: 21px; }
  .booking-index__inner .micro-label { display: none; }
  .booking-orientation { padding: 60px 0 66px; }
  .booking-section-heading { margin-bottom: 29px; }
  .booking-section-heading h2,
  .booking-check__intro h2,
  .booking-gateway h2 { font-size: 34px; }
  .booking-person { padding: 25px 22px 24px; border-radius: 16px; }
  .booking-person h3 { font-size: 24px; }
  .booking-nations { grid-template-columns: 1fr; gap: 7px; padding: 18px 19px; }
  .booking-routes { padding: 63px 0 69px; }
  .booking-path { padding: 23px 20px 21px; border-radius: 15px; }
  .booking-path__note { margin-left: 0; }
  .booking-routes__more { text-align: left; }
  .booking-check { padding: 65px 0 69px; }
  .booking-checklist { grid-template-columns: 1fr; }
  .booking-checklist li { min-height: 0; }
  .booking-check__button { max-width: none; }
  .booking-after { padding: 65px 0 70px; }
  .booking-after__steps,
  .booking-after__choices { grid-template-columns: 1fr; }
  .booking-gateway { padding: 54px 0 57px; }
  .booking-gateway__inner > a,
  .booking-gateway__inner > button { min-width: 0; max-width: none; }
  .provider-alert__frame { padding: 32px 21px 26px; }
  .provider-alert h2 { margin-right: 36px; font-size: 29px; }
  .booking-sources { padding: 55px 0 62px; }
  .booking-sources__grid { grid-template-columns: 105px minmax(0, 1fr); gap: 20px; align-items: start; }
  .booking-sources__illustration { width: 105px; margin-top: 2px; }
}

@media (max-width: 430px) {
  .booking-sources__grid { grid-template-columns: 1fr; gap: 12px; }
  .booking-sources__illustration { width: 92px; margin: 0; }
}

@media print {
  .booking-page .booking-index,
  .booking-page .booking-map,
  .booking-page .booking-gateway,
  .booking-page .provider-alert,
  .booking-page .booking-after__choices,
  .booking-page .booking-check__button { display: none; }
  .booking-page .booking-hero { padding: 0 0 16pt; background: none; color: #000; }
  .booking-page .booking-hero h1,
  .booking-page .booking-hero__standfirst { color: #000; }
  .booking-page .booking-hero .breadcrumb { display: none; }
  .booking-page .booking-orientation,
  .booking-page .booking-routes,
  .booking-page .booking-check,
  .booking-page .booking-after,
  .booking-page .booking-sources { padding: 18pt 0; background: none; color: #000; }
  .booking-page .booking-person-grid,
  .booking-page .booking-check__grid { display: block; }
  .booking-page .booking-person,
  .booking-page .booking-path,
  .booking-page .booking-checklist li { margin-bottom: 10pt; break-inside: avoid; background: none; border: 1px solid #999; color: #000; }
  .booking-page .booking-check__intro h2,
  .booking-page .booking-checklist strong { color: #000; }
}
