/* =====================================================================
   Mapleton Hillside Structural Guide — styles.css
   One stylesheet, no build step. Stone & mountain earth-tone palette.
   Hierarchy is driven by weight, not many sizes. Mono = accents only.
   ===================================================================== */

:root {
  --sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "Geist Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;

  /* Stone & mountain earth tones */
  --paper:        #ffffff;   /* plain white page */
  --paper-2:      #f5f6f7;   /* recessed bands (subtle neutral) */
  --card:         #ffffff;   /* raised surfaces */
  --ink:          #211e1a;   /* near-black warm */
  --ink-soft:     #514b43;   /* body secondary */
  --ink-faint:    #8a8378;   /* meta / mono */
  --slate:        #3b4248;   /* granite */
  --evergreen:    #2e4a3a;   /* primary accent */
  --evergreen-d:  #233a2d;   /* accent hover */
  --terracotta:   #a85a3c;   /* warm secondary accent */
  --line:         #e7e8ea;   /* hairlines (neutral) */
  --line-2:       #d8dadd;   /* stronger borders (neutral) */

  --maxw: 1140px;
  --prose: 720px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(33,30,26,.05), 0 8px 28px rgba(33,30,26,.06);
  --shadow-sm: 0 1px 2px rgba(33,30,26,.06);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--evergreen); text-underline-offset: 2px; text-decoration-thickness: 1px; }
a:hover { color: var(--evergreen-d); }
h1, h2, h3, h4 { line-height: 1.2; color: var(--ink); margin: 0 0 .5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1.1em; }
strong { font-weight: 700; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
.prose { max-width: var(--prose); }
.prose p, .prose ul, .prose ol { font-size: 1.0625rem; }
.prose ul, .prose ol { padding-left: 1.25rem; margin: 0 0 1.2em; }
.prose li { margin-bottom: .4em; }
.section { padding: 3rem 0; }
.section-tight { padding: 2rem 0; }
.eyebrow,
.section-eyebrow-h2 {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin: 0 0 .6rem;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line-2);
  box-shadow: 0 6px 18px -12px rgba(33,30,26,.4);
}
.header-inner {
  display: flex; align-items: center; gap: 1rem;
  height: 64px;
  max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem;
}
.brand { display: flex; align-items: center; gap: .6rem; font-weight: 800; font-size: 1.02rem; color: var(--ink); text-decoration: none; letter-spacing: -.01em; flex: 0 0 auto; }
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 30px; height: 30px; flex: 0 0 auto;
  display: grid; place-items: center;
  background: var(--evergreen); border-radius: 7px;
}
.brand-mark svg { width: 18px; height: 18px; }
.brand small { display: block; font-family: var(--mono); font-weight: 400; font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); margin-top: 1px; }

.primary-nav { display: none; margin-left: auto; align-items: center; gap: .15rem; }
.primary-nav a, .nav-dd-toggle {
  display: inline-block; padding: .5rem .6rem;
  font-size: .92rem; font-weight: 500; color: var(--ink-soft);
  text-decoration: none; border-radius: 6px; white-space: nowrap;
  background: none; border: 0; cursor: pointer; font-family: inherit;
}
.primary-nav a:hover, .nav-dd-toggle:hover { color: var(--ink); background: var(--paper-2); }
.primary-nav a[aria-current="page"] { color: var(--evergreen); font-weight: 600; }

.nav-dd { position: relative; }
.nav-dd-menu {
  position: absolute; right: 0; top: calc(100% + 6px);
  background: var(--card); border: 1px solid var(--line-2);
  border-radius: var(--radius-sm); box-shadow: var(--shadow);
  padding: .35rem; min-width: 210px; display: none;
}
.nav-dd:hover .nav-dd-menu, .nav-dd:focus-within .nav-dd-menu { display: block; }
.nav-dd-menu a { display: block; padding: .5rem .65rem; border-radius: 6px; }

