/* ===========================================================================
   The MB Clinic — shared design system
   Bodoni Moda display · Jost sans · white ground · charcoal frame · stone accent
   =========================================================================== */

:root {
  --ink: #1A1A1A; --ink-soft: #353432;
  --paper: #FFFFFF; --paper-2: #F2F2F1; --mist: #F4F4F2;
  --stone: #9C988E; --stone-light: #C4BFB5; --label: #6F6A5E;
  --line: rgba(26,26,26,0.18); --line-soft: rgba(26,26,26,0.12); --line-light: rgba(26,26,26,0.08);
  --serif: 'Bodoni Moda', serif; --sans: 'Jost', sans-serif;

  /* display type — fluid */
  --t-display-xl: clamp(44px, 6.4vw, 100px);
  --t-display-l:  clamp(44px, 6vw,   92px);
  --t-display-m:  clamp(30px, 4vw,   52px);
  --t-display-s:  clamp(28px, 3.4vw, 46px);
  --t-display-xs: clamp(22px, 2.4vw, 30px);
  --t-statement:  clamp(24px, 3.1vw, 40px);
  --t-quote:      clamp(26px, 3.4vw, 46px);

  /* text type — fixed */
  --t-nav: 10.5px; --t-xs: 11px; --t-s: 12px; --t-m: 14px;
  --t-base: 15px;  --t-l: 16px;  --t-xl: 18px;

  /* spacing — 4px base */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 40px; --s-8: 48px;
  --s-9: 64px; --s-10: 80px; --s-11: 96px; --s-12: 128px;

  /* spacing — fluid */
  --gutter: clamp(22px, 6vw, 120px);
  --gut: var(--gutter);
  --section-y: clamp(96px, 12vh, 150px);
  --section-y-tight: clamp(60px, 8vh, 100px);
  --split-gap: clamp(40px, 6vw, 90px);
  --grid-gap: clamp(28px, 3vw, 48px);

  /* layout + z */
  /* interaction + validation */
  --focus-ring: var(--ink);
  --focus-ring-dark: var(--paper);
  --error: #8C3A2E;
  --error-bg: #FBF4F2;
  --success: #4A6B52;
  --success-bg: #F3F6F3;

  --nav-h: 76px;
  --w-wrap: 1320px; --w-narrow: 920px; --w-prose: 680px;
  --z-header: 60; --z-mobile-nav: 55; --z-overlay: 70;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--paper); color: var(--ink); font-family: var(--sans);
  font-weight: 400; -webkit-font-smoothing: antialiased; line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.eyebrow { font-family: var(--sans); font-weight: 500; font-size: var(--t-xs);
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--label); }
.serif { font-family: var(--serif); font-weight: 500; }
.wrap { max-width: var(--w-wrap); margin: 0 auto; padding-left: var(--gut); padding-right: var(--gut); }
.wrap-narrow { max-width: var(--w-narrow); margin: 0 auto; padding-left: var(--gut); padding-right: var(--gut); }
.rule { height: 1px; background: var(--line); border: 0; }

/* ---- buttons / links ---- */
.btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans);
  font-weight: 500; font-size: var(--t-s); letter-spacing: 0.18em; text-transform: uppercase;
  padding: var(--s-4) 26px; border: 1px solid var(--ink); background: var(--ink); color: var(--paper);
  transition: background .35s, color .35s; cursor: pointer; }
.btn:hover { background: transparent; color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.link-ul { font-family: var(--sans); font-weight: 500; font-size: var(--t-s); letter-spacing: 0.18em;
  text-transform: uppercase; display: inline-flex; align-items: center; gap: 9px; padding-bottom: 4px;
  border-bottom: 1px solid var(--ink); transition: gap .3s, color .3s, border-color .3s; width: fit-content; }
.link-ul:hover { gap: 16px; color: var(--stone); border-color: var(--stone); }
.arr { font-size: 14px; }

/* ---- header + dropdown ---- */
header { position: sticky; top: 0; z-index: var(--z-header); background: rgba(20,20,20,0.94);
  backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 14px 34px -22px rgba(20,20,20,0.55); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: var(--nav-h); }
.brand { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; line-height: 1; flex-shrink: 0; }
/* Both lines must never wrap: they sit in a flex column with ~2px of slack,
   so a second line would overlap the sibling below it. */
.brand .name { font-family: var(--serif); font-weight: 500; font-size: 19px;
  letter-spacing: 0.12em; padding-left: 0.12em; color: var(--paper); white-space: nowrap; }
.brand .the { font-size: 8px; letter-spacing: 0.38em; color: rgba(255,255,255,0.65);
  font-weight: 500; padding-left: 0.38em; margin: 6px 0 0; white-space: nowrap; }
.nav-links { display: flex; gap: 19px; align-items: center; }
.nav-links > a, .nav-item > span { font-size: var(--t-nav); letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.78); transition: color .3s; cursor: pointer; display: inline-flex;
  align-items: center; gap: 5px; white-space: nowrap; }
.nav-links > a:hover, .nav-item:hover > span, .nav-item.is-open > span { color: var(--stone-light); }
.nav-item > span.active { color: var(--paper); }
.nav-links a.active { color: var(--paper); border-bottom: 1px solid rgba(255,255,255,0.5); padding-bottom: 3px; }
.nav-item { position: relative; display: inline-flex; align-items: center; line-height: 1; }
.nav-links > a { line-height: 1; }
.nav-item .caret { font-size: 7px; opacity: 0.7; }
.dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: rgba(20,20,20,0.97); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.12);
  padding: 12px 0; min-width: 220px; opacity: 0; visibility: hidden; transition: opacity .25s, transform .25s; }
.nav-item:hover .dropdown, .nav-item.is-open .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: block; padding: 10px var(--s-5); font-size: var(--t-nav); letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.74); transition: color .25s, background .25s; white-space: nowrap; }
.dropdown a:hover { color: var(--paper); background: rgba(255,255,255,0.05); }
.nav-cta { font-size: var(--t-nav); letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.5); padding: 11px 17px; white-space: nowrap; background: transparent;
  color: var(--paper); transition: background .35s, color .35s, border-color .35s; flex-shrink: 0; }
.nav-cta:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column;
  gap: 5px; padding: 6px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.burger span { width: 24px; height: 1.5px; background: var(--paper); display: block; }
.mobile-nav { display: none; }

/* ---- interior page header (charcoal) ---- */
.pagehead { background: var(--ink); color: var(--paper); padding: clamp(60px,11vh,120px) 0 clamp(52px,8vh,92px); }
.pagehead .eyebrow { color: var(--stone-light); margin-bottom: 26px; }
.pagehead h1 { font-family: var(--serif); font-weight: 500; font-size: var(--t-display-xl);
  line-height: 0.98; letter-spacing: -0.01em; text-wrap: balance; }
.pagehead h1 em { font-style: italic; }
.pagehead .lede { font-size: clamp(15px,1.2vw,18px); /* --t-base → --t-xl */ line-height: 1.7; color: rgba(255,255,255,0.78);
  max-width: 640px; margin-top: 30px; }

