/* ==========================================================================
   St. Louis Back Pain Guide (stlouisbackpainguide.com)
   A practical city guide, built the way the metro's road signs are built.

   Concept:   wayfinding. The reader is sore, in a car, or on a shift, and
              needs one clear panel telling them which way to go. So the
              desk borrows the grammar of the interstate guide sign: a deep
              green panel, white letters, a hairline inset border, and one
              orange detour tab for the thing that changed.
   Type:      Bricolage Grotesque (display, 800) for the masthead and the
              headlines; Faustina for reading and for the single
              italic phrase in every headline; Space Mono for register
              labels, route tabs, hours, and phone numbers.
   Palette:   warm paper (#fbfaf6), soft ink (#191c17), guide-sign green
              (#0f7a5c) over a deep sign green (#10241d), detour orange
              (#d1651f), a bone rule (#e2e0d6).
   Signature: the route tab (a small mono label in a green pill, like an
              exit tab), the pin-with-pulse mark, and the dotted route rule
              that runs between sections. Captions are set as mono sign
              text under a thin rule, the way a legend sits under a map.
   ========================================================================== */

:root {
  --paper: #fbfaf6;
  --paper-2: #f3f1ea;
  --white: #ffffff;
  --ink: #191c17;
  --ink-2: #3a3f38;
  --muted: #62675e;
  --mute-2: #8a8f85;
  --line: #e2e0d6;
  --line-2: #cfccc0;

  --green: #0f7a5c;
  --green-2: #0b5f48;
  --sign: #10241d;
  --sign-2: #183328;
  --onsign: #f4f9f4;
  --onsign-2: #b9d3c6;
  --onsign-3: #7fa493;
  --green-wash: #e6f1ec;

  --orange: #d1651f;
  --orange-2: #b2521a;
  --orange-wash: #fbeee4;

  --display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --serif: "Faustina", Georgia, "Times New Roman", serif;
  --mono: "Space Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --shell: 1160px;
  --read: 720px;
  --r: 4px;
  --r-lg: 12px;
  --ease: cubic-bezier(0.3, 0.02, 0.2, 1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-2); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--sign); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 2px; }
.shell { max-width: var(--shell); margin: 0 auto; padding: 0 32px; }
.read { max-width: var(--read); }

/* ---------- Register label and route tab (signature) ---------- */
.reg {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.reg::before {
  content: "";
  width: 18px; height: 2px;
  background: var(--orange);
  flex: 0 0 auto;
}
.tab {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 6px 8px 5px;
  border-radius: 3px;
  background: var(--green);
  color: var(--onsign);
  text-transform: uppercase;
  white-space: nowrap;
}
.tab.orange { background: var(--orange); }
.tab.hollow { background: transparent; color: var(--green-2); border: 1px solid var(--line-2); }

/* dotted route rule */
.route {
  height: 0;
  border: 0;
  border-top: 2px dotted var(--line-2);
  margin: 0;
  position: relative;
}
.route::after {
  content: "";
  position: absolute; left: 50%; top: -7px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--orange);
  transform: translateX(-50%);
}