.header-phone {
  display: none; align-items: center; gap: .4rem; margin-left: .5rem;
  font-family: var(--mono); font-weight: 500; font-size: .9rem;
  color: var(--ink); text-decoration: none; white-space: nowrap;
  padding: .45rem .7rem; border: 1px solid var(--line-2); border-radius: 8px;
}
.header-phone:hover { color: var(--ink); border-color: var(--evergreen); background: var(--card); }
.header-phone svg { width: 15px; height: 15px; color: var(--evergreen); }

.nav-toggle {
  margin-left: auto; display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; background: none; border: 1px solid var(--line-2);
  border-radius: 8px; cursor: pointer; color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; }

/* Mobile nav */
.mobile-nav {
  display: none; border-bottom: 1px solid var(--line);
  background: var(--card);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: .5rem 1.25rem 1rem; }
.mobile-nav li { margin: 0; }
.mobile-nav a { display: block; padding: .7rem .25rem; font-weight: 500; color: var(--ink-soft); text-decoration: none; border-bottom: 1px solid var(--line); }
.mobile-nav a[aria-current="page"] { color: var(--evergreen); font-weight: 600; }
.mobile-nav .mnav-label { font-family: var(--mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); padding: 1rem .25rem .25rem; border: 0; }

@media (min-width: 980px) {
  .primary-nav { display: flex; }
  .header-phone { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* ---------- Hero ---------- */
.hero { padding: 3.25rem 0 2.5rem; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start; }
.hero .lede { font-size: 1.2rem; line-height: 1.55; color: var(--ink-soft); max-width: 40ch; margin: 0 0 1.5rem; }
.hero h1 { max-width: 16ch; }
.trust-micro {
  font-family: var(--mono); font-size: .74rem; color: var(--ink-faint);
  letter-spacing: .02em; margin-top: 1.4rem;
}
.trust-micro span { color: var(--terracotta); }

.big-callout {
  background: var(--card); border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.4rem; box-shadow: var(--shadow);
}
.big-callout .bc-label { font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); margin: 0 0 .35rem; }
.big-callout .bc-stat { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; line-height: 1.05; letter-spacing: -.02em; color: var(--evergreen); margin: 0; }
.big-callout .bc-sub { font-size: .92rem; color: var(--ink-soft); margin: .5rem 0 0; }

@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.5fr 1fr; gap: 3rem; }
}

/* ---------- Datelines / direct answer / toc ---------- */
.last-updated {
  font-family: var(--mono); font-size: .78rem; color: var(--ink-faint);
  margin: 0 0 1.5rem; display: flex; align-items: center; gap: .5rem;
}
.last-updated::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta); display: inline-block; }

.direct-answer {
  background: var(--paper-2); border: 1px solid var(--line-2);
  border-left: 3px solid var(--evergreen);
  border-radius: var(--radius-sm); padding: 1.4rem 1.5rem;
  margin: 0 0 2rem; max-width: var(--prose);
}
.direct-answer .da-label { font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--evergreen); margin: 0 0 .5rem; font-weight: 500; }
.direct-answer p { margin: 0; font-size: 1.02rem; line-height: 1.6; }

.toc { max-width: var(--prose); margin: 0 0 2.5rem; }
.toc .toc-label { font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); margin: 0 0 .6rem; }
.toc ul { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 2rem; }
.toc li { margin: 0 0 .45rem; break-inside: avoid; }
.toc a { display: inline-flex; gap: .5rem; text-decoration: none; color: var(--ink-soft); font-size: .95rem; }
.toc a::before { content: "→"; color: var(--terracotta); font-family: var(--mono); }
.toc a:hover { color: var(--evergreen); }
@media (max-width: 640px) { .toc ul { columns: 1; } }

/* ---------- Body content sections ---------- */
.content h2 { margin-top: 2.6rem; scroll-margin-top: 84px; }
.content h3 { margin-top: 1.8rem; }
.content { max-width: var(--prose); }
.content .lead-note { color: var(--ink-soft); font-style: normal; }

