/* ==========================================================================
   Garden City Dental Center — shared design system
   Plainspoken-value / modern-minimal, warmed. See design-spec.md.
   ========================================================================== */

:root {
  --paper: #FAF8F4;
  --paper-alt: #F1ECE3;
  --ink: #1C1B19;
  --graphite: #4A4642;
  --rust: #B5551E;
  --rust-light: #D97A3E;
  --hairline: #E4DED2;
  --white: #FFFFFF;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --font-ui: "Inter Tight", "Inter", -apple-system, "Segoe UI", sans-serif;

  --h1: clamp(2.25rem, 1.7rem + 2.4vw, 3.75rem);
  --h2: clamp(1.75rem, 1.45rem + 1.3vw, 2.75rem);
  --h3: clamp(1.375rem, 1.2rem + 0.7vw, 1.75rem);
  --h4: clamp(1.125rem, 1.05rem + 0.3vw, 1.25rem);
  --body: 1.0625rem;
  --body-lg: clamp(1.1875rem, 1.1rem + 0.4vw, 1.3125rem);
  --small: 0.875rem;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-6: 48px;
  --space-8: 64px;
  --space-12: 96px;

  --radius: 6px;
  --wrap-max: 1180px;
  --header-h: 84px;
  --header-h-condensed: 64px;
}

* { box-sizing: border-box; }
/* overflow-x lives on html only, not body: setting overflow-x on body without an
   explicit overflow-y trips a CSS-spec quirk (overflow-y auto-computes to "auto"),
   which turns body into its own independent scroll container decoupled from
   window.scrollTo/scrollY -- breaking the sticky-header scroll listener, #anchor
   jumps, and IntersectionObserver's viewport root all at once. html is the intended
   document.scrollingElement, so it alone gets the horizontal-overflow clip. */
html { scroll-behavior: smooth; scroll-padding-top: 100px; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--rust); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: var(--font-display); color: var(--ink); margin: 0 0 var(--space-2); font-weight: 700; }
h1 { font-size: var(--h1); font-weight: 900; line-height: 1.08; }
h2 { font-size: var(--h2); line-height: 1.15; }
h3 { font-size: var(--h3); font-weight: 600; line-height: 1.25; }
h4 { font-family: var(--font-ui); font-size: var(--h4); font-weight: 700; margin: 0 0 var(--space-1); line-height: 1.3; }
p { margin: 0 0 var(--space-2); }
.lead { font-size: var(--body-lg); line-height: 1.55; color: var(--graphite); }
.eyebrow {
  font-family: var(--font-ui); font-weight: 700; font-size: 0.8125rem;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--rust); margin: 0 0 var(--space-1);
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 2px solid var(--rust); outline-offset: 2px; }

/* Container contract: every .sec's content sits inside .wrap. .sec/.sec.alt
   are full-bleed with vertical padding only, never a max-width. */
.sec { padding: var(--space-8) 0; }
.sec.alt { background: var(--paper-alt); }
.sec.tight { padding: var(--space-6) 0; }
.wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 760px) { .wrap { padding: 0 32px; } }
@media (min-width: 1180px) { .wrap { padding: 0; } }
.prose { max-width: 700px; margin: 0 auto; }
.prose h2, .prose h3 { margin-top: var(--space-4); }
.prose p { margin-bottom: var(--space-3); }
.prose hr { border: none; border-top: 1px solid var(--hairline); margin: var(--space-4) 0; }

/* ---------------------------------------------------------------------
   Icon sprite defaults
   --------------------------------------------------------------------- */
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 28px; height: 28px; stroke: var(--rust); fill: none; }
.icon.on-dark { stroke: var(--paper); }
.icon.small { width: 16px; height: 16px; }
.chevron { width: 12px; height: 12px; stroke: currentColor; fill: none; transition: transform .15s ease; }

/* ---------------------------------------------------------------------
   Buttons
   --------------------------------------------------------------------- */
.btn-primary, .btn-outline, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-ui); font-weight: 600; font-size: 0.9375rem;
  padding: 13px 24px; border-radius: var(--radius); border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; min-height: 44px; line-height: 1;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary { background: var(--rust); color: var(--white); }
