/* St. Charles Health Ledger - a county ledger kept on the west bank of the Missouri
   Identity:  "The Entry". Three ruled ledger lines with the river's rising stroke crossing them.
              Everything on the desk is an entry: numbered, dated, written down.
   Type:      Zilla Slab (display, the slab serif of a printed ledger heading)
              + Public Sans (reading and UI) + Courier Prime (entry numbers, folio, register labels)
   Signature: ledger ruling. Hairline horizontal rules across the hero and the index, one ochre
              margin rule down the left like the red line in a bound ledger, entries numbered in
              typewriter mono, and one italic phrase per headline set in river teal.
   Palette:   warm ledger paper, walnut ink, river teal (the Missouri at dusk), an ochre stamp.
   Hero:      split. Typographic entry on ruled paper at left, the river photograph at right. */

:root {
  --canvas: #f7f4ec;
  --canvas-2: #efeadd;
  --paper: #fffdf6;
  --paper-2: #fbf8f0;

  --ink: #262019;
  --ink-2: #4a4238;
  --muted: #6a6156;
  --faint: #958b7d;

  --river: #2c6270;
  --river-deep: #1d4b57;
  --river-tint: #e6eeef;
  --river-line: #c5d6d9;

  --ochre: #8c5a22;
  --ochre-deep: #6d4417;
  --ochre-tint: #f4ebdd;
  --ochre-line: #e3cfb0;

  --line: #e0dacc;
  --line-2: #ebe6da;
  --rule: #d3cbb9;

  --night: #17282c;
  --night-2: #213a40;
  --on-night: #f5efe2;
  --on-night-soft: #b9c7c9;

  --display: "Zilla Slab", "Rockwell", "Roboto Slab", Georgia, serif;
  --body: "Public Sans", system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "Courier Prime", "Courier New", ui-monospace, Menlo, monospace;

  --shell: 1180px;
  --read: 720px;
  --r: 4px;
  --ease: cubic-bezier(0.3, 0.05, 0.2, 1);
  --ruling: repeating-linear-gradient(to bottom, transparent 0 31px, rgba(38, 32, 25, 0.07) 31px 32px);
}

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

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--canvas);
  -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: 2px; }
a:hover { color: var(--river-deep); }
:focus-visible { outline: 2px solid var(--ochre); outline-offset: 3px; border-radius: 2px; }

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

/* ---------- Register label (signature) ---------- */
.reg {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.reg::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--ochre);
  flex: 0 0 auto;
}
.reg b { font-weight: 400; color: var(--muted); }

/* ---------- Folio bar ---------- */
.folio {
  background: var(--night);
  color: var(--on-night-soft);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.folio .shell {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding-top: 9px; padding-bottom: 9px;
}
.folio span b { color: var(--on-night); font-weight: 400; }

/* ---------- Header ---------- */
.masthead {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.masthead .shell {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding-top: 18px; padding-bottom: 18px;
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink); }
.brand .mark { width: 46px; height: 46px; flex: 0 0 auto; }
.brand-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 23px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-name span {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--river);
  margin-top: 6px;
}
.masthead .btn { padding: 10px 18px; font-size: 14px; }