/* ---- generic sections ---- */
section { padding: var(--section-y) 0; }
.keyline { border-top: 1px solid var(--line); }
.tint { background: var(--mist); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-head { margin-bottom: 56px; max-width: 760px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head .eyebrow { margin-bottom: 22px; }
.sec-head h2 { font-family: var(--serif); font-weight: 500; font-size: var(--t-display-m);
  line-height: 1.14; letter-spacing: -0.005em; text-wrap: balance; }
.sec-head .intro-p { font-size: var(--t-l); line-height: 1.78; color: var(--ink-soft); margin-top: 24px; max-width: 620px; }
.sec-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px;
  margin-bottom: 64px; max-width: none; }
.sec-head--row h2 { max-width: 720px; line-height: 1.05; }
.sec-head.center .intro-p { margin-left: auto; margin-right: auto; }

/* ---- prose ---- */
.prose p { font-size: var(--t-l); line-height: 1.85; color: var(--ink-soft); margin-bottom: 22px; max-width: var(--w-prose); }
.prose p.lead { font-family: var(--serif); font-size: clamp(20px,2.2vw,28px); line-height: 1.5;
  color: var(--ink); margin-bottom: 34px; max-width: 760px; letter-spacing: -0.005em; }
.prose h3 { font-family: var(--serif); font-weight: 500; font-size: var(--t-display-xs);
  letter-spacing: -0.005em; margin: 46px 0 18px; }
.prose em { font-style: italic; color: var(--ink); }
.prose strong { font-weight: 500; color: var(--ink); }
.prose ul { list-style: none; margin: 0 0 26px; max-width: var(--w-prose); }
.prose ul li { font-size: var(--t-l); line-height: 1.7; color: var(--ink-soft); padding: 12px 0 12px 28px;
  border-top: 1px solid var(--line-soft); position: relative; }
.prose ul li:before { content: "—"; position: absolute; left: 0; top: 12px; font-size: 13px; line-height: 1.7; color: var(--ink); }

/* ---- split content row ---- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--split-gap); align-items: center; }
.split.media-left { grid-template-columns: 0.95fr 1.05fr; }
.split-media { aspect-ratio: 4 / 5; background: var(--paper-2); overflow: hidden; }
.split-media.wide { aspect-ratio: 5 / 4; }
.split-media image-slot { width: 100%; height: 100%; }
.split h2 { font-family: var(--serif); font-weight: 500; font-size: var(--t-display-s);
  line-height: 1.08; letter-spacing: -0.005em; margin: 18px 0 24px; }

/* ---- tiles / card grid ---- */
.tiles { display: grid; gap: var(--grid-gap); }
.tiles.c2 { grid-template-columns: repeat(2,1fr); }
.tiles.c3 { grid-template-columns: repeat(3,1fr); }
.tile { display: flex; flex-direction: column; }
.tile-media { position: relative; aspect-ratio: 4 / 3; background: var(--paper-2); overflow: hidden; margin-bottom: 24px; }
.tile-media image-slot { width: 100%; height: 100%; }
.tile-num { position: absolute; top: 16px; left: 18px; z-index: 2; font-family: var(--serif);
  font-style: italic; font-size: 18px; color: var(--paper); mix-blend-mode: difference; }
.tile h3 { font-family: var(--serif); font-weight: 500; font-size: var(--t-display-xs);
  letter-spacing: -0.005em; margin-bottom: 14px; }
.tile p { font-size: var(--t-base); line-height: 1.72; color: var(--ink-soft); margin-bottom: 20px; }
.tile .link-ul { font-size: var(--t-xs); }

/* ---- steps / numbered ---- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(28px,3vw,56px); }
.step { border-top: 1px solid var(--ink); padding-top: 26px; }
.step .n { font-family: var(--serif); font-style: italic; font-size: 30px; color: var(--ink); margin-bottom: 22px; }
.step h4 { font-family: var(--serif); font-weight: 500; font-size: 24px; margin-bottom: 14px; }
.step p { font-size: var(--t-m); line-height: 1.7; color: var(--ink-soft); }

/* ---- quote band (dark) ---- */
.quote { background: var(--ink); color: var(--paper); text-align: center; }
.quote .eyebrow { color: var(--stone-light); margin-bottom: 40px; }
.quote blockquote { font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: var(--t-quote); line-height: 1.32; max-width: 1040px; margin: 0 auto;
  letter-spacing: -0.005em; text-wrap: balance; }
.quote cite { display: block; font-style: normal; font-family: var(--sans); font-size: var(--t-s);
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone-light); margin-top: 44px; }
/* rotator variant — shorter measure, smaller type for multi-sentence testimonials */
.quote--rotator blockquote { font-size: clamp(21px,2.5vw,34px); line-height: 1.4; max-width: 920px; }

/* ---- shift band (3-up from/to) ---- */
/* petrol teal, sampled from the shirt in the page photo (#0C4E60), lifted a little */
.shift { background: #0D5563; color: var(--paper); }
.shift .eyebrow, .shift-item .from { color: #FFFFFF; }
.shift-item .ar { color: rgba(255,255,255,0.78); }
.shift .eyebrow { color: var(--stone-light); margin-bottom: 50px; text-align: center; }
.shift-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(28px,4vw,64px); }
.shift-item { text-align: center; }
.shift-item .from { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone-light); }
.shift-item .ar { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--stone); margin: 14px 0; }
.shift-item .to { font-family: var(--serif); font-size: clamp(24px,2.4vw,32px); color: var(--paper); letter-spacing: -0.005em; }

/* ---- associations strip ---- */
.assoc-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 22px 50px; }
.assoc-row span { font-family: var(--serif); font-size: clamp(15px,1.4vw,20px); color: var(--ink-soft);
  letter-spacing: 0.01em; white-space: nowrap; }

/* ---- contact form ---- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 26px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: var(--t-xs); letter-spacing: 0.18em; text-transform: uppercase; color: var(--label); }
.field input, .field textarea, .field select { font-family: var(--sans); font-size: var(--t-base); color: var(--ink);
  background: var(--paper); border: 1px solid var(--line); padding: 14px 16px; outline: none; transition: border-color .3s; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--ink); }
.field textarea { resize: vertical; min-height: 130px; }

/* ---- info list ---- */
.info-list { display: flex; flex-direction: column; gap: 26px; }
.info-item .k { font-size: var(--t-xs); letter-spacing: 0.2em; text-transform: uppercase; color: var(--label); margin-bottom: 8px; }
.info-item .v { font-family: var(--serif); font-size: 20px; line-height: 1.4; }
.info-item .v.small { font-size: 17px; }

/* ---- footer ---- */
footer { background: var(--ink); color: var(--paper); padding: clamp(64px,8vh,100px) 0 40px; }
.foot-top { display: grid; grid-template-columns: 1.5fr 1.5fr 0.9fr 1.1fr; gap: 56px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.14); }
.foot-brand .name { font-family: var(--serif); font-weight: 500; font-size: 26px;
  letter-spacing: 0.1em; padding-left: 0.1em; margin: 0 0 14px; }
.foot-brand .tag { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--stone-light); }
.foot-brand .addr { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.7); margin-top: 22px; }
.foot-col h5 { font-size: var(--t-xs); letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone-light);
  margin-bottom: 22px; font-weight: 500; }
.foot-col a, .foot-col p { display: block; font-size: var(--t-m); color: rgba(255,255,255,0.82);
  margin-bottom: 13px; line-height: 1.5; transition: color .3s; }
.foot-col a:hover { color: var(--paper); }
.foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding-top: 30px;
  font-size: var(--t-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone-light); }

/* placeholder for a destination that does not exist yet — looks like the
   surrounding text but is not an interactive dead end */
.pending { color: var(--label); cursor: default; }
.foot-col .pending { display: block; font-size: var(--t-m); color: rgba(255,255,255,0.45);
  margin-bottom: 13px; line-height: 1.5; }
.link-ul.is-pending { color: var(--stone); border-color: var(--line); cursor: default; }

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

