/* ==========================================================================
   Alignment Health Daily
   A short morning brief on backs, heads, and getting seen.

   Concept:   the first thing you read with the coffee. Brief, warm, unhurried.
              No posture shaming, no miracle talk. Every page opens with a
              one-minute brief, then offers the longer read to anyone who wants it.
   Mark:      the horizon sunrise. A baseline, a half-disc rising out of it, three
              short rays. It is the favicon, the masthead, the section dividers,
              and the bullet on every key takeaway.
   Type:      DM Serif Display (headlines, with one italic phrase per headline)
              Figtree (reading and interface)
              Azeret Mono (datelines, register labels, folios, captions)
   Palette:   sunrise paper #fffaf2, coffee ink #2f261c, ember #b45416 (the sun),
              dawn teal #2f5d68 (the cool half of the sky), pre-dawn brown #2a1a0c
              for the dark bands.
   Signature: the dateline. A mono register line that opens with a small sun
              glyph, used for kickers, captions, and the masthead sub-line. The
              horizon rule (hairline with an ember dot sitting on it) divides
              sections. Centered newspaper masthead with the nav band beneath it.
   ========================================================================== */

:root {
  --canvas: #fffaf2;
  --canvas-2: #fbf3e6;
  --paper: #fffefa;
  --paper-2: #fdf8ef;
  --ink: #2f261c;
  --ink-soft: #55493d;
  --muted: #71655a;
  --faint: #9c8f82;
  --line: #ecdfcd;
  --line-2: #f3eadc;
  --ember: #b45416;
  --ember-deep: #8f400f;
  --ember-wash: #fbeadb;
  --teal: #2f5d68;
  --teal-deep: #224650;
  --teal-wash: #e6eff0;
  --dusk: #2a1a0c;
  --dusk-2: #3a2713;
  --on-dusk: #fff6ea;
  --on-dusk-soft: #d9c4ab;

  --font-display: "DM Serif Display", Georgia, "Times New Roman", serif;
  --font-body: "Figtree", system-ui, "Segoe UI", sans-serif;
  --font-mono: "Azeret Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --shell: 1120px;
  --read: 690px;
  --r: 4px;
  --r-lg: 14px;
  --ease: cubic-bezier(0.25, 0.1, 0.2, 1);
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17.5px;
  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(--teal); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ember-deep); }
::selection { background: var(--ember-wash); color: var(--ink); }
:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; border-radius: 2px; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
}
h1 em, h2 em, h3 em { font-style: italic; color: var(--ember); }

/* ---------- Dateline (signature register label) ---------- */
.dateline {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  line-height: 1.5;
}
.dateline::before {
  content: "";
  flex: 0 0 auto;
  margin-top: 4px;
  width: 14px; height: 8px;
  background:
    radial-gradient(circle at 50% 100%, var(--ember) 0 5px, transparent 5.5px) top / 100% 100% no-repeat;
  border-bottom: 1.5px solid var(--ember);
}
.dateline.plain::before { display: none; }
.dateline.ember { color: var(--ember-deep); }

/* ---------- Horizon rule (section divider) ---------- */
.horizon {
  position: relative;
  height: 1px;
  background: var(--line);
  margin: 0 auto;
  max-width: var(--shell);
}
.horizon::after {
  content: "";
  position: absolute;
  left: 50%; top: -5px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ember);
  transform: translateX(-50%);
  box-shadow: 0 0 0 5px var(--canvas);
}