.navrow {
  background: var(--paper);
  position: relative;
  border-bottom: 1px solid var(--rule);
  position: sticky; top: 0; z-index: 30;
}
.nav {
  display: flex; gap: 0; align-items: stretch;
  overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.nav::-webkit-scrollbar { display: none; }
.nav a {
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-2);
  text-decoration: none;
  padding: 13px 18px 12px;
  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:first-child { padding-left: 0; }
.nav a:hover { color: var(--river-deep); border-bottom-color: var(--river-line); }
.nav a[aria-current="page"] { color: var(--ochre-deep); border-bottom-color: var(--ochre); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ochre);
  color: #fff;
  text-decoration: none;
  font-family: var(--body);
  font-weight: 600;
  font-size: 15.5px;
  padding: 14px 24px;
  border-radius: var(--r);
  border: 1px solid var(--ochre-deep);
  box-shadow: 0 1px 1px rgba(38, 32, 25, 0.1), 0 10px 22px -14px rgba(109, 68, 23, 0.6);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn:hover { background: var(--ochre-deep); color: #fff; transform: translateY(-1px); }
.btn .arw { transition: transform 0.2s var(--ease); }
.btn:hover .arw { transform: translateX(3px); }
.btn.quiet {
  background: transparent; color: var(--river-deep);
  border-color: var(--rule); box-shadow: none;
}
.btn.quiet:hover { background: var(--paper); border-color: var(--river); }
.btn.river { background: var(--river); border-color: var(--river-deep); }
.btn.river:hover { background: var(--river-deep); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 0; /* the shell carries the hero's own spacing; no section padding stacked on top */
  background: var(--canvas);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  top: 66px; /* first rule lands under the register label, never above it */
  background-image: var(--ruling);
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 48%, transparent 62%);
  mask-image: linear-gradient(to right, #000 0%, #000 48%, transparent 62%);
  pointer-events: none;
}
.hero .shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 48px;
  align-items: center;
  padding-top: 60px; padding-bottom: 64px;
}
.hero .shell::before {
  content: "";
  position: absolute; left: 8px; top: 0; bottom: 0;
  width: 1px; background: var(--ochre);
  opacity: 0.55;
}
.hero-copy { max-width: 48ch; padding-left: 14px; }
.hero .reg { margin-bottom: 22px; }
.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 22px;
}
h1 em, h2 em {
  font-style: italic;
  font-weight: 600;
  color: var(--river);
}
.hero .lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 30px;
  max-width: 50ch;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.entry-line {
  margin: 34px 0 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; gap: 18px; flex-wrap: wrap;
}
.entry-line b { font-weight: 400; color: var(--ochre); }

.hero-fig { margin: 0; position: relative; }
.hero-fig img {
  width: 100%; height: auto;
  border-radius: var(--r);
  box-shadow: 0 1px 2px rgba(38, 32, 25, 0.08), 0 30px 60px -34px rgba(23, 40, 44, 0.7);
}
.hero-fig figcaption, .fig figcaption {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
  line-height: 1.55;
}
.hero-fig figcaption::before, .fig figcaption::before {
  content: "";
  display: inline-block;
  width: 16px; height: 1px;
  background: var(--ochre);
  vertical-align: middle;
  margin-right: 10px;
}

/* ---------- Sections ---------- */
section { padding: 76px 0; }
.section-head { max-width: 700px; margin-bottom: 40px; }
.section-head .reg { margin-bottom: 18px; }
.section-head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.06;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
}
.section-head p { margin: 16px 0 0; color: var(--ink-2); font-size: 17.5px; max-width: 58ch; }

/* ---------- The entries (guide index) ---------- */
.entries { border-top: 2px solid var(--ink); }
.entry {
  display: grid;
  grid-template-columns: 84px 1fr 150px 40px;
  gap: 28px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: var(--ink);
  position: relative;
  transition: background 0.25s var(--ease);
}
.entry::before {
  content: "";
  position: absolute; left: -18px; top: 22px; bottom: 22px;
  width: 3px; background: var(--ochre);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.3s var(--ease);
}
.entry:hover { background: linear-gradient(90deg, var(--paper-2), rgba(251, 248, 240, 0)); }
.entry:hover::before { transform: scaleY(1); }
.entry .no {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ochre);
  letter-spacing: 0.08em;
  padding-top: 7px;
}
.entry h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 25px;
  line-height: 1.15;
  margin: 0 0 8px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.entry:hover h3 { color: var(--river-deep); }
.entry p { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--muted); max-width: 58ch; }
.entry .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--river);
  padding-top: 8px;
  text-align: right;
}
.entry .go { color: var(--rule); padding-top: 4px; transition: color 0.2s var(--ease), transform 0.2s var(--ease); }
.entry .go svg { width: 24px; height: 24px; }
.entry:hover .go { color: var(--ochre); transform: translateX(4px); }
.entry.lead {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--river);
  border-radius: var(--r);
  padding: 32px 30px;
  margin-bottom: 22px;
  box-shadow: 0 1px 2px rgba(38, 32, 25, 0.04), 0 24px 44px -36px rgba(23, 40, 44, 0.5);
}
.entry.lead::before { left: 0; border-radius: 0 2px 2px 0; }
.entry.lead h3 { font-size: 31px; }
.entry.lead p { font-size: 16.5px; max-width: 62ch; }

