/* Chiropractic Care Weekly - a small-circulation weekly, printed on a Thursday
   Concept:   "Published weekly. Skeptical of everything except showing up."
              A local paper's health desk that runs the same column every week
              because the situation never changes: a crash, a quiet day, a neck.
   Type:      Bitter (slab display and reading text, the newsprint face)
              Source Sans 3 (UI, ledes, cards, captions)
              Anonymous Pro (folio lines, datelines, register labels: the typewriter)
   Palette:   cool newsprint canvas, navy ink, press blue for the working accent,
              and one red-pen stroke (the editor's pen on every proof)
   Signature: the red-pen stroke. It prefixes every register label, it
              underlines the italic phrase in every headline, and it is the
              left rule on the standing correction. One pen, used sparingly.
   Mark:      the week grid: a calendar leaf with one filled day. Show up. */

:root {
  --canvas: #e9ecef;
  --canvas-2: #e1e5ea;
  --paper: #f9fafb;
  --paper-2: #f2f4f6;

  --ink: #182330;
  --ink-2: #3d4a57;
  --ink-3: #66737f;
  --ink-4: #8a96a1;

  --navy: #0e3a57;
  --navy-deep: #0a2a40;
  --press: #0e5a8a;
  --press-2: #1a6fa5;
  --press-wash: #e4eef6;

  --pen: #b8322a;
  --pen-deep: #8f251f;
  --pen-wash: #f7e9e7;

  --line: #cfd6dd;
  --line-2: #dfe4e9;
  --rule: #182330;

  --font-display: "Bitter", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-ui: "Source Sans 3", "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Anonymous Pro", "Courier New", Courier, monospace;

  --shell: 1120px;
  --read: 720px;
  --ease: cubic-bezier(0.3, 0.05, 0.2, 1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 17.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--press); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--navy); }
:focus-visible { outline: 2px solid var(--pen); outline-offset: 3px; }
.shell { max-width: var(--shell); margin: 0 auto; padding: 0 28px; }
.read { max-width: var(--read); margin: 0 auto; padding: 0 28px; }
.skip { position: absolute; left: -999px; top: 0; background: var(--paper); padding: 8px 12px; z-index: 99; }
.skip:focus { left: 8px; top: 8px; }

