/* ==========================================================================
   Kirkwood Health Journal - "a journal kept in a brick town"
   A small-town health journal for Kirkwood, Mo. and the towns around it
   (Glendale, Des Peres, Webster Groves, Oakland, Warson Woods).

   Type:      Libre Caslon Text (the journal's hand: mastheads, headlines,
              pull quotes, italic emphasis) / Cabin (reading + UI)
              / Nanum Gothic Coding (register labels, folios, dated entry tags)
   Palette:   plaster canvas, cream paper, Kirkwood brick (#7c3020), a
              patina green for links and second accents (#34544b), and a
              dark mortar (#26150f) for the standing-entry band and footer.
   Signature: the RUNNING BOND. Two offset courses of brick drawn as a rule
              under register labels and between sections, and as the mark:
              a running-bond panel with one brick set true after being
              knocked askew. Entries carry typed "Entry" tags in Courier.
   Hero:      photograph, left copy on paper, right photo in a brick frame
              with an offset mortar shadow. Masthead is centered, journal
              style, with the nav in a ruled band beneath it.
   ========================================================================== */

:root {
  --canvas:   #f4f0ea;   /* plaster */
  --canvas-2: #ece6dd;   /* deeper plaster band */
  --paper:    #fffdf8;   /* cream */
  --paper-2:  #faf6ef;

  --ink:      #2a211d;
  --ink-soft: #5a4d46;
  --ink-mute: #857670;

  --brick:    #7c3020;
  --brick-2:  #652617;
  --brick-wash: #f3e4de;
  --brick-line: #e2c6bc;

  --patina:   #34544b;
  --patina-2: #26403a;
  --patina-wash: #e6ece8;

  --mortar:   #26150f;
  --mortar-2: #3a241b;
  --on-mortar: #f3ebe2;
  --on-mortar-soft: #c9b6a8;

  --line:     #dfd6cb;
  --line-2:   #cfc3b5;

  --font-display: "Libre Caslon Text", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body: "Cabin", "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Nanum Gothic Coding", "Courier New", Courier, monospace;

  --shell: 1160px;
  --read: 712px;
  --r: 2px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  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(--patina); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brick); }
:focus-visible { outline: 2px solid var(--brick); outline-offset: 3px; }

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