/* ---------- Feature (photo + copy) ---------- */
.feature { background: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.feature .shell { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.feature.flip .shell > .fig { order: -1; }
.feature-copy .reg { margin-bottom: 18px; }
.feature-copy h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3.3vw, 38px);
  line-height: 1.08;
  margin: 0 0 18px;
  color: var(--ink);
}
.feature-copy p { margin: 0 0 16px; color: var(--ink-2); font-size: 17px; }
.feature-copy p:last-child { margin-bottom: 0; }
.fig { margin: 0; }
.fig img {
  width: 100%; height: auto;
  border-radius: var(--r);
  border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(38, 32, 25, 0.05), 0 26px 48px -36px rgba(23, 40, 44, 0.55);
}

/* ---------- Debits and credits band ---------- */
.band {
  background: var(--night);
  color: var(--on-night-soft);
  position: relative;
  overflow: hidden;
}
.band::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 90% at 100% 0%, rgba(44, 98, 112, 0.45), transparent 60%),
    radial-gradient(60% 70% at 0% 100%, rgba(140, 90, 34, 0.18), transparent 55%);
  pointer-events: none;
}
.band .shell { position: relative; }
.band .reg { color: var(--on-night); margin-bottom: 36px; }
.band .reg::before { background: var(--ochre); }
.ledger3 { display: grid; grid-template-columns: repeat(3, 1fr); }
.ledger3 > div { padding: 6px 36px; border-left: 1px solid rgba(245, 239, 226, 0.14); }
.ledger3 > div:first-child { padding-left: 0; border-left: none; }
.ledger3 .col {
  display: block;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d9a866;
  margin-bottom: 16px;
}
.ledger3 strong {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 12px;
}
.ledger3 p { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--on-night-soft); }

/* ---------- Clinic plate ---------- */
.plate {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(38, 32, 25, 0.04), 0 28px 50px -38px rgba(23, 40, 44, 0.5);
}
.plate::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--night), var(--river) 55%, var(--ochre));
}
.plate-head { padding: 36px 38px 26px; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: start; }
.plate-head .reg { margin-bottom: 14px; }
.plate-head h2, .plate-head h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 31px;
  line-height: 1.1;
  margin: 0 0 8px;
  color: var(--ink);
}
.plate-head .sub { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--river); margin: 0 0 16px; }
.plate-head p { margin: 0; color: var(--ink-2); max-width: 64ch; }
.plate-seal { width: 96px; height: 96px; color: var(--river-tint); flex: 0 0 auto; }
.rooms { border-top: 1px solid var(--rule); display: grid; grid-template-columns: repeat(3, 1fr); }
.room { padding: 26px 30px 28px; border-left: 1px solid var(--rule); }
.room:first-child { border-left: none; }
.room.near { background: var(--ochre-tint); }
.room .reg { margin-bottom: 12px; }
.room h4 { font-family: var(--display); font-size: 21px; font-weight: 600; margin: 0 0 8px; line-height: 1.15; }
.room address { font-style: normal; font-size: 15px; color: var(--ink-2); line-height: 1.5; margin: 0 0 8px; }
.room .hours { font-family: var(--mono); font-size: 12.5px; color: var(--muted); line-height: 1.6; margin: 0 0 14px; }
.room .tel { display: block; font-family: var(--body); font-weight: 600; font-size: 16px; color: var(--ink); text-decoration: none; margin-bottom: 14px; }
.room .tel:hover { color: var(--river-deep); }
.room .btn { padding: 10px 16px; font-size: 14px; }
.plate-foot {
  padding: 18px 38px 22px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: 26px 26px 22px;
  margin: 0;
}
.review p {
  font-family: var(--display);
  font-size: 21px;
  line-height: 1.3;
  margin: 0 0 16px;
  color: var(--ink);
}
.review p::before { content: "\201C"; color: var(--ochre); }
.review p::after { content: "\201D"; color: var(--ochre); }
.review cite { font-style: normal; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.reviews-note { margin: 18px 0 0; font-size: 13.5px; color: var(--muted); }

/* ---------- Article ---------- */
.article-head {
  position: relative;
  background: var(--canvas);
  border-bottom: 1px solid var(--rule);
  padding: 58px 0 42px;
  overflow: hidden;
}
.article-head::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--ruling);
  -webkit-mask-image: linear-gradient(to right, transparent 55%, #000 80%);
  mask-image: linear-gradient(to right, transparent 55%, #000 80%);
  opacity: 0.8;
  pointer-events: none;
}
.article-head .shell { max-width: var(--read); position: relative; }
.article-head .reg { margin-bottom: 18px; }
.article-head h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  margin: 0 0 20px;
  color: var(--ink);
}
.article-head .lede { font-size: 20px; line-height: 1.5; color: var(--ink-2); margin: 0; max-width: 60ch; }
.byline {
  margin-top: 26px; padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted);
  display: flex; gap: 18px; flex-wrap: wrap;
}