/* ---------- Register label: the red-pen stroke ---------- */
.reg {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.reg::before {
  content: "";
  width: 18px; height: 3px;
  background: var(--pen);
  transform: rotate(-8deg);
  border-radius: 2px;
  flex: 0 0 auto;
}
.reg.light { color: #b9cadb; }

/* Italic emphasis phrase: one per headline, with the pen under it */
h1 em, h2 em, h3 em, .em-pen {
  font-style: italic;
  font-weight: inherit;
  color: var(--press);
  background-image: linear-gradient(to right, var(--pen), var(--pen));
  background-repeat: no-repeat;
  background-size: 100% 0.06em;
  background-position: 0 92%;
  padding-bottom: 0.02em;
}
.band h2 em { color: #ffd8a8; }

/* ---------- Folio strip + masthead ---------- */
.folio {
  background: var(--navy-deep);
  color: #c5d3df;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.folio .shell { display: flex; justify-content: space-between; gap: 16px; padding-top: 8px; padding-bottom: 8px; flex-wrap: wrap; }
.folio strong { color: #fff; font-weight: 400; }
.folio a { color: #fff; }

.masthead { background: var(--canvas); }
.masthead .shell { padding-top: 30px; padding-bottom: 0; }
.mast-brand {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-decoration: none; color: var(--ink); text-align: center;
}
.mast-brand .mark { width: 46px; height: 46px; color: var(--navy); }
.mast-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--navy);
}
.mast-tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.nav-bar {
  margin-top: 22px;
  border-top: 3px double var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.nav {
  display: flex; justify-content: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.nav::-webkit-scrollbar { display: none; }
.nav li { flex: 0 0 auto; }
.nav a {
  display: block;
  padding: 12px 14px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--navy); border-bottom-color: var(--pen); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--press);
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.01em;
  padding: 13px 22px;
  border: 2px solid var(--press);
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn:hover { background: var(--navy); border-color: var(--navy); color: #fff; transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--navy); border-color: var(--ink-4); }
.btn.ghost:hover { background: var(--paper); border-color: var(--navy); }
.btn.pen { background: var(--pen); border-color: var(--pen); }
.btn.pen:hover { background: var(--pen-deep); border-color: var(--pen-deep); }
.btn.on-navy.ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.btn.on-navy.ghost:hover { background: rgba(255,255,255,0.08); border-color: #fff; }

/* ---------- Front page hero ---------- */
.front { background: var(--canvas); border-bottom: 1px solid var(--line); }
.front .shell {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  padding-top: 64px; padding-bottom: 64px;
}
.front-copy .reg { margin-bottom: 22px; }
.front h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  color: var(--navy);
  margin: 0 0 22px;
}
.front .lede {
  font-family: var(--font-ui);
  font-size: 19px;
  line-height: 1.58;
  color: var(--ink-2);
  max-width: 52ch;
  margin: 0 0 30px;
}
.front-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.front-actions .note { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-3); letter-spacing: 0.06em; width: 100%; margin-top: 10px; }

figure.photo { margin: 0; }
figure.photo img {
  width: 100%; height: auto; display: block;
  border: 1px solid var(--line);
  background: var(--paper-2);
}
figure.photo figcaption {
  font-family: var(--font-ui);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-3);
  margin-top: 10px;
  padding-left: 12px;
  border-left: 2px solid var(--pen);
}
figure.photo figcaption .credit { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--ink-4); display: block; margin-top: 3px; }

/* ---------- Standing correction (the ER note) ---------- */
.correction {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--pen);
  padding: 18px 22px;
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-2);
}
.correction .reg { margin-bottom: 8px; color: var(--pen-deep); }
.correction p { margin: 0; }
.correction strong { color: var(--ink); font-weight: 600; }
.correction-row { padding: 26px 0; border-bottom: 1px solid var(--line); background: var(--canvas); }

/* ---------- The standing editorial band ---------- */
.band { background: var(--navy); color: #d5e0ea; position: relative; overflow: hidden; }
.band::after {
  content: "";
  position: absolute; right: -120px; top: -80px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,111,165,0.35), rgba(26,111,165,0) 70%);
  pointer-events: none;
}
.band .shell { position: relative; z-index: 1; padding-top: 64px; padding-bottom: 64px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.band h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.16;
  letter-spacing: -0.012em;
  color: #fff;
  margin: 14px 0 18px;
}
.band p { margin: 0 0 16px; font-size: 17px; line-height: 1.62; max-width: 54ch; color: #c3d2df; }
.band .reg.light::before { background: #ffb15e; }
.band h2 em { background-image: linear-gradient(to right, #ffb15e, #ffb15e); }
.ledger { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,0.18); }
.ledger-note { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: #8fa6ba; margin: 18px 0 0; }
.ledger li { display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.18); }
.ledger .n { font-family: var(--font-mono); font-size: 13px; color: #ffb15e; padding-top: 3px; }
.ledger strong { display: block; color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 18px; line-height: 1.25; margin-bottom: 4px; }
.ledger span { font-size: 15px; color: #b2c3d2; line-height: 1.55; }

/* ---------- Sections ---------- */
section.sec { padding: 64px 0; }
section.sec.paper { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 34px; padding-bottom: 14px; border-bottom: 1px solid var(--rule); }
.sec-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.014em;
  color: var(--navy);
  margin: 10px 0 0;
  max-width: 24ch;
}
.sec-head .count { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }

/* ---------- In this issue (guide index) ---------- */
.issue { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
.item {
  display: grid; grid-template-columns: 40px 1fr; gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none; color: var(--ink);
}
.item .n { font-family: var(--font-mono); font-size: 13px; color: var(--pen); padding-top: 6px; }
.item .tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); display: block; margin-bottom: 6px; }
.item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 6px;
  transition: color 0.2s var(--ease);
}
.item p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink-2); max-width: 46ch; }
.item:hover h3 { color: var(--press); }
.item:hover .n { color: var(--navy); }

.lead-item {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy);
  padding: 30px 32px;
  margin-bottom: 40px;
  text-decoration: none; color: var(--ink);
}
.lead-item .tag { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pen-deep); display: block; margin-bottom: 12px; }
.lead-item h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 2.6vw, 30px); line-height: 1.16; color: var(--navy); margin: 0 0 12px; letter-spacing: -0.012em; }
.lead-item p { margin: 0 0 14px; font-size: 16.5px; color: var(--ink-2); line-height: 1.58; }
.lead-item .more { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--press); }
.lead-item:hover h3 { color: var(--press); }
.lead-item figure.photo figcaption { border-left-color: var(--line); }

