/* ==========================================================================
   Migraine Relief Wire - the night edition
   Concept:   written quietly, for people reading with the brightness turned down.
              The whole desk is set in a dim room: no white page, no glare, one lamp.
   Identity:  "The Dimmer" - three concentric rings, a dial turned almost all the
              way down. The brightest thing on any page is a single small brass dot.
   Type:      Literata (display and reading serif, optical sizes 7..72)
              Nunito Sans (interface, captions, footer)
              IBM Plex Mono (register labels, datelines, folios)
   Signature: hairline rings as dividers and bullets; mono "wire" datelines;
              one italic phrase per headline; captions set as quiet asides.
   Palette:   night slate canvas, ash panels, bone text at reduced luminance,
              dim brass for the lamp, a muted dusk blue for links.
   ========================================================================== */

:root {
  --night:      #1d212a;   /* canvas */
  --night-2:    #181b23;   /* footer, deepest */
  --ash:        #252a34;   /* panel */
  --ash-2:      #2c313d;   /* raised panel */
  --ash-3:      #343a48;   /* hover / border on panel */

  --bone:       #e1e3e8;   /* headline text */
  --bone-soft:  #c3c7d0;   /* body text */
  --bone-mute:  #8f95a3;   /* meta text */
  --bone-faint: #6a7080;   /* hairline text */

  --brass:      #c9a063;   /* the lamp */
  --brass-deep: #a88247;
  --brass-ink:  #1a1508;   /* text on a brass button */
  --brass-wash: rgba(201,160,99,0.10);

  --dusk:       #8aa6d1;   /* links */
  --dusk-soft:  #6f88ad;

  --line:       rgba(225,227,232,0.11);
  --line-2:     rgba(225,227,232,0.06);

  --serif: "Literata", Georgia, "Times New Roman", serif;
  --sans:  "Nunito Sans", system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono:  "IBM Plex Mono", ui-monospace, Menlo, Consolas, monospace;

  --shell: 1120px;
  --read: 680px;
  --ease: cubic-bezier(0.25, 0.5, 0.3, 1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--night); }

body {
  margin: 0;
  background: var(--night);
  color: var(--bone-soft);
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--dusk); text-decoration: none; }
a:hover { color: var(--bone); }
::selection { background: rgba(201,160,99,0.35); color: var(--bone); }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; border-radius: 2px; }

.shell { max-width: var(--shell); margin: 0 auto; padding: 0 20px; }
.read { max-width: var(--read); margin: 0 auto; padding: 0 20px; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--bone);
  line-height: 1.15;
  letter-spacing: -0.012em;
  margin: 0;
}
h1 em, h2 em, h3 em { font-style: italic; font-weight: 400; color: var(--brass); }

/* ---------- register label (the signature furniture) ---------- */
.reg {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.reg::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 3px rgba(201,160,99,0.16);
  flex: 0 0 auto;
}
.reg.plain::before { display: none; }

/* ---------- the dimmer mark ---------- */
.mark { display: block; width: 38px; height: 38px; color: var(--bone); flex: 0 0 auto; }
.mark .lamp { fill: var(--brass); }

/* ---------- dimmer rule: hairline with a small ring in the middle ---------- */
.dimrule {
  display: flex; align-items: center; gap: 14px;
  margin: 0; padding: 0;
}
.dimrule::before, .dimrule::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.dimrule i {
  width: 14px; height: 14px; border-radius: 50%;
  border: 1px solid var(--brass);
  position: relative; flex: 0 0 auto;
}
.dimrule i::after {
  content: ""; position: absolute; inset: 4px; border-radius: 50%;
  background: var(--brass);
}

/* ---------- night strip (emergency) ---------- */
.strip {
  background: var(--night-2);
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--bone-mute);
}
.strip .shell { padding-top: 9px; padding-bottom: 9px; display: flex; gap: 10px; align-items: flex-start; }
.strip .shell::before {
  content: ""; flex: 0 0 auto; margin-top: 6px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--brass);
}
.strip strong { color: var(--bone-soft); font-weight: 600; }

/* ---------- masthead ---------- */
.masthead { border-bottom: 1px solid var(--line); background: var(--night); }
.masthead .shell {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding-top: 22px; padding-bottom: 20px;
}
.brand { display: flex; align-items: center; gap: 14px; color: var(--bone); }
.brand:hover { color: var(--bone); }
.brand-name { font-family: var(--serif); font-weight: 500; font-size: 21px; line-height: 1; letter-spacing: -0.01em; }
.brand-name small {
  display: block; margin-top: 7px;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bone-mute); font-weight: 400;
}
.folio { display: none; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bone-faint); text-align: right; line-height: 1.7; }
.folio b { color: var(--brass); font-weight: 400; }