/* ---- reveal ---- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s ease, transform 1s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }

/* ---- responsive ---- */
@media (max-width: 1200px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .mobile-nav.open { display: block; position: fixed; inset: var(--nav-h) 0 0; background: var(--ink); z-index: var(--z-mobile-nav);
    padding: 26px var(--gut); overflow-y: auto; }
  .mobile-nav.open a { display: flex; align-items: center; min-height: 44px; font-family: var(--serif);
    font-size: 24px; color: var(--paper); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .mobile-nav.open a.sub { font-family: var(--sans); font-size: 13px; letter-spacing: 0.14em;
    text-transform: uppercase; color: rgba(255,255,255,0.7); padding-left: 18px; }
}
@media (max-width: 1000px) {
  .split, .split.media-left { grid-template-columns: 1fr; }
  .split-media { order: -1; aspect-ratio: 16/10; }
  .tiles.c2, .tiles.c3 { grid-template-columns: 1fr 1fr; }
  .steps, .shift-grid { grid-template-columns: 1fr; gap: 0; } .step { margin-top: 28px; }
  .shift-grid { gap: 40px; } .shift-item { padding: 0; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .tiles.c2, .tiles.c3 { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .assoc-row { gap: 14px 28px; } .assoc-row span { font-size: 14px; }
}

/* ===========================================================================
   Homepage components — moved out of the homepage's inline <style> (item 1)
   =========================================================================== */

/* ---- hero ---- */
.hero { display: grid; grid-template-columns: 1.05fr 0.95fr; min-height: calc(100vh - var(--nav-h)); align-items: stretch; }
.hero-text { padding: clamp(40px,7vw,110px) clamp(30px,5vw,80px) clamp(40px,6vw,90px) var(--gut);
  display: flex; flex-direction: column; justify-content: center; }
.hero-text .eyebrow { margin-bottom: 30px; }
.hero h1 { font-family: var(--serif); font-weight: 500; font-size: var(--t-display-l);
  line-height: 1.02; letter-spacing: -0.005em; text-wrap: balance; }
.hero h1 em { font-style: italic; color: var(--ink); }
.hero .lede { font-size: clamp(15px,1.15vw,17px); line-height: 1.75; color: var(--ink-soft);
  max-width: 440px; margin: 34px 0 42px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-media { position: relative; background: var(--ink); color: rgba(255,255,255,0.55); }
.hero-media image-slot { width: 100%; height: 100%; min-height: 420px; color: rgba(255,255,255,0.5); }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero-slide.is-on { opacity: 1; }
.hero-stage { position: absolute; top: 0; right: 0; z-index: 3; background: var(--paper);
  padding: 14px 22px; font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink); }
.hero-stage span { transition: opacity .36s ease; display: inline-block; }
.hero-badge { position: absolute; left: 0; bottom: 0; background: var(--paper); padding: 18px 26px; z-index: 3; }
.hero-badge .eyebrow { color: var(--ink); }
.hero-mark { position: absolute; bottom: 30px; right: clamp(30px,5vw,80px); z-index: 2;
  font-family: var(--serif); font-style: italic; font-size: 26px; color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em; pointer-events: none; }

/* ---- credentials band ---- */
.creds { background: var(--ink); }
.creds-inner { display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px 46px; padding: 30px var(--gut); }
.creds span { font-size: var(--t-s); letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.82); }
.creds .dot { color: var(--stone); }

/* ---- philosophy statement ---- */
.philo { text-align: center; }
.philo .eyebrow { margin-bottom: 34px; }
/* larger than --t-statement by intent: this is the homepage's emotional centre */
.philo p.statement { font-family: var(--serif); font-weight: 500; font-size: clamp(26px,3.3vw,46px);
  line-height: 1.28; letter-spacing: -0.005em; max-width: 1000px; margin: 0 auto; text-wrap: balance; }
.philo p.statement em { font-style: italic; color: var(--ink); }
.philo .sub { font-size: var(--t-l); line-height: 1.8; color: var(--ink-soft); max-width: 560px; margin: 40px auto 0; }

/* ---- service cards: .tiles.c2 + .tile--svc ---- */
.tiles.c2--svc { gap: clamp(34px,4vw,64px); }
.tile--svc .tile-media { margin-bottom: 26px; }
.tile--svc p { max-width: 460px; }
.tile--svc .link-ul { margin-top: auto; }

/* note beneath the service cards — the four areas are not the whole offer */
.svc-note { max-width: 78ch; margin: clamp(38px,4.5vh,60px) auto 0; padding-top: clamp(24px,3vh,34px);
  border-top: 1px solid var(--line); font-size: var(--t-base); line-height: 1.78;
  color: var(--ink-soft); text-align: center; text-wrap: pretty; }
.svc-note a { color: var(--ink); border-bottom: 1px solid var(--stone-light); }
.svc-note a:hover { border-color: var(--ink); }

/* ---- about band ---- */
.about { background: var(--mist); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
/* editorial ratio, deliberately not .split's 1.05/0.95 — portrait needs the room */
.split--about { grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px,6vw,96px); }


.about h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(30px,3.6vw,50px);
  line-height: 1.08; margin: 22px 0 28px; letter-spacing: -0.005em; }
.about p { font-size: var(--t-l); line-height: 1.78; color: var(--ink-soft); margin-bottom: 20px; max-width: 540px; }
.sig { font-family: var(--serif); font-style: italic; font-size: 30px; margin-top: 34px; color: var(--ink); }
.about .creds-line { margin-top: 10px; font-size: var(--t-xs); letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--label); }

/* ---- testimonial rotator ---- */
.quote-stage { position: relative; }
.q-slide { margin: 0; position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start; opacity: 0; visibility: hidden;
  transition: opacity .9s ease; pointer-events: none; }
.q-slide.is-on { position: relative; opacity: 1; visibility: visible; pointer-events: auto; }
.q-dots { display: flex; gap: 12px; justify-content: center; margin-top: 52px; }
.q-dots button { width: 7px; height: 7px; padding: 0; border: none; border-radius: 50%;
  background: rgba(255,255,255,0.28); cursor: pointer; transition: background .3s ease, transform .3s ease; }
.q-dots button:hover { background: rgba(255,255,255,0.55); }
.q-dots button.is-on { background: var(--paper); transform: scale(1.25); }

/* ---- journal cards: .tiles.c3 + .tile--post ---- */
.tile--post .tile-media { aspect-ratio: 2 / 1; margin-bottom: 22px; }
.tile--post .meta { font-size: var(--t-xs); letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--label); margin-bottom: 14px; }
.tile--post h4 { font-family: var(--serif); font-weight: 500; font-size: clamp(20px,1.7vw,25px);
  line-height: 1.25; letter-spacing: -0.005em; }
.tile--post:hover h4 { color: var(--stone); transition: color .3s; }

/* ---- homepage contact band ---- */
.contact { background: var(--paper-2); }
/* editorial ratio — the headline carries this band, details are secondary */
.split--contact { grid-template-columns: 1.2fr 0.8fr; }
.contact h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(34px,5vw,72px);
  line-height: 1.02; letter-spacing: -0.01em; margin: 22px 0 30px; }
.contact p { font-size: var(--t-l); line-height: 1.78; color: var(--ink-soft); max-width: 440px; margin-bottom: 38px; }
.contact-details { display: flex; flex-direction: column; gap: 26px; }
.cd-item .k { font-size: var(--t-xs); letter-spacing: 0.2em; text-transform: uppercase; color: var(--label); margin-bottom: 8px; }
.cd-item .v { font-family: var(--serif); font-size: 22px; }
.cd-item .v.small { font-size: 18px; }

image-slot { transition: filter .5s ease; }

/* ---- homepage responsive ---- */
@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; }
  .hero-media { min-height: 60vh; order: -1; }
  .hero-text { padding: 60px var(--gut); }
  .split--about, .split--contact { grid-template-columns: 1fr; }
}
@media (max-width: 1000px) {
  /* the portrait stays 4:5 — the shared 16/10 landscape box distorts it */
  .split--about .split-media { aspect-ratio: 4 / 5; order: 0; }
  /* 3-up collapses straight to one column; 2+1 leaves an orphan row */
  .tiles.c3 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .sec-head--row { flex-direction: column; align-items: flex-start; }
  .sec-head--row .link-ul { display: none; }
  .creds-inner { gap: 10px 22px; }
}

/* ===========================================================================
   States — item 4
   Focus: a 2px square ring, offset so it reads as a frame rather than a border.
   Square because nothing in this identity has a radius.
   =========================================================================== */

:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--focus-ring); outline-offset: 3px; }
/* on charcoal grounds the ink ring is invisible — flip to paper */
:where(header, footer, .pagehead, .quote, .shift, .creds, .mobile-nav)
  :where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline-color: var(--focus-ring-dark); }

/* ---- buttons ---- */
.btn:active, .btn--ghost:active, .nav-cta:active { transform: translateY(1px); }
.btn[disabled], .btn[aria-disabled="true"], .btn--ghost[disabled] {
  background: var(--paper-2); border-color: var(--line); color: var(--label);
  cursor: not-allowed; pointer-events: none; }
.btn[data-loading] { pointer-events: none; color: transparent; position: relative; }
.btn[data-loading]:after { content: ""; position: absolute; inset: 0; margin: auto;
  width: 13px; height: 13px; border: 1.5px solid var(--paper); border-top-color: transparent;
  border-radius: 50%; animation: btn-spin .7s linear infinite; }
@keyframes btn-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .btn[data-loading]:after { animation-duration: 2.4s; }
  .btn:active, .btn--ghost:active, .nav-cta:active { transform: none; }
}

/* ---- form fields ---- */
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"], .field select[aria-invalid="true"] {
  border-color: var(--error); background: var(--error-bg); }
.field input[aria-invalid="true"]:focus, .field textarea[aria-invalid="true"]:focus { border-color: var(--error); }
.field[data-state="success"] input, .field[data-state="success"] textarea, .field[data-state="success"] select {
  border-color: var(--success); background: var(--success-bg); }
.field input[disabled], .field textarea[disabled], .field select[disabled] {
  background: var(--paper-2); color: var(--label); cursor: not-allowed; }
.field input[readonly], .field textarea[readonly] { background: var(--paper-2); border-color: var(--line-soft); }
.field .msg { font-size: var(--t-xs); letter-spacing: 0.06em; color: var(--error); min-height: 0; }
.field[data-state="success"] .msg { color: var(--success); }
.field .hint { font-size: var(--t-xs); letter-spacing: 0.06em; color: var(--label); }

/* ---- form-level states ---- */
.form-summary { border: 1px solid var(--error); background: var(--error-bg); padding: var(--s-4) var(--s-5);
  margin-bottom: var(--s-6); }
.form-summary h3 { font-family: var(--sans); font-size: var(--t-s); font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--error); margin-bottom: var(--s-3); }
.form-summary ol { list-style: none; }
.form-summary li { font-size: var(--t-base); line-height: 1.6; padding: 3px 0; }
.form-summary a { border-bottom: 1px solid var(--error); color: var(--error); }
.form-done { border-top: 1px solid var(--ink); padding-top: var(--s-7); }
.form-done .eyebrow { color: var(--success); margin-bottom: var(--s-4); }
.form-done p { font-family: var(--serif); font-size: var(--t-display-xs); line-height: 1.4; }
form[data-submitting] { opacity: 0.55; pointer-events: none; }