/* ---------- Feature band (photo + argument) ---------- */
.feature .shell { display: grid; grid-template-columns: 1.1fr 1fr; gap: 52px; align-items: center; }
.feature-copy .reg { margin-bottom: 18px; }
.feature-copy h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 3vw, 34px); line-height: 1.14; color: var(--navy); margin: 0 0 16px; letter-spacing: -0.012em; }
.feature-copy p { margin: 0 0 14px; font-size: 17px; line-height: 1.62; color: var(--ink-2); }
.feature-copy p:last-child { margin-bottom: 0; }

/* ---------- Clinic on file ---------- */
.onfile {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy);
  display: grid;
  grid-template-columns: 1fr 1.25fr;
}
.onfile-about { padding: 34px 36px; border-right: 1px solid var(--line); }
.onfile-about .reg { margin-bottom: 14px; }
.onfile-about h2, .onfile-about h3 { font-family: var(--font-display); font-weight: 700; font-size: 28px; line-height: 1.14; color: var(--navy); margin: 0 0 6px; letter-spacing: -0.012em; }
.onfile-about .sub { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--press); margin: 0 0 16px; }
.onfile-about p { margin: 0 0 14px; font-size: 16px; line-height: 1.6; color: var(--ink-2); }
.onfile-about .btn { margin-top: 8px; }
.rooms { list-style: none; margin: 0; padding: 0; }
.rooms li { padding: 22px 30px; border-bottom: 1px solid var(--line-2); display: grid; grid-template-columns: 1fr auto; gap: 8px 20px; align-items: start; }
.rooms li:last-child { border-bottom: none; }
.rooms .room-name { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--navy); margin: 0 0 4px; }
.rooms .room-name small { font-family: var(--font-mono); font-weight: 400; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-left: 8px; }
.rooms address { font-style: normal; font-size: 15px; color: var(--ink-2); line-height: 1.5; }
.rooms .hours { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); line-height: 1.55; margin-top: 4px; }
.rooms .room-act { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; text-align: right; }
.rooms .tel { font-family: var(--font-ui); font-weight: 600; font-size: 16px; color: var(--navy); text-decoration: none; white-space: nowrap; }
.rooms .tel:hover { color: var(--press); }
.rooms .go { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--press); text-decoration: none; white-space: nowrap; border-bottom: 1px solid var(--press); }
.rooms .go:hover { color: var(--pen); border-color: var(--pen); }

/* ---------- Letters (the three reviews) ---------- */
.letters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.letter { background: var(--paper); border: 1px solid var(--line); padding: 24px 26px; margin: 0; }
.letter p { font-family: var(--font-display); font-style: italic; font-size: 19px; line-height: 1.45; color: var(--ink); margin: 0 0 14px; }
.letter cite { font-style: normal; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); display: block; }
.letters-note { font-size: 13.5px; color: var(--ink-3); margin: 16px 0 0; }

/* ---------- Disclosure ---------- */
.disclosure {
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 18px 22px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}
.disclosure .reg { margin-bottom: 6px; font-size: 11px; }
.disclosure p { margin: 0 0 6px; }
.disclosure p:last-child { margin-bottom: 0; }

/* ---------- Article pages ---------- */
.article-head { background: var(--canvas); border-bottom: 1px solid var(--line); padding: 52px 0 38px; }
.article-head .read .reg { margin-bottom: 18px; }
.article-head h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.016em;
  color: var(--navy);
  margin: 0 0 18px;
}
.article-head .lede { font-family: var(--font-ui); font-size: 19.5px; line-height: 1.55; color: var(--ink-2); margin: 0; max-width: 58ch; }
.dateline {
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3);
  margin-top: 24px; padding-top: 14px; border-top: 1px solid var(--line);
  display: flex; gap: 18px; flex-wrap: wrap;
}
.article .read { padding-top: 40px; padding-bottom: 24px; }
.article figure.photo { margin: 0 0 34px; }
.prose { font-family: var(--font-display); font-size: 18.5px; line-height: 1.72; color: var(--ink); }
.prose p { margin: 0 0 22px; }
.prose h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--navy);
  margin: 44px 0 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.prose h3 { font-family: var(--font-display); font-weight: 600; font-size: 20.5px; margin: 30px 0 10px; color: var(--navy); }
