/* ==========================================================================
   STL Spine Report
   A river city report. The city paper for one beat: what a St. Louis wreck
   does to a spine and a brain, and why the exam should happen this week.

   Identity
     Mark:      "the stack", six vertebrae set in a river-blue plate, read
                top to bottom like a column of type.
     Type:      Besley (slab display, a headline face with ink in it)
                Vollkorn (reading text)
                Fira Mono (wire labels, datelines, folios, captions)
     Palette:   newsprint canvas, warm paper, night-river ink, river blue
                for emphasis and links, St. Louis brick red for the wire dot
                and the one button that matters.
     Signature: the masthead double rule (heavy over hairline) and the
                "river rule", a wave hairline that divides sections. Mono
                datelines with a brick dot. One italic phrase per headline,
                set in river blue.
     Hero:      split. Headline column left, bordered photograph right with
                a mono caption, like a front page above the fold.
   ========================================================================== */

:root {
  --canvas: #f4f3ee;
  --canvas-2: #ebe9e1;
  --paper: #fffdf9;
  --paper-2: #faf8f2;

  --ink: #17222b;
  --ink-2: #243440;
  --muted: #5b6670;
  --faint: #8a939b;

  --river: #1d5c86;
  --river-deep: #144666;
  --river-wash: #e6eef4;
  --brick: #a5402f;
  --brick-deep: #85301f;
  --brick-wash: #f5e8e4;

  --line: #d9d6cc;
  --line-soft: #e7e4da;
  --rule: #17222b;

  --night: #0e1c26;
  --night-2: #15283a;
  --on-night: #f4f3ee;
  --on-night-soft: #aab9c4;

  --display: "Besley", "Rockwell", Georgia, serif;
  --serif: "Vollkorn", "Iowan Old Style", Georgia, serif;
  --mono: "Fira Mono", "Courier New", Courier, monospace;

  --shell: 1180px;
  --read: 720px;
  --ease: cubic-bezier(0.25, 0.1, 0.2, 1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--river); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--river-deep); }
:focus-visible { outline: 2px solid var(--brick); outline-offset: 3px; }
::selection { background: var(--river-wash); color: var(--ink); }

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

/* ---------- register labels, the wire dateline ---------- */
.wire {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brick);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}
.wire::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brick);
  flex: 0 0 auto;
}
.wire.plain::before { display: none; }
.wire.blue { color: var(--river); }
.wire.blue::before { background: var(--river); }

/* ---------- the river rule ---------- */
.river {
  border: 0;
  height: 14px;
  margin: 0;
  background-repeat: repeat-x;
  background-position: center;
  background-size: 56px 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 14'%3E%3Cpath d='M0 7 C 7 2, 14 2, 21 7 S 35 12, 42 7 S 56 2, 56 7' fill='none' stroke='%231d5c86' stroke-width='1.2'/%3E%3C/svg%3E");
  opacity: 0.8;
}
.river.on-night {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 14'%3E%3Cpath d='M0 7 C 7 2, 14 2, 21 7 S 35 12, 42 7 S 56 2, 56 7' fill='none' stroke='%23aab9c4' stroke-width='1.2'/%3E%3C/svg%3E");
  opacity: 0.55;
}