/* ---- cards ---- */
.tile { transition: transform .4s ease; }
.tile:hover, .tile:focus-within { transform: translateY(-3px); }
.tile:focus-within .tile-media { outline: 1px solid var(--line); }
@media (prefers-reduced-motion: reduce) { .tile:hover, .tile:focus-within { transform: none; } }

/* ---- rotator controls ---- */
.rot-ctl { display: inline-flex; align-items: center; gap: 8px; background: none; border: 0;
  padding: 6px 2px; cursor: pointer; font-family: var(--sans); font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--label); transition: color .3s; }
.rot-ctl:hover { color: var(--ink); }
.rot-ctl .glyph { font-size: 8px; line-height: 1; }
.quote .rot-ctl, .hero .rot-ctl { color: var(--stone-light); }
.quote .rot-ctl:hover { color: var(--paper); }
/* top-left is the only free corner: .hero-stage owns top-right,
   .hero-badge bottom-left, .hero-mark bottom-right */
.hero-media .rot-ctl { position: absolute; left: 0; top: 0; z-index: 4; background: var(--paper);
  color: var(--ink); padding: 12px 18px; }
.hero-media .rot-ctl:hover { color: var(--ink); background: var(--paper-2); }

/* ---- skip link ---- */
.skip { position: absolute; left: var(--gutter); top: -100px; z-index: var(--z-overlay);
  background: var(--paper); color: var(--ink); border: 1px solid var(--ink);
  padding: 12px 20px; font-size: var(--t-s); font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; transition: top .2s; }
.skip:focus { top: 12px; }

/* ===========================================================================
   New components — item 5
   =========================================================================== */

/* ---- guide page: download action in the pagehead ---- */
.guide-actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-4) var(--s-6);
  margin-top: var(--s-7); }
.guide-actions-note { font-size: var(--t-xs); letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--stone-light); }
.btn--paper { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--paper:hover { background: transparent; color: var(--paper); border-color: var(--paper); }

/* ---- three-column definition triad (inside guide bodies) ---- */
.triad { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line);
  border: 1px solid var(--line); }
.triad-cell { background: var(--mist); padding: var(--s-6) var(--s-5); }
.triad-n { font-family: var(--serif); font-style: italic; font-size: 26px; line-height: 1;
  color: var(--stone); margin-bottom: var(--s-4); }
.triad-cell h3 { font-family: var(--sans); font-weight: 500; font-size: var(--t-s);
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); margin-bottom: var(--s-3); }
.triad-cell p { font-size: var(--t-m); line-height: 1.65; color: var(--ink-soft); margin: 0; }
@media (max-width: 760px) { .triad { grid-template-columns: 1fr; } }

/* ---- guide set banners ----
   Full-bleed charcoal rule-band that heads each group of guide cards, so the
   library reads as two collections rather than one twelve-card wall. The
   second group sits on mist to reinforce the split. */
.gset-banner { background: var(--mist); color: var(--ink); padding: clamp(30px,4.5vh,48px) 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.gset-banner .wrap { display: grid; grid-template-columns: auto 1fr; column-gap: clamp(20px,3vw,44px);
  align-items: baseline; row-gap: 10px; }
.gset-i { font-family: var(--serif); font-style: italic; font-size: clamp(30px,3.4vw,46px);
  line-height: 1; color: var(--ink-soft); }
.gset-banner h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(24px,2.8vw,38px);
  line-height: 1.1; letter-spacing: -0.005em; color: var(--ink); }
.gset-banner p { grid-column: 2; font-size: var(--t-base); line-height: 1.7;
  color: var(--ink-soft); max-width: 56ch; }
/* second group inverts to charcoal — white on --ink is 15.9:1 */
.gset-banner--alt { background: var(--ink); border-color: var(--ink); }
.gset-banner--alt h2 { color: var(--paper); }
.gset-banner--alt .gset-i { color: var(--stone); }
.gset-banner--alt p { color: rgba(255,255,255,0.76); }

/* jump links under the page title */
.gset-jump { display: flex; flex-wrap: wrap; gap: var(--s-4) var(--s-6); margin-top: var(--s-7); }
.gset-jump a { font-size: var(--t-xs); font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--stone-light); border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 5px; }
.gset-jump a:hover { color: var(--paper); border-color: var(--paper); }
@media (max-width: 620px) { .gset-banner .wrap { grid-template-columns: 1fr; }
  .gset-banner p { grid-column: 1; } }

/* ---- guide cards ----
   Index-card grid for guide listings: a roman numeral, a subject tag, the
   title, its scope, and a one-line description. Cards that aren't written
   yet stay in the grid, visibly inert, so the shape of the library reads. */
.gcard-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(288px, 1fr));
  gap: var(--s-5); }
.gcard { background: var(--paper); border: 1px solid var(--line); padding: var(--s-7) var(--s-6) var(--s-6);
  display: flex; flex-direction: column; gap: var(--s-3); transition: border-color .35s, background .35s; }
.gcard-n { font-family: var(--serif); font-style: italic; font-size: 34px; line-height: 1; color: var(--stone); }
.gcard-tag { font-size: 9.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--label); }
.gcard h3 { font-family: var(--serif); font-weight: 500; font-size: 24px; line-height: 1.16;
  letter-spacing: -0.005em; color: var(--ink); margin-top: 2px; }
.gcard-meta { font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); }
.gcard p { font-size: var(--t-base); line-height: 1.7; color: var(--ink-soft); margin: 0; }
.gcard-cta { margin-top: auto; padding-top: var(--s-5); font-family: var(--sans); font-weight: 500;
  font-size: var(--t-xs); letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink);
  border-bottom: 1px solid var(--ink); padding-bottom: 4px; width: fit-content; white-space: nowrap; }
.gcard-actions { margin-top: auto; padding-top: var(--s-5); display: flex; flex-wrap: wrap;
  gap: var(--s-3) var(--s-6); align-items: baseline; }
.gcard-actions .gcard-cta { margin-top: 0; padding-top: 0; }
.gcard-cta:hover { color: var(--stone); border-color: var(--stone); }
.gcard h3 a { border-bottom: 0; }
.gcard h3 a:hover { color: var(--stone); }
.gcard:hover .gcard-n { color: var(--ink); }
.gcard--soon { background: var(--mist); }
.gcard--soon .gcard-n, .gcard--soon h3 { color: var(--stone); }
.gcard--soon .gcard-cta { color: var(--label); border-color: var(--line); }

/* ---- registration & collaboration ----
   Editorial, not a centred logo strip: a left-hand statement against a
   keylined specimen grid. Registrations are set in type (their logos carry
   usage rules); collaborators appear as marks, normalised to ink. */
.affil { background: var(--mist); border-top: 1px solid var(--line); }
.affil-body { background: var(--paper); border: 1px solid var(--line); padding: clamp(26px,3vw,40px); }
.affil-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.affil-intro h2 { font-family: var(--serif); font-weight: 500; font-size: var(--t-display-s);
  line-height: 1.08; letter-spacing: -0.005em; margin: var(--s-5) 0 var(--s-5); }
.affil-intro p { font-size: var(--t-base); line-height: 1.78; color: var(--ink-soft); max-width: 40ch; }

.reg-row { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); }
.affil-body .reg { padding-top: var(--s-5); padding-bottom: var(--s-5); }
.reg { display: flex; flex-direction: column; gap: 7px; padding: var(--s-6) var(--s-4) var(--s-6) 0;
  border-bottom: 1px solid var(--line); transition: color .3s; }
.reg + .reg { padding-left: var(--s-4); border-left: 1px solid var(--line); }
.reg-abbr { font-family: var(--serif); font-weight: 500; font-size: 27px; line-height: 1;
  letter-spacing: 0.03em; color: var(--ink); }
.reg-name { font-size: var(--t-xs); line-height: 1.5; color: var(--ink-soft); }
.reg-role { font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--label); }
.reg:hover .reg-abbr { color: var(--stone); }

.collab-head { margin: var(--s-7) 0 var(--s-5); display: flex; align-items: center; gap: var(--s-4); }
.collab-head span { font-size: 9.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--label); white-space: nowrap; }
.collab-head:after { content: ""; flex: 1; height: 1px; background: var(--line); }

.collab-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.collab { background: var(--paper); display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: var(--s-4); padding: var(--s-7) var(--s-5); transition: background .35s; }
.collab-mark { height: 46px; display: flex; align-items: center; justify-content: center; }
.collab-mark img { max-height: 100%; max-width: 132px; width: auto; object-fit: contain; display: block; }
.collab-role { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--label); }
.collab:hover { background: var(--mist); }

