/* Senior Move Guide — Editorial Design System */
:root {
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --serif: Georgia, 'Times New Roman', Times, serif;
  --accent: #1E3A5F;
  --accent-light: #2A5090;
  --accent-warm: #B45309;
  --text: #1C1917;
  --text-muted: #78716C;
  --bg: #FAFAF8;
  --bg-card: #FFFFFF;
  --bg-section: #F5F3F0;
  --border: #E7E5E4;
  --content-width: 740px;
  --wide-width: 1140px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-padding-top: 5rem; }
body {
  font-family: var(--serif);
  background: var(--bg);
  color: var(--text);
  line-height: 1.85;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-light); }
img { display: block; max-width: 100%; }
ul, ol { padding-left: 1.25em; }
ul li, ol li { margin-bottom: 0.4em; }

/* ── Site Header ── */
.site-header {
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.site-nav { display: flex; gap: 1.5rem; }
.site-nav a {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.site-nav a:hover, .site-nav a.active { color: var(--accent); }

/* ── Home Hero ── */
.home-hero {
  background: var(--accent);
  color: #fff;
  padding: 6rem 2rem 5rem;
  text-align: center;
}
.home-hero-inner { max-width: 700px; margin: 0 auto; }
.home-hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
}
.home-sub {
  font-family: var(--sans);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-top: 1.5rem;
  line-height: 1.65;
}
.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--accent-warm);
  color: #fff;
  padding: 0.8rem 1.75rem;
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.15s;
}
.btn-primary:hover { background: #9A4408; color: #fff; }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 0.8rem 1.75rem;
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* ── Trust Bar ── */
.trust-bar {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 2rem;
  background: var(--bg);
}
.trust-bar-inner {
  max-width: var(--wide-width);
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0;
}
.trust-num {
  display: none;
}
.trust-label {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.trust-item + .trust-item::before {
  content: '·';
  margin-right: 1.5rem;
  color: var(--text-muted);
  font-size: 13px;
}

/* ── Guides Section ── */
.guides-section { padding: 4.5rem 2rem; }
.directory-promo {
  background: var(--bg-section);
  padding: 3.5rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.directory-promo .btn-primary { margin-top: 1.25rem; }
.section-inner { max-width: var(--wide-width); margin: 0 auto; }
.section-inner h2 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.section-inner p { font-family: var(--sans); color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.95rem; }
.section-sub { font-size: 1rem; }

/* ── Guide Cards ── */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.guide-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
  overflow: hidden;
}
.guide-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.guide-card-img-wrap { width: 100%; height: 200px; overflow: hidden; }
.guide-card-img { width: 100%; height: 200px; object-fit: cover; object-position: center; display: block; }
.guide-card-inner { padding: 1.5rem 1.75rem; }
.guide-keyword {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-warm);
  margin-bottom: 0.6rem;
}
.guide-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.guide-desc {
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.guide-link {
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 600;
}
.empty-state { color: var(--text-muted); font-style: italic; }

/* ── Article Hero — Full-Bleed with Overlay ── */
.article-hero-full {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 480px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.article-hero-overlay {
  width: 100%;
  padding: 3rem 2rem 2.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.08) 100%);
}
.article-hero-overlay .breadcrumb { color: rgba(255,255,255,0.7); margin-bottom: 0.75rem; }
.article-hero-overlay .breadcrumb a { color: rgba(255,255,255,0.7); }
.article-hero-overlay .breadcrumb a:hover { color: #fff; }
.article-hero-overlay h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  max-width: var(--content-width);
  margin-bottom: 0.75rem;
}
.article-hero-overlay .article-meta { color: rgba(255,255,255,0.7); }
.article-hero-overlay .meta-dot { color: rgba(255,255,255,0.4); }

/* ── Article Hero — No Image Fallback ── */
.article-hero-img-wrap {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
}
.article-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Article Layout ── */
.article-wrap { max-width: var(--wide-width); margin: 0 auto; padding: 0 2rem 4rem; }
.article-hero {
  padding: 3rem 0 2rem;
  max-width: var(--content-width);
}
.breadcrumb {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}
.breadcrumb a { color: var(--text-muted); }
.article-hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.article-meta {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  align-items: center;
  letter-spacing: 0.01em;
}
.meta-dot { color: var(--border); }

.article-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
}