.prose ul, .prose ol { margin: 0 0 24px; padding: 0; list-style: none; }
.prose li { position: relative; padding-left: 30px; margin-bottom: 12px; }
.prose ul li::before { content: ""; position: absolute; left: 2px; top: 0.72em; width: 16px; height: 3px; background: var(--pen); transform: rotate(-8deg); border-radius: 2px; }
.prose ol { counter-reset: n; }
.prose ol li { counter-increment: n; }
.prose ol li::before { content: counter(n, decimal-leading-zero); position: absolute; left: 0; top: 0.2em; font-family: var(--font-mono); font-size: 14px; color: var(--pen); }
.prose strong { font-weight: 700; color: var(--navy); }
.prose a { color: var(--press); }
.prose a.btn, .prose a.btn:hover { color: #fff; text-decoration: none; }
.prose a.btn.ghost { color: var(--navy); }
.prose .cite { font-family: var(--font-ui); font-size: 14px; color: var(--ink-3); }
.prose figure.photo { margin: 34px 0; }

.takeaways {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy);
  padding: 24px 28px 22px;
  margin: 0 0 34px;
  font-family: var(--font-ui);
}
.takeaways h2 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink-2); margin: 0 0 14px; border: none; padding: 0; display: flex; align-items: center; gap: 10px; }
.takeaways h2::before { content: ""; width: 18px; height: 3px; background: var(--pen); transform: rotate(-8deg); border-radius: 2px; }
.takeaways ul { margin: 0; padding: 0; list-style: none; }
.takeaways li { position: relative; padding-left: 26px; margin-bottom: 10px; font-size: 15.5px; line-height: 1.5; color: var(--ink); }
.takeaways li:last-child { margin-bottom: 0; }
.takeaways li::before { content: ""; position: absolute; left: 0; top: 10px; width: 14px; height: 2px; background: var(--press); }

.aside {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--press);
  padding: 18px 24px;
  margin: 30px 0;
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.58;
  color: var(--ink-2);
}
.aside strong { display: block; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--press); margin-bottom: 6px; font-weight: 400; }
.aside p { margin: 0 0 10px; }
.aside p:last-child { margin-bottom: 0; }

.cta-plate {
  background: var(--navy);
  color: #d5e0ea;
  padding: 30px 32px;
  margin: 40px 0;
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  font-family: var(--font-ui);
}
.cta-plate .reg.light { margin-bottom: 10px; }
.cta-plate .reg.light::before { background: #ffb15e; }
.cta-plate h2 { font-family: var(--font-display); font-weight: 700; font-size: 24px; line-height: 1.2; color: #fff; margin: 0 0 8px; border: none; padding: 0; }
.cta-plate p { margin: 0; font-size: 15.5px; color: #b2c3d2; max-width: 48ch; }
.cta-plate .acts { display: flex; flex-direction: column; gap: 10px; align-items: stretch; }
.cta-plate .tel-line { font-family: var(--font-mono); font-size: 12px; color: #c3d2df; text-align: center; }
.cta-plate .tel-line a { color: #fff; }

.related { border-top: 1px solid var(--rule); margin-top: 44px; padding-top: 22px; font-family: var(--font-ui); }
.related h2 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink-2); margin: 0 0 12px; border: none; padding: 0; }
.related a { display: block; font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--navy); text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--line-2); }
.related a span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); display: block; margin-bottom: 3px; font-weight: 400; }
.related a:hover { color: var(--press); }

/* FAQ */
.faq-list { margin: 0; padding: 0; list-style: none; }
.faq-list li { border-bottom: 1px solid var(--line); padding: 24px 0; }
.faq-list h2 { font-family: var(--font-display); font-weight: 700; font-size: 22px; line-height: 1.25; color: var(--navy); margin: 0 0 10px; border: none; padding: 0; }
.faq-list p { margin: 0 0 12px; }
.faq-list p:last-child { margin-bottom: 0; }