@media (max-width: 1000px) {
  .affil-grid { grid-template-columns: 1fr; gap: var(--s-8); }
  .affil-intro p { max-width: none; }
}
@media (max-width: 900px) { .reg-row { grid-template-columns: repeat(2, 1fr); }
  .reg:nth-child(3) { padding-left: 0; border-left: 0; } }
@media (max-width: 620px) {
  .reg-row { grid-template-columns: 1fr; }
  .reg:nth-child(3) { padding-left: 0; }
  .reg + .reg { padding-left: 0; border-left: 0; }
  .collab-row { grid-template-columns: repeat(2, 1fr); }
}

/* ---- language swap pairs (blog) ---- */
.lang-swap { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line);
  border: 1px solid var(--line); margin: 0 0 var(--s-5); }
.lang-swap .ls-col { background: var(--mist); padding: var(--s-5); }
.lang-swap .ls-k { display: block; font-size: 9.5px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: var(--s-3); }
.lang-swap .ls-bad .ls-k { color: var(--error); }
.lang-swap .ls-good .ls-k { color: var(--success); }
.lang-swap p { font-family: var(--serif); font-style: italic; font-size: 15px; line-height: 1.5;
  margin: 0; }
.lang-swap .ls-bad p { color: var(--label); }
.lang-swap .ls-good p { color: var(--ink); }
@media (max-width: 620px) { .lang-swap { grid-template-columns: 1fr; } }

/* ---- article author note ---- */
.art-bio { background: var(--mist); border: 1px solid var(--line); border-left: 3px solid var(--ink);
  margin-top: var(--s-10); padding: var(--s-6) var(--s-7); }
.art-bio:before { content: "About the author"; display: block; font-family: var(--sans);
  font-size: 9.5px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--label); margin-bottom: var(--s-4); }
.art-bio p { font-size: var(--t-m); line-height: 1.75; color: var(--ink-soft); font-style: normal; margin: 0; }
.art-bio p strong, .art-bio .nm { font-weight: 500; color: var(--ink); }


/* ---- blog index cards ---- */
.blog-grid .tile--post .excerpt { font-size: var(--t-m); line-height: 1.68; color: var(--ink-soft);
  margin: 12px 0 18px; }
.blog-grid .tile--post .link-ul { font-size: var(--t-xs); margin-top: auto; }
.blog-grid .tile--post { display: flex; flex-direction: column; }
.blog-grid .tile--post h4 a { color: var(--ink); }
.blog-grid .tile--post:hover h4 a { color: var(--stone); }

/* ---- breadcrumb ---- */
.crumb { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: var(--t-xs);
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--label); }
.crumb a { color: var(--label); transition: color .3s; }
.crumb a:hover { color: var(--ink); }
.crumb .sep { color: var(--stone); }
.crumb [aria-current] { color: var(--ink); }
.pagehead .crumb, .pagehead .crumb a { color: var(--stone-light); }
.pagehead .crumb a:hover, .pagehead .crumb [aria-current] { color: var(--paper); }

/* ---- article meta ---- */
.art-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px;
  font-size: var(--t-xs); letter-spacing: 0.18em; text-transform: uppercase; color: var(--label); }
.art-meta .cat { color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 2px; }
.pagehead .art-meta { color: var(--stone-light); }
.pagehead .art-meta .cat { color: var(--paper); border-color: var(--paper); }

/* ---- article body ---- */
.article { max-width: var(--w-prose); margin: 0 auto; }
.article > * { margin-bottom: var(--s-5); }
.article p { font-size: var(--t-l); line-height: 1.85; color: var(--ink-soft); }
.article p.standfirst { font-family: var(--serif); font-size: clamp(20px,2.2vw,28px); line-height: 1.5;
  color: var(--ink); letter-spacing: -0.005em; margin-bottom: var(--s-8); }
.article h2 { font-family: var(--serif); font-weight: 500; font-size: var(--t-display-xs);
  letter-spacing: -0.005em; margin: var(--s-10) 0 var(--s-4); }
.article h3 { font-family: var(--sans); font-weight: 500; font-size: var(--t-l); letter-spacing: 0.02em;
  margin: var(--s-8) 0 var(--s-3); }
.article ul, .article ol { margin: 0 0 var(--s-5) 0; list-style: none; }
.article ul li, .article ol li { font-size: var(--t-l); line-height: 1.7; color: var(--ink-soft);
  padding: var(--s-3) 0 var(--s-3) 28px; border-top: 1px solid var(--line-soft); position: relative; }
.article ul li:before { content: "—"; position: absolute; left: 0; top: var(--s-3); color: var(--ink); font-size: 13px; }
.article ol { counter-reset: a; }
.article ol li:before { counter-increment: a; content: counter(a); position: absolute; left: 0; top: var(--s-3);
  font-family: var(--serif); font-style: italic; color: var(--stone); }
.article blockquote { border-left: 1px solid var(--ink); padding: 2px 0 2px var(--s-5); margin: var(--s-8) 0; }
.article blockquote p { font-family: var(--serif); font-style: italic; font-size: clamp(18px,1.7vw,22px);
  line-height: 1.55; color: var(--ink); margin: 0; }
.pull { margin: var(--s-10) 0; padding: var(--s-7) 0; border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink); text-align: center; }
.pull p { font-family: var(--serif); font-weight: 500; font-size: var(--t-statement); line-height: 1.3;
  color: var(--ink); letter-spacing: -0.005em; margin: 0; text-wrap: balance; }
figure.inline-fig { margin: var(--s-9) 0; }
figure.inline-fig .fig-media { aspect-ratio: 3 / 2; background: var(--paper-2); overflow: hidden; }
figure.inline-fig .fig-media image-slot { width: 100%; height: 100%; }
figure.inline-fig figcaption { font-size: var(--t-xs); letter-spacing: 0.06em; line-height: 1.6;
  color: var(--label); margin-top: var(--s-3); }
figure.inline-fig.bleed { max-width: none; width: 100%; }
.cite-ref { font-family: var(--sans); font-size: 0.72em; letter-spacing: 0.04em; vertical-align: super;
  line-height: 0; color: var(--ink); border-bottom: 0; }
.cite-ref:hover { color: var(--stone); }
.refs { border-top: 1px solid var(--ink); padding-top: var(--s-7); margin-top: var(--s-11); }
.refs h2 { font-family: var(--sans); font-weight: 500; font-size: var(--t-s); letter-spacing: 0.18em;
  text-transform: uppercase; margin: 0 0 var(--s-5); }
.refs ol { list-style: none; counter-reset: r; }
.refs ol li { position: relative; padding: var(--s-3) 0 var(--s-3) 34px;
  font-size: var(--t-m); line-height: 1.65; color: var(--ink-soft); border-top: 1px solid var(--line-light); }
.refs ol li:first-child { border-top: 0; }
.refs ol li:before { content: counter(r) "."; counter-increment: r; position: absolute; left: 0;
  top: var(--s-3); font-family: var(--serif); font-style: italic; color: var(--stone); }
.refs ol li a { border-bottom: 1px solid var(--line); }
.refs ol li a:hover { border-color: var(--ink); }

/* ---- care panel: full-measure alternative to the split+image layout ---- */
.care-panel { background: var(--paper-2); border: 1px solid var(--line-soft);
  padding: clamp(32px,4.5vw,68px); }
.care-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,4.5vw,72px); align-items: start; }
.care-panel .prose p:last-child { margin-bottom: 0; }
.care-list-h { font-size: var(--t-xs); letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--label); margin-bottom: var(--s-4); }
.care-list ul { margin-bottom: 0; }
@media (max-width: 900px) { .care-cols { grid-template-columns: 1fr; gap: var(--s-7); } }

