/* Prenatal Chiro Guide - "The Careful Guide"
   A calm reading room for a body doing two jobs.
   Identity:  the seed mark - a leaf outline carrying a second, smaller arc inside it
              (one body, two jobs). It is the masthead, the favicon, the list glyph.
   Type:      Lora (display and reading serif) / Mulish (UI, captions, takeaways) / Sometype Mono (register labels)
   Signature: the paired rule - a teal hairline set over a rose hairline - under every
              register label and between sections; one italic phrase per headline.
   Palette:   blush paper, deep teal structure, a single rose accent, graphite ink.
   Nav:       centered masthead, nav row beneath; photo hero with an offset rose mat. */

:root {
  --canvas: #f7eff0;
  --canvas-2: #f1e5e7;
  --paper: #fdf8f8;
  --paper-2: #fbf3f3;

  --ink: #2b2f34;
  --ink-soft: #545a61;
  --muted: #77686c;
  --faint: #a4979a;

  --teal: #1f6f6b;
  --teal-deep: #174f4c;
  --teal-ink: #325a57;
  --teal-wash: #e3eeed;
  --teal-line: #c7dcda;

  --rose: #c96f7f;
  --rose-deep: #a8505f;
  --rose-wash: #f3dde1;
  --rose-line: #e9c4cb;

  --line: #e6d8da;
  --line-soft: #efe4e6;

  --onhero: #f6efe9;

  --serif: "Lora", Georgia, "Times New Roman", serif;
  --sans: "Mulish", system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "Sometype Mono", ui-monospace, Menlo, Consolas, monospace;

  --shell: 1120px;
  --read: 680px;
  --r: 4px;
  --r-lg: 14px;
  --ease: cubic-bezier(0.3, 0.05, 0.2, 1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--teal); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--teal-deep); }

:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; border-radius: 2px; }

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

/* ---------- Register label + the paired rule (signature) ---------- */
.reg {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  padding-bottom: 9px;
  position: relative;
  margin: 0 0 18px;
}
.reg::before, .reg::after {
  content: "";
  position: absolute; left: 0;
  height: 1px; width: 100%;
}
.reg::before { bottom: 3px; background: var(--teal); opacity: 0.75; }
.reg::after { bottom: 0; background: var(--rose); opacity: 0.85; }
.reg.rose { color: var(--rose-deep); }

.pair-rule { height: 5px; position: relative; margin: 0; }
.pair-rule::before, .pair-rule::after { content: ""; position: absolute; left: 0; right: 0; height: 1px; }
.pair-rule::before { top: 0; background: var(--teal-line); }
.pair-rule::after { top: 4px; background: var(--rose-line); }

/* ---------- First, always strip ---------- */
.first-strip {
  background: var(--rose-wash);
  color: var(--ink);
  font-size: 13.5px;
  line-height: 1.5;
  border-bottom: 1px solid var(--rose-line);
}
.first-strip .shell { padding-top: 9px; padding-bottom: 9px; display: flex; gap: 12px; align-items: flex-start; }
.first-strip .shell::before {
  content: ""; flex: 0 0 auto; width: 10px; height: 10px; margin-top: 6px;
  border-radius: 50% 50% 50% 0; background: var(--rose); transform: rotate(-45deg);
}
.first-strip strong { font-weight: 700; color: var(--rose-deep); }