/* ---------- emergency strip ---------- */
.alert {
  background: var(--night);
  color: var(--on-night-soft);
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.alert .shell { padding-top: 9px; padding-bottom: 9px; display: flex; gap: 12px; align-items: flex-start; }
.alert .shell::before {
  content: "";
  flex: 0 0 auto;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brick);
  box-shadow: 0 0 0 3px rgba(165, 64, 47, 0.25);
  margin-top: 6px;
}
.alert strong { color: #fff; font-weight: 700; }
.alert .short { display: none; }
.alert a { color: #fff; }

/* ---------- masthead ---------- */
.masthead { background: var(--canvas); }
.mast-top {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 14px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.mast-top span:last-child { text-align: right; }
.mast-name {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 26px 0 18px;
  text-decoration: none; color: var(--ink);
}
.mast-name:hover { color: var(--ink); }
.mast-name .mark { width: 52px; height: 52px; margin-bottom: 14px; }
.mast-name .name {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(38px, 5.6vw, 66px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.mast-name .name i { font-style: normal; color: var(--river); }
.mast-name .tag {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.mark-svg { display: block; width: 100%; height: 100%; }

.mast-rule { height: 0; border-top: 3px solid var(--rule); position: relative; }
.mast-rule::after { content: ""; position: absolute; left: 0; right: 0; top: 2px; border-top: 1px solid var(--rule); }
.navbar { border-bottom: 1px solid var(--line); position: relative; }
.nav {
  display: flex; justify-content: center; gap: 4px; flex-wrap: wrap;
  margin: 0; padding: 0; list-style: none;
}
.nav a {
  display: block;
  padding: 13px 13px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-2);
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav a:hover { color: var(--river); border-bottom-color: var(--river); }
.nav a[aria-current="page"] { color: var(--brick); border-bottom-color: var(--brick); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--brick); color: #fff;
  font-family: var(--display); font-weight: 700; font-size: 15px;
  letter-spacing: 0.01em;
  padding: 14px 24px;
  border: 1px solid var(--brick-deep);
  border-radius: 2px;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(23, 34, 43, 0.15), 0 12px 24px -14px rgba(133, 48, 31, 0.6);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn:hover { background: var(--brick-deep); color: #fff; transform: translateY(-1px); }
.btn .arw { font-family: var(--serif); transition: transform 0.2s var(--ease); }
.btn:hover .arw { transform: translateX(3px); }
.btn.ghost {
  background: transparent; color: var(--ink);
  border-color: var(--ink); box-shadow: none;
}
.btn.ghost:hover { background: var(--paper); color: var(--river); border-color: var(--river); }
.btn.on-night { background: var(--brick); border-color: #c2543f; }
.btn.on-night.ghost { background: transparent; color: var(--on-night); border-color: var(--on-night-soft); }
.btn.on-night.ghost:hover { color: #fff; border-color: #fff; background: transparent; }

/* ---------- hero (front page) ---------- */
.front { padding: 54px 0 60px; background: var(--canvas); }
.front .shell {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
}
.front .wire { margin-bottom: 22px; }
.front h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 0 0 22px;
  color: var(--ink);
}
h1 em, h2 em { font-style: italic; font-weight: 400; color: var(--river); }
.front .lede {
  font-size: 19.5px; line-height: 1.58; color: var(--ink-2);
  margin: 0 0 30px; max-width: 52ch;
}
.front .actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.front .note {
  margin: 18px 0 0;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em;
  color: var(--muted);
}
.front .note a { color: var(--ink); }

figure { margin: 0; }
.photo img {
  width: 100%; height: auto;
  border: 1px solid var(--line);
  outline: 1px solid var(--paper);
  outline-offset: -5px;
}
.photo figcaption {
  margin-top: 11px;
  font-family: var(--mono);
  font-size: 11.5px; line-height: 1.55;
  letter-spacing: 0.03em;
  color: var(--muted);
  display: flex; gap: 10px; align-items: flex-start;
}
.photo figcaption::before {
  content: ""; flex: 0 0 auto; width: 8px; height: 8px; border-radius: 50%;
  background: var(--river); margin-top: 6px;
}
.photo figcaption .credit { color: var(--faint); }
.hero-photo img { aspect-ratio: 3 / 2; object-fit: cover; }

/* ---------- the beat band ---------- */
.beat { background: var(--night); color: var(--on-night-soft); padding: 60px 0 64px; }
.beat .wire { color: #d98a79; margin-bottom: 30px; }
.beat .wire::before { background: var(--brick); }
.beat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.beat-item { padding: 6px 34px 0; border-left: 1px solid rgba(255, 255, 255, 0.12); }
.beat-item:first-child { padding-left: 0; border-left: 0; }
.beat-item .num {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em;
  color: #d98a79; display: block; margin-bottom: 14px;
}
.beat-item h3 {
  font-family: var(--display); font-weight: 700;
  font-size: 22px; line-height: 1.15; letter-spacing: -0.01em;
  color: #fff; margin: 0 0 10px;
}
.beat-item p { margin: 0; font-size: 15.5px; line-height: 1.6; }
.beat-item a { color: #fff; }

/* ---------- sections ---------- */
section { padding: 64px 0; }
.section-head { margin-bottom: 36px; display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.section-head h2 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(28px, 3.4vw, 40px); line-height: 1.05; letter-spacing: -0.02em;
  margin: 14px 0 0; max-width: 24ch; color: var(--ink);
}
.section-head .count {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint);
}

/* ---------- index of the report (two newspaper columns) ---------- */
.index {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px;
  border-top: 3px solid var(--rule);
  position: relative;
}
.index::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 50%;
  border-left: 1px solid var(--line);
}
.entry {
  display: grid; grid-template-columns: 46px 1fr; gap: 16px;
  padding: 24px 0 26px;
  border-bottom: 1px solid var(--line);
  text-decoration: none; color: var(--ink);
}
.entry.lead { grid-column: 1 / -1; grid-template-columns: 46px 1fr; padding: 30px 0 32px; position: relative; z-index: 1; background: var(--canvas); border-bottom: 1px solid var(--rule); }
.entry.lead h3 { font-size: 30px; }
.entry.lead p { font-size: 17px; max-width: 70ch; }
.entry .folio {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.08em; color: var(--brick); padding-top: 6px;
}
.entry .tag {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
  display: block; margin-bottom: 8px;
}
.entry h3 {
  font-family: var(--display); font-weight: 700;
  font-size: 22px; line-height: 1.16; letter-spacing: -0.012em;
  margin: 0 0 8px; color: var(--ink);
  transition: color 0.2s var(--ease);
}
.entry:hover h3 { color: var(--river); }
.entry p { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--muted); }
.entry .go {
  display: inline-block; margin-top: 10px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--river);
}

/* ---------- wide photo ---------- */
.wide { padding: 0 0 64px; }
.wide .photo img { aspect-ratio: 21 / 9; object-fit: cover; }

/* ---------- the clinic plate and the rooms ---------- */
.plate {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--rule);
  padding: 36px 40px 34px;
  box-shadow: 0 1px 2px rgba(23, 34, 43, 0.04), 0 28px 50px -40px rgba(23, 34, 43, 0.45);
}
.plate .wire { margin-bottom: 16px; }
.plate h2, .plate h3.title {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(26px, 3vw, 34px); line-height: 1.08; letter-spacing: -0.018em; margin: 0 0 6px;
}
.plate .sub { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--river); margin: 0 0 18px; }
.plate p { margin: 0 0 16px; font-size: 17px; color: var(--ink-2); }
.plate .lanes { display: flex; gap: 10px; flex-wrap: wrap; margin: 6px 0 22px; padding: 0; list-style: none; }
.plate .lanes li {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-2); background: var(--canvas); border: 1px solid var(--line); padding: 7px 11px;
}
.rooms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 26px; border-top: 1px solid var(--line); }
.room { padding: 24px 26px 24px 0; border-right: 1px solid var(--line); margin-right: 26px; }
.room:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.room .wire { margin-bottom: 10px; font-size: 11px; }
.room h4 { font-family: var(--display); font-weight: 700; font-size: 20px; margin: 0 0 8px; letter-spacing: -0.01em; }
.room address { font-style: normal; font-size: 15.5px; line-height: 1.55; color: var(--ink-2); margin: 0 0 8px; }
.room .hours { font-family: var(--mono); font-size: 12px; line-height: 1.6; color: var(--muted); margin: 0 0 12px; }
.room .tel { font-family: var(--display); font-weight: 700; font-size: 17px; color: var(--ink); text-decoration: none; display: inline-block; margin-bottom: 10px; }
.room .tel:hover { color: var(--river); }
.room .go { display: block; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; }
.room.near { position: relative; }
.room.near h4::after { content: " nearest"; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brick); vertical-align: middle; margin-left: 6px; }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 28px; }
.reviews blockquote {
  margin: 0; padding: 20px 22px;
  background: var(--canvas); border: 1px solid var(--line);
  font-size: 16.5px; line-height: 1.5; font-style: italic; color: var(--ink-2);
}
.reviews blockquote cite { display: block; margin-top: 12px; font-style: normal; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; color: var(--muted); }
.reviews-note { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.04em; color: var(--faint); margin: 14px 0 0; }