.btn-primary:hover { background: #9A4718; color: var(--white); text-decoration: none; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--rust); border-color: var(--rust); }
.btn-ghost:hover { background: var(--rust); color: var(--white); text-decoration: none; }
.cta-row { display: flex; flex-wrap: wrap; gap: var(--space-2); align-items: center; }

/* ---------------------------------------------------------------------
   Preview banner
   --------------------------------------------------------------------- */
.preview-banner {
  background: var(--ink); color: var(--paper); font-family: var(--font-ui);
  font-size: 0.875rem; padding: 10px 20px; text-align: center;
}
.preview-banner a { color: var(--rust-light); font-weight: 600; }
.preview-banner strong { font-weight: 700; }

/* ---------------------------------------------------------------------
   Header
   --------------------------------------------------------------------- */
.site-header {
  /* No backdrop-filter here: it would establish a new CSS containing block for
     any position:fixed descendant (the mobile nav overlay lives inside this
     header), making inset:0 resolve against the header's own box instead of the
     viewport. background is opaque enough on its own without the blur. */
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--hairline);
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2);
  padding: 0 20px; min-height: var(--header-h);
  transition: min-height .2s ease, box-shadow .2s ease;
}
.site-header.is-condensed { min-height: var(--header-h-condensed); box-shadow: 0 1px 8px rgba(28,27,25,0.06); }
@media (min-width: 760px) { .site-header { padding: 0 32px; } }

.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; color: var(--ink);
  font-size: 1.125rem; white-space: nowrap; margin-right: auto;
}
.logo:hover { text-decoration: none; }
.logo .icon { width: 30px; height: 30px; transition: width .2s ease, height .2s ease; }
.site-header.is-condensed .logo .icon { width: 22px; height: 22px; }
.logo-text { line-height: 1.1; }

.header-actions { display: none; align-items: center; gap: var(--space-2); }
.header-phone {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-ui); font-weight: 600; color: var(--ink); font-size: 0.9375rem;
  white-space: nowrap;
}
.header-phone:hover { color: var(--rust); text-decoration: none; }