/* ---------- Masthead ---------- */
.masthead { background: var(--canvas); border-bottom: 1px solid var(--line); }
.masthead .shell { padding-top: 26px; padding-bottom: 0; text-align: center; }
.brand { display: inline-flex; flex-direction: column; align-items: center; gap: 8px; text-decoration: none; color: var(--teal-ink); }
.brand .mark { width: 44px; height: 44px; display: block; color: var(--teal); }
.brand-name { font-family: var(--serif); font-weight: 600; font-size: 26px; letter-spacing: -0.012em; line-height: 1.1; color: var(--teal-ink); }
.brand-folio { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
.nav {
  margin-top: 18px;
  display: flex; justify-content: center; align-items: center; gap: 0 26px;
  border-top: 1px solid var(--line-soft);
  padding: 12px 0 13px;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}
.nav::-webkit-scrollbar { display: none; }
.nav a {
  font-family: var(--sans); font-weight: 600; font-size: 13.5px; letter-spacing: 0.02em;
  color: var(--ink-soft); text-decoration: none; position: relative; padding: 4px 0; flex: 0 0 auto;
}
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--rose); transform: scaleX(0); transform-origin: center; transition: transform 0.25s var(--ease); }
.nav a:hover { color: var(--teal-ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--teal-ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--teal); color: #fff; text-decoration: none;
  font-family: var(--sans); font-weight: 700; font-size: 15px; letter-spacing: 0.005em;
  padding: 13px 24px; border-radius: var(--r); border: 1px solid var(--teal-deep);
  box-shadow: 0 1px 1px rgba(23,79,76,0.12), 0 12px 24px -14px rgba(23,79,76,0.6);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn:hover { background: var(--teal-deep); color: #fff; transform: translateY(-1px); }
.btn .arw { transition: transform 0.2s var(--ease); }
.btn:hover .arw { transform: translateX(3px); }
.btn.ghost { background: transparent; color: var(--teal-ink); border-color: var(--teal-line); box-shadow: none; }
.btn.ghost:hover { background: var(--paper); border-color: var(--teal); }
.btn.rose { background: var(--rose); border-color: var(--rose-deep); box-shadow: 0 1px 1px rgba(168,80,95,0.12), 0 12px 24px -14px rgba(168,80,95,0.6); }
.btn.rose:hover { background: var(--rose-deep); }

/* ---------- Hero ---------- */
.hero { background: var(--canvas); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 90% at 100% 0%, rgba(31,111,107,0.08), rgba(31,111,107,0) 60%),
              radial-gradient(60% 70% at 0% 100%, rgba(201,111,127,0.09), rgba(201,111,127,0) 60%);
}
.hero .shell {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
  padding-top: 72px; padding-bottom: 76px;
}
.hero-copy { max-width: 44ch; }
.hero h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(36px, 4.6vw, 54px); line-height: 1.1; letter-spacing: -0.018em;
  color: var(--teal-ink); margin: 0 0 22px;
}
h1 em, h2 em { font-style: italic; font-weight: 500; color: var(--rose-deep); }
.hero .lede { font-size: 18.5px; line-height: 1.62; color: var(--ink-soft); margin: 0 0 30px; max-width: 50ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin: 22px 0 0; }

.matted { margin: 0; position: relative; }
.matted::before {
  content: ""; position: absolute; inset: 18px -18px -18px 18px;
  background: var(--rose-wash); border-radius: var(--r-lg); z-index: 0;
}
.matted img { position: relative; z-index: 1; width: 100%; border-radius: var(--r-lg); border: 1px solid var(--line); box-shadow: 0 24px 46px -30px rgba(43,47,52,0.45); }
.matted figcaption, .fig figcaption {
  position: relative; z-index: 1;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-top: 14px; line-height: 1.6;
}
.matted figcaption { margin-top: 30px; }