/* ---------- disclosure ---------- */
.disclose {
  font-family: var(--mono);
  font-size: 12px; line-height: 1.65; letter-spacing: 0.01em;
  color: var(--muted);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 16px 0;
  margin: 34px 0 0;
}
.disclose strong { color: var(--ink-2); font-weight: 700; }

/* ---------- article pages ---------- */
.article-head { padding: 52px 0 38px; background: var(--canvas); border-bottom: 1px solid var(--line); }
.article-head .read { display: grid; grid-template-columns: 1fr; }
.article-head .wire { margin-bottom: 20px; }
.article-head h1 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(32px, 4.4vw, 50px); line-height: 1.04; letter-spacing: -0.022em;
  margin: 0 0 20px; color: var(--ink);
}
.article-head .lede { font-size: 21px; line-height: 1.5; color: var(--ink-2); margin: 0; max-width: 60ch; }
.dateline {
  margin-top: 26px; padding-top: 14px; border-top: 3px solid var(--rule);
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  display: flex; gap: 18px; flex-wrap: wrap;
}
.dateline b { color: var(--ink); font-weight: 700; }

.article { padding: 40px 0 20px; background: var(--canvas); }
.prose { font-size: 19px; line-height: 1.7; color: var(--ink-2); }
.prose p { margin: 0 0 22px; }
.prose h2 {
  font-family: var(--display); font-weight: 700;
  font-size: 27px; line-height: 1.16; letter-spacing: -0.018em; color: var(--ink);
  margin: 46px 0 14px; padding-top: 18px; border-top: 1px solid var(--line);
}
.prose h3 { font-family: var(--display); font-weight: 700; font-size: 21px; letter-spacing: -0.01em; margin: 30px 0 8px; color: var(--ink); }
.prose ul, .prose ol { margin: 0 0 24px; padding: 0; list-style: none; }
.prose li { position: relative; padding-left: 28px; margin-bottom: 12px; line-height: 1.6; }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 12px; width: 8px; height: 8px; border-radius: 50%; background: var(--river); }
.prose ol { counter-reset: step; }
.prose ol li { counter-increment: step; padding-left: 40px; }
.prose ol li::before { content: counter(step, decimal-leading-zero); position: absolute; left: 0; top: 3px; font-family: var(--mono); font-size: 14px; color: var(--brick); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose .lead-in::first-letter {
  font-family: var(--display); font-weight: 900; float: left;
  font-size: 66px; line-height: 0.8; padding: 8px 10px 0 0; color: var(--brick);
}
.prose .photo { margin: 36px 0; }
.prose .photo img { aspect-ratio: 3 / 2; object-fit: cover; }
.prose .source { font-family: var(--mono); font-size: 12.5px; color: var(--muted); letter-spacing: 0.02em; }

.takeaways {
  background: var(--paper); border: 1px solid var(--line); border-top: 3px solid var(--brick);
  padding: 24px 28px 22px; margin: 0 0 36px;
}
.takeaways h2 { margin: 0 0 14px; padding: 0; border: 0; font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brick); font-weight: 400; }
.takeaways ul { margin: 0; padding: 0; list-style: none; }
.takeaways li { position: relative; padding-left: 26px; font-size: 16.5px; line-height: 1.5; color: var(--ink); margin-bottom: 10px; }
.takeaways li:last-child { margin-bottom: 0; }
.takeaways li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--brick); }