/* ---------- Top strip: folio ---------- */
.folio-strip {
  background: var(--dusk);
  color: var(--on-dusk-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.folio-strip .shell {
  display: flex; justify-content: space-between; gap: 16px;
  padding-top: 9px; padding-bottom: 9px;
  flex-wrap: wrap;
}
.folio-strip strong { color: var(--on-dusk); font-weight: 500; }
.folio-strip a { color: var(--on-dusk); text-decoration: none; border-bottom: 1px solid rgba(255,246,234,0.35); }
.folio-strip a:hover { border-bottom-color: var(--on-dusk); color: var(--on-dusk); }

/* ---------- Masthead (centered, newspaper) ---------- */
.masthead {
  background: var(--canvas);
  text-align: center;
  padding: 30px 0 18px;
}
.masthead .brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.masthead .mark { width: 52px; height: 52px; color: var(--ember); }
.masthead .brand-name {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.6vw, 44px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.masthead .brand-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.navband {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--canvas);
  position: sticky;
  top: 0;
  z-index: 30;
}
.navband .shell {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px 26px;
  flex-wrap: wrap;
  padding-top: 12px; padding-bottom: 12px;
}
.navband a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 2px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.navband a:hover, .navband a[aria-current="page"] { color: var(--ember-deep); border-bottom-color: var(--ember); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ember);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid var(--ember);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn:hover { background: var(--ember-deep); color: #fff; transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn.ghost:hover { background: var(--paper); color: var(--ember-deep); border-color: var(--ember); }
.btn.tel { background: var(--teal); border-color: var(--teal); }
.btn.tel:hover { background: var(--teal-deep); }
.btn .arw { font-size: 18px; line-height: 1; }

/* ---------- Home hero ---------- */
.hero {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, #fff1dc 0%, rgba(255,241,220,0) 70%),
    var(--canvas);
}
.hero .shell {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 52px;
  align-items: center;
  padding-top: 56px; padding-bottom: 60px;
}
.hero-copy .dateline { margin-bottom: 22px; }
.hero h1 {
  font-size: clamp(38px, 4.4vw, 54px);
  line-height: 1.06;
  margin: 0 0 22px;
  max-width: 19ch;
}
.hero .lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 0 30px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-note {
  margin: 22px 0 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.hero-note a { color: var(--teal); }

.hero-fig { margin: 0; }
.hero-fig img {
  width: 100%; height: auto;
  border-radius: var(--r-lg);
  box-shadow: 0 30px 60px -36px rgba(47,38,28,0.55), 0 1px 0 rgba(47,38,28,0.06);
}
.hero-fig figcaption, .fig figcaption, .photo-credit {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.5;
}

/* ---------- Brief band (today's brief, three items) ---------- */
section { padding: 72px 0; }
.section-head { margin-bottom: 36px; }
.section-head .dateline { margin-bottom: 14px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); max-width: 22ch; }
.section-head p { color: var(--ink-soft); max-width: 60ch; margin: 14px 0 0; }

.brief-band { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.briefs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.brief {
  padding: 8px 32px 8px 0;
  border-right: 1px solid var(--line);
  margin-right: 32px;
}
.brief:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.brief .dateline { margin-bottom: 14px; }
.brief h3 { font-size: 23px; margin: 0 0 12px; line-height: 1.2; }
.brief p { margin: 0 0 10px; color: var(--ink-soft); font-size: 16.5px; }
.brief a.more { font-weight: 600; font-size: 14.5px; text-decoration: none; color: var(--teal); }
.brief a.more:hover { color: var(--ember-deep); }

/* ---------- Guide index (the editions) ---------- */
.editions { border-top: 1px solid var(--ink); }
.edition {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 26px 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);
}
.edition:hover { background: var(--paper); padding-left: 16px; color: var(--ink); }
.edition .no {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ember);
}
.edition h3 { font-size: 25px; margin: 0 0 6px; line-height: 1.2; }
.edition p { margin: 0; color: var(--ink-soft); font-size: 16px; max-width: 62ch; }
.edition .go {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  white-space: nowrap;
}
.edition:hover .go { color: var(--ember-deep); }
.edition.lead {
  grid-template-columns: 72px 1fr;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 30px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.edition.lead:hover { padding-left: 30px; background: var(--paper-2); }
.edition.lead h3 { font-size: 30px; }
.edition.lead .go { display: none; }

/* ---------- Featured clinic (dark band) ---------- */
.clinic-band {
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(180,84,22,0.35) 0%, rgba(180,84,22,0) 70%),
    var(--dusk);
  color: var(--on-dusk);
}
.clinic-band .dateline { color: #e9a977; }
.clinic-band .dateline::before { border-bottom-color: #e9a977; background: radial-gradient(circle at 50% 100%, #e9a977 0 5px, transparent 5.5px) top / 100% 100% no-repeat; }
.clinic-band h2 { color: var(--on-dusk); font-size: clamp(30px, 3.6vw, 42px); max-width: 20ch; }
.clinic-band h2 em { color: #f0b07a; }
.clinic-band .intro { color: var(--on-dusk-soft); max-width: 62ch; margin: 16px 0 0; font-size: 17px; }
.clinic-band .lanes {
  display: flex; gap: 10px; flex-wrap: wrap; margin: 22px 0 0; padding: 0; list-style: none;
}
.clinic-band .lanes li {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dusk);
  border: 1px solid rgba(255,246,234,0.3);
  border-radius: 999px;
  padding: 6px 12px;
}
.rooms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.room {
  background: rgba(255,246,234,0.06);
  border: 1px solid rgba(255,246,234,0.16);
  border-radius: var(--r-lg);
  padding: 26px 24px 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.room.near { border-color: #e9a977; background: rgba(233,169,119,0.1); }
.room .dateline { color: #e9a977; margin-bottom: 6px; }
.room h3 { color: var(--on-dusk); font-size: 24px; }
.room address { font-style: normal; color: var(--on-dusk-soft); font-size: 15.5px; line-height: 1.55; }
.room .hours { font-family: var(--font-mono); font-size: 12.5px; color: var(--on-dusk-soft); line-height: 1.6; letter-spacing: 0.01em; }
.room .tel { color: var(--on-dusk); font-weight: 600; text-decoration: none; font-size: 18px; }
.room .tel:hover { color: #f0b07a; }
.room .btn { margin-top: 10px; align-self: flex-start; }
.clinic-band .midday {
  margin: 26px 0 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--on-dusk-soft);
}
.clinic-band .disclosure-inline { margin: 20px 0 0; color: #b39a7d; font-size: 13px; max-width: 78ch; line-height: 1.6; }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 26px 22px;
  margin: 0;
}
.review p {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.3;
  margin: 0 0 16px;
  color: var(--ink);
}
.review cite {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.reviews-note { margin: 20px 0 0; font-size: 14px; color: var(--muted); max-width: 70ch; }

/* ---------- Emergency note ---------- */
.er {
  background: var(--teal-wash);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 22px 26px;
  margin: 0;
  color: var(--teal-deep);
  font-size: 15.5px;
  line-height: 1.6;
}
.er strong { display: block; font-family: var(--font-mono); font-weight: 500; font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; color: var(--teal); }
.er a { color: var(--teal-deep); font-weight: 600; }

/* ---------- Article pages ---------- */
.article-head {
  background:
    radial-gradient(ellipse 70% 70% at 50% 0%, #fff1dc 0%, rgba(255,241,220,0) 70%),
    var(--canvas);
  padding: 58px 0 44px;
  text-align: center;
}
.article-head .dateline { margin-bottom: 20px; }
.article-head h1 {
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.08;
  max-width: 20ch;
  margin: 0 auto 20px;
}
.article-head .lede {
  font-size: 19.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 54ch;
  margin: 0 auto;
}
.article-head .byline {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  max-width: var(--read);
}

.article { padding: 48px 0 40px; }
.prose { max-width: var(--read); margin: 0 auto; font-size: 18px; line-height: 1.72; }
.prose p { margin: 0 0 22px; }
.prose h2 {
  font-size: 30px;
  margin: 46px 0 14px;
  line-height: 1.15;
}
.prose h3 { font-size: 23px; margin: 32px 0 10px; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 22px; }
.prose li { margin-bottom: 8px; }
.prose strong { font-weight: 600; color: var(--ink); }
.prose .fig { margin: 36px 0; }
.prose .fig img { width: 100%; border-radius: var(--r-lg); box-shadow: 0 22px 44px -30px rgba(47,38,28,0.5); }
.prose .fig.wide { margin-left: -90px; margin-right: -90px; }
.fig.landmark img { aspect-ratio: 2.1 / 1; object-fit: cover; object-position: 50% 35%; width: 100%; border-radius: var(--r-lg); box-shadow: 0 26px 50px -34px rgba(47,38,28,0.5); }
.prose .fig.landmark img { aspect-ratio: 16 / 9; }
.prose .sources { font-size: 14.5px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 18px; margin-top: 40px; }
.prose .sources a { color: var(--teal); }

/* the one-minute brief (key takeaways) */
.minute {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 30px 22px;
  margin: 0 0 40px;
  box-shadow: 0 24px 50px -40px rgba(47,38,28,0.4);
}
.minute .dateline { margin-bottom: 14px; }
.minute ul { list-style: none; padding: 0; margin: 0; }
.minute li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 16.5px;
  line-height: 1.55;
}
.minute li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 8px;
  background: radial-gradient(circle at 50% 100%, var(--ember) 0 5px, transparent 5.5px) top / 100% 100% no-repeat;
  border-bottom: 1.5px solid var(--ember);
}
.minute .then {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line-2);
  font-size: 15px;
  color: var(--muted);
}

/* margin note / callout */
.note {
  background: var(--ember-wash);
  border-left: 4px solid var(--ember);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 20px 24px;
  margin: 30px 0;
  font-size: 16.5px;
}
.note strong { display: block; font-family: var(--font-mono); font-weight: 500; font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ember-deep); margin-bottom: 8px; }

/* in-article CTA */
.cta {
  background: var(--dusk);
  color: var(--on-dusk);
  border-radius: var(--r-lg);
  padding: 34px 34px 30px;
  margin: 44px 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  right: -60px; bottom: -120px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180,84,22,0.55) 0%, rgba(180,84,22,0) 70%);
}
.cta > * { position: relative; }
.cta .dateline { color: #e9a977; margin-bottom: 12px; }
.cta .dateline::before { border-bottom-color: #e9a977; background: radial-gradient(circle at 50% 100%, #e9a977 0 5px, transparent 5.5px) top / 100% 100% no-repeat; }
.cta h3 { color: var(--on-dusk); font-size: 28px; margin: 0 0 10px; }
.cta h3 em { color: #f0b07a; }
.cta p { color: var(--on-dusk-soft); margin: 0 0 20px; font-size: 16px; max-width: 58ch; }
.cta .row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.cta .alt { font-family: var(--font-mono); font-size: 12px; color: var(--on-dusk-soft); }
.cta .alt a { color: var(--on-dusk); }

/* FAQ */
.faq-list { max-width: var(--read); margin: 0 auto; }
.faq-list details { border-bottom: 1px solid var(--line); padding: 6px 0; }
.faq-list details:first-of-type { border-top: 1px solid var(--ink); }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.25;
  padding: 18px 36px 18px 0;
  position: relative;
  color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute; right: 4px; top: 16px;
  font-family: var(--font-mono);
  color: var(--ember);
  font-size: 22px;
}
.faq-list details[open] summary::after { content: "-"; }
.faq-list details[open] summary { color: var(--ember-deep); }
.faq-list .a { padding: 0 0 22px; color: var(--ink-soft); font-size: 17px; }
.faq-list .a p { margin: 0 0 12px; }

/* rooms page */
.room-cards { display: grid; gap: 22px; max-width: 860px; margin: 0 auto; }
.room-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
}
.room-card.near { border-color: var(--ember); box-shadow: 0 24px 50px -40px rgba(180,84,22,0.5); }
.room-card h2 { font-size: 30px; margin: 6px 0 10px; }
.room-card address { font-style: normal; color: var(--ink-soft); line-height: 1.55; }
.room-card .hours { font-family: var(--font-mono); font-size: 13px; color: var(--ink-soft); line-height: 1.7; }
.room-card .hours b { font-weight: 500; color: var(--ember-deep); }
.room-card .tel { display: block; font-size: 24px; font-family: var(--font-display); color: var(--ink); text-decoration: none; margin: 6px 0 14px; }
.room-card .tel:hover { color: var(--ember-deep); }
.room-card .side { border-left: 1px solid var(--line); padding-left: 28px; }

/* related */
.related { max-width: var(--read); margin: 30px auto 0; border-top: 1px solid var(--ink); padding-top: 10px; }
.related .dateline { margin: 14px 0 6px; }
.related a {
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
  font-family: var(--font-display);
  font-size: 21px;
  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:hover { color: var(--ember-deep); padding-left: 8px; }
.related a span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); white-space: nowrap; }

/* ---------- Footer ---------- */
.site-foot {
  background: var(--dusk);
  color: var(--on-dusk-soft);
  font-size: 14px;
  border-top: 4px solid var(--ember);
  margin-top: 40px;
}
.site-foot .shell { padding-top: 56px; padding-bottom: 40px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.site-foot a { color: var(--on-dusk); text-decoration: none; }
.site-foot a:hover { color: #f0b07a; }
.foot-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.foot-brand .mark { width: 36px; height: 36px; color: #e9a977; }
.foot-brand b { font-family: var(--font-display); font-weight: 400; font-size: 22px; color: var(--on-dusk); line-height: 1; }
.foot-brand b span { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #e9a977; margin-top: 5px; }
.foot-lead { max-width: 38ch; line-height: 1.6; margin: 0; }
.foot-col h4 { font-family: var(--font-mono); font-weight: 500; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: #e9a977; margin: 0 0 14px; }
.foot-col a { display: block; margin-bottom: 10px; }
.foot-col .tel { font-family: var(--font-mono); font-size: 13px; }
.foot-legal {
  border-top: 1px solid rgba(255,246,234,0.12);
  margin-top: 40px; padding-top: 24px;
  font-size: 12.5px; line-height: 1.65; color: #b39a7d;
  max-width: 920px;
}
.foot-legal p { margin: 0 0 10px; }
.foot-legal .year { font-family: var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase; font-size: 11px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .shell { grid-template-columns: 1fr; gap: 36px; padding-top: 44px; padding-bottom: 52px; }
  .hero h1 { max-width: 100%; }
  .briefs { grid-template-columns: 1fr; gap: 28px; }
  .brief { border-right: none; margin-right: 0; padding-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 28px; }
  .brief:last-child { border-bottom: none; padding-bottom: 0; }
  .rooms { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-about { grid-column: 1 / -1; }
  .prose .fig.wide { margin-left: 0; margin-right: 0; }
  .room-card { grid-template-columns: 1fr; }
  .room-card .side { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 20px; }
}
@media (max-width: 680px) {
  body { font-size: 16.5px; }
  .shell { padding: 0 20px; }
  section { padding: 52px 0; }
  .folio-strip .shell { justify-content: center; text-align: center; gap: 4px; }
  .folio-strip .right { display: none; }
  .masthead { padding: 24px 0 14px; }
  .masthead .mark { width: 44px; height: 44px; }
  .navband .shell { gap: 4px 18px; padding-top: 10px; padding-bottom: 10px; }
  .navband a { font-size: 13px; }
  .hero h1 { font-size: clamp(34px, 9.5vw, 44px); }
  .hero .lede { font-size: 17.5px; }
  .edition { grid-template-columns: 1fr; gap: 6px; padding: 22px 4px; }
  .edition .go { display: none; }
  .edition h3 { font-size: 23px; }
  .edition.lead { grid-template-columns: 1fr; padding: 24px 20px; }
  .fig.landmark img { aspect-ratio: 4 / 3; }
  .edition.lead:hover { padding-left: 20px; }
  .edition.lead h3 { font-size: 26px; }
  .article-head { padding: 40px 0 32px; }
  .article-head h1 { font-size: clamp(30px, 8.6vw, 40px); }
  .article-head .lede { font-size: 17.5px; }
  .prose { font-size: 17.5px; }
  .prose h2 { font-size: 26px; }
  .minute { padding: 22px 20px 16px; }
  .cta { padding: 26px 22px 24px; }
  .cta h3 { font-size: 24px; }
  .room { padding: 22px 20px; }
  .room-card { padding: 24px 20px; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .faq-list summary { font-size: 19.5px; }
}

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