/* ---------- Sections ---------- */
section { padding: 72px 0; }
section.tight { padding: 56px 0; }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head h2, .band h2, .clinic h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(27px, 3.3vw, 36px); line-height: 1.15; letter-spacing: -0.016em;
  color: var(--teal-ink); margin: 0;
}
.section-head p { color: var(--ink-soft); margin: 14px 0 0; font-size: 17px; }
.on-paper { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------- Order band (three principles) ---------- */
.band { background: var(--teal-ink); color: #d9e6e4; position: relative; overflow: hidden; }
.band::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(80% 70% at 100% 0%, rgba(201,111,127,0.16), transparent 60%), radial-gradient(60% 80% at 0% 100%, rgba(255,255,255,0.06), transparent 55%); }
.band .shell { position: relative; z-index: 1; }
.band .reg { color: #f0c9d1; }
.band .reg::before { background: #9ec4c0; }
.band h2 { color: #fff; max-width: 22ch; margin-bottom: 40px; }
.band h2 em { color: #f0c9d1; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; counter-reset: step; }
.step { padding: 6px 36px; border-left: 1px solid rgba(255,255,255,0.16); counter-increment: step; }
.step:first-child { padding-left: 0; border-left: none; }
.step::before { content: "0" counter(step); display: block; font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; color: #f0c9d1; margin-bottom: 14px; }
.step strong { display: block; font-family: var(--serif); font-weight: 500; font-size: 21px; line-height: 1.25; color: #fff; margin-bottom: 10px; }
.step span { display: block; font-size: 15px; line-height: 1.6; color: #b9d0cd; }

/* ---------- Guide index (two-column numbered cards) ---------- */
.index { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 28px 24px; text-decoration: none; color: var(--ink);
  display: grid; grid-template-columns: 44px 1fr; gap: 14px; position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.card:hover { transform: translateY(-2px); box-shadow: 0 20px 36px -28px rgba(43,47,52,0.5); border-color: var(--teal-line); }
.card .num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--rose-deep); padding-top: 6px; }
.card h3 { font-family: var(--serif); font-weight: 500; font-size: 21px; line-height: 1.25; letter-spacing: -0.01em; color: var(--teal-ink); margin: 0 0 8px; }
.card p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink-soft); }
.card .tag { display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.card.urgent { grid-column: 1 / -1; background: var(--rose-wash); border-color: var(--rose-line); grid-template-columns: 44px 1.2fr 1fr; align-items: center; }
.card.urgent .num { color: var(--rose-deep); }
.card.urgent h3 { font-size: 26px; }
.card.urgent .aside { font-size: 14.5px; color: var(--ink-soft); border-left: 1px solid var(--rose-line); padding-left: 22px; line-height: 1.55; }

/* ---------- Feature (photo + copy) ---------- */
.feature .shell { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.feature.flip .shell > :first-child { order: 2; }
.feature-copy h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 3.1vw, 34px); line-height: 1.15; letter-spacing: -0.014em; color: var(--teal-ink); margin: 0 0 16px; }
.feature-copy p { color: var(--ink-soft); margin: 0 0 14px; font-size: 17px; }
.feature-copy p:last-of-type { margin-bottom: 22px; }
.fig { margin: 0; }
.fig img { width: 100%; border-radius: var(--r-lg); border: 1px solid var(--line); box-shadow: 0 22px 44px -32px rgba(43,47,52,0.45); }

/* ---------- Featured clinic ---------- */
.clinic-plate {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 38px 40px 34px; position: relative; overflow: hidden;
  box-shadow: 0 1px 2px rgba(43,47,52,0.03), 0 28px 50px -36px rgba(43,47,52,0.4);
}
.clinic-plate::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 5px; background: linear-gradient(90deg, var(--teal) 0 50%, var(--rose) 50% 100%); }
.clinic-top { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; margin-bottom: 30px; }
.clinic-top h2 { font-size: clamp(25px, 3vw, 32px); margin-bottom: 8px; }
.clinic-top .who { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin: 0 0 16px; }
.clinic-top p { color: var(--ink-soft); margin: 0 0 12px; font-size: 16.5px; }
.rooms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.room { background: var(--canvas); border: 1px solid var(--line); border-radius: 10px; padding: 20px 22px 18px; font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); }
.room.near { background: var(--teal-wash); border-color: var(--teal-line); }
.room .rm { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose-deep); margin: 0 0 6px; }
.room.near .rm { color: var(--teal); }
.room h3 { font-family: var(--serif); font-weight: 600; font-size: 19px; margin: 0 0 8px; color: var(--teal-ink); }
.room p { margin: 0 0 6px; }
.room .hrs { font-size: 13.5px; }
.room a.tel { font-weight: 700; color: var(--teal-ink); text-decoration: none; }
.room a.tel:hover { text-decoration: underline; }
.room .go { display: inline-block; margin-top: 10px; font-weight: 700; font-size: 14px; color: var(--teal); }
.disclosure {
  font-size: 12.5px; line-height: 1.62; color: var(--muted);
  margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--line-soft);
}

/* ---------- Reviews ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 28px 22px; margin: 0; }
.quote p { font-family: var(--serif); font-style: italic; font-size: 19px; line-height: 1.45; color: var(--teal-ink); margin: 0 0 16px; }
.quote p::before { content: "\201C"; color: var(--rose); margin-right: 2px; }
.quote p::after { content: "\201D"; color: var(--rose); margin-left: 2px; }
.quote cite { font-style: normal; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.quotes-note { font-size: 13.5px; color: var(--muted); margin: 18px 0 0; }

/* ---------- CTA block ---------- */
.cta {
  background: var(--teal-wash); border: 1px solid var(--teal-line); border-radius: var(--r-lg);
  padding: 30px 34px; display: grid; grid-template-columns: 1.4fr auto; gap: 28px; align-items: center;
}
.cta h2, .cta h3 { font-family: var(--serif); font-weight: 500; font-size: 24px; line-height: 1.25; color: var(--teal-ink); margin: 0 0 8px; }
.cta p { margin: 0; color: var(--ink-soft); font-size: 15.5px; }
.cta .cta-actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.cta .tel { font-weight: 700; color: var(--teal-ink); text-decoration: none; font-size: 15px; }
.cta .tel:hover { text-decoration: underline; }
.cta .tel small { display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 400; }

/* ---------- Article ---------- */
.article-head { background: var(--canvas); border-bottom: 1px solid var(--line); padding: 58px 0 44px; position: relative; overflow: hidden; }
.article-head::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 90% at 100% 0%, rgba(31,111,107,0.08), transparent 60%); }
.article-head .shell { max-width: 860px; position: relative; z-index: 1; }
.article-head h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(31px, 4.2vw, 46px); line-height: 1.12; letter-spacing: -0.018em; color: var(--teal-ink); margin: 0 0 18px; max-width: 22ch; }
.article-head .lede { font-size: 19.5px; line-height: 1.55; color: var(--ink-soft); margin: 0; max-width: 58ch; }
.byline { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 26px; padding-top: 16px; border-top: 1px solid var(--line); }