/* ---------- nav: a single mono row that scrolls on the phone ---------- */
.navband { border-bottom: 1px solid var(--line); background: var(--night); position: relative; }
.navband::after {
  content: ""; position: absolute; right: 0; top: 0; bottom: 1px; width: 72px;
  background: linear-gradient(to right, rgba(29,33,42,0), var(--night) 78%); pointer-events: none;
}
.nav {
  display: flex; gap: 0; overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; margin: 0 -20px; padding: 0 64px 0 12px;
}
.nav::-webkit-scrollbar { display: none; }
.nav a {
  flex: 0 0 auto;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--bone-mute); padding: 14px 12px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--bone); border-bottom-color: var(--brass); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 700; font-size: 14.5px; letter-spacing: 0.01em;
  padding: 13px 22px; border-radius: 3px;
  background: var(--brass); color: var(--brass-ink);
  border: 1px solid var(--brass-deep);
  box-shadow: 0 0 0 1px rgba(201,160,99,0.08), 0 14px 28px -18px rgba(201,160,99,0.55);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn:hover { background: #d6ad70; color: var(--brass-ink); transform: translateY(-1px); }
.btn.ghost {
  background: transparent; color: var(--bone-soft); border-color: var(--ash-3); box-shadow: none;
}
.btn.ghost:hover { color: var(--bone); border-color: var(--bone-mute); }
.btn .arw { transition: transform 0.2s var(--ease); }
.btn:hover .arw { transform: translateX(3px); }

/* ---------- hero ---------- */
.hero { padding: 52px 0 44px; }
.hero .reg { margin-bottom: 22px; }
.hero h1 { font-size: clamp(34px, 6vw, 56px); line-height: 1.06; letter-spacing: -0.02em; max-width: 22ch; text-wrap: balance; }
.hero .lede {
  font-family: var(--serif); font-size: 18.5px; line-height: 1.65; color: var(--bone-soft);
  max-width: 52ch; margin: 24px 0 30px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-fig { margin: 36px 0 0; }
.hero-fig img { width: 100%; border-radius: 4px; border: 1px solid var(--line); }
figcaption, .cap {
  font-family: var(--sans); font-size: 13px; line-height: 1.55; color: var(--bone-mute);
  margin-top: 12px;
}
figcaption .credit { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bone-faint); margin-top: 5px; }

/* ---------- home sections ---------- */
section { padding: 56px 0; }
.section-head { margin-bottom: 30px; }
.section-head .reg { margin-bottom: 16px; }
.section-head h2 { font-size: clamp(26px, 3.6vw, 36px); max-width: 22ch; }
.section-head p { font-family: var(--sans); color: var(--bone-mute); font-size: 15.5px; max-width: 58ch; margin: 14px 0 0; }

/* position statement */
.position { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ash); }
.position .shell { display: grid; gap: 28px; }
.position p { margin: 0 0 16px; font-size: 17px; }
.position p:last-child { margin-bottom: 0; }
.position .reg { margin-bottom: 14px; }

/* the wire: guide index as numbered dispatches */
.wire { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.wire li { border-bottom: 1px solid var(--line); }
.wire a {
  display: grid; grid-template-columns: 52px 1fr; gap: 14px;
  padding: 22px 6px; color: var(--bone);
  transition: background 0.25s var(--ease), padding-left 0.25s var(--ease);
}
.wire a:hover { background: var(--ash); padding-left: 14px; }
.wire .no { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--brass); padding-top: 6px; }
.wire h3 { font-size: 21px; line-height: 1.2; margin-bottom: 6px; }
.wire a:hover h3 { color: var(--brass); }
.wire p { margin: 0; font-family: var(--sans); font-size: 14.5px; line-height: 1.55; color: var(--bone-mute); max-width: 60ch; }
.wire .tag { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bone-faint); margin-bottom: 8px; }
.wire li.lead a { background: var(--ash); border: 1px solid var(--line); border-radius: 6px; padding: 26px 22px; margin: 18px 0; }
.wire li.lead a:hover { background: var(--ash-2); padding-left: 30px; }
.wire li.lead h3 { font-size: 26px; }
.wire li.lead { border-bottom: none; }