/* ---------- Top strip: the disclosure sits on top on this desk ---------- */
.topstrip {
  background: var(--sign);
  color: var(--onsign-2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.topstrip .shell {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 9px; padding-bottom: 9px;
}
.topstrip a { color: var(--onsign); text-decoration: none; }
.topstrip a:hover { text-decoration: underline; }

/* ---------- Masthead ---------- */
.masthead {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.masthead .shell {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding-top: 18px; padding-bottom: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--sign); }
.brand svg { width: 40px; height: 40px; flex: 0 0 auto; color: var(--green); }
.brand-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--sign);
}
.brand-name small {
  display: block;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-2);
  margin-top: 5px;
}
.nav { display: flex; gap: 4px 22px; flex-wrap: wrap; align-items: center; }
.nav a {
  font-family: var(--display);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  color: var(--ink-2);
  text-decoration: none;
  padding: 6px 0;
  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(--sign); border-bottom-color: var(--orange); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 700; font-size: 15.5px; letter-spacing: -0.005em;
  background: var(--orange); color: #fff; text-decoration: none;
  padding: 14px 22px; border-radius: var(--r);
  border: 1px solid var(--orange-2);
  box-shadow: 0 1px 1px rgba(40, 20, 5, 0.12), 0 10px 22px -12px rgba(178, 82, 26, 0.55);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.btn:hover { background: var(--orange-2); color: #fff; transform: translateY(-1px); }
.btn.green { background: var(--green); border-color: var(--green-2); box-shadow: 0 10px 22px -12px rgba(15, 122, 92, 0.55); }
.btn.green:hover { background: var(--green-2); }
.btn.ghost { background: transparent; color: var(--sign); border-color: var(--line-2); box-shadow: none; }
.btn.ghost:hover { background: var(--white); border-color: var(--green); color: var(--sign); }
.btn .arw { transition: transform 0.2s var(--ease); }
.btn:hover .arw { transform: translateX(3px); }
.actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.phone {
  font-family: var(--mono); font-size: 14px; letter-spacing: 0.02em;
  color: var(--sign); text-decoration: none; border-bottom: 1px solid var(--line-2); white-space: nowrap;
}
.phone:hover { border-bottom-color: var(--orange); }

/* ---------- Home hero: copy left, photograph right ---------- */
.hero { background: var(--paper); position: relative; overflow: hidden; padding: 0; }
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(16, 36, 29, 0.10) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(80% 90% at 100% 0%, #000 0%, transparent 70%);
  mask-image: radial-gradient(80% 90% at 100% 0%, #000 0%, transparent 70%);
  pointer-events: none;
}
.hero .shell {
  position: relative;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center;
  padding-top: 64px; padding-bottom: 72px;
}
.hero .reg { margin-bottom: 22px; }
.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(38px, 4.9vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--sign);
  margin: 0 0 22px;
  max-width: 15ch;
}
h1 em, h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--green);
}
.hero .lede {
  font-size: 19.5px; line-height: 1.55; color: var(--ink-2);
  max-width: 50ch; margin: 0 0 30px;
}
.hero-fig { margin: 0; }
.hero-fig img {
  width: 100%; height: auto; border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(16, 36, 29, 0.05), 0 30px 50px -36px rgba(16, 36, 29, 0.5);
}
figcaption, .cap {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--mute-2); line-height: 1.6;
  margin-top: 12px; padding-top: 10px;
  border-top: 1px solid var(--line);
}
figcaption b { color: var(--green-2); font-weight: 400; }

/* the nearest-room plate under the hero copy */
.nearest {
  display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center;
  margin-top: 34px; padding: 16px 18px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  max-width: 520px;
}
.nearest .tab { align-self: start; justify-self: start; margin-top: 3px; display: inline-block; color: var(--onsign); font-size: 11px; line-height: 1; }
.nearest strong { font-family: var(--display); font-weight: 700; font-size: 16px; color: var(--sign); display: block; letter-spacing: -0.01em; }
.nearest span { font-family: var(--mono); font-size: 12px; color: var(--muted); line-height: 1.6; display: block; }

/* ---------- Sections ---------- */
section { padding: 76px 0; }
.section-head { max-width: 680px; margin-bottom: 40px; }
.section-head .reg { margin-bottom: 18px; }
h2.big, .section-head h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(28px, 3.4vw, 40px); line-height: 1.04; letter-spacing: -0.03em;
  color: var(--sign); margin: 0;
}
.section-head p { margin: 16px 0 0; color: var(--muted); font-size: 17px; max-width: 58ch; }