.article .shell { display: grid; grid-template-columns: minmax(0, var(--read)) 300px; gap: 64px; justify-content: center; align-items: start; padding-top: 48px; padding-bottom: 64px; }
.prose { font-family: var(--serif); font-size: 18.5px; line-height: 1.7; color: #2f3439; min-width: 0; }
.prose h2 { font-family: var(--serif); font-weight: 600; font-size: 25px; line-height: 1.2; letter-spacing: -0.012em; color: var(--teal-ink); margin: 44px 0 14px; }
.prose h3 { font-family: var(--sans); font-weight: 700; font-size: 17px; letter-spacing: 0.005em; color: var(--teal-ink); margin: 30px 0 8px; }
.prose p { margin: 0 0 20px; }
.prose ul, .prose ol { margin: 0 0 22px; padding: 0; list-style: none; }
.prose li { position: relative; padding-left: 28px; margin-bottom: 11px; line-height: 1.6; }
.prose ul li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 11px; height: 11px; border-radius: 50% 50% 50% 0; background: var(--rose); transform: rotate(-45deg); opacity: 0.85; }
.prose ol { counter-reset: item; }
.prose ol li { counter-increment: item; }
.prose ol li::before { content: counter(item, decimal-leading-zero); position: absolute; left: 0; top: 4px; font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.04em; color: var(--teal); }
.prose strong { color: var(--teal-ink); font-weight: 600; }
.prose a { color: var(--teal); }
.prose .fig { margin: 34px 0; }
.prose .fig figcaption { text-transform: none; letter-spacing: 0.02em; font-size: 12.5px; font-family: var(--sans); color: var(--muted); }
.prose .keytakeaways + p::first-letter { font-family: var(--serif); font-weight: 600; float: left; font-size: 58px; line-height: 0.8; padding: 7px 10px 0 0; color: var(--rose-deep); }

.keytakeaways { background: var(--paper); border: 1px solid var(--line); border-left: 3px solid var(--teal); border-radius: var(--r-lg); padding: 24px 28px 22px; margin: 0 0 34px; font-family: var(--sans); }
.keytakeaways h2 { margin: 0 0 14px; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; color: var(--teal); }
.keytakeaways ul { margin: 0; padding: 0; list-style: none; }
.keytakeaways li { position: relative; padding-left: 24px; margin-bottom: 10px; font-size: 15.5px; line-height: 1.5; color: var(--ink); }
.keytakeaways li:last-child { margin-bottom: 0; }
.keytakeaways li::before { content: ""; position: absolute; left: 1px; top: 8px; width: 10px; height: 10px; border-radius: 50% 50% 50% 0; background: var(--teal); transform: rotate(-45deg); }

.callout { background: var(--paper); border: 1px solid var(--line); border-left: 3px solid var(--rose); border-radius: var(--r-lg); padding: 20px 24px; margin: 28px 0; font-family: var(--sans); font-size: 16px; line-height: 1.6; color: var(--ink); }
.callout strong { display: block; margin-bottom: 5px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose-deep); font-weight: 500; }
.callout.er { border-left-color: var(--rose-deep); background: var(--rose-wash); border-color: var(--rose-line); }
.callout.edu { font-size: 14.5px; color: var(--muted); border-left-color: var(--teal-line); }