/* ---------- featured clinic (the one practical step) ---------- */
.clinic {
  background: var(--ash); border: 1px solid var(--line); border-radius: 6px;
  padding: 30px 26px 26px; position: relative; overflow: hidden;
}
.clinic::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--brass), rgba(201,160,99,0)); }
.clinic .reg { margin-bottom: 14px; }
.clinic h2, .clinic h3 { font-size: 26px; margin-bottom: 6px; }
.clinic .who { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bone-mute); margin: 0 0 18px; }
.clinic p { margin: 0 0 16px; font-size: 16.5px; }
.clinic .actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 22px 0 8px; }
.rooms { display: grid; gap: 14px; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.room { font-family: var(--sans); font-size: 14.5px; line-height: 1.55; color: var(--bone-soft); }
.room b { display: block; font-family: var(--serif); font-weight: 500; font-size: 17px; color: var(--bone); margin-bottom: 4px; }
.room .near { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); display: block; margin-bottom: 6px; }
.room a.tel { color: var(--bone); font-weight: 700; }
.room .hrs { color: var(--bone-mute); display: block; margin-top: 3px; }
.room a.go { display: inline-block; margin-top: 8px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dusk); }
.room a.go:hover { color: var(--bone); }

/* reviews */
.quotes { display: grid; gap: 16px; }
.quote { background: var(--ash); border: 1px solid var(--line); border-radius: 6px; padding: 22px 22px 18px; }
.quote p { margin: 0 0 12px; font-size: 18px; font-style: italic; color: var(--bone); line-height: 1.5; }
.quote cite { font-style: normal; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bone-mute); }
.quotes-note { font-family: var(--sans); font-size: 13px; color: var(--bone-faint); margin: 14px 0 0; }

/* ---------- disclosure and notes ---------- */
.disclose {
  font-family: var(--sans); font-size: 13px; line-height: 1.6; color: var(--bone-mute);
  border-left: 2px solid var(--brass); padding: 6px 0 6px 16px; margin: 28px 0 0;
}
.disclose b { color: var(--bone-soft); font-weight: 700; }
.ernote {
  background: var(--night-2); border: 1px solid var(--line); border-radius: 6px;
  padding: 18px 20px; margin: 30px 0;
  font-family: var(--sans); font-size: 14.5px; line-height: 1.6; color: var(--bone-soft);
}
.ernote b { display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass); margin-bottom: 8px; font-weight: 400; }
.edu { font-family: var(--sans); font-size: 13px; color: var(--bone-faint); margin: 18px 0 0; }

/* ---------- article ---------- */
.article-head { padding: 48px 0 36px; border-bottom: 1px solid var(--line); }
.article-head .reg { margin-bottom: 20px; }
.article-head h1 { text-wrap: balance; }
.article-head h1 { font-size: clamp(30px, 5vw, 46px); line-height: 1.1; letter-spacing: -0.018em; }
.article-head .lede { font-size: 19px; line-height: 1.6; color: var(--bone-soft); margin: 20px 0 0; max-width: 58ch; }
.dateline {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bone-faint); margin: 26px 0 0; padding-top: 16px; border-top: 1px solid var(--line);
  display: flex; gap: 18px; flex-wrap: wrap;
}
.dateline b { color: var(--brass); font-weight: 400; }

.article { padding: 36px 0 20px; }
.prose { font-size: 18px; line-height: 1.72; color: var(--bone-soft); }
.prose p { margin: 0 0 22px; }
.prose h2 { font-size: 26px; margin: 44px 0 14px; padding-top: 22px; position: relative; }
.prose h2::before { content: ""; position: absolute; top: 0; left: 0; width: 30px; height: 1px; background: var(--brass); }
.prose h3 { font-size: 20.5px; margin: 30px 0 10px; }
.prose strong { color: var(--bone); font-weight: 600; }
.prose a { border-bottom: 1px solid rgba(138,166,209,0.35); }
.prose a:hover { border-bottom-color: var(--bone); }
.prose ul, .prose ol { margin: 0 0 24px; padding: 0; list-style: none; }
.prose li { position: relative; padding-left: 28px; margin-bottom: 12px; }
.prose ul li::before {
  content: ""; position: absolute; left: 2px; top: 11px;
  width: 10px; height: 10px; border-radius: 50%; border: 1px solid var(--brass);
}
.prose ul li::after { content: ""; position: absolute; left: 5px; top: 14px; width: 4px; height: 4px; border-radius: 50%; background: var(--brass); }
.prose ol { counter-reset: step; }
.prose ol li { counter-increment: step; }
.prose ol li::before {
  content: counter(step, decimal-leading-zero); position: absolute; left: 0; top: 4px;
  font-family: var(--mono); font-size: 12px; color: var(--brass); letter-spacing: 0.05em;
}
.prose .figure { margin: 36px 0; }
.prose .figure img { width: 100%; border-radius: 4px; border: 1px solid var(--line); }