/* ---------- Register label + running bond (signature) ---------- */
.reg {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brick);
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0;
}
.reg::before {
  content: "";
  width: 26px; height: 9px; flex: 0 0 auto;
  background:
    linear-gradient(var(--brick), var(--brick)) 0 0 / 12px 4px no-repeat,
    linear-gradient(var(--brick), var(--brick)) 14px 0 / 12px 4px no-repeat,
    linear-gradient(var(--brick), var(--brick)) 7px 5px / 12px 4px no-repeat;
}
.reg.patina { color: var(--patina); }
.reg.patina::before {
  background:
    linear-gradient(var(--patina), var(--patina)) 0 0 / 12px 4px no-repeat,
    linear-gradient(var(--patina), var(--patina)) 14px 0 / 12px 4px no-repeat,
    linear-gradient(var(--patina), var(--patina)) 7px 5px / 12px 4px no-repeat;
}
.reg.light { color: var(--on-mortar-soft); }
.reg.light::before {
  background:
    linear-gradient(#b8603f, #b8603f) 0 0 / 12px 4px no-repeat,
    linear-gradient(#b8603f, #b8603f) 14px 0 / 12px 4px no-repeat,
    linear-gradient(#b8603f, #b8603f) 7px 5px / 12px 4px no-repeat;
}

.bond {
  height: 9px;
  width: 100%;
  margin: 0;
  border: 0;
  background:
    repeating-linear-gradient(90deg, var(--brick-line) 0 22px, transparent 22px 26px) 0 0 / 100% 4px no-repeat,
    repeating-linear-gradient(90deg, var(--brick-line) 0 22px, transparent 22px 26px) 13px 5px / 100% 4px no-repeat;
  opacity: 0.9;
}

/* ---------- Folio strip ---------- */
.folio {
  background: var(--brick);
  color: #f7e9e3;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.folio .shell {
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  padding-top: 8px; padding-bottom: 8px;
}
.folio a { color: #fff; text-decoration-color: rgba(255,255,255,0.45); }
.folio a:hover { color: #fff; text-decoration-color: #fff; }

/* ---------- Masthead (centered, journal style) ---------- */
.masthead {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.masthead .shell {
  padding-top: 30px; padding-bottom: 22px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.brand { display: flex; flex-direction: column; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand .mark { width: 46px; height: 46px; color: var(--brick); }
.brand-name {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.brand-name span {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--patina);
  margin-top: 10px;
}
.brand-name .sub-short { display: none; }
.navband {
  background: var(--paper);
  border-top: 3px double var(--line-2);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 30;
}
.nav {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 4px 30px;
  padding: 11px 0;
}
.nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 4px 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(--brick); border-bottom-color: var(--brick); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--brick);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: var(--r);
  border: 1px solid var(--brick-2);
  box-shadow: 3px 3px 0 var(--mortar);
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease), background 0.15s var(--ease);
}
.btn:hover { color: #fff; background: var(--brick-2); transform: translate(1px, 1px); box-shadow: 2px 2px 0 var(--mortar); }
.btn.ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--line-2); box-shadow: none;
}
.btn.ghost:hover { color: var(--brick); border-color: var(--brick); transform: none; }
.btn.on-dark { box-shadow: 3px 3px 0 rgba(0,0,0,0.45); }
.btn .arw { font-family: var(--font-mono); }

/* ---------- Hero ---------- */
.hero { background: var(--canvas); }
.hero .shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
  padding-top: 56px; padding-bottom: 60px;
}
.hero-copy .reg { margin-bottom: 22px; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 3.9vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  color: var(--ink);
}
h1 em, h2 em, .pull em { font-style: italic; color: var(--brick); }
.hero .lede {
  font-size: 19.5px;
  line-height: 1.6;
  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 {
  margin: 22px 0 0;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-mute);
  letter-spacing: 0.03em;
}
.hero-note a { color: var(--ink-soft); }
.hero-fig { margin: 0; position: relative; }
.hero-fig img {
  width: 100%; height: auto; display: block;
  border: 1px solid var(--brick-line);
  box-shadow: 12px 12px 0 var(--brick-wash), 12px 12px 0 1px var(--brick-line);
}
.hero-fig figcaption, figcaption {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 1.55;
  color: var(--ink-mute);
  margin-top: 22px;
}
.hero-fig figcaption { margin-top: 26px; }

/* ---------- Standing entry band (dark mortar) ---------- */
.band {
  background: var(--mortar);
  color: var(--on-mortar);
}
.band .shell { padding-top: 56px; padding-bottom: 56px; }
.band h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.18;
  margin: 16px 0 36px;
  max-width: 26ch;
  color: #fff;
}
.band h2 em { color: #e2a48f; }
.entries { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.entry-note { border-top: 1px solid rgba(255,255,255,0.16); padding-top: 18px; }
.entry-note .tag {
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #d9a08c; display: block; margin-bottom: 10px;
}
.entry-note strong {
  display: block; font-family: var(--font-display); font-weight: 400;
  font-size: 20px; line-height: 1.3; color: #fff; margin-bottom: 8px;
}
.entry-note p { margin: 0; color: var(--on-mortar-soft); font-size: 16px; line-height: 1.6; }

/* ---------- Sections ---------- */
section { padding: 72px 0; }
.section-head { margin-bottom: 36px; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.12;
  margin: 14px 0 10px;
  max-width: 24ch;
}
.section-head p { margin: 0; color: var(--ink-soft); max-width: 58ch; font-size: 17.5px; }

/* ---------- Feature (photo + copy) ---------- */
.feature { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature .shell {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.feature-copy h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(26px, 3vw, 34px); line-height: 1.16; margin: 14px 0 16px;
}
.feature-copy p { margin: 0 0 14px; color: var(--ink-soft); }
.feature-copy p:last-child { margin-bottom: 0; }
.feature-fig { margin: 0; }
.feature-fig img { border: 1px solid var(--line); }
.feature.flip .feature-fig { order: -1; }

/* ---------- Contents (guide index) ---------- */
.contents { background: var(--canvas); }
.index { border-top: 1px solid var(--line-2); }
.entry {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 24px 8px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: background 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.entry:hover { background: var(--paper); padding-left: 16px; color: var(--ink); }
.entry .e-folio {
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.1em;
  color: var(--brick); padding-top: 4px;
}
.entry h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 23px; line-height: 1.25; margin: 0 0 6px;
}
.entry p { margin: 0; color: var(--ink-soft); font-size: 16.5px; max-width: 64ch; }
.entry .e-tag {
  display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--patina); margin-bottom: 8px;
}
.entry .e-go { font-family: var(--font-mono); font-size: 13px; color: var(--ink-mute); white-space: nowrap; }
.entry:hover .e-go { color: var(--brick); }
.entry.lead {
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 32px;
  margin-bottom: 28px;
  align-items: center;
}
.entry.lead:hover { padding-left: 32px; background: #fff; }
.entry.lead h3 { font-size: 30px; }
.entry.lead .e-folio { display: none; }
.entry.lead .e-go { display: inline-block; margin-top: 14px; }
.entry.lead img { border: 1px solid var(--line); }
.entry.lead figure { margin: 0; }

/* ---------- Featured clinic block ---------- */
.clinic {
  background: var(--paper);
  border: 1px solid var(--brick-line);
  box-shadow: 10px 10px 0 var(--brick-wash);
  padding: 40px;
  position: relative;
}
.clinic h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(26px, 3vw, 34px); line-height: 1.15; margin: 14px 0 8px;
}
.clinic .tagline { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-mute); letter-spacing: 0.04em; margin: 0 0 18px; }
.clinic > p { color: var(--ink-soft); max-width: 70ch; margin: 0 0 12px; }
.rooms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 28px 0; }
.room {
  border: 1px solid var(--line);
  background: var(--paper-2);
  padding: 22px 22px 20px;
  border-top: 3px solid var(--line-2);
}
.room.near { border-top-color: var(--brick); background: #fff; }
.room .r-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--patina); display: block; margin-bottom: 8px; }
.room.near .r-tag { color: var(--brick); }
.room h3 { font-family: var(--font-display); font-weight: 400; font-size: 21px; margin: 0 0 8px; line-height: 1.25; }
.room address { font-style: normal; color: var(--ink-soft); font-size: 15.5px; line-height: 1.5; margin: 0 0 8px; }
.room .hours { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-mute); line-height: 1.6; margin: 0 0 12px; }
.room .tel { font-weight: 600; font-size: 17px; color: var(--ink); text-decoration: none; display: inline-block; margin-bottom: 10px; }
.room .tel:hover { color: var(--brick); }
.room .go { font-size: 14.5px; font-weight: 600; }
.clinic-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 8px; }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review {
  margin: 0; padding: 26px 26px 22px;
  background: var(--paper); border: 1px solid var(--line);
}
.review p {
  font-family: var(--font-display); font-style: italic; font-size: 20px; line-height: 1.4;
  margin: 0 0 14px; color: var(--ink);
}
.review cite { font-style: normal; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--ink-mute); }