.prose .cta { margin: 40px 0 10px; grid-template-columns: 1fr; }
.prose .cta h2, .prose .cta h3 { margin-top: 0; }
.prose .cta p { font-family: var(--sans); }
.prose .cta .cta-actions { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 16px; }

/* Sidebar */
.side { position: sticky; top: 24px; font-family: var(--sans); }
.side-box { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px 22px; margin-bottom: 18px; }
.side-box h2 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; color: var(--teal); margin: 0 0 12px; }
.side-box ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
.side-box ol li { counter-increment: toc; margin-bottom: 8px; font-size: 14px; line-height: 1.45; }
.side-box ol a { color: var(--ink-soft); text-decoration: none; display: flex; gap: 10px; }
.side-box ol a::before { content: counter(toc, decimal-leading-zero); font-family: var(--mono); font-size: 11px; color: var(--rose-deep); padding-top: 3px; }
.side-box ol a:hover { color: var(--teal-ink); }
.side-box.near { background: var(--teal-wash); border-color: var(--teal-line); }
.side-box.near h3 { font-family: var(--serif); font-weight: 600; font-size: 18px; color: var(--teal-ink); margin: 0 0 6px; }
.side-box.near p { font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); margin: 0 0 8px; }
.side-box.near .btn { margin-top: 8px; width: 100%; justify-content: center; }
.side-box.near a.tel { font-weight: 700; color: var(--teal-ink); text-decoration: none; }
.side-box .fine { font-size: 12px; color: var(--muted); line-height: 1.5; margin: 12px 0 0; }

/* Related */
.related { border-top: 1px solid var(--line); margin-top: 44px; padding-top: 26px; font-family: var(--sans); }
.related h2 { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; color: var(--teal); margin: 0 0 14px; }
.related a { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; font-weight: 600; font-size: 16.5px; color: var(--teal-ink); text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--line-soft); transition: padding-left 0.2s var(--ease), color 0.2s var(--ease); }
.related a span { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 400; flex: 0 0 auto; }
.related a:hover { color: var(--rose-deep); padding-left: 6px; }