/* ---- scope band ---- */
.scope-band { background: var(--mist); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.scope-head { text-align: center; margin-bottom: clamp(34px,4.5vh,52px); }
.scope-head h2 { font-family: var(--serif); font-weight: 500; font-size: var(--t-display-s);
  line-height: 1.1; letter-spacing: -0.005em; margin-top: var(--s-4); }
.scope-body { max-width: 78ch; margin: 0 auto; column-count: 2; column-gap: clamp(40px,5vw,80px); }
.scope-body p { font-size: var(--t-base); line-height: 1.85; color: var(--ink-soft);
  margin-bottom: var(--s-5); break-inside: avoid; }
.scope-body p:last-child { margin-bottom: 0; }
.scope-body strong { font-weight: 500; color: var(--ink); }
.scope-body a { border-bottom: 1px solid var(--line); }
.scope-body a:hover { border-color: var(--ink); }
@media (max-width: 900px) { .scope-body { column-count: 1; } }

/* ---- urgent band ----
   Crisis information gets its own full-width section at full contrast.
   It is never a sidebar and never secondary to anything on the page. */
.urgent-band { background: var(--error-bg); border-top: 3px solid var(--error);
  border-bottom: 3px solid var(--error); }
.urgent-head { text-align: center; margin-bottom: clamp(34px,4.5vh,52px); }
.urgent-head .eyebrow { color: var(--error); }
.urgent-head h2 { font-family: var(--serif); font-weight: 500; font-size: var(--t-display-m);
  line-height: 1.05; letter-spacing: -0.005em; color: var(--error); margin-top: var(--s-4); }
.urgent-body { max-width: 900px; margin: 0 auto; }
.urgent-body p { font-size: var(--t-l); line-height: 1.8; color: var(--ink-soft); margin-bottom: var(--s-5); }
.urgent-body strong { font-weight: 500; color: var(--ink); }
.urgent-body a { color: var(--error); border-bottom: 1px solid var(--error); }
.urgent-body ul { list-style: none; margin: var(--s-5) 0 var(--s-7); display: grid;
  grid-template-columns: 1fr 1fr; gap: 0 clamp(30px,4vw,58px);
  border-top: 1px solid rgba(140,58,46,0.28); }
.urgent-body li { font-size: var(--t-base); line-height: 1.6; color: var(--ink);
  padding: var(--s-4) 0 var(--s-4) 24px; position: relative;
  border-bottom: 1px solid rgba(140,58,46,0.18); break-inside: avoid; }
.urgent-body li:before { content: ""; position: absolute; left: 0; top: 25px;
  width: 9px; height: 1px; background: var(--error); }
/* the escalation instruction is the single most important line on the page */
.urgent-body p.escalate { background: var(--paper); border-left: 3px solid var(--error);
  padding: var(--s-6); font-size: var(--t-xl); line-height: 1.65; color: var(--ink); }
@media (max-width: 760px) { .urgent-body ul { grid-template-columns: 1fr; } }

/* ---- "coming soon" ---- */
.soon-rule { text-align: center; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
  padding: clamp(44px,7vh,86px) var(--s-5); max-width: var(--w-wrap); margin: 0 auto; }
.soon-rule .eyebrow { margin-bottom: var(--s-5); font-size: var(--t-m); letter-spacing: 0.38em; padding-left: 0.38em; }
.soon-rule p { font-family: var(--serif); font-weight: 500; font-size: var(--t-display-l);
  line-height: 1.1; letter-spacing: -0.005em; color: var(--ink); margin: 0; text-wrap: nowrap; }

/* ---- closing contact band, dark variant ----
   Sits between the light affiliations band and the white WISE band so the
   three closing sections read as distinct blocks rather than one grey field. */
.contact--dark { background: var(--ink); }
.contact--dark h2, .contact--dark .cd-item .v { color: var(--paper); }
.contact--dark .eyebrow { color: var(--stone-light); }
.contact--dark p { color: rgba(255,255,255,0.74); }
.contact--dark .cd-item .k { color: var(--stone); }
.contact--dark .btn { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.contact--dark .btn:hover { background: transparent; color: var(--paper); }

/* WISE slide in the hero rotation — a branded panel, not a photograph */
.hero-slide--wise { display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: clamp(14px,1.8vh,22px); background: #E8E5DF; padding: clamp(28px,4.5vw,60px);
  text-align: center; overflow-y: auto; }
.hero-slide--wise .hs-eyebrow { font-size: var(--t-xs); letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--label); padding-left: 0.34em; }
.hero-slide--wise .hs-mark { display: block; width: min(360px, 72%); margin-top: 2px; }
.hero-slide--wise .hs-mark img { width: 100%; height: auto; display: block; }
.hero-slide--wise .hs-line { font-family: var(--serif); font-weight: 500;
  font-size: clamp(23px,2.4vw,36px); line-height: 1.16; letter-spacing: -0.005em; color: var(--ink); }
.hero-slide--wise .hs-body { font-size: clamp(14px,1.1vw,16.5px); line-height: 1.7;
  color: var(--ink-soft); max-width: 48ch; }
.hero-slide--wise .hs-cta { font-family: var(--sans); font-weight: 500; font-size: 13.5px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink);
  border-bottom: 1px solid var(--ink); padding-bottom: 4px; margin-top: 4px; }
.hero-slide--wise:hover .hs-mark { opacity: 0.86; }
@media (max-width: 1000px) { .hero-slide--wise .hs-body { display: none; } }

/* WISE named in running text: set in type, not as the raster lockup — the
   full-colour mark is illegible at body size and breaks the ink/paper palette.
   The lockup does the branding work at large sizes in the slide and band. */
/* WISE lockup set inline in the hero slide's paragraph */
.hero-slide--wise .wise-inline, .wise-band .wise-inline { height: 1.75em; width: auto; vertical-align: -0.46em; display: inline-block; }

.wise-word { font-weight: 500; letter-spacing: 0.06em; color: var(--ink); }

/* not-yet-live destination: reads as the button it will become, but inert */
.btn--soon { background: transparent; color: var(--label); border-color: var(--line);
  cursor: default; pointer-events: none; }
.hs-cta--soon { color: var(--label) !important; border-color: var(--line) !important; }

/* ---- WISE band ---- */
.wise-band { background: var(--paper); border-top: 1px solid var(--line); }
.wise-band-grid { display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px,6vw,96px); align-items: center; }
.wise-band h2 { font-family: var(--serif); font-weight: 500; font-size: var(--t-display-s);
  line-height: 1.08; letter-spacing: -0.005em; margin: var(--s-5) 0 var(--s-5); }
.wise-band p { font-size: var(--t-l); line-height: 1.78; color: var(--ink-soft);
  max-width: 46ch; margin-bottom: var(--s-7); }
.wise-band .btn { white-space: nowrap; }
.wise-band-mark { display: block; width: min(520px, 96%); justify-self: center; transition: opacity .3s; }
.wise-band-mark img { width: 100%; height: auto; display: block; }
.wise-band-mark:hover { opacity: 0.82; }
@media (max-width: 1000px) { .wise-band-grid { grid-template-columns: 1fr; }
  .wise-band-mark { width: 82%; margin-top: var(--s-4); } }

/* ---- WISE accent + mark ----
   Sampled from the logo's own artwork: #E89030, the bright amber-orange of the
   E (WISE-BRAND-NOTES.md token "Amber", #E09A2B). Brighter than the burnt
   orange; still one accent element per screen. */
.wise-accent { color: #F9432B; }
.wise-mark { display: block; width: min(560px, 68%); margin: clamp(56px,7vh,88px) auto 0; }
.wise-mark img { width: 100%; height: auto; display: block; }
@media (max-width: 700px) { .wise-mark { width: 86%; } }
/* the lead mark held between rules, with air above and below so it reads as a moment */
.wise-mark-frame { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: clamp(80px,12vh,160px) 0; margin: clamp(22px,3vh,40px) 0 clamp(20px,3vh,36px); }
/* lead mark — on the white ground, so the owl needs no chip */
.wise-mark-lead { display: block; width: min(620px, 74%); margin: 0 auto; transition: opacity .3s; }
.wise-mark-lead img { width: 100%; height: auto; display: block; }
.wise-mark-lead:hover { opacity: 0.82; }
@media (max-width: 700px) { .wise-mark-lead { width: 88%; } }
.wise-mark-sm { position: absolute; right: var(--gutter); bottom: clamp(30px,4vh,52px); width: 132px;
  opacity: 0.85; transition: opacity .3s; }
.wise-mark-sm img { width: 100%; height: auto; display: block; }
.wise-mark-sm:hover { opacity: 1; }
@media (max-width: 760px) { .wise-mark-sm { position: static; margin: var(--s-8) auto 0; width: 116px; } }

/* ---- notice / callout ---- */
.notice { border: 1px solid var(--line); padding: var(--s-6) var(--s-7); margin: var(--s-8) 0; }
.notice .eyebrow { margin-bottom: var(--s-4); }
.notice h3 { font-family: var(--serif); font-weight: 500; font-size: var(--t-display-xs);
  letter-spacing: -0.005em; margin-bottom: var(--s-4); }
.notice p { font-size: var(--t-base); line-height: 1.75; color: var(--ink-soft); margin-bottom: var(--s-3); }
.notice p:last-child { margin-bottom: 0; }
.notice ul { list-style: none; margin: var(--s-3) 0 0; }
.notice li { font-size: var(--t-base); line-height: 1.7; color: var(--ink-soft);
  padding: var(--s-2) 0 var(--s-2) 22px; position: relative; }
.notice li:before { content: "—"; position: absolute; left: 0; top: var(--s-2); color: var(--stone); }
.notice--scope { background: var(--mist); border-color: var(--line-soft); }
.notice--scope strong { font-weight: 500; color: var(--ink); }
.notice--scope a { border-bottom: 1px solid var(--line); }
.notice--scope a:hover { border-color: var(--ink); }
.notice--urgent { border-left: 3px solid var(--error); background: var(--error-bg); }
.notice--urgent .eyebrow { color: var(--error); }
.notice--urgent strong { font-weight: 500; color: var(--ink); }
.notice--urgent a { color: var(--error); border-bottom: 1px solid var(--error); }
.notice--urgent li:before { color: var(--error); }
.notice--quiet { border: 0; border-top: 1px solid var(--ink); padding: var(--s-6) 0 0; }

/* ---- at-a-glance panel ---- */
.glance { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); padding: var(--s-7) 0; }
.glance-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--s-6); }
.glance .g-k { font-size: var(--t-xs); letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--label); margin-bottom: var(--s-2); }
.glance .g-v { font-family: var(--serif); font-size: var(--t-xl); line-height: 1.4; color: var(--ink); }
.glance .g-note { font-size: var(--t-m); line-height: 1.6; color: var(--ink-soft); margin-top: var(--s-5); }