/* ── TOC Sidebar ── */
.toc-sidebar { position: sticky; top: 5rem; }
.toc-sticky {
  padding: 0;
  background: transparent;
  border: none;
}
.toc-sticky-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.toc-sticky ol { list-style: none; padding: 0; }
.toc-sticky li { margin-bottom: 0.3rem; }
.toc-sticky a {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  line-height: 1.4;
  display: block;
  padding: 0.2rem 0 0.2rem 0.75rem;
  border-left: 2px solid transparent;
  transition: color 0.1s, border-color 0.1s;
}
.toc-sticky a:hover { color: var(--text); }
.toc-sticky a.active { color: var(--accent); border-left-color: var(--accent); font-weight: 600; }
.toc-mobile { display: none; }

/* ── Article Content ── */
.article-content { min-width: 0; max-width: var(--content-width); }
.lead-paragraph {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 2rem;
}
.article-section { margin-bottom: 3.5rem; }
.article-section h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.article-section h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 2rem 0 0.75rem;
}
.article-section p { margin-bottom: 1.1rem; }
.article-section p:last-child { margin-bottom: 0; }

/* ── Definition List (bold-lead items) ── */
.def-list { margin: 1.25rem 0; }
.def-item { margin-bottom: 1.25rem; }
.def-term {
  display: block;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.def-body {
  display: block;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Quick Answer Box ── */
.quick-answer-box {
  background: rgba(30,58,95,0.04);
  border-left: 3px solid var(--accent);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}
.quick-answer-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.quick-answer-box ul {
  list-style: none;
  padding: 0;
}
.quick-answer-box li {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text);
  padding: 0.35rem 0 0.35rem 1.25rem;
  position: relative;
  line-height: 1.55;
}
.quick-answer-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ── Directory CTA Box ── */
.directory-cta-box {
  background: rgba(30,58,95,0.04);
  border: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.65;
}
.directory-cta-box p { margin: 0; }

/* ── FAQ Section ── */
.faq-section h2 { margin-bottom: 1.5rem; }
.faq-item { margin-bottom: 2rem; border-bottom: 1px solid var(--border); padding-bottom: 2rem; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.faq-item p {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}

/* ── Article Footer CTA ── */
.article-footer-cta {
  background: var(--accent);
  color: #fff;
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
}
.article-footer-cta p {
  font-family: var(--sans);
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.article-footer-cta .btn-primary { margin: 0; }

/* ── Directory Coming Soon ── */
.directory-coming {
  max-width: 600px;
  margin: 6rem auto;
  text-align: center;
  padding: 0 2rem;
}
.directory-coming h1 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.coming-sub {
  font-family: var(--sans);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.65;
}
.directory-coming p {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.directory-coming .btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

/* ── Footer ── */
.site-footer {
  padding: 3rem 2rem;
  margin-top: 4rem;
  background: var(--accent);
  color: rgba(255,255,255,0.6);
  border: none;
}
.footer-inner {
  max-width: var(--wide-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-inner .logo { color: #fff; }
.footer-inner p { font-family: var(--sans); font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-family: var(--sans); font-size: 0.85rem; color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-links a:hover { color: #fff; }

/* ── Numbered Steps ── */
.steps-list { display: flex; flex-direction: column; gap: 0; margin: 1.5rem 0; }
.step-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0 1.25rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  position: relative;
}
.step-card:last-child { border-bottom: none; }
.step-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.12;
  line-height: 1;
  letter-spacing: -0.04em;
}
.step-body { padding-top: 0.25rem; }
.step-heading {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.step-body p { margin: 0; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ── Comparison Block ── */
.comparison-block { margin: 1.5rem 0; }
.comparison-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.compare-col {
  border: 1px solid var(--border);
  overflow: hidden;
}
.compare-col-header {
  padding: 1rem 1.25rem;
  border-top: 3px solid var(--accent);
  background: transparent;
}
.compare-col-header--warm { border-top-color: var(--accent-warm); }
.compare-col-header h3 {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
  color: var(--text);
  letter-spacing: -0.01em;
}
.compare-tagline {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-muted);
  margin: 0.25rem 0 0;
}
.compare-col-body { padding: 1.25rem; }
.compare-cost {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.75rem;
}
.compare-cost-label { font-family: var(--sans); font-size: 13px; color: var(--text-muted); }
.compare-cost-val { font-family: var(--sans); font-size: 0.9rem; font-weight: 700; color: var(--text); }
.compare-pros, .compare-cons { list-style: none; padding: 0; margin: 0.75rem 0; }
.compare-pros li, .compare-cons li {
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--text);
  padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative;
  line-height: 1.5;
}
.compare-pros li::before { content: '+'; position: absolute; left: 0; color: #059669; font-weight: 700; font-family: var(--sans); }
.compare-cons li::before { content: '–'; position: absolute; left: 0; color: #B91C1C; font-weight: 700; font-family: var(--sans); }
.compare-best {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.75rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.comparison-verdict {
  border-left: 3px solid var(--accent);
  padding: 1rem 1.25rem;
  margin-top: 1.25rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  background: transparent;
}

/* ── Stats Row ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
/* Force 2-col on narrow content areas to prevent cramping */
@container (max-width: 500px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.stat-value {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 3.5vw, 1.9rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: none;
}
.stat-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.stat-context {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
  margin-top: 0.4rem;
}

/* ── Callout Boxes ── */
.callout {
  padding: 1.1rem 1.25rem;
  margin: 1.5rem 0;
  border-left: 3px solid var(--accent);
  background: rgba(30,58,95,0.03);
}
.callout--warning { border-left-color: var(--accent-warm); background: rgba(180,83,9,0.04); }
.callout--tip { border-left-color: #059669; background: rgba(5,150,105,0.04); }
.callout-label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.callout--warning .callout-label { color: var(--accent-warm); }
.callout--tip .callout-label { color: #059669; }
.callout-heading {
  display: block;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.callout p { font-family: var(--sans); font-size: 0.875rem; color: var(--text); line-height: 1.65; margin: 0; }

/* ── Checklist ── */
.checklist { margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0; }
.checklist-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.checklist-item:last-child { border-bottom: none; }
.checklist-box {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-radius: 3px;
  display: block;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.checklist-heading {
  display: block;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.checklist-content p {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ── State Cards & Cities ── */
.state-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}
.state-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.state-card-inner { padding: 1.25rem 1.5rem; }
.state-card h3 { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.3rem; letter-spacing: -0.01em; }
.state-card p { font-family: var(--sans); font-size: 13px; color: var(--text-muted); margin-bottom: 0.75rem; }
.state-nav ul { list-style: none; padding: 0; }
.state-nav li { margin-bottom: 0.35rem; }
.state-nav a { font-family: var(--sans); font-size: 13px; color: var(--text-muted); text-decoration: none; }
.state-nav a:hover { color: var(--accent); }
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.city-blurb {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
}
.city-blurb h3 { font-family: var(--sans); font-size: 0.9rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--accent); }
.city-blurb p { font-family: var(--sans); font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; margin: 0; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .article-layout { grid-template-columns: 1fr; gap: 0; }
  .toc-sidebar { display: none; }
  .toc-mobile { display: block; margin-bottom: 2rem; }
  .toc-mobile details { background: var(--bg-card); border: 1px solid var(--border); }
  .toc-mobile summary { padding: 0.75rem 1rem; font-family: var(--sans); font-size: 0.9rem; cursor: pointer; color: var(--text-muted); }
  .toc-mobile ol { list-style: none; padding: 0 1rem 1rem; }
  .toc-mobile li { margin-bottom: 0.4rem; }
  .toc-mobile a { font-family: var(--sans); font-size: 0.85rem; color: var(--accent); }
  .article-hero h1 { font-size: 1.7rem; }
  .article-hero-full { height: 360px; }
  .article-hero-overlay h1 { font-size: 1.6rem; }
  .home-hero h1 { font-size: 1.7rem; }
  .home-hero { padding: 4rem 1.5rem 3.5rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .trust-bar-inner { gap: 0.5rem; flex-direction: column; align-items: center; }
  .trust-item + .trust-item::before { display: none; }
  .guide-grid { grid-template-columns: 1fr; }
  .comparison-cols { grid-template-columns: 1fr; }
}

/* ── Dark Mode ── */
@media (prefers-color-scheme: dark) {
  :root {
    --text: #E7E5E4;
    --text-muted: #A8A29E;
    --bg: #0F1F33;
    --bg-card: #162A45;
    --bg-section: #132238;
    --border: #2A3F5A;
    --accent: #5B8DBF;
    --accent-light: #7FAADB;
    --accent-warm: #D97706;
  }
  .site-header { background: var(--bg); border-bottom-color: var(--border); }
  .logo { color: var(--text); }
  .home-hero { background: #0A1628; }
  .directory-promo { background: var(--bg-section); border-color: var(--border); }
  .quick-answer-box { background: rgba(91,141,191,0.08); }
  .directory-cta-box { background: rgba(91,141,191,0.08); border-color: var(--border); }
  .article-footer-cta { background: #0A1628; }
  .site-footer { background: #0A1628; }
  .callout { background: rgba(91,141,191,0.06); }
  .callout--warning { background: rgba(217,119,6,0.08); }
  .callout--tip { background: rgba(5,150,105,0.08); }
  .stat-card { background: var(--bg-card); border-color: var(--border); border-top-color: var(--accent); }
  .stat-value { color: var(--text); }
  .article-hero-overlay { background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.15) 100%); }
}