/* FAQ */
.faq-list { margin: 0; padding: 0; }
.faq-list details { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq-list summary { cursor: pointer; list-style: none; font-family: var(--serif); font-weight: 600; font-size: 20px; line-height: 1.3; color: var(--teal-ink); padding: 16px 36px 16px 0; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 14px; font-family: var(--mono); font-size: 20px; color: var(--rose); }
.faq-list details[open] summary::after { content: "\2212"; }
.faq-list .ans { padding: 0 0 20px; }
.faq-list .ans p { margin: 0 0 12px; }

/* Rooms page */
.room-list { display: grid; gap: 22px; margin: 10px 0 30px; font-family: var(--sans); }
.room-full { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 30px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; }
.room-full.near { background: var(--teal-wash); border-color: var(--teal-line); }
.room-full .rm { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose-deep); margin: 0 0 6px; }
.room-full h3 { font-family: var(--serif); font-weight: 600; font-size: 22px; color: var(--teal-ink); margin: 0 0 8px; }
.room-full p { margin: 0 0 8px; font-size: 15.5px; color: var(--ink-soft); line-height: 1.55; }
.room-full dl { margin: 0; font-size: 14.5px; color: var(--ink-soft); }
.room-full dt { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
.room-full dd { margin: 2px 0 0; }
.room-full a.tel { font-weight: 700; color: var(--teal-ink); text-decoration: none; font-size: 17px; }
.room-full .btn { margin-top: 14px; }

/* ---------- Footer ---------- */
.site-foot { background: var(--teal-deep); color: #b5cecb; font-size: 14px; border-top: 4px solid var(--rose); }
.site-foot .shell { padding-top: 56px; padding-bottom: 44px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; }
.site-foot a { color: #d3e3e1; text-decoration: none; }
.site-foot a:hover { color: #fff; }
.foot-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; color: #fff; }
.foot-brand .mark { width: 36px; height: 36px; color: #f0c9d1; }
.foot-brand b { font-family: var(--serif); font-weight: 600; font-size: 19px; display: block; line-height: 1.1; }
.foot-brand small { display: block; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: #9ec4c0; margin-top: 4px; }
.foot-lead { max-width: 38ch; line-height: 1.62; color: #a7c2be; margin: 0; }
.foot-col h4 { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: #9ec4c0; margin: 0 0 16px; font-weight: 500; }
.foot-col a { display: block; margin-bottom: 10px; }
.foot-col p { margin: 0 0 10px; line-height: 1.5; }
.foot-disc { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 40px; padding-top: 24px; font-size: 12.5px; line-height: 1.65; color: #8fb0ac; max-width: 900px; }
.foot-disc p { margin: 0 0 10px; }
.foot-year { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: #7ea39f; margin-top: 18px; }

/* ---------- Specificity guards (prose and section-head overrides) ---------- */
.prose .btn, .prose .btn:hover, .prose .btn .arw { color: #fff; }
.prose .btn.ghost, .prose .btn.ghost:hover, .prose .btn.ghost .arw { color: var(--teal-ink); }
.clinic-top .cta { grid-template-columns: 1fr; padding: 26px 26px; height: 100%; }
.clinic-top .cta h3 { font-size: 21px; }
.clinic-top .cta .cta-actions { margin-top: 16px; }
.prose .keytakeaways h2, .prose .related h2, .prose .side-box h2 { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; color: var(--teal); margin: 0 0 14px; }
.section-head p.reg, .clinic p.reg, section p.reg { font-size: 11.5px; color: var(--teal); margin: 0 0 18px; line-height: 1.4; }
.section-head p.reg { margin-bottom: 16px; }
.nav-wrap { position: relative; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero .shell { grid-template-columns: 1fr; gap: 44px; padding-top: 52px; padding-bottom: 60px; }
  .hero-copy { max-width: 100%; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .step, .step:first-child { padding: 0 0 0 22px; border-left: 1px solid rgba(255,255,255,0.16); }
  .feature .shell { grid-template-columns: 1fr; gap: 30px; }
  .feature.flip .shell > :first-child { order: 0; }
  .rooms, .quotes { grid-template-columns: 1fr; }
  .clinic-top { grid-template-columns: 1fr; gap: 20px; }
  .article .shell { grid-template-columns: minmax(0, var(--read)); gap: 36px; }
  .side { position: static; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .foot-about { grid-column: 1 / -1; }
  .card.urgent { grid-template-columns: 44px 1fr; }
  .card.urgent .aside { grid-column: 2; border-left: none; padding-left: 0; border-top: 1px solid var(--rose-line); padding-top: 14px; }
  .room-full { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  body { font-size: 16.5px; }
  .shell { padding: 0 20px; }
  section { padding: 52px 0; }
  .masthead .shell { padding-top: 20px; }
  .brand .mark { width: 38px; height: 38px; }
  .brand-name { font-size: 22px; }
  .nav { justify-content: flex-start; gap: 0 20px; margin-top: 14px; padding: 11px 0 12px; margin-left: -20px; margin-right: -20px; padding-left: 20px; padding-right: 20px; }
  .hero h1 { font-size: clamp(31px, 8.6vw, 40px); }
  .hero .lede { font-size: 17px; }
  .matted::before { inset: 12px -12px -12px 12px; }
  .matted figcaption { margin-top: 24px; }
  .index { grid-template-columns: 1fr; }
  .card { padding: 20px 20px 18px; grid-template-columns: 36px 1fr; gap: 10px; }
  .card.urgent h3 { font-size: 22px; }
  .clinic-plate { padding: 28px 22px 26px; }
  .cta { grid-template-columns: 1fr; padding: 24px 22px; }
  .prose { font-size: 17.5px; }
  .prose h2 { font-size: 22px; }
  .prose .keytakeaways h2, .prose .related h2 { font-size: 11px; }
  .nav { -webkit-mask-image: linear-gradient(to right, #000 82%, transparent); mask-image: linear-gradient(to right, #000 82%, transparent); padding-right: 48px; }
  .article-head { padding: 44px 0 34px; }
  .article .shell { padding-top: 34px; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .faq-list summary { font-size: 18px; }
  .room-full { padding: 22px 20px; }
}

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

/* Cascade guard: the phone rule `.prose h2` shares specificity with the register
   labels inside .prose and is declared later, which inflated them at 390px.
   Re-declare their sizes last so they hold at every width. */
.keytakeaways h2 { font-size: 11.5px; }
.prose .keytakeaways h2 { font-size: 11px; }
.prose .related h2 { font-size: 11px; }
.prose .side-box h2 { font-size: 11.5px; }
.related h2 { font-size: 11.5px; }
.side-box h2 { font-size: 11px; }

/* 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; }
}