/* key/value rows (legal pages) */
.glance { container-type: inline-size; }
.glance-row { display: grid; grid-template-columns: 1fr; gap: var(--s-2);
  padding: var(--s-5) 0; border-bottom: 1px solid var(--line); }
/* side by side only once the value column can hold a real measure (~50ch) */
@container (min-width: 700px) {
  .glance-row { grid-template-columns: minmax(0,0.4fr) minmax(0,1fr); gap: var(--s-3) var(--s-7); }
}
.glance-row:last-child { border-bottom: 0; padding-bottom: 0; }
.glance-row:first-child { padding-top: 0; }
.glance-k { font-family: var(--sans); font-weight: 500; font-size: var(--t-s); line-height: 1.5;
  color: var(--ink); }
.glance-v { font-size: var(--t-m); line-height: 1.75; color: var(--ink-soft); }
.legal .glance-v a { border-bottom: 1px solid var(--line); }


/* ---- download / file item ---- */
.dl-list { display: flex; flex-direction: column; }
.dl { display: grid; grid-template-columns: 1fr auto; gap: var(--s-5); align-items: center;
  padding: var(--s-6) 0; border-top: 1px solid var(--line-soft); }
.dl:last-child { border-bottom: 1px solid var(--line-soft); }
.dl h3 { font-family: var(--serif); font-weight: 500; font-size: var(--t-display-xs);
  letter-spacing: -0.005em; margin-bottom: var(--s-2); }
.dl p { font-size: var(--t-base); line-height: 1.7; color: var(--ink-soft); max-width: 52ch; }
.dl .dl-meta { font-size: var(--t-xs); letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--label); margin-top: var(--s-3); display: flex; flex-wrap: wrap; gap: 8px 18px; }

/* ---- related items ---- */
.related { border-top: 1px solid var(--ink); padding-top: var(--s-8); margin-top: var(--s-11); }
/* inside .article the measure is 680px — related items break out to the full wrap */
.article .related { max-width: var(--w-wrap); width: calc(100vw - (2 * var(--gutter)));
  max-width: min(var(--w-wrap), calc(100vw - (2 * var(--gutter))));
  margin-left: 50%; transform: translateX(-50%); }
.related h2 { font-family: var(--sans); font-weight: 500; font-size: var(--t-s); letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: var(--s-7); }

/* ---- pagination ---- */
.pager { display: flex; align-items: center; justify-content: space-between; gap: var(--s-5);
  border-top: 1px solid var(--ink); padding-top: var(--s-6); margin-top: var(--s-9); }
.pager-pages { display: flex; gap: 4px; }
.pager-pages a, .pager-pages span { min-width: 44px; min-height: 44px; display: inline-flex;
  align-items: center; justify-content: center; font-size: var(--t-s); letter-spacing: 0.1em;
  color: var(--ink-soft); transition: background .3s, color .3s; }
.pager-pages a:hover { background: var(--paper-2); color: var(--ink); }
.pager-pages [aria-current] { background: var(--ink); color: var(--paper); }
.pager .link-ul { font-size: var(--t-xs); }
.pager [aria-disabled="true"] { color: var(--stone); border-color: var(--line); pointer-events: none; }

/* ---- newsletter capture ---- */
.signup { display: grid; grid-template-columns: 1fr auto; gap: var(--s-3); align-items: end;
  max-width: 480px; }
.signup .field { gap: 6px; }
.signup--band { background: var(--mist); border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line); }
footer .signup { max-width: none; grid-template-columns: 1fr; gap: var(--s-3); }
footer .signup input { background: transparent; border-color: rgba(255,255,255,0.28); color: var(--paper); }
footer .signup input::placeholder { color: rgba(255,255,255,0.45); }
footer .signup .btn { background: var(--paper); color: var(--ink); border-color: var(--paper); }
footer .signup .btn:hover { background: transparent; color: var(--paper); }
footer .signup label { color: var(--stone-light); }
.consent { display: grid; grid-template-columns: auto 1fr; gap: var(--s-3); align-items: start; }
.consent input[type="checkbox"] { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--ink); }
.consent label { font-size: var(--t-m); line-height: 1.6; letter-spacing: 0; text-transform: none;
  color: var(--ink-soft); }
.consent a { border-bottom: 1px solid var(--line); }

/* ---- cookie consent ---- */
.cookie { position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-overlay);
  background: var(--ink); color: var(--paper); padding: var(--s-6) 0; }
.cookie-inner { display: grid; grid-template-columns: 1fr auto; gap: var(--s-6); align-items: center; }
.cookie p { font-size: var(--t-m); line-height: 1.65; color: rgba(255,255,255,0.8); max-width: 62ch; }
.cookie p a { border-bottom: 1px solid rgba(255,255,255,0.4); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.cookie .btn { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.cookie .btn:hover { background: transparent; color: var(--paper); }
.cookie .btn--ghost { background: transparent; color: var(--paper); border-color: rgba(255,255,255,0.45); }
.cookie .btn--ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.cookie-prefs { margin-top: var(--s-6); padding-top: var(--s-5); border-top: 1px solid rgba(255,255,255,0.16); }
.cookie-prefs .row { display: grid; grid-template-columns: auto 1fr; gap: var(--s-4);
  padding: var(--s-4) 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.cookie-prefs h4 { font-size: var(--t-s); font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 6px; }
.cookie-prefs p { font-size: 13px; }

/* ---- 404 ---- */
.oops { min-height: 66vh; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; }
.oops .num { font-family: var(--serif); font-style: italic; font-size: clamp(72px,12vw,180px);
  line-height: 1; color: var(--stone); }
.oops h1 { font-family: var(--serif); font-weight: 500; font-size: var(--t-display-m);
  line-height: 1.1; letter-spacing: -0.005em; margin: var(--s-5) 0 var(--s-4); text-wrap: balance; }
.oops p { font-size: var(--t-l); line-height: 1.75; color: var(--ink-soft); max-width: 46ch; margin-bottom: var(--s-7); }
.oops-links { display: flex; flex-wrap: wrap; gap: var(--s-5) var(--s-7); justify-content: center; }

/* ---- legal / long-form ---- */
.legal { max-width: var(--w-prose); margin: 0 auto; }

/* legal pages: contents as a sticky left rail, prose to its right */
.legal-layout { display: grid; grid-template-columns: 250px minmax(0,1fr); gap: clamp(32px,5vw,80px);
  align-items: start; max-width: 1180px; margin: 0 auto; }
.legal-layout .legal { max-width: none; margin: 0; }
.legal-layout .toc { position: sticky; top: 104px; background: transparent; padding: 0;
  margin: 0; border-left: 1px solid var(--line); }
.legal-layout .toc h2 { font-family: var(--sans); font-weight: 500; font-size: var(--t-xs);
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--label);
  margin: 0 0 var(--s-4); padding-left: var(--s-5); }
.legal-layout .toc ol { list-style: none; counter-reset: t; margin: 0; }
.legal-layout .toc li { counter-increment: t; padding: 0; margin: 0; position: static; }
.legal-layout .toc li:before { content: none; }
.legal-layout .toc a { display: block; padding: 7px 0 7px var(--s-5); margin-left: -1px;
  border-left: 1px solid transparent; border-bottom: 0; font-size: var(--t-s);
  line-height: 1.45; color: var(--ink-soft); }
.legal-layout .toc a:before { content: counter(t) "."; color: var(--stone);
  font-family: var(--serif); font-style: italic; margin-right: 7px; }
.legal-layout .toc a:hover { color: var(--ink); border-left-color: var(--stone); }
.legal-layout .toc a[aria-current="true"] { color: var(--ink); border-left-color: var(--ink); }
@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; gap: var(--s-8); }
  .legal-layout .toc { position: static; border-left: 0; border-bottom: 1px solid var(--line);
    padding-bottom: var(--s-6); }
  .legal-layout .toc h2, .legal-layout .toc a { padding-left: 0; }
  .legal-layout .toc a { border-left: 0; margin-left: 0; }
}
.legal .updated { font-size: var(--t-xs); letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--label); padding-bottom: var(--s-5); border-bottom: 1px solid var(--line); margin-bottom: var(--s-8); }
.legal h2 { font-family: var(--serif); font-weight: 500; font-size: var(--t-display-xs);
  letter-spacing: -0.005em; margin: var(--s-9) 0 var(--s-4); }