/* ---------- Cards / lists ---------- */
.layout-card {
  background: var(--card); border: 1px solid var(--line-2);
  border-radius: var(--radius); padding: 1.3rem 1.4rem; margin: 0 0 1.1rem;
  box-shadow: var(--shadow-sm);
}
.layout-card h3 { margin-top: 0; }
.layout-card .lc-meta { font-family: var(--mono); font-size: .74rem; letter-spacing: .04em; color: var(--ink-faint); margin: 0 0 .7rem; text-transform: uppercase; }
.layout-card p:last-child { margin-bottom: 0; }

.bordered-list { border: 1px solid var(--line-2); border-radius: var(--radius); overflow: hidden; margin: 1.5rem 0; background: var(--card); }
.bordered-list .bl-row { display: flex; justify-content: space-between; gap: 1rem; padding: .85rem 1.1rem; border-bottom: 1px solid var(--line); }
.bordered-list .bl-row:last-child { border-bottom: 0; }
.bordered-list .bl-label { color: var(--ink-soft); }
.bordered-list .bl-value { font-family: var(--mono); font-weight: 500; color: var(--ink); text-align: right; white-space: nowrap; }
@media (max-width: 560px) { .bordered-list .bl-row { flex-direction: column; gap: .15rem; } .bordered-list .bl-value { text-align: left; } }

/* Card grids */
.way-grid, .grid-2, .grid-3 { display: grid; gap: 1.1rem; margin: 1.5rem 0; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.way-grid { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  .way-grid { grid-template-columns: 1fr 1fr; }
}
.way-card { background: var(--card); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 1.25rem 1.3rem; box-shadow: var(--shadow-sm); }
.way-card h3 { margin-top: 0; font-size: 1.08rem; }
.way-card p { margin-bottom: 0; font-size: .98rem; color: var(--ink-soft); }
.way-card .wc-num { font-family: var(--mono); font-size: .8rem; color: var(--terracotta); font-weight: 600; }

/* City split */
.city-split { display: grid; grid-template-columns: 1fr; gap: 1.1rem; margin: 1.5rem 0; }
@media (min-width: 720px) { .city-split { grid-template-columns: 1fr 1fr; } }
.city-card { background: var(--card); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 1.3rem 1.4rem; box-shadow: var(--shadow-sm); }
.city-card h3 { margin-top: 0; }

/* Phase list (process strip) */
.phase-list { list-style: none; counter-reset: phase; margin: 1.5rem 0; padding: 0; display: grid; gap: 1rem; }
.phase-list li { counter-increment: phase; position: relative; padding-left: 3rem; }
.phase-list li::before {
  content: counter(phase); position: absolute; left: 0; top: -2px;
  width: 2rem; height: 2rem; display: grid; place-items: center;
  background: var(--evergreen); color: #fff; border-radius: 50%;
  font-family: var(--mono); font-weight: 600; font-size: .9rem;
}
.phase-list h3 { font-size: 1.05rem; margin-bottom: .2rem; }
.phase-list p { margin: 0; color: var(--ink-soft); font-size: .96rem; }

/* ---------- Comparison tables ---------- */
.compare-wrap { overflow-x: auto; margin: 1.5rem 0; border: 1px solid var(--line-2); border-radius: var(--radius); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 480px; background: var(--card); }
.compare-table caption { caption-side: top; text-align: left; font-family: var(--mono); font-size: .74rem; letter-spacing: .04em; color: var(--ink-faint); padding: .8rem 1rem .2rem; text-transform: uppercase; }
.compare-table th, .compare-table td { text-align: left; padding: .8rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; font-size: .95rem; }
.compare-table thead th { background: var(--paper-2); font-weight: 700; color: var(--ink); border-bottom: 1px solid var(--line-2); }
.compare-table tbody th { font-weight: 600; color: var(--ink-soft); }
.compare-table tr:last-child td, .compare-table tr:last-child th { border-bottom: 0; }

/* ---------- CTA system ---------- */
.cta-primary {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--evergreen); color: #fff; text-decoration: none;
  font-weight: 600; font-size: 1rem; padding: .85rem 1.4rem;
  border-radius: 10px; box-shadow: var(--shadow-sm); border: 0; cursor: pointer;
  transition: background .15s ease, transform .05s ease;
}
.cta-primary:hover { background: var(--evergreen-d); color: #fff; }
.cta-primary:active { transform: translateY(1px); }
.cta-primary svg { width: 18px; height: 18px; }

.cta-phone-fallback {
  font-family: var(--mono); font-size: .88rem; color: var(--ink-soft);
  margin: .75rem 0 0; display: flex; align-items: center; gap: .4rem; flex-wrap: wrap;
}
.cta-phone-fallback a { color: var(--ink); text-decoration: none; font-weight: 500; }
.cta-phone-fallback a:hover { color: var(--evergreen); }
.cta-phone-fallback .sep { color: var(--line-2); }

.cta-mid {
  background: var(--paper-2); border: 1px solid var(--line-2);
  border-radius: var(--radius); padding: 1.6rem 1.6rem;
  margin: 2.5rem 0; max-width: var(--prose);
}
.cta-mid h3 { margin-top: 0; }
.cta-mid p { color: var(--ink-soft); margin-bottom: 1rem; }

/* See also */
.see-also { max-width: var(--prose); margin: 2.5rem 0 0; }
.see-also .sa-label { font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); margin: 0 0 .7rem; }
.see-also ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.see-also a { display: flex; gap: .55rem; text-decoration: none; color: var(--ink); font-weight: 500; padding: .7rem .9rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--card); }
.see-also a:hover { border-color: var(--evergreen); }
.see-also a::before { content: "→"; color: var(--terracotta); font-family: var(--mono); }