/* two usual suspects */
.suspects { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.suspect { display: grid; grid-template-rows: auto 1fr; }
.suspect figure { margin: 0 0 22px; }
.suspect img { border-radius: var(--r-lg); border: 1px solid var(--line); aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.suspect h3 {
  font-family: var(--display); font-weight: 800; font-size: 26px; letter-spacing: -0.025em; line-height: 1.1;
  color: var(--sign); margin: 0 0 12px;
}
.suspect p { margin: 0 0 14px; color: var(--ink-2); font-size: 17px; }
.suspect a.more { font-family: var(--display); font-weight: 700; font-size: 15px; text-decoration: none; color: var(--green-2); }
.suspect a.more:hover { color: var(--orange-2); }

/* ---------- Guide index: numbered like exits ---------- */
.index { border-top: 2px solid var(--sign); }
.entry {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 28px; align-items: start;
  padding: 26px 8px 26px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none; color: var(--sign);
  transition: background 0.25s var(--ease);
}
.entry:hover { background: linear-gradient(90deg, var(--paper-2), rgba(243, 241, 234, 0)); }
.entry .num {
  font-family: var(--mono); font-size: 13px; color: var(--onsign);
  background: var(--green); border-radius: 3px; padding: 7px 0 6px; text-align: center; width: 48px;
  margin-top: 3px;
}
.entry:hover .num { background: var(--orange); }
.entry h3 {
  font-family: var(--display); font-weight: 700; font-size: 23px; letter-spacing: -0.022em; line-height: 1.12;
  margin: 0 0 8px; color: var(--sign);
}
.entry:hover h3 { color: var(--green-2); }
.entry p { margin: 0; font-size: 16px; color: var(--muted); max-width: 60ch; line-height: 1.55; }
.entry .kind { display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange-2); margin-bottom: 8px; }
.entry .go { align-self: center; color: var(--line-2); display: flex; transition: color 0.2s var(--ease), transform 0.2s var(--ease); }
.entry .go svg { width: 24px; height: 24px; }
.entry:hover .go { color: var(--orange); transform: translateX(4px); }

/* ---------- Sign panel (featured clinic, rooms) ---------- */
.sign {
  background: var(--sign); color: var(--onsign);
  border-radius: var(--r-lg); position: relative; overflow: hidden;
  box-shadow: 0 1px 2px rgba(16, 36, 29, 0.1), 0 30px 60px -40px rgba(16, 36, 29, 0.8);
}
.sign::before {
  content: ""; position: absolute; inset: 10px;
  border: 1.5px solid rgba(244, 249, 244, 0.55); border-radius: 8px; pointer-events: none;
}
.sign .pad { padding: 44px 48px; position: relative; }
.sign .reg { color: var(--onsign-2); }
.sign .reg::before { background: var(--orange); }
.sign p.reg { font-size: 11.5px; margin: 0; }
.sign h2, .sign h3 {
  font-family: var(--display); font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1.04;
}
.sign h2 { font-size: clamp(28px, 3.4vw, 40px); margin: 18px 0 14px; max-width: 20ch; }
.sign h2 em { color: var(--onsign-2); }
.sign p { color: var(--onsign-2); margin: 0 0 18px; max-width: 62ch; font-size: 17px; }
.sign p strong { color: #fff; font-weight: 600; }
.sign a { color: #fff; }
.sign .btn { margin-top: 6px; }
.sign .btn.ghost { color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.sign .btn.ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: #fff; }
.sign .mark-bg {
  position: absolute; right: -40px; bottom: -60px; width: 300px; height: 300px;
  color: var(--sign-2); opacity: 1; pointer-events: none;
}
.sign .prov-inner { position: relative; z-index: 1; }
.sign .small {
  font-family: var(--mono); font-size: 11.5px; line-height: 1.65; letter-spacing: 0.02em;
  color: var(--onsign-3); margin: 26px 0 0; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 74ch; text-transform: none;
}

/* rooms grid */
.rooms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; position: relative; z-index: 1; }
.room {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 8px;
  padding: 22px 22px 20px; display: flex; flex-direction: column; gap: 8px;
}
.room.near { background: rgba(209, 101, 31, 0.14); border-color: rgba(209, 101, 31, 0.55); }
.room .tab { align-self: flex-start; margin-bottom: 4px; }
.room h3 { font-size: 21px; margin: 0; }
.room address { font-style: normal; font-size: 15px; color: var(--onsign-2); line-height: 1.5; }
.room .hrs { font-family: var(--mono); font-size: 11.5px; color: var(--onsign-3); line-height: 1.65; letter-spacing: 0.02em; }
.room .phone { color: #fff; font-size: 15px; border-bottom-color: rgba(255, 255, 255, 0.3); align-self: flex-start; margin-top: 6px; }
.room .phone:hover { border-bottom-color: var(--orange); }
.room .go-link { font-family: var(--display); font-weight: 700; font-size: 14.5px; color: var(--onsign); text-decoration: none; margin-top: auto; padding-top: 10px; }
.room .go-link:hover { color: var(--orange); }

/* rooms as paper cards on the rooms page */
.roomcards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 34px 0 10px;
  width: min(1040px, calc(100vw - 64px)); position: relative; left: 50%; transform: translateX(-50%);
}
.roomcard {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 24px 22px; display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 20px 40px -36px rgba(16, 36, 29, 0.5);
}
.roomcard.near { border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-wash), 0 20px 40px -36px rgba(16, 36, 29, 0.5); }
.roomcard .tab { align-self: flex-start; }
.roomcard h3 { font-family: var(--display); font-weight: 800; font-size: 22px; letter-spacing: -0.025em; margin: 4px 0 0; color: var(--sign); }
.roomcard address { font-style: normal; font-size: 16px; line-height: 1.5; color: var(--ink-2); }
.roomcard .hrs { font-family: var(--mono); font-size: 11.5px; color: var(--muted); line-height: 1.7; letter-spacing: 0.02em; }
.roomcard .phone { font-size: 16px; align-self: flex-start; }
.roomcard .btn { align-self: flex-start; margin-top: auto; padding: 12px 16px; font-size: 14.5px; white-space: nowrap; }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 26px 22px; position: relative;
}
.review::before {
  content: "\201C"; position: absolute; top: 10px; left: 20px;
  font-family: var(--display); font-weight: 800; font-size: 64px; line-height: 1; color: var(--orange-wash);
}
.review blockquote { margin: 0; position: relative; font-size: 19px; line-height: 1.45; color: var(--sign); font-style: italic; }
.review cite {
  display: block; margin-top: 16px; font-style: normal;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
}

/* ---------- Emergency bright line ---------- */
.er {
  background: var(--orange-wash);
  border-top: 3px solid var(--orange); border-bottom: 1px solid var(--line);
}
.er .shell { padding-top: 26px; padding-bottom: 26px; display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start; }
.er .tab { margin-top: 4px; }
.er p { margin: 0; font-size: 16px; line-height: 1.58; color: var(--ink); max-width: 90ch; }
.er p strong { font-family: var(--display); font-weight: 700; color: var(--orange-2); }

/* ---------- Footer ---------- */
.foot { background: var(--sign); color: var(--onsign-2); font-size: 14.5px; }
.foot .shell { padding-top: 56px; padding-bottom: 40px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.foot a { color: var(--onsign); text-decoration: none; }
.foot a:hover { color: var(--orange); }
.foot .brand { color: #fff; margin-bottom: 16px; }
.foot .brand svg { color: var(--orange); }
.foot .brand-name { color: #fff; }
.foot .brand-name small { color: var(--onsign-3); }
.foot .lead { color: var(--onsign-3); max-width: 38ch; line-height: 1.6; margin: 0; font-size: 14.5px; }
.foot h4 { font-family: var(--mono); font-weight: 400; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--onsign-3); margin: 0 0 16px; }
.foot-col a { display: block; margin-bottom: 10px; font-family: var(--display); font-weight: 600; font-size: 14.5px; }
.foot-col .phone { font-family: var(--mono); font-weight: 400; font-size: 13px; border: 0; display: block; margin: 2px 0 12px; color: var(--onsign-2); }
.foot .legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1); margin-top: 40px; padding-top: 24px;
  font-size: 12.5px; line-height: 1.65; color: var(--onsign-3); max-width: 960px;
}
.foot .legal p { margin: 0 0 10px; }
.foot .legal strong { color: var(--onsign-2); font-weight: 600; }
.foot .year { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 16px; color: var(--onsign-3); }

/* ---------- Article pages ---------- */
.art-head { background: var(--paper); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.art-head::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(16, 36, 29, 0.10) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(60% 100% at 100% 0%, #000 0%, transparent 70%);
  mask-image: radial-gradient(60% 100% at 100% 0%, #000 0%, transparent 70%);
  pointer-events: none;
}
.art-head .shell { position: relative; max-width: calc(var(--read) + 64px); padding-top: 60px; padding-bottom: 44px; }
.art-head .reg { margin-bottom: 20px; }
.art-head h1 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(32px, 4.4vw, 50px); line-height: 1.02; letter-spacing: -0.035em;
  color: var(--sign); margin: 0 0 20px;
}
.art-head .lede { font-size: 20.5px; line-height: 1.5; color: var(--ink-2); margin: 0; max-width: 60ch; }
.byline {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mute-2);
  margin-top: 26px; padding-top: 16px; border-top: 1px solid var(--line);
  display: flex; gap: 8px 18px; flex-wrap: wrap;
}

.art .shell { max-width: calc(var(--read) + 64px); }
.prose { padding: 40px 0 24px; font-size: 19px; line-height: 1.68; color: var(--ink-2); }
.prose h2 {
  font-family: var(--display); font-weight: 800; font-size: 27px; line-height: 1.12; letter-spacing: -0.028em;
  color: var(--sign); margin: 48px 0 14px;
}
.prose h3 { font-family: var(--display); font-weight: 700; font-size: 21px; letter-spacing: -0.02em; color: var(--sign); margin: 32px 0 8px; }
.prose p { margin: 0 0 20px; }
.prose strong { color: var(--sign); font-weight: 600; }
.prose ul, .prose ol { margin: 0 0 22px; padding: 0; list-style: none; }
.prose li { position: relative; margin-bottom: 12px; padding-left: 30px; line-height: 1.58; }
.prose ul li::before { content: ""; position: absolute; left: 2px; top: 12px; width: 14px; height: 2px; background: var(--orange); }
.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: 4px;
  font-family: var(--mono); font-size: 12px; color: var(--onsign); background: var(--green);
  border-radius: 3px; padding: 3px 5px 2px; line-height: 1;
}
.prose figure { margin: 34px 0; }
.prose figure img { width: 100%; border-radius: var(--r-lg); border: 1px solid var(--line); }
.prose .drop::first-letter {
  font-family: var(--display); font-weight: 800; float: left; font-size: 66px; line-height: 0.8;
  padding: 9px 12px 0 0; color: var(--orange);
}
.prose a { color: var(--green-2); }