.takeaways {
  background: var(--ash); border: 1px solid var(--line); border-radius: 6px;
  padding: 24px 24px 20px; margin: 0 0 34px;
}
.takeaways h2 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); font-weight: 400; margin: 0 0 14px; padding: 0; }
.takeaways h2::before { display: none; }
.takeaways ul { margin: 0; padding: 0; list-style: none; }
.takeaways li { font-family: var(--sans); font-size: 15px; line-height: 1.55; color: var(--bone-soft); padding-left: 22px; margin-bottom: 10px; position: relative; }
.takeaways li:last-child { margin-bottom: 0; }
.takeaways li::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; border: 1px solid var(--brass); }
.takeaways li::after { display: none; }

.pull {
  border-left: 2px solid var(--brass); margin: 34px 0; padding: 4px 0 4px 22px;
  font-size: 22px; line-height: 1.45; font-style: italic; color: var(--bone);
}

.callout {
  background: var(--ash); border: 1px solid var(--line); border-radius: 6px;
  padding: 20px 22px; margin: 30px 0; font-size: 16.5px; line-height: 1.6;
}
.callout b { display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass); margin-bottom: 8px; font-weight: 400; }

/* FAQ */
.faq { margin: 0; padding: 0; list-style: none; counter-reset: q; }
.faq li { border-top: 1px solid var(--line); padding: 26px 0 22px; counter-increment: q; }
.faq li:last-child { border-bottom: 1px solid var(--line); }
.faq h2 { font-size: 22px; margin: 0 0 12px; padding: 0; line-height: 1.3; display: grid; grid-template-columns: 44px 1fr; gap: 10px; }
.faq h2::before { content: counter(q, decimal-leading-zero); position: static; width: auto; height: auto; background: none; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--brass); padding-top: 8px; }
.faq p { margin: 0 0 0 54px; font-size: 17px; }
.faq p + p { margin-top: 12px; }

/* related */
.related { border-top: 1px solid var(--line); margin-top: 40px; padding-top: 26px; }
.related .reg { margin-bottom: 14px; }
.related a { display: flex; align-items: baseline; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--line-2); color: var(--bone); font-size: 17.5px; }
.related a:last-child { border-bottom: none; }
.related a:hover { color: var(--brass); }
.related a span { font-family: var(--mono); font-size: 10.5px; color: var(--bone-faint); letter-spacing: 0.1em; }

/* ---------- footer ---------- */
.foot { background: var(--night-2); border-top: 1px solid var(--line); margin-top: 40px; font-family: var(--sans); font-size: 14px; color: var(--bone-mute); }
.foot .shell { padding-top: 48px; padding-bottom: 40px; }
.foot-grid { display: grid; gap: 34px; }
.foot-brand { display: flex; align-items: center; gap: 12px; color: var(--bone); margin-bottom: 14px; }
.foot-brand .mark { width: 32px; height: 32px; }
.foot-brand strong { font-family: var(--serif); font-weight: 500; font-size: 18px; }
.foot-brand small { display: block; font-family: var(--mono); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bone-mute); margin-top: 5px; }
.foot p { margin: 0; max-width: 40ch; line-height: 1.6; }
.foot h4 { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bone-faint); font-weight: 400; margin: 0 0 14px; }
.foot-col a { display: block; color: var(--bone-soft); margin-bottom: 9px; font-size: 14px; }
.foot-col a:hover { color: var(--bone); }
.foot-col a.tel { color: var(--bone); font-weight: 700; }
.foot .legal { border-top: 1px solid var(--line); margin-top: 36px; padding-top: 22px; font-size: 12.5px; line-height: 1.65; color: var(--bone-faint); max-width: none; }
.foot .legal b { color: var(--bone-mute); font-weight: 600; }
.foot .year { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bone-faint); margin-top: 18px; }