/* ---------- FAQ accordions ---------- */
.faq-list { max-width: var(--prose); margin: 1.5rem 0; display: grid; gap: .7rem; }
.faq-item { border: 1px solid var(--line-2); border-radius: var(--radius-sm); background: var(--card); overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: 1rem 1.2rem; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--mono); font-size: 1.3rem; color: var(--evergreen); font-weight: 400; line-height: 1; flex: 0 0 auto; }
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-body { padding: 0 1.2rem 1.1rem; color: var(--ink-soft); }
.faq-item .faq-body p { margin: 0 0 .8rem; }
.faq-item .faq-body p:last-child { margin-bottom: 0; }
.faq-cat { font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--terracotta); margin: 1.8rem 0 .4rem; }

/* ---------- Services grid (home) ---------- */
.svc-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; margin: 1.5rem 0; }
@media (min-width: 640px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 920px) { .svc-grid { grid-template-columns: 1fr 1fr 1fr; } }
.svc-card { display: block; background: var(--card); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 1.3rem 1.4rem; text-decoration: none; color: var(--ink); box-shadow: var(--shadow-sm); transition: border-color .15s ease, transform .08s ease; }
.svc-card:hover { border-color: var(--evergreen); color: var(--ink); transform: translateY(-2px); }
.svc-card .svc-ic { width: 34px; height: 34px; color: var(--evergreen); margin-bottom: .8rem; }
.svc-card h3 { font-size: 1.08rem; margin-bottom: .35rem; }
.svc-card p { font-size: .94rem; color: var(--ink-soft); margin: 0; }
.svc-card .svc-more { font-family: var(--mono); font-size: .78rem; color: var(--terracotta); margin-top: .8rem; display: inline-block; }