.article .shell { max-width: var(--read); }
.prose { padding: 40px 0 16px; font-size: 18px; line-height: 1.7; color: var(--ink); }
.prose > figure.fig { margin: 0 0 36px; }
.prose h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.15;
  margin: 48px 0 14px;
  color: var(--ink);
}
.prose h3 { font-family: var(--display); font-weight: 600; font-size: 22px; margin: 34px 0 10px; color: var(--ink); }
.prose p { margin: 0 0 20px; }
.prose ul, .prose ol { margin: 0 0 22px; padding: 0; list-style: none; }
.prose li { position: relative; padding-left: 30px; margin-bottom: 12px; line-height: 1.6; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 15px; width: 16px; height: 1px; background: var(--ochre); }
.prose ol { counter-reset: entry; }
.prose ol li { counter-increment: entry; padding-left: 40px; }
.prose ol li::before { content: counter(entry, decimal-leading-zero); position: absolute; left: 0; top: 2px; font-family: var(--mono); font-size: 14px; color: var(--ochre); }
.prose strong { font-weight: 600; color: var(--ink); }
.prose a { font-weight: 500; }
.prose .lead-para::first-letter {
  font-family: var(--display);
  font-weight: 700;
  float: left;
  font-size: 66px;
  line-height: 0.8;
  padding: 8px 12px 0 0;
  color: var(--ochre);
}

.takeaways {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--river);
  border-radius: var(--r);
  padding: 26px 30px 22px;
  margin: 0 0 36px;
}
.takeaways h2 { margin: 0 0 16px; font-size: 12px; }
.takeaways ul { margin: 0; padding: 0; list-style: none; }
.takeaways li { position: relative; padding-left: 32px; margin-bottom: 11px; font-size: 16px; line-height: 1.5; }
.takeaways li:last-child { margin-bottom: 0; }
.takeaways li::before { content: counter(tk, decimal-leading-zero); counter-increment: tk; position: absolute; left: 0; top: 1px; font-family: var(--mono); font-size: 13px; color: var(--ochre); }
.takeaways ul { counter-reset: tk; }

.callout {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--ochre);
  border-radius: var(--r);
  padding: 22px 26px;
  margin: 30px 0;
  font-size: 16.5px;
  line-height: 1.6;
}
.callout strong { display: block; margin-bottom: 6px; font-family: var(--display); font-size: 19px; }
.callout.night { background: var(--night); border-color: var(--night); border-left-color: var(--ochre); color: var(--on-night-soft); }
.callout.night strong { color: #fff; }
.callout.night a { color: #fff; }

.cta-block {
  background: var(--river-tint);
  border: 1px solid var(--river-line);
  border-radius: var(--r);
  padding: 30px 32px;
  margin: 40px 0 10px;
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
}
.cta-block .reg { margin-bottom: 10px; }
.cta-block h2 { font-family: var(--display); font-size: 26px; font-weight: 700; margin: 0 0 8px; line-height: 1.15; }
.cta-block p { margin: 0; font-size: 15.5px; color: var(--ink-2); }
.cta-block .btns { display: flex; flex-direction: column; gap: 10px; align-items: stretch; }
.cta-block .tel { font-family: var(--mono); font-size: 13px; text-align: center; color: var(--ink-2); text-decoration: none; }

.related { border-top: 2px solid var(--ink); margin-top: 44px; padding-top: 24px; }
.related h2 { margin: 0 0 14px; font-size: 12px; }
.related a {
  display: grid; grid-template-columns: 44px 1fr 24px; gap: 12px; align-items: baseline;
  font-family: var(--display); font-weight: 600; font-size: 20px;
  text-decoration: none; color: var(--ink);
  padding: 13px 0; border-bottom: 1px solid var(--line);
  transition: color 0.2s var(--ease);
}
.related a:last-child { border-bottom: none; }
.related a span.no { font-family: var(--mono); font-size: 12px; color: var(--ochre); letter-spacing: 0.08em; }
.related a:hover { color: var(--river-deep); }

/* ---------- Bright line (emergency) ---------- */
.bright {
  background: var(--paper);
  border-top: 3px solid var(--ochre);
  border-bottom: 1px solid var(--rule);
}
.bright .shell { padding-top: 26px; padding-bottom: 26px; display: grid; grid-template-columns: 170px 1fr; gap: 28px; align-items: start; }
.bright .reg { padding-top: 4px; }
.bright p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-2); max-width: 80ch; }
.bright p a { font-weight: 600; color: var(--ink); }