/* ---------- Disclosure + notes ---------- */
.disclose {
  background: var(--paper-2);
  border-left: 3px solid var(--brick);
  padding: 18px 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.disclose strong { color: var(--ink); }
.er {
  background: var(--patina-wash);
  border-left: 3px solid var(--patina);
  padding: 18px 22px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.er strong { color: var(--patina-2); }
.edu { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-mute); margin: 14px 0 0; line-height: 1.6; }

/* ---------- CTA block ---------- */
.cta {
  background: var(--mortar);
  color: var(--on-mortar);
  padding: 40px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; align-items: center;
  border-top: 4px solid var(--brick);
}
.cta h2, .cta h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(24px, 2.8vw, 32px); line-height: 1.18; margin: 12px 0 12px; color: #fff;
}
.cta h2 em, .cta h3 em { color: #e2a48f; }
.cta p { margin: 0; color: var(--on-mortar-soft); font-size: 16.5px; }
.cta-side { text-align: left; }
.cta-side .btn { margin-bottom: 16px; }
.cta-side .tel { display: block; color: #fff; font-weight: 600; font-size: 18px; text-decoration: none; }
.cta-side .tel:hover { color: #e2a48f; }
.cta-side .where { font-family: var(--font-mono); font-size: 12px; color: var(--on-mortar-soft); margin: 6px 0 0; line-height: 1.6; }

/* ---------- Article pages ---------- */
.article-head { background: var(--paper); border-bottom: 1px solid var(--line); }
.article-head .shell { padding-top: 56px; padding-bottom: 44px; }
.article-head h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(34px, 4vw, 50px); line-height: 1.1; letter-spacing: -0.01em;
  margin: 18px 0 18px; max-width: 20ch;
}
.article-head .lede { font-size: 20px; line-height: 1.55; color: var(--ink-soft); max-width: 58ch; margin: 0 0 22px; }
.byline {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--ink-mute);
  border-top: 1px solid var(--line); padding-top: 14px; margin: 0; max-width: var(--read);
}
.article { padding: 56px 0 72px; }
.prose { max-width: var(--read); margin: 0 auto; font-size: 18.5px; line-height: 1.7; }
.prose p { margin: 0 0 1.35em; }
.prose h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 29px; line-height: 1.2; margin: 2.2em 0 0.7em;
}
.prose > h2:first-child { margin-top: 0.6em; }
.prose h3 { font-family: var(--font-body); font-weight: 600; font-size: 19px; margin: 1.8em 0 0.5em; }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.4em; }
.prose li { margin-bottom: 0.45em; }
.prose figure { margin: 2.4em 0; }
.prose figure img { border: 1px solid var(--line); }
.prose figure.wide { margin-left: -120px; margin-right: -120px; }
.prose .first::first-letter {
  font-family: var(--font-display); float: left; font-size: 4.1em; line-height: 0.8;
  padding: 0.08em 0.12em 0 0; color: var(--brick);
}
.takeaways {
  background: var(--paper); border: 1px solid var(--line);
  box-shadow: 8px 8px 0 var(--brick-wash);
  padding: 26px 28px 16px; margin: 0 0 44px;
}
.takeaways .reg { margin-bottom: 12px; }
.takeaways ul { list-style: none; padding: 0; margin: 0; }
.takeaways li {
  position: relative; padding-left: 30px; margin-bottom: 12px; font-size: 17px; line-height: 1.55;
}
.takeaways li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 16px; height: 7px;
  background:
    linear-gradient(var(--brick), var(--brick)) 0 0 / 7px 3px no-repeat,
    linear-gradient(var(--brick), var(--brick)) 9px 0 / 7px 3px no-repeat,
    linear-gradient(var(--brick), var(--brick)) 4px 4px / 8px 3px no-repeat;
}
.callout {
  background: var(--paper); border-left: 3px solid var(--patina);
  padding: 20px 24px; margin: 2em 0; font-size: 17px;
}
.callout strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: 20px; margin-bottom: 6px; }
.pull {
  font-family: var(--font-display); font-style: italic; font-size: 26px; line-height: 1.35;
  margin: 2.2em 0; padding: 0 0 0 26px; border-left: 3px solid var(--brick); color: var(--ink);
}
.entry-tag {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brick); display: block; margin: 2.4em 0 -0.4em;
}
.entry-tag + h2 { margin-top: 0.6em; }
.prose .cta { margin: 3em 0; }
.prose .er, .prose .disclose { margin: 2.2em 0; }
.prose .cite { font-size: 15px; color: var(--ink-mute); }