/* Rooms page table */
.room-cards { display: grid; grid-template-columns: 1fr; gap: 20px; margin: 0 0 30px; font-family: var(--font-ui); }
.room-card { background: var(--paper); border: 1px solid var(--line); border-top: 4px solid var(--press); padding: 24px 28px; display: grid; grid-template-columns: 1fr auto; gap: 10px 24px; }
.room-card.nearest { border-top-color: var(--pen); }
.room-card h2 { font-family: var(--font-display); font-weight: 700; font-size: 23px; color: var(--navy); margin: 0 0 4px; border: none; padding: 0; }
.room-card .tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pen-deep); display: block; margin-bottom: 8px; }
.room-card address { font-style: normal; font-size: 16px; color: var(--ink-2); line-height: 1.5; }
.room-card .hours { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-3); line-height: 1.6; margin-top: 8px; }
.room-card .acts { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.room-card .tel { font-weight: 600; font-size: 17px; color: var(--navy); text-decoration: none; white-space: nowrap; }

/* ---------- Footer ---------- */
.site-foot { background: var(--navy-deep); color: #a9bccb; border-top: 4px solid var(--pen); font-family: var(--font-ui); font-size: 14.5px; }
.site-foot .shell { padding-top: 54px; padding-bottom: 40px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; }
.foot-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; color: #fff; }
.foot-brand .mark { width: 36px; height: 36px; color: #fff; }
.foot-brand strong { font-family: var(--font-display); font-weight: 700; font-size: 19px; line-height: 1.05; display: block; }
.foot-brand span { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: #7f9ab2; display: block; margin-top: 4px; }
.foot-lead { max-width: 40ch; line-height: 1.6; color: #93a9bc; margin: 0; }
.foot-col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase; color: #7f9ab2; margin: 0 0 14px; font-weight: 400; }
.foot-col a { display: block; color: #d2dee8; text-decoration: none; margin-bottom: 10px; }
.foot-col a:hover { color: #fff; }
.foot-col .tel { font-family: var(--font-mono); font-size: 13px; }
.foot-legal { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 36px; padding-top: 22px; font-size: 12.5px; line-height: 1.65; color: #7f9ab2; }
.foot-legal p { margin: 0 0 8px; max-width: 100ch; }
.foot-legal .reg.light { color: #7f9ab2; margin-bottom: 6px; font-size: 10.5px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .front .shell { grid-template-columns: 1fr; gap: 34px; padding-top: 44px; padding-bottom: 48px; }
  .band .shell { grid-template-columns: 1fr; gap: 32px; }
  .issue { grid-template-columns: 1fr; }
  .lead-item { grid-template-columns: 1fr; gap: 22px; }
  .feature .shell { grid-template-columns: 1fr; gap: 28px; }
  .onfile { grid-template-columns: 1fr; }
  .onfile-about { border-right: none; border-bottom: 1px solid var(--line); }
  .letters { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-about { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  body { font-size: 16.5px; }
  .shell, .read { padding: 0 18px; }
  .folio .shell { font-size: 10.5px; gap: 6px; }
  .folio .right { display: none; }
  .masthead .shell { padding-top: 22px; }
  .mast-brand .mark { width: 38px; height: 38px; }
  .nav { justify-content: flex-start; padding: 0 2px; }
  .nav a { padding: 11px 11px; font-size: 13.5px; }
  .nav-bar::after { content: ""; position: absolute; right: 0; top: 0; bottom: 0; width: 36px; background: linear-gradient(to right, rgba(233,236,239,0), var(--canvas)); pointer-events: none; }
  .front h1 { font-size: clamp(31px, 8.4vw, 40px); }
  .front .lede { font-size: 17.5px; }
  .front-actions .btn { width: 100%; justify-content: center; }
  section.sec { padding: 48px 0; }
  .band .shell { padding-top: 48px; padding-bottom: 48px; }
  .lead-item { padding: 22px 20px; }
  .onfile-about { padding: 26px 20px; }
  .rooms li { padding: 18px 20px; grid-template-columns: 1fr; }
  .rooms .room-act { align-items: flex-start; text-align: left; flex-direction: row; flex-wrap: wrap; gap: 14px; }
  .letter p { font-size: 17.5px; }
  .article-head { padding: 40px 0 30px; }
  .prose { font-size: 17.5px; }
  .prose h2 { font-size: 23px; }
  .cta-plate { grid-template-columns: 1fr; padding: 24px 20px; }
  .cta-plate .btn { justify-content: center; }
  .room-card { grid-template-columns: 1fr; padding: 20px 18px; }
  .room-card .acts { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .takeaways { padding: 20px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !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; }