.pull {
  margin: 34px 0; padding: 6px 0 6px 24px;
  border-left: 3px solid var(--river);
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: 25px; line-height: 1.3; color: var(--river-deep);
}
.callout {
  background: var(--paper); border: 1px solid var(--line); border-left: 3px solid var(--river);
  padding: 20px 24px; margin: 30px 0; font-size: 17px; line-height: 1.6;
}
.callout strong { display: block; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--river); margin-bottom: 8px; font-weight: 400; }
.callout.er { border-left-color: var(--brick); }
.callout.er strong { color: var(--brick); }

.cta {
  background: var(--night); color: var(--on-night-soft);
  padding: 34px 36px; margin: 44px 0 0;
  border-top: 4px solid var(--brick);
}
.cta .wire { color: #d98a79; margin-bottom: 14px; }
.cta .wire::before { background: var(--brick); }
.cta h2 { font-family: var(--display); font-weight: 900; font-size: clamp(24px, 3vw, 32px); line-height: 1.1; letter-spacing: -0.018em; color: #fff; margin: 0 0 12px; }
.cta h2 em { color: #9cc4e0; font-weight: 400; }
.cta p { margin: 0 0 22px; font-size: 16.5px; line-height: 1.6; max-width: 60ch; }
.cta .actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.cta .rooms-line { margin: 20px 0 0; font-family: var(--mono); font-size: 12px; line-height: 1.7; letter-spacing: 0.02em; color: var(--on-night-soft); }
.cta .rooms-line a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.35); }
.cta .rooms-line a:hover { border-bottom-color: #fff; }

.related { margin-top: 44px; padding-top: 22px; border-top: 3px solid var(--rule); }
.related h2 { margin: 0 0 10px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brick); font-weight: 400; }
.related a {
  display: flex; justify-content: space-between; gap: 16px; align-items: baseline;
  padding: 13px 0; border-bottom: 1px solid var(--line);
  font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: -0.01em;
  color: var(--ink); text-decoration: none; transition: color 0.2s var(--ease);
}
.related a:hover { color: var(--river); }
.related a span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); white-space: nowrap; }
.educational { font-family: var(--mono); font-size: 12px; line-height: 1.6; color: var(--faint); margin: 26px 0 0; }