/* ---------- wider screens ---------- */
@media (min-width: 700px) {
  .shell, .read { padding: 0 32px; }
  .folio { display: block; }
  .hero { padding: 72px 0 56px; }
  .hero .shell { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
  .hero-fig { margin: 0; }
  section { padding: 72px 0; }
  .position .shell { grid-template-columns: 1fr 1fr; gap: 48px; padding-top: 56px; padding-bottom: 56px; }
  .wire a { grid-template-columns: 64px 1fr; padding: 26px 10px; }
  .wire li.lead a { padding: 34px 30px; }
  .wire li.lead a:hover { padding-left: 40px; }
  .clinic { padding: 38px 40px 34px; }
  .clinic h2, .clinic h3 { font-size: 30px; }
  .rooms { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .quotes { grid-template-columns: repeat(3, 1fr); }
  .article-head { padding: 64px 0 40px; }
  .article { padding: 44px 0 24px; }
  .foot-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
  .nav { margin: 0; padding: 0; }
  .navband::after { display: none; }
  .nav a { padding: 15px 16px 15px 0; margin-right: 12px; }
}
@media (min-width: 1000px) {
  .hero h1 { font-size: 52px; }
  .takeaways { padding: 28px 30px 24px; }
}

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

/* ---------- additions, second sitting ---------- */
.hero-note { font-family: var(--sans); font-size: 13px; color: var(--bone-faint); margin: 18px 0 0; max-width: 46ch; }
.hero-fig { position: relative; }
.hero-fig img { box-shadow: 0 30px 60px -40px rgba(0,0,0,0.9); }
.hero-fig::after {
  content: ""; position: absolute; left: 14px; top: 14px; right: -14px; bottom: 30px;
  border: 1px solid rgba(201,160,99,0.25); border-radius: 4px; pointer-events: none; z-index: -1;
}
.position .small-note { font-family: var(--sans); font-size: 14px; color: var(--bone-mute); border-top: 1px solid var(--line); padding-top: 14px; margin-top: 20px; }
.position h2 { font-size: clamp(24px, 3.2vw, 32px); max-width: 20ch; margin-top: 14px; }

/* feature band: photo left, copy right */
.feature { border-top: 1px solid var(--line); background: var(--ash); }
.feature .shell { display: grid; gap: 30px; }
.feature-fig { margin: 0; }
.feature-fig img { width: 100%; border-radius: 4px; border: 1px solid var(--line); }
.feature-copy h2 { font-size: clamp(26px, 3.4vw, 34px); margin: 14px 0 18px; max-width: 20ch; }
.feature-copy p { margin: 0 0 16px; font-size: 16.5px; }
.inline-link { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); }
.inline-link:hover { color: var(--bone); }

.quotes-sec { border-top: 1px solid var(--line); }
.er-sec { padding-top: 0; }
.er-sec .ernote { margin-top: 0; }

/* compact clinic block used inside articles */
.clinic.compact { margin: 44px 0 10px; }
.clinic.compact h3 { font-size: 24px; line-height: 1.2; margin-bottom: 12px; }
.clinic.compact p { font-size: 16px; }
.clinic.compact .disclose { margin-top: 18px; font-size: 12.5px; }
.room .near.dim { color: var(--bone-faint); }
.roomline { font-family: var(--sans); font-size: 16px; line-height: 1.6; background: var(--ash); border: 1px solid var(--line); border-radius: 6px; padding: 16px 18px; }
.roomline strong { color: var(--bone); display: block; margin-bottom: 4px; font-family: var(--serif); font-weight: 500; font-size: 17.5px; }
.roomline a { color: var(--bone); font-weight: 700; border-bottom: none; }

.foot h4.later { margin-top: 22px; }
.foot p.small { font-size: 13px; color: var(--bone-faint); }
.foot .edu { margin-top: 14px; font-size: 12.5px; }

/* dateline wraps in mono; phone-friendly */
.dateline span + span::before { content: ""; }

@media (min-width: 700px) {
  .feature .shell { grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
  .clinic.compact { padding: 34px 36px 30px; }
}
@media (min-width: 1000px) {
  .hero .shell { grid-template-columns: 1fr 1fr; gap: 72px; }
}

/* FAQ: neutralise the prose list furniture */
.prose .faq li { padding-left: 0; margin-bottom: 0; }
.prose .faq li::before, .prose .faq li::after { display: none; }
.prose .faq h2 { margin-top: 0; }
.prose .faq h2::before { display: block; position: static; width: auto; height: auto; background: none; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--brass); padding-top: 8px; content: counter(q, decimal-leading-zero); }
.strip .more { display: none; }
@media (min-width: 700px) { .strip .more { display: inline; } }
.prose .faq { counter-reset: q; }
.prose .faq li { counter-increment: q; }
.clinic .disclose { margin-top: 30px; }
.foot .year { max-width: none; }
.quote cite { line-height: 1.8; }

/* Phone nav: the horizontal scroller clipped section names mid-word and pushed the
   last item (often the call to action) off screen. Let it wrap instead. */
@media (max-width: 700px) {
  .nav { flex-wrap: wrap; white-space: normal; overflow-x: visible; row-gap: 6px;
    -webkit-mask-image: none; mask-image: none; }
  .nav::after, .nav::before { content: none; }
  .nav a { white-space: nowrap; }
}
