/* ==========================================================================
   Dr Ron Ehrlich — design system v2
   Typography: PP Editorial New (display) + PP Neue Montreal (body)
   Palette: Paper, Ink, Rule, Blush, Oxide

   v2 distinctions vs v1: Library card grid (with hover-to-reveal as the one
   non-obvious interaction), Practitioner block, expanded Book pipeline,
   anatomical hero composition (no typographic-plate hold-position).

   Font loading strategy:
   - Online: PP Editorial New + PP Neue Montreal load from Fontshare CDN.
   - Offline / CDN unreachable: IBM Plex Serif + IBM Plex Sans + IBM Plex Mono
     are self-hosted from /assets/fonts/ as the active fallback. The font-family
     stacks below cascade Editorial New → IBM Plex Serif → system-serif so the
     page renders in editorial type on any connection.
   ========================================================================== */

@import url("https://api.fontshare.com/v2/css?f[]=editorial-new@200,400,500,700,400i&f[]=neue-montreal@400,500,700,400i&f[]=supply-mono@400&display=swap");

/* --- Self-hosted fallbacks (IBM Plex, woff2/woff via relative paths) ----- */
@font-face {
  font-family: "IBM Plex Serif";
  font-style: normal; font-weight: 400; font-display: swap;
  src: url("./fonts/IBMPlexSerif-400Regular.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Serif";
  font-style: italic; font-weight: 400; font-display: swap;
  src: url("./fonts/IBMPlexSerif-400Italic.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Serif";
  font-style: normal; font-weight: 500; font-display: swap;
  src: url("./fonts/IBMPlexSerif-500Regular.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Serif";
  font-style: normal; font-weight: 700; font-display: swap;
  src: url("./fonts/IBMPlexSerif-700Regular.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal; font-weight: 400; font-display: swap;
  src: url("./fonts/IBMPlexSans-400Regular.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: italic; font-weight: 400; font-display: swap;
  src: url("./fonts/IBMPlexSans-400Italic.woff") format("woff");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal; font-weight: 500; font-display: swap;
  src: url("./fonts/IBMPlexSans-500Regular.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal; font-weight: 700; font-display: swap;
  src: url("./fonts/IBMPlexSans-700Regular.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal; font-weight: 400; font-display: swap;
  src: url("./fonts/IBMPlexMono-400Regular.woff2") format("woff2");
}

/* --- Tokens ------------------------------------------------------------- */

:root {
  --paper:   #FAFAF7;
  --ink:     #1A1714;
  --rule:    #6B6660;
  --blush:   #F1E4DD;
  --oxide:   #B33A2E;

  --display: "Editorial New", "IBM Plex Serif", "Times New Roman", serif;
  --sans:    "Neue Montreal", "IBM Plex Sans", "Helvetica Neue", system-ui, sans-serif;
  --mono:    "Supply Mono", "IBM Plex Mono", ui-monospace, "SF Mono", monospace;

  /* modular scale, ratio 1.250, base 16px */
  --step--1: 0.8125rem; /* 13 */
  --step-0:  1rem;      /* 16 */
  --step-1:  1.25rem;   /* 20 */
  --step-2:  1.5625rem; /* 25 */
  --step-3:  1.953rem;  /* 31 */
  --step-4:  2.441rem;  /* 39 */
  --step-5:  3.052rem;  /* 49 */
  --step-6:  3.815rem;  /* 61 */
  --step-7:  4.768rem;  /* 76 */

  --measure-body: 64ch;
  --measure-display: 18ch;
  --measure-caption: 50ch;

  --baseline: 8px;
  --section-pad: 96px;
  --section-pad-mobile: 56px;
}

/* --- Reset (light) ------------------------------------------------------ */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; padding: 0; color: inherit; }
input { font: inherit; color: inherit; }

/* --- Base typography ---------------------------------------------------- */

html { font-size: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.55;
  font-feature-settings: "kern", "liga", "calt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p { max-width: var(--measure-body); }

a { transition: color 200ms ease; }
a:hover, a:focus-visible { color: var(--oxide); }
a:focus-visible { outline: 2px solid var(--oxide); outline-offset: 3px; }

::selection { background: var(--oxide); color: var(--paper); }

/* Display headings (PP Editorial New) */
.display, h1.display, h2.display { font-family: var(--display); font-weight: 700; line-height: 1.05; letter-spacing: -0.015em; max-width: var(--measure-display); }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; line-height: 1.15; }
h2 { font-size: var(--step-4); line-height: 1.15; }
h3 { font-size: var(--step-3); line-height: 1.2; }
h4 { font-size: var(--step-2); line-height: 1.25; }

.body-lead { font-size: var(--step-1); line-height: 1.5; max-width: var(--measure-body); }

.caption, figcaption, .meta {
  font-family: var(--mono);
  font-size: var(--step--1);
  color: var(--rule);
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-transform: none;
}

.eyebrow {
  font-family: var(--mono);
  font-size: var(--step--1);
  color: var(--rule);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

em, .italic { font-style: italic; }

/* Pull quote */
.pullquote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: var(--step-2);
  line-height: 1.3;
  max-width: 64ch;
  margin: calc(var(--baseline) * 6) 0 calc(var(--baseline) * 4);
  padding-top: calc(var(--baseline) * 3);
  border-top: 1px solid var(--ink);
  color: var(--ink);
}
.pullquote-attr { display: block; font-family: var(--mono); font-style: normal; font-size: var(--step--1); color: var(--rule); margin-top: calc(var(--baseline) * 2); }

/* Drop cap (used once per long-form page) */
.dropcap::first-letter {
  font-family: var(--display);
  font-weight: 700;
  font-size: 4.7em;
  float: left;
  line-height: 0.85;
  margin: 0.05em 0.08em -0.05em 0;
  color: var(--oxide);
}

/* --- Container / grid --------------------------------------------------- */

.container { width: 100%; max-width: 1280px; margin-inline: auto; padding-inline: 20px; }

@media (min-width: 768px) {
  .container { padding-inline: 48px; }
}
@media (min-width: 1440px) {
  .container { padding-inline: 96px; }
}

.section { padding-block: var(--section-pad-mobile); }
.section + .section { border-top: 1px solid var(--ink); }
@media (min-width: 768px) { .section { padding-block: var(--section-pad); } }

.grid-12 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (min-width: 768px) { .grid-12 { grid-template-columns: repeat(8, 1fr); gap: 20px; } }
@media (min-width: 1024px) { .grid-12 { grid-template-columns: repeat(12, 1fr); gap: 24px; } }

.col-span-1  { grid-column: span 1; }
.col-span-2  { grid-column: span 2; }
.col-span-3  { grid-column: span 3; }
.col-span-4  { grid-column: span 4; }
.col-span-5  { grid-column: span 5; }
.col-span-6  { grid-column: span 6; }
.col-span-7  { grid-column: span 7; }
.col-span-8  { grid-column: span 8; }
.col-span-9  { grid-column: span 9; }
.col-span-10 { grid-column: span 10; }
.col-span-12 { grid-column: 1 / -1; }

@media (max-width: 767px) {
  [class*="col-span-"] { grid-column: 1 / -1; }
}

/* --- Masthead ----------------------------------------------------------- */

.masthead {
  padding-block: 28px;
  border-bottom: 1px solid var(--ink);
}

.masthead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand { display: flex; flex-direction: column; gap: 4px; }
.brand-name { font-family: var(--display); font-weight: 700; font-size: var(--step-2); line-height: 1; letter-spacing: -0.01em; }
.brand-creds { font-family: var(--mono); font-size: var(--step--1); color: var(--rule); letter-spacing: 0.04em; }

.nav { display: flex; gap: 28px; flex-wrap: wrap; }
.nav a { font-family: var(--sans); font-size: var(--step-0); position: relative; padding-block: 4px; }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--oxide);
}

@media (max-width: 767px) {
  .nav { gap: 16px; font-size: var(--step--1); }
  .brand-name { font-size: var(--step-1); }
}

/* --- Buttons / CTAs ----------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: var(--step-0);
  line-height: 1;
  color: var(--ink);
  background: transparent;
  border: 1.5px solid var(--ink);
  border-radius: 0;
  text-decoration: none;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.btn:hover, .btn:focus-visible {
  background: var(--oxide);
  border-color: var(--oxide);
  color: var(--paper);
}

.btn--primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--oxide);
  border-color: var(--oxide);
  color: var(--paper);
}

.btn .arrow { transition: transform 200ms ease; }
.btn:hover .arrow, .btn:focus-visible .arrow { transform: translateX(4px); }

.link-cta {
  font-family: var(--sans);
  font-weight: 500;
  color: var(--oxide);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.link-cta:hover, .link-cta:focus-visible { color: var(--ink); }

/* --- Hero --------------------------------------------------------------- */

.hero { padding-block: 80px 96px; }
@media (min-width: 768px) { .hero { padding-block: 120px 144px; } }

.hero-headline {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(3.052rem, 7vw, 4.768rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 18ch;
}

.hero-headline .accent { color: var(--oxide); font-style: italic; font-weight: 500; }

.hero-sub {
  font-size: var(--step-1);
  line-height: 1.45;
  margin-top: 32px;
  max-width: 56ch;
  color: var(--ink);
}

.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 40px; }

.hero-meta {
  font-family: var(--mono);
  font-size: var(--step--1);
  color: var(--rule);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-portrait {
  background: var(--blush);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}
.hero-portrait svg { width: 100%; height: 100%; }
/* Mobile composition: portrait below the fold entirely, per design-system.md. */
@media (max-width: 767px) {
  .hero-portrait { display: none; }
}
.hero-portrait .portrait-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  font-family: var(--mono);
  font-size: var(--step--1);
  color: var(--ink);
}

/* --- Chart -------------------------------------------------------------- */

.chart-section { background: var(--paper); }

.chart-figure { margin-top: 56px; }
.chart-figure svg { width: 100%; height: auto; max-width: 980px; margin-inline: auto; display: block; }
.chart-figure figcaption { margin-top: 24px; max-width: 64ch; }

/* --- Brief / lead-magnet ------------------------------------------------ */

.brief-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
  max-width: 540px;
}
.brief-form input[type="email"] {
  flex: 1 1 280px;
  padding: 14px 18px;
  background: transparent;
  border: 1.5px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--step-0);
}
.brief-form input[type="email"]:focus-visible { outline: 2px solid var(--oxide); outline-offset: 2px; }
.brief-form input[type="email"]::placeholder { color: var(--rule); }

/* --- Step ladder -------------------------------------------------------- */

.steps { margin-top: 56px; display: grid; gap: 56px; }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 48px; } }