.takeaways {
  background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--green);
  border-radius: var(--r-lg); padding: 26px 28px 22px; margin: 0 0 36px;
  box-shadow: 0 20px 40px -36px rgba(16, 36, 29, 0.5);
}
.takeaways h2 { margin: 0 0 16px; font-size: 11.5px; font-family: var(--mono); font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-2); display: flex; align-items: center; gap: 10px; }
.takeaways h2::before { content: ""; width: 18px; height: 2px; background: var(--orange); }
.takeaways ul { margin: 0; }
.takeaways li { font-family: var(--display); font-weight: 500; font-size: 16.5px; line-height: 1.5; color: var(--ink); padding-left: 26px; margin-bottom: 11px; }
.takeaways li:last-child { margin-bottom: 0; }
.takeaways li::before { top: 11px; width: 12px; background: var(--green); }

.callout {
  background: var(--green-wash); border: 1px solid #cfe3da; border-radius: var(--r-lg);
  padding: 22px 26px; margin: 30px 0; font-size: 17px; line-height: 1.58;
}
.callout strong { display: block; font-family: var(--display); font-weight: 700; font-size: 15px; color: var(--sign); margin-bottom: 6px; }
.callout.warn { background: var(--orange-wash); border-color: #efd3bf; }
.callout.warn strong { color: var(--orange-2); }

/* hours table */
.hours { width: 100%; border-collapse: collapse; margin: 22px 0 30px; font-size: 16px; }
.hours th, .hours td { text-align: left; padding: 12px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
.hours th { font-family: var(--mono); font-weight: 400; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.hours td.mono { font-family: var(--mono); font-size: 13.5px; color: var(--ink-2); }
.hours td.mono a { white-space: nowrap; }
.table-wrap { overflow-x: auto; }

/* FAQ */
.faq details { border-bottom: 1px solid var(--line); padding: 6px 0; }
.faq details:first-of-type { border-top: 2px solid var(--sign); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; gap: 16px; align-items: baseline;
  font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; color: var(--sign);
  padding: 16px 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "+"; font-family: var(--mono); color: var(--orange); flex: 0 0 auto; width: 18px; }
.faq details[open] summary::before { content: "-"; }
.faq details p { margin: 0 0 18px 34px; font-size: 17.5px; color: var(--ink-2); }

/* related reading */
.related { border-top: 2px solid var(--sign); margin-top: 48px; padding-top: 22px; }
.related h2 { font-family: var(--mono); font-weight: 400; font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-2); margin: 0 0 8px; }
.related a {
  display: flex; justify-content: space-between; gap: 14px; align-items: baseline;
  font-family: var(--display); font-weight: 700; font-size: 17.5px; letter-spacing: -0.015em;
  text-decoration: none; color: var(--sign); padding: 13px 0; border-bottom: 1px solid var(--line);
}
.related a:last-child { border-bottom: 0; }
.related a span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--orange-2); text-transform: uppercase; }
.related a:hover { color: var(--green-2); }