.hamburger {
  width: 44px; height: 44px; border: none; background: transparent; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; margin-left: auto;
  position: relative;
}
.hamburger .bar, .hamburger .bar::before, .hamburger .bar::after {
  content: ""; position: absolute; width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.hamburger .bar { }
.hamburger .bar::before { transform: translateY(-7px); }
.hamburger .bar::after { transform: translateY(7px); }
.nav.is-open ~ .hamburger .bar,
.hamburger[aria-expanded="true"] .bar { background: transparent; }
.hamburger[aria-expanded="true"] .bar::before { transform: translateY(0) rotate(45deg); }
.hamburger[aria-expanded="true"] .bar::after { transform: translateY(0) rotate(-45deg); }

.nav { display: none; width: 100%; }
.nav.is-open { display: block; }
.nav-list { list-style: none; margin: 0; padding: var(--space-2) 0; display: flex; flex-direction: column; gap: 2px; }
.nav-link, .nav-trigger {
  display: flex; align-items: center; justify-content: space-between; gap: 6px; width: 100%;
  font-family: var(--font-ui); font-weight: 600; font-size: 1rem; color: var(--ink);
  padding: 12px 4px; border: none; background: transparent; cursor: pointer; text-align: left;
  min-height: 44px;
}
.nav-link:hover, .nav-trigger:hover { color: var(--rust); text-decoration: none; }
.nav-link.active, .nav-trigger.active { color: var(--rust); }
.nav-group.open .nav-trigger .chevron { transform: rotate(180deg); }
.dropdown-panel { display: none; padding: 0 0 8px 12px; flex-direction: column; }
.nav-group.open .dropdown-panel { display: flex; }
.panel-item {
  display: flex; align-items: center; gap: 8px; padding: 10px 4px; min-height: 40px;
  font-size: 0.9375rem; color: var(--graphite); border-left: 2px solid var(--hairline);
  padding-left: 12px;
}
.panel-item:hover, .panel-item.active { color: var(--rust); border-left-color: var(--rust); text-decoration: none; }
.panel-item .cap { display: block; font-size: 0.8125rem; color: var(--graphite); font-weight: 400; }
.nav-book-btn { margin: var(--space-2) 0; width: 100%; }

@media (min-width: 760px) {
  .hamburger { display: none; }
  .header-actions { display: inline-flex; }
  .nav {
    display: flex !important; width: auto; align-items: center; margin-left: var(--space-3);
  }
  .nav-list { flex-direction: row; align-items: center; padding: 0; gap: var(--space-3); }
  .nav-link, .nav-trigger { padding: 8px 2px; min-height: auto; width: auto; }
  .nav-link { position: relative; }
  .nav-link::after, .nav-trigger::after {
    content: ""; position: absolute; left: 2px; right: 2px; bottom: -6px; height: 2px;
    background: var(--rust); transform: scaleX(0); transform-origin: left; transition: transform .15s ease;
  }
  .nav-link:hover::after, .nav-link.active::after,
  .nav-trigger:hover::after, .nav-trigger.active::after,
  .nav-group.active > .nav-trigger::after { transform: scaleX(1); }
  .nav-group { position: relative; }
  .nav-group .dropdown-panel {
    display: block; position: absolute; top: 100%; left: 0; margin-top: 10px;
    background: var(--paper); border: 1px solid var(--hairline); border-top: 2px solid var(--rust);
    border-radius: var(--radius); padding: 10px; min-width: 260px;
    box-shadow: 0 8px 24px rgba(28,27,25,0.08);
    opacity: 0; visibility: hidden; transform: translateY(4px);
    transition: opacity .12s ease, transform .12s ease, visibility .12s ease;
  }
  .nav-group:hover .dropdown-panel,
  .nav-group:focus-within .dropdown-panel,
  .nav-group.open .dropdown-panel { opacity: 1; visibility: visible; transform: translateY(0); }
  .panel-item { padding-left: 8px; }
  .nav-book-btn { width: auto; margin: 0; }
}

/* ---------------------------------------------------------------------
   Hero
   --------------------------------------------------------------------- */
.hero { padding: var(--space-8) 0; }
.hero-grid { display: grid; gap: var(--space-4); align-items: center; }
@media (min-width: 900px) {
  .hero-grid.with-photo { grid-template-columns: 1.15fr 0.85fr; }
}
.hero-photo img { border-radius: var(--radius); border: 1px solid var(--hairline); }
.hero h1 { max-width: 20ch; }

/* ---------------------------------------------------------------------
   Facts strip / stat badges
   --------------------------------------------------------------------- */
.facts-strip { display: grid; gap: var(--space-3); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) { .facts-strip { grid-template-columns: repeat(4, 1fr); } }
.fact-item { text-align: left; }
.fact-item .fact-num { font-family: var(--font-display); font-weight: 900; font-size: 1.75rem; display: block; }
.fact-item .fact-label { font-size: var(--small); color: var(--graphite); }

/* ---------------------------------------------------------------------
   Grids: services, infocards, tiers
   --------------------------------------------------------------------- */
.svc-grid, .infocards { display: grid; gap: var(--space-3); grid-template-columns: 1fr; }
@media (min-width: 541px) { .svc-grid, .infocards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .svc-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: var(--space-3); height: 100%;
}
.sec.alt .card { background: var(--paper); }
.card .icon { margin-bottom: var(--space-2); }
.card .trust-line { font-size: var(--small); color: var(--graphite); margin-top: var(--space-1); }

/* Team cards */
.team-card { display: flex; flex-direction: column; gap: var(--space-2); }
.team-photo { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--hairline); background: var(--paper-alt); }
.team-byline { font-size: var(--small); color: var(--graphite); margin: -8px 0 0; }
.team-credentials { list-style: none; margin: var(--space-2) 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.team-credentials li { padding-left: 18px; position: relative; font-size: 0.9375rem; color: var(--graphite); }
.team-credentials li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--rust); }