.step-num { font-family: var(--mono); font-size: var(--step--1); color: var(--oxide); letter-spacing: 0.08em; }
.step-title { font-family: var(--display); font-weight: 400; font-size: var(--step-3); line-height: 1.2; margin-top: 16px; }
.step-body { margin-top: 18px; max-width: 36ch; color: var(--ink); }
.step + .step { padding-top: 56px; border-top: 1px solid var(--rule); }
@media (min-width: 1024px) {
  .step + .step { border-top: 0; padding-top: 0; padding-left: 48px; border-left: 1px solid var(--rule); }
}

/* --- Block: independence-claim ------------------------------------------ */

.independence p { max-width: 60ch; }
.independence p + p { margin-top: 24px; }
.independence .reviewer-line { font-style: italic; color: var(--rule); margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--rule); max-width: 64ch; }

/* --- Credentials -------------------------------------------------------- */

.creds-block p { max-width: 64ch; }
.creds-block p + p { margin-top: 24px; }

/* --- Footer ------------------------------------------------------------- */

.site-footer {
  margin-top: 0;
  padding-block: 64px;
  border-top: 1px solid var(--ink);
  background: var(--paper);
}
.footer-grid { display: grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }

.footer-brand { font-family: var(--display); font-weight: 700; font-size: var(--step-2); }
.footer-creds { font-family: var(--mono); font-size: var(--step--1); color: var(--rule); margin-top: 8px; letter-spacing: 0.04em; }
.footer-col h3 { font-family: var(--mono); font-size: var(--step--1); color: var(--rule); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; font-weight: 400; line-height: 1.4; }
.footer-col ul li + li { margin-top: 10px; }
.footer-col a { font-size: var(--step-0); }
.footer-col a:hover { color: var(--oxide); }