/* CTA block on inner pages */
.cta-inner { margin: 44px 0 10px; }
.cta-inner .sign .pad { padding: 36px 38px; }
.cta-inner .sign h2 { font-size: clamp(24px, 3vw, 32px); }

/* cascade guard: .cta-inner and .roomcards sit inside .prose, whose h2 and a
   rules share specificity with .sign h2 and .btn and are declared later. These
   out-rank them so the sign headline stays white and buttons keep white text. */
.prose .sign h2 { color: #fff; font-size: clamp(24px, 3vw, 32px); margin: 18px 0 14px; }
.prose .sign h2 em { color: var(--onsign-2); }
.prose .sign a { color: #fff; }
.prose .btn, .prose .btn:hover { color: #fff; }
.prose .btn.ghost { color: var(--sign); }
.prose .sign .btn.ghost { color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero .shell { grid-template-columns: 1fr; gap: 34px; padding-top: 48px; padding-bottom: 56px; }
  .hero h1 { max-width: 100%; }
  .rooms, .roomcards, .reviews { grid-template-columns: 1fr; }
  .roomcards { width: 100%; left: auto; transform: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-about { grid-column: 1 / -1; }
  .suspects { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 680px) {
  body { font-size: 17px; }
  .shell { padding: 0 20px; }
  section { padding: 52px 0; }
  .topstrip .shell { flex-direction: column; gap: 4px; }
  .topstrip span:last-child { display: none; }
  .masthead .shell { padding-top: 14px; padding-bottom: 12px; }
  .brand-name { font-size: 18px; }
  .nav { width: 100%; gap: 2px 16px; padding-top: 6px; }
  .nav a { font-size: 13.5px; padding: 4px 0; }
  .hero h1 { font-size: clamp(34px, 9.5vw, 46px); }
  .hero .lede { font-size: 18px; }
  .nearest { grid-template-columns: 1fr; gap: 10px; }
  .entry { grid-template-columns: 1fr; gap: 6px; padding: 20px 6px; }
  .entry .num { width: 44px; margin-bottom: 4px; }
  .entry .go { display: none; }
  .entry h3 { font-size: 21px; }
  .sign .pad, .cta-inner .sign .pad { padding: 30px 22px; }
  .sign .mark-bg { width: 200px; right: -50px; bottom: -70px; }
  .er .shell { grid-template-columns: 1fr; gap: 10px; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .art-head .shell { padding-top: 40px; padding-bottom: 32px; }
  .prose { font-size: 18px; }
  .prose h2 { font-size: 24px; }
  .faq summary { font-size: 18px; }
  .faq details p { margin-left: 0; }
  .hours { font-size: 15px; }
}
/* register labels keep their mono size at every width (the 680px .prose h2 rule would otherwise inflate them) */
.takeaways h2, .related h2 { font-size: 11.5px; }

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