/* ---------- Bands ---------- */
.band { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band-dark { background: var(--slate); color: #ece9e3; }
.band-dark h2, .band-dark h3 { color: #fff; }
.band-dark p { color: #cfcabf; }
.band-dark a { color: #fff; }

/* Footer CTA */
.footer-cta { background: var(--evergreen-d); color: #fff; padding: 3rem 0; text-align: center; }
.footer-cta h2 { color: #fff; max-width: 22ch; margin: 0 auto .6rem; }
.footer-cta p { color: #cfe0d4; max-width: 52ch; margin: 0 auto 1.5rem; }
.footer-cta .cta-primary { background: #fff; color: var(--evergreen-d); }
.footer-cta .cta-primary:hover { background: var(--paper); color: var(--evergreen-d); }
.footer-cta .cta-phone-fallback { justify-content: center; color: #cfe0d4; }
.footer-cta .cta-phone-fallback a { color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #c9c3b8; padding: 3rem 0 2rem; font-size: .92rem; }
.site-footer a { color: #d9d3c7; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-cols { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
@media (min-width: 720px) { .footer-cols { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-cols h4 { color: #fff; font-size: .78rem; font-family: var(--mono); letter-spacing: .1em; text-transform: uppercase; font-weight: 500; margin: 0 0 .9rem; }
.footer-cols ul { list-style: none; margin: 0; padding: 0; }
.footer-cols li { margin-bottom: .5rem; }
.footer-about p { color: #aaa498; max-width: 34ch; }
.footer-byline { font-family: var(--mono); font-size: .8rem; color: #aaa498; }
.footer-legal { border-top: 1px solid #3a352e; padding-top: 1.5rem; font-size: .8rem; color: #8f897d; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; }
.footer-legal p { margin: 0; }

/* ---------- Byline ---------- */
.byline { font-family: var(--mono); font-size: .82rem; color: var(--ink-faint); margin: 0 0 1.5rem; }
.byline a { color: var(--ink-soft); }

/* ---------- Editor prose (about pages) ---------- */
.editor-prose { max-width: var(--prose); }
.editor-prose h2 { margin-top: 2.4rem; }
.editor-prose p { font-size: 1.075rem; }

/* Callout note */
.note {
  border: 1px solid var(--line-2); border-left: 3px solid var(--terracotta);
  background: var(--card); border-radius: var(--radius-sm);
  padding: 1rem 1.2rem; margin: 1.5rem 0; max-width: var(--prose);
  font-size: .96rem; color: var(--ink-soft);
}
.note strong { color: var(--ink); }

/* Breadcrumb */
.crumbs { font-family: var(--mono); font-size: .76rem; color: var(--ink-faint); margin: 0 0 1.2rem; }
.crumbs a { color: var(--ink-soft); text-decoration: none; }
.crumbs a:hover { color: var(--evergreen); }
.crumbs span { color: var(--line-2); margin: 0 .4rem; }

/* ---------- Sticky call bar (mobile) ---------- */
.sticky-call-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: var(--evergreen); color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .7rem 1.1rem; box-shadow: 0 -2px 16px rgba(33,30,26,.18);
  transform: translateY(120%); transition: transform .25s ease;
}
.sticky-call-bar.show { transform: translateY(0); }
.sticky-call-bar .scb-text { font-size: .85rem; line-height: 1.25; }
.sticky-call-bar .scb-text strong { display: block; font-size: .95rem; }
.sticky-call-bar a {
  display: inline-flex; align-items: center; gap: .4rem; flex: 0 0 auto;
  background: #fff; color: var(--evergreen-d); font-weight: 700;
  text-decoration: none; padding: .6rem 1rem; border-radius: 8px; font-size: .9rem;
}
.sticky-call-bar a svg { width: 16px; height: 16px; }
@media (min-width: 980px) { .sticky-call-bar { display: none; } }
body { padding-bottom: 0; }

/* ---------- Utilities ---------- */
.muted { color: var(--ink-soft); }
.mono { font-family: var(--mono); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.lead { font-size: 1.15rem; color: var(--ink-soft); line-height: 1.55; }
.tag-row { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0; }
.tag { font-family: var(--mono); font-size: .74rem; color: var(--ink-soft); background: var(--paper-2); border: 1px solid var(--line-2); border-radius: 100px; padding: .25rem .7rem; }

/* ---------- Centered reading column ---------- */
/* The constrained-width blocks are capped at --prose; center them within the
   page wrapper instead of letting them hug the left edge. Body text stays
   left-aligned for readability, only the column itself is centered. The
   datelines, byline, and breadcrumb get the same cap so they line up with it. */
.prose,
.editor-prose,
.content,
.direct-answer,
.toc,
.cta-mid,
.see-also,
.note,
.faq-list,
.last-updated,
.byline {
  margin-left: auto;
  margin-right: auto;
}
.last-updated,
.byline {
  max-width: var(--prose);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .sticky-call-bar { transition: none; }
}