/* ---------- Hours table ---------- */
.hours-table { width: 100%; border-collapse: collapse; font-size: 16px; margin: 1.2em 0 2em; }
.hours-table th, .hours-table td { text-align: left; padding: 10px 12px 10px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.hours-table th { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); font-weight: 400; }

/* ---------- FAQ ---------- */
.faq-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line-2); }
.faq-list li { border-bottom: 1px solid var(--line); padding: 26px 0; }
.faq-list h2 { font-family: var(--font-display); font-weight: 400; font-size: 24px; line-height: 1.25; margin: 0 0 10px; }
.faq-list p { margin: 0 0 0.8em; color: var(--ink-soft); }
.faq-list p:last-child { margin-bottom: 0; }
.faq-list .q-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--patina); display: block; margin-bottom: 8px; }

/* ---------- Related ---------- */
.related { margin-top: 56px; border-top: 1px solid var(--line-2); padding-top: 28px; }
.related h2 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brick); margin: 0 0 10px; font-weight: 400; }
.related a {
  display: flex; justify-content: space-between; gap: 20px; align-items: baseline;
  font-family: var(--font-display); font-size: 19px; text-decoration: none; color: var(--ink);
  padding: 14px 0; border-bottom: 1px solid var(--line);
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.related a span { font-family: var(--font-mono); font-size: 13px; color: var(--ink-mute); }
.related a:hover { color: var(--brick); padding-left: 8px; }

/* ---------- Footer ---------- */
.site-foot { background: var(--mortar); color: var(--on-mortar-soft); font-size: 14.5px; border-top: 4px solid var(--brick); }
.site-foot .shell { padding-top: 56px; padding-bottom: 40px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; }
.site-foot a { color: #e3d6ca; 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: #d9a08c; }
.foot-brand b { font-family: var(--font-display); font-weight: 400; font-size: 20px; line-height: 1.1; display: block; }
.foot-brand span { display: block; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-mortar-soft); margin-top: 5px; }
.foot-lead { max-width: 40ch; margin: 0; line-height: 1.6; }
.foot-col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: #d9a08c; margin: 0 0 16px; font-weight: 400; }
.foot-col a { display: block; margin-bottom: 10px; }
.foot-col .tel { font-weight: 600; color: #fff; }
.foot-col .small { font-family: var(--font-mono); font-size: 12px; color: var(--on-mortar-soft); margin: -4px 0 12px; }
.foot-disclose {
  border-top: 1px solid rgba(255,255,255,0.12); margin-top: 40px; padding-top: 24px;
  font-size: 13px; line-height: 1.65; color: #a8958a; max-width: 960px;
}
.foot-disclose p { margin: 0 0 10px; }
.foot-year { font-family: var(--font-mono); font-size: 12px; color: #8c7a6f; margin-top: 18px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .shell { grid-template-columns: 1fr; gap: 36px; padding-top: 44px; padding-bottom: 56px; }
  .hero-fig { order: -1; }
  .hero-fig img { box-shadow: 8px 8px 0 var(--brick-wash), 8px 8px 0 1px var(--brick-line); }
  .entries { grid-template-columns: 1fr; gap: 22px; }
  .feature .shell { grid-template-columns: 1fr; gap: 28px; }
  .feature.flip .feature-fig { order: 0; }
  .rooms { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; gap: 16px; }
  .cta { grid-template-columns: 1fr; gap: 24px; padding: 32px 28px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-about { grid-column: 1 / -1; }
  .prose figure.wide { margin-left: 0; margin-right: 0; }
  .entry.lead { grid-template-columns: 1fr; gap: 22px; }
  .entry.lead figure { order: -1; }
}
@media (max-width: 680px) {
  body { font-size: 17px; }
  .shell { padding: 0 20px; }
  section { padding: 52px 0; }
  .folio .shell { justify-content: center; text-align: center; gap: 4px; }
  .folio .f-right, .folio .f-town { display: none; }
  .brand-name .sub-long { display: none; }
  .brand-name .sub-short { display: block; }
  .reg { font-size: 11px; letter-spacing: 0.12em; }
  .masthead .shell { padding-top: 22px; padding-bottom: 16px; }
  .brand-name { font-size: 27px; }
  .nav { gap: 2px 18px; padding: 9px 0; }
  .nav a { font-size: 13.5px; }
  .hero h1 { font-size: clamp(32px, 9vw, 40px); }
  .hero .lede { font-size: 18px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .entry { grid-template-columns: 1fr; gap: 6px; padding: 20px 4px; }
  .entry .e-go { display: none; }
  .entry.lead { padding: 22px; }
  .entry.lead:hover { padding-left: 22px; }
  .entry.lead h3 { font-size: 25px; }
  .entry h3 { font-size: 21px; }
  .clinic { padding: 26px 20px; box-shadow: 6px 6px 0 var(--brick-wash); }
  .cta { padding: 28px 22px; }
  .cta-side .btn { width: 100%; justify-content: center; }
  .article-head .shell { padding-top: 40px; padding-bottom: 32px; }
  .article-head h1 { font-size: clamp(30px, 8.4vw, 38px); }
  .article-head .lede { font-size: 18px; }
  .article { padding: 40px 0 56px; }
  .prose { font-size: 17.5px; }
  .prose h2 { font-size: 25px; }
  .pull { font-size: 22px; padding-left: 18px; }
  .takeaways { padding: 22px 20px 12px; box-shadow: 6px 6px 0 var(--brick-wash); }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .band .shell { padding-top: 44px; padding-bottom: 44px; }
}

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