/* ---------- FAQ ---------- */
.faq { counter-reset: q; border-top: 3px solid var(--rule); margin-top: 10px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  display: grid; grid-template-columns: 44px 1fr 24px; gap: 14px; align-items: baseline;
  padding: 20px 0;
  font-family: var(--display); font-weight: 700; font-size: 20px; line-height: 1.25; letter-spacing: -0.01em; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { counter-increment: q; content: counter(q, decimal-leading-zero); font-family: var(--mono); font-size: 13px; font-weight: 400; color: var(--brick); letter-spacing: 0.08em; }
.faq summary::after { content: "+"; font-family: var(--mono); font-size: 20px; color: var(--river); text-align: right; }
.faq details[open] summary::after { content: "\2212"; }
.faq summary:hover { color: var(--river); }
.faq .a { padding: 0 0 24px 58px; font-size: 17.5px; line-height: 1.65; color: var(--ink-2); }
.faq .a p { margin: 0 0 14px; }
.faq .a p:last-child { margin-bottom: 0; }

/* ---------- rooms page ---------- */
.room-cards { display: grid; grid-template-columns: 1fr; gap: 22px; margin: 30px 0 0; }
.room-card {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px;
  background: var(--paper); border: 1px solid var(--line); border-top: 3px solid var(--rule);
  padding: 28px 32px;
}
.room-card.near { border-top-color: var(--brick); }
.room-card h2 { font-family: var(--display); font-weight: 900; font-size: 28px; letter-spacing: -0.018em; margin: 6px 0 10px; line-height: 1.1; }
.room-card address { font-style: normal; font-size: 17.5px; line-height: 1.5; margin: 0 0 14px; color: var(--ink-2); }
.room-card .tel { font-family: var(--display); font-weight: 700; font-size: 22px; color: var(--ink); text-decoration: none; }
.room-card .tel:hover { color: var(--river); }
.room-card .hours { font-family: var(--mono); font-size: 12.5px; line-height: 1.7; color: var(--muted); margin: 0; }
.room-card .hours b { color: var(--ink); font-weight: 700; }
.room-card .side { border-left: 1px solid var(--line); padding-left: 30px; display: flex; flex-direction: column; justify-content: space-between; gap: 18px; }
.room-card .side p { margin: 0; font-size: 16px; color: var(--ink-2); line-height: 1.55; }

/* ---------- footer ---------- */
.foot { background: var(--night); color: var(--on-night-soft); border-top: 4px solid var(--brick); font-size: 14.5px; }
.foot .shell { padding-top: 54px; padding-bottom: 40px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.foot .brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; color: #fff; text-decoration: none; }
.foot .brand .mark { width: 38px; height: 38px; }
.foot .brand b { font-family: var(--display); font-weight: 900; font-size: 20px; letter-spacing: -0.015em; display: block; line-height: 1; }
.foot .brand span { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-night-soft); margin-top: 5px; }
.foot p { margin: 0; line-height: 1.6; max-width: 40ch; }
.foot h4 { margin: 0 0 14px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #d98a79; font-weight: 400; }
.foot a { color: #dfe6ea; text-decoration: none; display: block; margin-bottom: 9px; }
.foot a:hover { color: #fff; text-decoration: underline; }
.foot .tel { font-family: var(--mono); font-size: 13px; }
.foot-bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--mono); font-size: 11.5px; line-height: 1.7; color: #7f93a0;
}
.foot-bottom p { max-width: 100%; margin-bottom: 10px; }
.foot-bottom .year { color: var(--on-night-soft); }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .front .shell { grid-template-columns: 1fr; gap: 34px; }
  .beat-grid { grid-template-columns: 1fr; gap: 28px; }
  .beat-item { padding: 0 0 0 22px; border-left: 1px solid rgba(255, 255, 255, 0.14); }
  .beat-item:first-child { padding-left: 22px; border-left: 1px solid rgba(255, 255, 255, 0.14); }
  .index { grid-template-columns: 1fr; }
  .index::before { display: none; }
  .rooms { grid-template-columns: 1fr; }
  .room { border-right: 0; margin-right: 0; padding-right: 0; border-bottom: 1px solid var(--line); }
  .room:last-child { border-bottom: 0; }
  .reviews { grid-template-columns: 1fr; gap: 14px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .foot-grid > div:first-child { grid-column: 1 / -1; }
  .room-card { grid-template-columns: 1fr; gap: 20px; }
  .room-card .side { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 18px; }
}
@media (max-width: 640px) {
  body { font-size: 17px; }
  .shell, .read { padding: 0 20px; }
  section { padding: 48px 0; }
  .alert .long { display: none; }
  .alert .short { display: inline; }
  .mast-top { font-size: 10px; flex-direction: column; gap: 4px; align-items: center; text-align: center; }
  .mast-top span:last-child { text-align: center; }
  .mast-name { padding: 20px 0 16px; }
  .mast-name .mark { width: 44px; height: 44px; margin-bottom: 10px; }
  .navbar { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .navbar::-webkit-scrollbar { display: none; }
  .navbar::after { content: ""; position: sticky; display: block; float: right; right: 0; top: 0; width: 44px; height: 44px; margin-top: -44px; pointer-events: none; background: linear-gradient(90deg, rgba(244,243,238,0), var(--canvas) 75%); }
  .nav { justify-content: flex-start; flex-wrap: nowrap; width: max-content; min-width: 100%; padding: 0 12px; }
  .nav a { padding: 13px 10px; font-size: 12.5px; white-space: nowrap; }
  .front { padding: 40px 0 46px; }
  .front h1 { font-size: clamp(34px, 9.2vw, 42px); }
  .front .lede { font-size: 18px; }
  .btn { padding: 13px 18px; font-size: 14.5px; }
  .beat { padding: 46px 0; }
  .section-head h2 { font-size: 30px; }
  .entry { grid-template-columns: 36px 1fr; gap: 12px; }
  .entry.lead { grid-template-columns: 36px 1fr; }
  .entry.lead h3 { font-size: 25px; }
  .entry h3 { font-size: 20px; }
  .plate { padding: 26px 20px 24px; }
  .article-head { padding: 38px 0 30px; }
  .article-head h1 { font-size: clamp(30px, 8.6vw, 38px); }
  .article-head .lede { font-size: 18.5px; }
  .prose { font-size: 18px; }
  .prose h2 { font-size: 24px; }
  .pull { font-size: 21px; }
  .cta { padding: 26px 22px; }
  .faq summary { grid-template-columns: 36px 1fr 20px; font-size: 18px; gap: 10px; }
  .faq .a { padding-left: 46px; }
  .room-card { padding: 22px 20px; }
  .foot-grid { grid-template-columns: 1fr; gap: 26px; }
  .wide .photo img { aspect-ratio: 4 / 3; }
}

@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. */
.prose .related h2 { font-size: 12px; }
.prose .takeaways h2 { font-size: 12px; }
.related h2 { font-size: 12px; }
.takeaways h2 { font-size: 12px; }

/* 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) {
  .navbar { overflow-x: visible; }
  .navbar::after, .navbar::before { content: none; }
  .nav { flex-wrap: wrap; width: auto; min-width: 0; row-gap: 2px; }
  .nav a { white-space: nowrap; }
}