.footer-meta { margin-top: 64px; padding-top: 28px; border-top: 1px solid var(--rule); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-meta p { font-family: var(--mono); font-size: var(--step--1); color: var(--rule); margin: 0; }

/* --- Consultation page-specific ----------------------------------------- */

.consultation-hero .hero-headline { color: var(--ink); }
.consultation-hero .hero-headline .price { color: var(--oxide); }

.consultation-receive { display: grid; gap: 48px; margin-top: 56px; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .consultation-receive { grid-template-columns: repeat(3, 1fr); gap: 64px; } }

.receive-block h3 { font-family: var(--display); font-style: italic; font-weight: 400; font-size: var(--step-2); line-height: 1.25; margin-bottom: 16px; }
.receive-block .receive-meta { font-family: var(--mono); font-size: var(--step--1); color: var(--rule); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
.receive-block p { max-width: 38ch; }

.who-grid { display: grid; gap: 48px; margin-top: 48px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .who-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.who-grid h3 { font-family: var(--display); font-weight: 500; font-size: var(--step-2); line-height: 1.25; margin-bottom: 20px; }
.who-grid p { max-width: 42ch; }

.assessment-pentagon { display: block; margin: 56px auto 0; max-width: 560px; }

.case-grid { display: grid; gap: 32px; margin-top: 48px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .case-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
.case-card { padding: 40px; background: var(--blush); border: 1px solid var(--ink); }
.case-card h3 { font-family: var(--display); font-weight: 500; font-size: var(--step-2); line-height: 1.25; margin-bottom: 16px; }
.case-card p { max-width: 42ch; }
.case-card .case-meta { font-family: var(--mono); font-size: var(--step--1); color: var(--ink); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; }

.booking { background: var(--ink); color: var(--paper); padding: 56px; margin-top: 48px; }
.booking h3 { color: var(--paper); }
.booking .booking-form { display: grid; gap: 16px; max-width: 560px; margin-top: 28px; }
.booking input { padding: 14px 18px; background: transparent; border: 1.5px solid var(--paper); color: var(--paper); border-radius: 0; }
.booking input::placeholder { color: rgba(250, 250, 247, 0.6); }
.booking .btn { background: var(--paper); color: var(--ink); border-color: var(--paper); margin-top: 8px; align-self: start; }
.booking .btn:hover { background: var(--oxide); border-color: var(--oxide); color: var(--paper); }
.booking p.trust { font-family: var(--mono); font-size: var(--step--1); color: rgba(250, 250, 247, 0.8); margin-top: 24px; max-width: 64ch; }

.disclosure { padding-top: 56px; border-top: 1px solid var(--ink); }
.disclosure p { max-width: 64ch; color: var(--rule); }

/* --- Utility ------------------------------------------------------------ */

.eyebrow + h2, .eyebrow + h1 { margin-top: 16px; }
.mt-1 { margin-top: 16px; }
.mt-2 { margin-top: 32px; }
.mt-3 { margin-top: 48px; }
.mt-4 { margin-top: 64px; }
.text-rule { color: var(--rule); }
.measure { max-width: var(--measure-body); }

/* Hide skip-link until focused */
.skip-link {
  position: absolute; left: -9999px; top: 0; padding: 12px 16px;
  background: var(--ink); color: var(--paper); z-index: 100;
}
.skip-link:focus { left: 16px; top: 16px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ============================================================================
   v2-distinct components
   ============================================================================ */

/* --- Hero anatomical composition ---------------------------------------- */
/* Replaces v1's typographic-plate hold-position. The illustration is an
   anatomical-style cross-section of a molar with periodontal ligament
   labelled — drawing the eye to the structure most-implicated in the
   oral-systemic axis. Public-domain reference: Gray's Anatomy 1858, plate XII. */

.hero-anatomy {
  background: var(--blush);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}
.hero-anatomy svg { width: 100%; height: 100%; display: block; }
@media (max-width: 767px) {
  .hero-anatomy { display: none; }
}

/* --- Library section (the v2-distinct corpus surface) -------------------- */

.library-section { background: var(--paper); }

.library-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  margin-top: 56px;
  border-top: 1px solid var(--ink);
}
@media (min-width: 768px) {
  .library-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .library-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.library-card {
  position: relative;
  padding: 32px 28px 28px;
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
  cursor: pointer;
  transition: background 200ms ease;
}
@media (min-width: 768px) {
  .library-card:nth-child(odd) {
    border-right: 1px solid var(--ink);
  }
}
@media (min-width: 1024px) {
  .library-card:nth-child(odd) {
    border-right: 0;
  }
  .library-card:not(:nth-child(3n)) {
    border-right: 1px solid var(--ink);
  }
}

.library-card:hover, .library-card:focus-within {
  background: var(--blush);
}

.library-card-meta {
  font-family: var(--mono);
  font-size: var(--step--1);
  color: var(--rule);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.library-card-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: var(--step-2);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 12px;
}

.library-card-bias {
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.45;
  color: var(--ink);
  max-width: 32ch;
  margin-bottom: 18px;
}

.library-card-specimen {
  font-family: var(--display);
  font-style: italic;
  font-size: var(--step-1);
  line-height: 1.3;
  color: var(--rule);
  max-width: 36ch;
}

/* The hover-to-reveal: a quiet drawer of three specimen episodes,
   readable as a magazine table-of-contents entry. The single non-obvious
   interaction in the page. Emerges from the corpus content directly —
   the library is the v2-distinct surface and the interaction shows
   what the library actually contains. */

.library-card-drawer {
  margin-top: 18px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 320ms ease, opacity 200ms ease;
  border-top: 1px solid var(--rule);
  padding-top: 0;
}

.library-card:hover .library-card-drawer,
.library-card:focus-within .library-card-drawer,
.library-card.is-open .library-card-drawer {
  max-height: 320px;
  opacity: 1;
  padding-top: 16px;
}

.library-card-drawer ol {
  display: block;
  padding: 0;
}
.library-card-drawer li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  padding-block: 8px;
  border-bottom: 1px solid rgba(107, 102, 96, 0.3);
  align-items: baseline;
}
.library-card-drawer li:last-child { border-bottom: 0; }
.library-card-drawer .ep-num {
  font-family: var(--mono);
  font-size: var(--step--1);
  color: var(--rule);
  letter-spacing: 0.04em;
}
.library-card-drawer .ep-title {
  font-family: var(--sans);
  font-size: var(--step--1);
  line-height: 1.4;
  color: var(--ink);
}
.library-card-drawer .ep-runtime {
  font-family: var(--mono);
  font-size: var(--step--1);
  color: var(--rule);
  letter-spacing: 0.02em;
}

.library-browse-all {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  align-items: baseline;
}
.library-browse-all p { font-family: var(--mono); font-size: var(--step--1); color: var(--rule); letter-spacing: 0.04em; max-width: 56ch; }

/* --- Practitioner block (v2-distinct) ----------------------------------- */

.practitioners {
  background: var(--ink);
  color: var(--paper);
}
.practitioners .eyebrow { color: rgba(250, 250, 247, 0.6); }
.practitioners .display { color: var(--paper); }
.practitioners p { color: var(--paper); max-width: 56ch; }
.practitioners .practitioners-meta {
  font-family: var(--mono);
  font-size: var(--step--1);
  color: rgba(250, 250, 247, 0.7);
  letter-spacing: 0.04em;
  margin-top: 24px;
}
.practitioners .btn {
  border-color: var(--paper);
  color: var(--paper);
  background: transparent;
  margin-top: 32px;
}
.practitioners .btn:hover, .practitioners .btn:focus-visible {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.practitioners-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  margin-top: 32px;
}
@media (min-width: 1024px) {
  .practitioners-grid { grid-template-columns: 2fr 1fr; gap: 64px; }
}
.practitioners-roster {
  font-family: var(--mono);
  font-size: var(--step--1);
  color: rgba(250, 250, 247, 0.85);
  letter-spacing: 0.02em;
  line-height: 1.7;
  border-left: 1px solid rgba(250, 250, 247, 0.3);
  padding-left: 24px;
}
.practitioners-roster .roster-label {
  color: rgba(250, 250, 247, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  display: block;
  margin-bottom: 12px;
}

/* --- Book pipeline (v2-distinct, expanded from v1's single book block) -- */

.books {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  margin-top: 56px;
}
@media (min-width: 1024px) {
  .books { grid-template-columns: 1fr 1fr 1fr; gap: 56px; }
}
.book-card {
  border-top: 1px solid var(--ink);
  padding-top: 28px;
}
.book-card .book-status {
  font-family: var(--mono);
  font-size: var(--step--1);
  color: var(--oxide);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.book-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: var(--step-3);
  line-height: 1.2;
  margin-bottom: 12px;
}
.book-card p {
  font-size: var(--step-0);
  line-height: 1.55;
  color: var(--ink);
  max-width: 36ch;
  margin-bottom: 20px;
}
.book-card .link-cta { font-size: var(--step--1); }

/* --- Membership block --------------------------------------------------- */

.membership-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
  padding: 40px;
  background: var(--blush);
  border: 1px solid var(--ink);
}
@media (min-width: 1024px) { .membership-card { grid-template-columns: 1.5fr 1fr; gap: 64px; padding: 56px; align-items: center; } }
.membership-card .membership-price {
  font-family: var(--display);
  font-weight: 500;
  font-size: var(--step-4);
  line-height: 1.05;
  color: var(--oxide);
  margin-bottom: 8px;
}
.membership-card .membership-price small { font-size: var(--step-2); color: var(--rule); font-weight: 400; }
.membership-card p { max-width: 36ch; font-size: var(--step-0); }

/* --- Topic vertical (Library page-card hover focus state) --------------- */

.library-card:focus-visible { outline: 2px solid var(--oxide); outline-offset: -2px; }

/* --- Updated nav: add Library item between Brief and Consultation ------ */

@media (max-width: 480px) {
  .nav { gap: 12px; font-size: 11px; }
}

/* --- Press / endorsements bar (v2 small addition) ----------------------- */

.endorsement-bar {
  margin-top: 56px;
  padding-block: 32px;
  border-block: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
  justify-content: space-between;
  align-items: baseline;
}
.endorsement-bar p {
  font-family: var(--mono);
  font-size: var(--step--1);
  color: var(--rule);
  letter-spacing: 0.04em;
  max-width: 36ch;
  margin: 0;
}
.endorsement-bar p strong {
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0;
  font-family: var(--display);
  font-style: italic;
  font-size: var(--step-1);
  display: block;
  margin-bottom: 4px;
}