.legal h3 { font-family: var(--sans); font-weight: 500; font-size: var(--t-l); margin: var(--s-6) 0 var(--s-3); }
.legal p, .legal li { font-size: var(--t-base); line-height: 1.8; color: var(--ink-soft); margin-bottom: var(--s-4); }
.legal ul { list-style: none; }
.legal ul li { padding-left: 22px; position: relative; margin-bottom: var(--s-3); }
.legal ul li:before { content: "—"; position: absolute; left: 0; color: var(--stone); }
.legal a { border-bottom: 1px solid var(--line); }
.legal .toc { background: var(--mist); padding: var(--s-6); margin-bottom: var(--s-9); }
.legal .toc h2 { font-family: var(--sans); font-size: var(--t-s); letter-spacing: 0.18em;
  text-transform: uppercase; margin: 0 0 var(--s-4); }
.legal .toc ol { list-style: none; counter-reset: t; }
.legal .toc li { counter-increment: t; padding-left: 26px; position: relative; margin-bottom: 8px;
  font-size: var(--t-m); }
.legal .toc li:before { content: counter(t); position: absolute; left: 0;
  font-family: var(--serif); font-style: italic; color: var(--stone); }

/* ---- FAQ accordion (was contact-only, now shared) ---- */
.faq { border-top: 1px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--line-soft); }
.faq summary { cursor: pointer; list-style: none; padding: var(--s-6) 0; display: flex;
  align-items: baseline; justify-content: space-between; gap: var(--s-5);
  font-family: var(--serif); font-weight: 500; font-size: clamp(18px,1.7vw,22px);
  letter-spacing: -0.005em; color: var(--ink); transition: color .3s; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--stone); }
.faq summary .mk { font-family: var(--sans); font-size: var(--t-l); color: var(--stone); flex-shrink: 0;
  transition: transform .3s; }
.faq details[open] summary .mk { transform: rotate(45deg); }
.faq .ans { padding: 0 0 var(--s-6); max-width: 62ch; }
.faq .ans p { font-size: var(--t-base); line-height: 1.8; color: var(--ink-soft); margin-bottom: var(--s-3); }
.faq .ans p:last-child { margin-bottom: 0; }

/* ---- new components: responsive ---- */
@media (max-width: 1000px) {
  .glance-grid { grid-template-columns: 1fr 1fr; }
  .cookie-inner { grid-template-columns: 1fr; }
  .dl { grid-template-columns: 1fr; }
  .signup { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .glance-grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .pager { flex-direction: column; align-items: stretch; gap: var(--s-5); }
  .pager-pages { justify-content: center; }
}

/* ---- article closing call to action ---- */
.art-cta { background: var(--ink); }
.art-cta h2, .art-cta .cd-item .v, .art-cta .glance .g-v { color: var(--paper); }
.art-cta .eyebrow { color: var(--stone-light); }
.art-cta p { color: rgba(255,255,255,0.78); }
.art-cta .glance .g-k { color: rgba(255,255,255,0.72); }
.art-cta .glance { border-color: rgba(255,255,255,0.24); }
.art-cta .btn { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.art-cta .btn:hover { background: transparent; color: var(--paper); }

/* --clinic tile parity-- */
.clinic-row .tile-media{aspect-ratio:3/2!important}
.clinic-row .tile-media image-slot{width:100%;height:100%}

/* --fd frame-- the stages illustration is 16:9; match the frame so contain fills it */
.split-media.wide.fd-frame{aspect-ratio:16/9}

/* --door frame-- portrait photo of the clinic entrance; match its 3:4 ratio so nothing is cropped */
.split-media.wide.door-frame{aspect-ratio:3/4}

/* --therapy illo frame-- 1496×1051 line art; match the ratio so contain fills the frame */
.split-media.wide.illo-frame{aspect-ratio:1496/1051}

/* visually hidden, still read by screen readers and crawlers */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* --wheel illo frame-- 1374×1145 diagrams */
.split-media.wide.illo-frame-b{aspect-ratio:1374/1145}

/* --baby spoon frame-- 1516×1038 white-ground shot */
.split-media.wide.wide-frame{aspect-ratio:1516/1038}

/* --wise static panel-- the same visual as the hero slide, but outside the rotator:
   no inner scrolling, no fixed ratio, and the paragraph stays on small screens */
.hero-slide--wise.wise-static{overflow:visible;aspect-ratio:auto;min-height:clamp(320px,42vw,470px);padding-top:clamp(78px,7.8vw,104px);padding-bottom:clamp(56px,5.6vw,76px)}
.hero-slide--wise.wise-static .wise-soon{margin-bottom:26px}
.hero-slide--wise.wise-static .hs-body{display:block!important}

.wise-soon{color:var(--ink);font-family:var(--serif);font-weight:600;font-size:clamp(34px,5vw,72px);line-height:1;letter-spacing:0.01em;margin-top:clamp(28px,3.4vw,52px);margin-bottom:clamp(48px,5.95vw,90px);display:block}

/* ---- Research & Advisory: typographic strand list ---- */
.svc-list{display:grid;gap:0}
.svc-row{display:grid;grid-template-columns:minmax(170px,1fr) minmax(0,2.4fr);gap:clamp(24px,4vw,64px);padding:clamp(30px,3.6vw,48px) 0;border-top:1px solid var(--line)}
.svc-row:last-child{border-bottom:1px solid var(--line)}
.svc-idx{display:flex;flex-direction:column;gap:10px}
.svc-n{font-family:var(--serif);font-style:italic;font-weight:400;font-size:clamp(30px,3.4vw,44px);line-height:1;color:var(--stone)}
.svc-lbl{font-family:var(--sans);font-weight:500;font-size:11px;letter-spacing:0.2em;text-transform:uppercase;color:var(--label)}
.svc-body h2{font-family:var(--serif);font-weight:500;font-size:clamp(24px,2.5vw,34px);line-height:1.15;margin-bottom:16px}
.svc-body p{max-width:62ch;margin-bottom:18px}
.svc-body p:last-of-type{margin-bottom:0}
.svc-body .link-ul{margin-top:20px}
.split--portrait{align-items:center}
.split--portrait .split-media{max-height:620px}
/* the portrait stays 4:5 — the shared 16/10 landscape box below 1000px crops the face */
@media(max-width:1000px){.split--portrait .split-media{aspect-ratio:4/5;order:0}}
@media(max-width:860px){.svc-row{grid-template-columns:1fr;gap:14px}.svc-idx{flex-direction:row;align-items:baseline;gap:14px}}

/* --portrait frame-- 1028×1530 upload; a 2:3 box shows the whole figure */
.split-media.portrait-frame{aspect-ratio:2/3;max-height:620px}
@media(max-width:1000px){.split-media.portrait-frame{aspect-ratio:2/3;order:0}}

/* ---- trade mark notices ---- */
.tm { font-size: 0.5em; font-weight: 400; line-height: 1; vertical-align: super;
  letter-spacing: 0; margin-left: 0.15em; }
/* lockup marks: anchor to the logo's top-right rather than wrapping below it */
.wise-mark-lead, .wise-mark, .wise-band-mark, .hs-mark { position: relative; padding-bottom: 26px; }
.hs-mark { padding-bottom: 18px; }
/* .wise-mark-sm keeps its own absolute corner placement */
.wise-mark-sm { padding-bottom: 20px; }
.tm--block { position: absolute; bottom: 0; right: 0; top: auto; margin-left: 0;
  font-size: 15px; line-height: 1; vertical-align: baseline; }
.wise-mark-lead .tm--block { font-size: 20px; }
.wise-mark .tm--block { font-size: 18px; }
.wise-band-mark .tm--block { font-size: 18px; }
.hs-mark .tm--block { font-size: 13px; }
.wise-mark-sm .tm--block { font-size: 14px; }
img.wise-inline + sup.tm { vertical-align: -0.46em; }
.foot-legal { margin-top: var(--s-5); padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,0.14); font-size: var(--t-xs);
  letter-spacing: 0.06em; line-height: 1.7; color: var(--paper-3, #C4BFB5); }
.foot-legal p { margin: 0; max-width: 92ch; }
.foot-legal p + p { margin-top: var(--s-2); }
.foot-rights { margin-top: var(--s-5); padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,0.14); font-size: var(--t-xs);
  letter-spacing: 0.06em; color: var(--paper-3, #C4BFB5); }