/* Pricing tier cards (engraved-plate header) */
.tier-grid { display: grid; gap: var(--space-3); grid-template-columns: 1fr; }
@media (min-width: 700px) { .tier-grid { grid-template-columns: repeat(3, 1fr); } }
.tier-card { border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; background: var(--paper); display: flex; flex-direction: column; }
.tier-head {
  padding: var(--space-3); color: var(--white); position: relative;
  background-color: var(--graphite); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Cline x1='0' y1='3' x2='6' y2='3' stroke='%23FFFFFF' stroke-opacity='0.06' stroke-width='1'/%3E%3C/svg%3E");
  box-shadow: inset 1px 1px 0 rgba(255,255,255,0.12), inset -1px -1px 0 rgba(0,0,0,0.18);
}
.tier-card.featured .tier-head { background-color: var(--rust); }
.tier-card.featured .tier-head::before,
.tier-card.featured .tier-head::after {
  content: ""; position: absolute; width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.5);
  top: 8px; left: 8px;
}
.tier-card.featured .tier-head::after { left: auto; right: 8px; }
.tier-name { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; margin: 0; }
.tier-warranty { font-family: var(--font-ui); font-size: var(--small); opacity: 0.9; margin: 4px 0 0; }
.tier-body { padding: var(--space-3); flex: 1; display: flex; flex-direction: column; gap: 10px; }
.tier-note { font-size: var(--small); color: var(--graphite); }