/* ---------- FAQ ---------- */
.faq-list { border-top: 2px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--rule); }
.faq-list summary {
  cursor: pointer; list-style: none;
  display: grid; grid-template-columns: 52px 1fr 28px; gap: 14px; align-items: baseline;
  padding: 20px 0;
  font-family: var(--display); font-weight: 600; font-size: 22px; line-height: 1.25; color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .no { font-family: var(--mono); font-size: 12px; color: var(--ochre); letter-spacing: 0.08em; }
.faq-list summary .pm { font-family: var(--mono); color: var(--river); text-align: right; }
.faq-list details[open] summary .pm { color: var(--ochre); }
.faq-list details[open] summary { color: var(--river-deep); }
.faq-list .ans { padding: 0 0 24px 66px; font-size: 17px; line-height: 1.65; color: var(--ink-2); }
.faq-list .ans p { margin: 0 0 12px; }
.faq-list .ans p:last-child { margin-bottom: 0; }

/* ---------- Rooms page ---------- */
.roomcards { display: grid; grid-template-columns: 1fr; gap: 22px; margin: 0 0 30px; }
.roomcard {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 18px 32px; align-items: start;
  padding: 28px 30px;
}
.roomcard.near { border-top: 3px solid var(--ochre); background: var(--ochre-tint); }
.roomcard h2 { font-family: var(--display); font-size: 27px; margin: 0 0 8px; line-height: 1.1; }
.roomcard .reg { margin-bottom: 12px; }
.roomcard address { font-style: normal; font-size: 16.5px; color: var(--ink-2); margin: 0 0 8px; }
.roomcard .hours { font-family: var(--mono); font-size: 13px; color: var(--muted); line-height: 1.65; margin: 0; }
.roomcard .tel { display: block; font-weight: 600; font-size: 18px; color: var(--ink); text-decoration: none; margin-bottom: 12px; }
.roomcard .btns { display: flex; flex-direction: column; gap: 10px; grid-column: 2; align-items: flex-start; }
.roomcard > div:first-child { grid-row: 1 / 3; }

/* ---------- Footer ---------- */
.foot {
  background: var(--night);
  color: var(--on-night-soft);
  border-top: 4px solid var(--ochre);
  font-size: 14px;
}
.foot .shell { padding-top: 56px; padding-bottom: 40px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; }
.foot a { color: #d8e0e1; text-decoration: none; }
.foot a:hover { color: #fff; }
.foot-brand { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; color: #fff; }
.foot-brand .mark { width: 40px; height: 40px; }
.foot-brand b { font-family: var(--display); font-size: 19px; font-weight: 700; display: block; line-height: 1; }
.foot-brand span { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #8fb3ba; margin-top: 6px; }
.foot-lead { max-width: 40ch; line-height: 1.6; color: #9fb1b4; margin: 0; }
.foot h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #d9a866; margin: 0 0 16px; font-weight: 400; }
.foot-col a { display: block; margin-bottom: 11px; }
.foot-disc { border-top: 1px solid rgba(245, 239, 226, 0.12); margin-top: 40px; padding-top: 24px; font-size: 12.5px; line-height: 1.65; color: #8fa3a6; max-width: 960px; }
.foot-disc p { margin: 0 0 10px; }
.foot-disc .reg { color: #d9a866; margin-bottom: 10px; }
.foot-disc .reg::before { background: #d9a866; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero .shell { grid-template-columns: 1fr; gap: 34px; padding-top: 40px; padding-bottom: 52px; }
  .hero-copy { max-width: 100%; }
  .hero::before { -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 40%, transparent 60%); mask-image: linear-gradient(to bottom, #000 0%, #000 40%, transparent 60%); }
  .feature .shell { grid-template-columns: 1fr; gap: 30px; }
  .feature.flip .shell > .fig { order: 0; }
  .ledger3 { grid-template-columns: 1fr; gap: 30px; }
  .ledger3 > div, .ledger3 > div:first-child { padding: 0 0 0 22px; border-left: 1px solid rgba(245, 239, 226, 0.14); }
  .rooms { grid-template-columns: 1fr; }
  .room { border-left: none; border-top: 1px solid var(--rule); }
  .room:first-child { border-top: none; }
  .reviews { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .foot-about { grid-column: 1 / -1; }
  .roomcard { grid-template-columns: 1fr; gap: 16px; }
  .roomcard .btns { grid-column: 1; }
  .roomcard > div:first-child { grid-row: auto; }
  .entry { grid-template-columns: 60px 1fr; gap: 10px 20px; }
  .entry .tag { grid-column: 2; text-align: left; padding-top: 0; }
  .entry .go { display: none; }
}
@media (max-width: 680px) {
  body { font-size: 16.5px; }
  .shell { padding: 0 20px; }
  section { padding: 52px 0; }
  .folio .shell { gap: 4px 16px; font-size: 10.5px; }
  .masthead .shell { padding-top: 14px; padding-bottom: 14px; }
  .masthead .btn { display: none; }
  .nav a { font-size: 13.5px; padding: 12px 14px 11px; }
  .navrow::after { content: ""; position: absolute; right: 0; top: 0; bottom: 0; width: 56px; background: linear-gradient(to right, rgba(255,253,246,0), var(--paper) 70%); pointer-events: none; }
  .brand-name { font-size: 20px; }
  .hero .shell { padding-top: 20px; padding-bottom: 44px; }
  .hero::before { top: 40px; -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 64px, #000 38%, transparent 58%); mask-image: linear-gradient(to bottom, transparent 0, #000 64px, #000 38%, transparent 58%); }
  .hero .shell::before { display: none; }
  .hero-copy { padding-left: 0; }
  .hero h1 { font-size: clamp(34px, 9.4vw, 44px); }
  .hero .lede { font-size: 17.5px; }
  .entry, .entry.lead { grid-template-columns: 1fr; gap: 6px; padding: 22px 0; }
  .entry.lead { padding: 24px 20px; }
  .entry .no { padding-top: 0; }
  .entry h3 { font-size: 22px; }
  .entry.lead h3 { font-size: 26px; }
  .plate-head { grid-template-columns: 1fr; padding: 28px 22px 22px; }
  .plate-seal { display: none; }
  .room { padding: 22px; }
  .plate-foot { padding: 16px 22px 20px; }
  .article-head { padding: 40px 0 32px; }
  .prose { font-size: 17.5px; }
  .prose > h2 { font-size: 25px; }
  .cta-block { grid-template-columns: 1fr; padding: 24px 22px; }
  .bright .shell { grid-template-columns: 1fr; gap: 10px; }
  .faq-list summary { grid-template-columns: 40px 1fr 24px; font-size: 19px; }
  .faq-list .ans { padding-left: 0; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .takeaways { padding: 22px 20px 18px; }
}

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

/* Phone nav: the horizontal scroller clipped section names mid-word and pushed the
   last item (often the call to action) off screen. Let it wrap instead. */
@media (max-width: 700px) {
  .nav { flex-wrap: wrap; white-space: normal; overflow-x: visible; row-gap: 6px;
    -webkit-mask-image: none; mask-image: none; }
  .nav::after, .nav::before { content: none; }
  .nav a { white-space: nowrap; }
}