/* Process steps */
.steps { display: grid; gap: var(--space-3); grid-template-columns: 1fr; }
@media (min-width: 700px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { text-align: left; }
.step-num { font-family: var(--font-display); font-weight: 900; color: var(--rust); font-size: 1.5rem; }

/* ---------------------------------------------------------------------
   Tables (real pricing spec-table)
   --------------------------------------------------------------------- */
.price-table-wrap { overflow-x: auto; border: 1px solid var(--hairline); border-radius: var(--radius); }
table.price-table { width: 100%; border-collapse: collapse; font-family: var(--font-ui); min-width: 480px; }
table.price-table th {
  text-align: left; padding: 14px 16px; background-color: var(--graphite); color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Cline x1='0' y1='3' x2='6' y2='3' stroke='%23FFFFFF' stroke-opacity='0.06' stroke-width='1'/%3E%3C/svg%3E");
  font-weight: 600; font-size: 0.9375rem;
}
table.price-table td { padding: 12px 16px; border-top: 1px solid var(--hairline); font-size: 1rem; }
table.price-table td.price { font-weight: 600; white-space: nowrap; }
table.price-table tr:nth-child(even) td { background: var(--paper-alt); }
.price-disclaimer { font-size: var(--small); color: var(--graphite); margin-top: var(--space-2); }

/* ---------------------------------------------------------------------
   FAQ accordion
   --------------------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--hairline); border-radius: var(--radius); background: var(--paper); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-2);
  padding: 16px 20px; font-family: var(--font-ui); font-weight: 600; font-size: 1rem; color: var(--ink);
  min-height: 44px;
}
.faq-item[open] .faq-q .chevron { transform: rotate(180deg); }
.faq-a { padding: 0 20px 18px; color: var(--graphite); }
.faq-a p:last-child { margin-bottom: 0; }
details.faq-item summary { list-style: none; }
details.faq-item summary::-webkit-details-marker { display: none; }

/* ---------------------------------------------------------------------
   Insurance / payments strip
   --------------------------------------------------------------------- */
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.pill {
  border: 1px solid var(--hairline); border-radius: 999px; padding: 8px 16px;
  font-family: var(--font-ui); font-size: 0.9375rem; color: var(--ink); background: var(--paper);
}
.insurance-logos { display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; margin: var(--space-3) 0; }
.insurance-logos img { max-height: 40px; width: auto; }

/* ---------------------------------------------------------------------
   Map + hours
   --------------------------------------------------------------------- */
.map-frame { border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; }
.map-frame iframe { display: block; width: 100%; height: 320px; border: 0; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 6px 0; border-top: 1px solid var(--hairline); font-size: 0.9375rem; }
.hours-table td:last-child { text-align: right; font-weight: 600; }
.hours-table tr:first-child td { border-top: none; }
.live-status {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-ui);
  font-weight: 600; font-size: 0.9375rem; padding: 8px 14px; border-radius: 999px;
  background: var(--paper-alt); margin-bottom: var(--space-2);
}
.live-status .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--graphite); }
.live-status.is-open .dot { background: #3E7A4A; }
.live-status.is-open { color: #2C5C36; }
.live-status.is-closed .dot { background: var(--rust); }
.live-status.is-closed { color: var(--rust); }

/* ---------------------------------------------------------------------
   Placeholder / deep page teaser
   --------------------------------------------------------------------- */
.placeholder-hero { padding: var(--space-6) 0; }
.placeholder-card {
  border: 1px solid var(--hairline); border-radius: var(--radius); background: var(--paper);
  padding: var(--space-4); max-width: 640px; margin: 0 auto; text-align: left;
}
.placeholder-card .icon { margin-bottom: var(--space-2); }
.back-link { display: inline-block; margin-top: var(--space-2); font-weight: 600; }

/* ---------------------------------------------------------------------
   Footer
   --------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--paper); padding: var(--space-8) 0 var(--space-4); }
.footer-grid { display: grid; gap: var(--space-4); grid-template-columns: 1fr; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-heading { font-family: var(--font-ui); font-weight: 700; color: var(--paper); margin-bottom: 10px; font-size: 0.9375rem; text-transform: uppercase; letter-spacing: 0.06em; }
.site-footer a { color: var(--rust-light); }
.site-footer nav { display: flex; flex-direction: column; gap: 6px; }
.site-footer p { color: #D8D3CB; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: var(--space-4); padding-top: var(--space-3); display: flex; flex-wrap: wrap; gap: var(--space-2); justify-content: space-between; color: #B9B3A8; font-size: var(--small); }
.footer-bottom a { color: #B9B3A8; }

/* ---------------------------------------------------------------------
   Mobile fixed call/book bar
   --------------------------------------------------------------------- */
.mobile-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: flex;
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -2px 12px rgba(28,27,25,0.12);
}
.mobile-cta-bar a {
  flex: 1; text-align: center; padding: 16px 8px; font-family: var(--font-ui); font-weight: 700;
  min-height: 60px; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.mobile-cta-bar a:hover { text-decoration: none; }
.mobile-cta-bar .call { background: var(--rust); color: var(--white); }
.mobile-cta-bar .book { background: var(--ink); color: var(--paper); }
body { padding-bottom: 60px; }
@media (min-width: 760px) {
  .mobile-cta-bar { display: none; }
  body { padding-bottom: 0; }
}
.nav-overlay-open { overflow: hidden; }
@media (max-width: 759px) {
  /* Full-viewport overlay (not offset by a hardcoded header height, which varies
     with the preview banner's wrap and the condensed state): .site-header has a
     higher z-index than this overlay, so it always paints on top and the overlay
     visually "starts below the header" through stacking order, not measurement. */
  .nav.is-open {
    position: fixed; inset: 0; background: var(--ink); overflow-y: auto;
    z-index: 95; padding: calc(var(--header-h) + var(--space-2)) 20px var(--space-8);
  }
  .nav.is-open .nav-link, .nav.is-open .nav-trigger { color: var(--paper); }
  .nav.is-open .nav-link.active, .nav.is-open .nav-trigger.active { color: var(--rust-light); }
  .nav.is-open .panel-item { color: #D8D3CB; border-left-color: rgba(255,255,255,0.2); }
  .nav.is-open .panel-item:hover, .nav.is-open .panel-item.active { color: var(--rust-light); border-left-color: var(--rust-light); }
  .nav.is-open .nav-book-btn { background: var(--rust); }
}

/* ---------------------------------------------------------------------
   Reveal-on-scroll
   --------------------------------------------------------------------- */
/* Fail-safe scroll reveal: content is visible by default. JS opts an element INTO the
   hidden pre-reveal state only once it has confirmed it can also un-hide it again, so a
   slow/blocked/throttled IntersectionObserver can never leave content stuck invisible. */
.reveal.pre-reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; transition-delay: calc(var(--i, 0) * 60ms); }
.reveal.pre-reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------------
   Misc utility
   --------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.divider { border: none; border-top: 1px solid var(--hairline); margin: var(--space-4) 0; }
.no-js .js-only { display: none !important; }
