/* ============================================================
   Mobile One Auto — Scarborough mobile mechanic
   Palette: desaturated 70s photo (faded print)
   ============================================================ */

:root {
  --bg:      #efe6d0;
  --bg-2:    #e6dabf;
  --surface: #f6efdd;
  --ink:     #3a2f1a;
  --ink-2:   #6b5c3c;
  --ink-3:   #8d7c58;
  --a:       #a67c00;   /* mustard */
  --b:       #6b7a3a;   /* avocado */
  --c:       #c04e1a;   /* burnt sienna */
  --line:    rgba(58, 47, 26, 0.18);
  --line-2:  rgba(58, 47, 26, 0.32);
  --grain:   0.055;
  --shadow:  0 1px 0 rgba(58,47,26,.06), 0 10px 30px -18px rgba(58,47,26,.45);

  --f-display: "Fraunces", Georgia, "Times New Roman", serif;
  --f-body:    "Bricolage Grotesque", system-ui, -apple-system, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  --pad: clamp(1.25rem, 4vw, 3.5rem);
  --maxw: 1180px;
  --spine-w: 3.25rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:      #1c1810;
    --bg-2:    #221d13;
    --surface: #262017;
    --ink:     #ece0c6;
    --ink-2:   #c3b393;
    --ink-3:   #9b8b6c;
    --a:       #d9a92c;
    --b:       #9aab5e;
    --c:       #e0703a;
    --line:    rgba(236, 224, 198, 0.16);
    --line-2:  rgba(236, 224, 198, 0.30);
    --grain:   0.075;
    --shadow:  0 1px 0 rgba(0,0,0,.3), 0 14px 34px -20px rgba(0,0,0,.9);
  }
}

/* Explicit user choice overrides the OS preference */
html[data-theme="light"] {
  --bg:#efe6d0; --bg-2:#e6dabf; --surface:#f6efdd;
  --ink:#3a2f1a; --ink-2:#6b5c3c; --ink-3:#8d7c58;
  --a:#a67c00; --b:#6b7a3a; --c:#c04e1a;
  --line:rgba(58,47,26,.18); --line-2:rgba(58,47,26,.32);
  --grain:.055; --shadow:0 1px 0 rgba(58,47,26,.06), 0 10px 30px -18px rgba(58,47,26,.45);
}
html[data-theme="dark"] {
  --bg:#1c1810; --bg-2:#221d13; --surface:#262017;
  --ink:#ece0c6; --ink-2:#c3b393; --ink-3:#9b8b6c;
  --a:#d9a92c; --b:#9aab5e; --c:#e0703a;
  --line:rgba(236,224,198,.16); --line-2:rgba(236,224,198,.30);
  --grain:.075; --shadow:0 1px 0 rgba(0,0,0,.3), 0 14px 34px -20px rgba(0,0,0,.9);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.62;
  font-optical-sizing: auto;
  overflow-x: hidden;
}

/* ── grain overlay ─────────────────────────────────────── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: var(--grain);
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='220' height='220' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}
html[data-theme="dark"] body::before,
@media (prefers-color-scheme: dark) { }
@media (prefers-color-scheme: dark) {
  body::before { mix-blend-mode: screen; }
}
html[data-theme="dark"] body::before { mix-blend-mode: screen; }
html[data-theme="light"] body::before { mix-blend-mode: multiply; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c); text-underline-offset: 3px; }
a:hover { color: var(--a); }

:focus-visible {
  outline: 3px solid var(--c);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--bg);
  padding: .7rem 1rem; z-index: 10000;
}
.skip:focus { left: .5rem; top: .5rem; }

/* ── scroll progress strip ─────────────────────────────── */
.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 4px;
  z-index: 900;
  background: var(--line);
}
.progress__fill {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--b), var(--a) 55%, var(--c));
}
@supports (animation-timeline: scroll()) {
  .progress__fill {
    animation: fill linear both;
    animation-timeline: scroll(root block);
  }
}
@keyframes fill { to { transform: scaleX(1); } }

/* ── top bar ───────────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .7rem var(--pad) .7rem calc(var(--pad) + var(--spine-w));
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px) saturate(1.1);
  border-bottom: 1px solid var(--line);
}
.topbar__mark {
  display: flex; align-items: baseline; gap: .55rem;
  text-decoration: none; color: var(--ink);
  font-family: var(--f-display);
  font-weight: 900;
  letter-spacing: -.01em;
  font-size: 1.05rem;
  white-space: nowrap;
}
.topbar__one {
  font-family: var(--f-mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  background: var(--c);
  color: #fdf6e6;
  padding: .22rem .4rem .18rem;
  border-radius: 3px;
}
.topbar__nav {
  display: flex; gap: 1.15rem;
  margin-left: auto;
  font-size: .88rem;
}
.topbar__nav a {
  color: var(--ink-2);
  text-decoration: none;
  padding: .35rem 0;
  border-bottom: 1px solid transparent;
}
.topbar__nav a:hover { color: var(--ink); border-bottom-color: var(--a); }

.topbar__right { display: flex; align-items: center; gap: .6rem; }

.callbtn {
  display: inline-flex; align-items: center; gap: .5rem;
  min-height: 44px;
  padding: .5rem .95rem;
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  transition: transform .18s ease, background .18s ease;
}
.callbtn:hover { background: var(--c); color: #fdf6e6; transform: translateY(-1px); }
.callbtn__label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; opacity: .7; }
.callbtn__num { font-family: var(--f-mono); font-size: .86rem; letter-spacing: -.01em; }

.callbtn--big {
  width: 100%;
  justify-content: center;
  flex-direction: column;
  gap: .1rem;
  padding: .95rem 1rem;
  border-radius: 10px;
  margin: .35rem 0 .9rem;
}
.callbtn--big .callbtn__label { font-size: .7rem; }
.callbtn--big .callbtn__num { font-size: 1.32rem; font-weight: 600; }

.themebtn {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink);
}
.themebtn:hover { border-color: var(--a); }
.themebtn__icon {
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: inset -5px -3px 0 0 var(--bg);
  transition: box-shadow .25s ease, transform .25s ease;
}
html[data-theme="dark"] .themebtn__icon { box-shadow: inset 0 0 0 0 var(--bg); transform: scale(.82); }
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .themebtn__icon { box-shadow: inset 0 0 0 0 var(--bg); transform: scale(.82); }
}

/* ── vertical spine headline ───────────────────────────── */
.spine {
  position: fixed;
  left: .55rem;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin: 0;
  z-index: 700;
  font-family: var(--f-mono);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--ink-3);
  white-space: nowrap;
  pointer-events: none;
  border-left: 2px solid var(--a);
  padding-left: .55rem;
}

/* ── layout shell ──────────────────────────────────────── */
main { display: block; }
.band, .hero, .closing {
  padding-inline: calc(var(--pad) + var(--spine-w)) var(--pad);
}
.band > *, .hero > *, .closing > * { max-width: var(--maxw); margin-inline: auto; }

/* ── hero ──────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 3.25rem);
  padding-block: clamp(2.5rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
}
.hero__inner { max-width: 46rem; }
.hero__kicker {
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--b);
  margin: 0 0 .9rem;
}
.hero__name {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 9vw, 5.6rem);
  line-height: .92;
  letter-spacing: -.035em;
  margin: 0;
  text-wrap: balance;
  color: var(--ink);
}
.hero__lede {
  font-size: clamp(1.05rem, 1rem + .4vw, 1.28rem);
  color: var(--ink-2);
  max-width: 38rem;
  margin: 1.4rem 0 0;
  text-wrap: pretty;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }
.hero__note {
  font-family: var(--f-mono);
  font-size: .78rem;
  color: var(--ink-3);
  margin: 1.15rem 0 0;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px;
  padding: .8rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.btn--solid { background: var(--c); color: #fdf6e6; }
.btn--solid:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); }
.btn--ghost { border-color: var(--line-2); color: var(--ink); }
.btn--ghost:hover { border-color: var(--a); color: var(--a); transform: translateY(-2px); }

.hero__figure { margin: 0; }
.hero__figure img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 6px;
  filter: saturate(.82) contrast(1.03);
  box-shadow: var(--shadow);
}
.hero__figure figcaption {
  font-family: var(--f-mono);
  font-size: .74rem;
  color: var(--ink-3);
  margin-top: .7rem;
  padding-left: .1rem;
}

/* ── audio-visualizer bars ─────────────────────────────── */
.viz {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 46px;
  margin: 1.1rem 0 0;
}
.viz__bar {
  flex: 1 1 auto;
  min-width: 3px;
  max-width: 14px;
  height: 100%;
  background: linear-gradient(180deg, var(--a), var(--c));
  border-radius: 2px 2px 0 0;
  transform-origin: 50% 100%;
  transform: scaleY(.18);
  animation: pulse 1.5s ease-in-out infinite alternate;
}
.viz__bar:nth-child(1)  { animation-delay: -.10s; }
.viz__bar:nth-child(2)  { animation-delay: -.55s; }
.viz__bar:nth-child(3)  { animation-delay: -.28s; }
.viz__bar:nth-child(4)  { animation-delay: -.80s; }
.viz__bar:nth-child(5)  { animation-delay: -.42s; }
.viz__bar:nth-child(6)  { animation-delay: -.95s; }
.viz__bar:nth-child(7)  { animation-delay: -.18s; }
.viz__bar:nth-child(8)  { animation-delay: -.66s; }
.viz__bar:nth-child(9)  { animation-delay: -.34s; }
.viz__bar:nth-child(10) { animation-delay: -1.05s; }
.viz__bar:nth-child(11) { animation-delay: -.22s; }
.viz__bar:nth-child(12) { animation-delay: -.74s; }
.viz__bar:nth-child(13) { animation-delay: -.48s; }
.viz__bar:nth-child(14) { animation-delay: -.88s; }
.viz__bar:nth-child(15) { animation-delay: -.14s; }
.viz__bar:nth-child(16) { animation-delay: -.60s; }
.viz__bar:nth-child(17) { animation-delay: -.38s; }
.viz__bar:nth-child(18) { animation-delay: -.99s; }
.viz__bar:nth-child(19) { animation-delay: -.26s; }
.viz__bar:nth-child(20) { animation-delay: -.70s; }
.viz__bar:nth-child(21) { animation-delay: -.44s; }
.viz__bar:nth-child(22) { animation-delay: -.84s; }
.viz__bar:nth-child(23) { animation-delay: -.06s; }
.viz__bar:nth-child(24) { animation-delay: -.52s; }
@keyframes pulse {
  0%   { transform: scaleY(.16); }
  35%  { transform: scaleY(.92); }
  60%  { transform: scaleY(.38); }
  100% { transform: scaleY(.70); }
}

/* ── bands ─────────────────────────────────────────────── */
.band {
  padding-block: clamp(2.75rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line);
}
.band--alt { background: var(--bg-2); }
.band__head { margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem); }
.band__head h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 1.2rem + 2.2vw, 2.9rem);
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 0 0 .6rem;
  text-wrap: balance;
}
.band__sub {
  color: var(--ink-2);
  max-width: 46rem;
  margin: 0;
  text-wrap: pretty;
}

/* ── menu (services) ───────────────────────────────────── */
.menu {
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 2.75rem);
  grid-template-columns: 1fr;
}
.menu__group h3 {
  font-family: var(--f-mono);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--b);
  margin: 0 0 .35rem;
  padding-bottom: .55rem;
  border-bottom: 1px solid var(--line-2);
}
.item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .35rem 1.25rem;
  align-items: baseline;
  padding: .72rem 0;
  border-bottom: 1px dotted var(--line);
}
.item:last-child { border-bottom: 0; }
.item__name {
  font-weight: 600;
  font-size: .98rem;
  line-height: 1.35;
}
.item__name em {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: .84rem;
  line-height: 1.45;
  color: var(--ink-3);
  margin-top: .18rem;
  max-width: 34rem;
}
.item__price {
  font-family: var(--f-mono);
  font-size: .84rem;
  font-weight: 600;
  color: var(--c);
  white-space: nowrap;
  text-align: right;
}
.fineprint {
  margin: clamp(1.75rem, 3vw, 2.5rem) 0 0;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-2);
  font-size: .84rem;
  color: var(--ink-3);
  max-width: 52rem;
  text-wrap: pretty;
}

/* ── steps ─────────────────────────────────────────────── */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  counter-reset: step;
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.4rem 1.35rem 1.5rem;
  box-shadow: var(--shadow);
}
.step__num {
  display: block;
  font-family: var(--f-mono);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--c);
  margin-bottom: .55rem;
}
.step h3 {
  font-family: var(--f-display);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -.015em;
  margin: 0 0 .45rem;
}
.step p { margin: 0; font-size: .92rem; color: var(--ink-2); text-wrap: pretty; }

/* ── split (why + rates) ───────────────────────────────── */
.split { display: grid; gap: clamp(1.75rem, 3.5vw, 2.75rem); grid-template-columns: 1fr; }
.split__text p { margin: 0 0 1.1rem; color: var(--ink-2); text-wrap: pretty; }
.split__text p:last-child { margin-bottom: 0; }
.split__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.4rem 1.35rem;
  box-shadow: var(--shadow);
  align-self: start;
}
.split__card h3 {
  font-family: var(--f-mono);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--b);
  margin: 0 0 .35rem;
  padding-bottom: .55rem;
  border-bottom: 1px solid var(--line-2);
}

/* ── service area ──────────────────────────────────────── */
.area { display: grid; gap: clamp(1.75rem, 3.5vw, 2.75rem); grid-template-columns: 1fr; }
.area__list h3 {
  font-family: var(--f-mono);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--b);
  margin: 0 0 .85rem;
}
.area__list h3 + .chips + h3 { margin-top: 1.75rem; }
.chips {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.chips li {
  font-size: .86rem;
  padding: .42rem .8rem;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
}
.chips--dim li { background: transparent; color: var(--ink-3); border-style: dashed; }
.area__figure { margin: 0; }
.area__figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  filter: saturate(.8) contrast(1.03);
  box-shadow: var(--shadow);
}
.area__figure figcaption {
  font-family: var(--f-mono);
  font-size: .74rem;
  color: var(--ink-3);
  margin-top: .7rem;
}

/* ── footer cards ──────────────────────────────────────── */
.cards { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow);
}
.card h3 {
  font-family: var(--f-mono);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--b);
  margin: 0 0 1rem;
  padding-bottom: .55rem;
  border-bottom: 1px solid var(--line-2);
}
.card--call { background: var(--ink); color: var(--bg); border-color: transparent; }
.card--call h3 { color: var(--a); border-bottom-color: rgba(255,255,255,.2); }
.card--call .card__lead { color: color-mix(in srgb, var(--bg) 78%, transparent); }
.card--call .card__note { color: color-mix(in srgb, var(--bg) 62%, transparent); }
.card--call .callbtn { background: var(--c); color: #fdf6e6; }
.card--call .callbtn:hover { background: var(--a); color: #241d0c; }
.card__lead { margin: 0 0 .5rem; font-size: .95rem; color: var(--ink-2); }
.card__note { margin: .9rem 0 0; font-size: .84rem; color: var(--ink-3); text-wrap: pretty; }
.card__link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  border-bottom: 1px solid var(--a);
  padding-bottom: 2px;
}

.hours { margin: 0; }
.hours__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: .48rem 0;
  border-bottom: 1px dotted var(--line);
  font-size: .92rem;
}
.hours__row:last-child { border-bottom: 0; }
.hours__row dt { color: var(--ink-2); }
.hours__row dd { margin: 0; font-family: var(--f-mono); font-size: .84rem; }
.hours__row--closed dd { color: var(--c); font-weight: 600; }

.addr {
  font-style: normal;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink);
}

/* ── quotes ────────────────────────────────────────────── */
.quotes { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.quote {
  margin: 0;
  padding: 1.4rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--a);
  border-radius: 4px;
}
.quote p {
  margin: 0 0 .9rem;
  font-family: var(--f-display);
  font-size: 1.04rem;
  line-height: 1.55;
  font-style: italic;
  text-wrap: pretty;
}
.quote cite {
  font-family: var(--f-mono);
  font-style: normal;
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ── closing ───────────────────────────────────────────── */
.closing {
  padding-block: clamp(3rem, 7vw, 6rem);
  text-align: center;
  background: var(--bg-2);
}
.closing__line {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 1.1rem + 3.4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -.03em;
  margin: 0 auto;
  max-width: 22ch;
  text-wrap: balance;
}
.closing__sub {
  font-family: var(--f-mono);
  font-size: .8rem;
  color: var(--ink-3);
  margin: 1.4rem 0 0;
}
.closing__sub a { color: var(--c); }

/* ── footer ────────────────────────────────────────────── */
.footer {
  padding: 1.5rem calc(var(--pad) + var(--spine-w)) 2.5rem var(--pad);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .85rem;
  border-top: 1px solid var(--line);
}
.claim-banner {
  display: inline-block;
  font-size: .78rem;
  line-height: 1.4;
  padding: .5rem .8rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink-2);
  text-decoration: none;
}
.claim-banner:hover { color: var(--ink); border-color: var(--a); }
.attribution {
  margin: 0;
  font-size: .72rem;
  color: var(--ink-3);
}
.attribution a { color: inherit; }

/* ── responsive ────────────────────────────────────────── */
@media (min-width: 700px) {
  .menu { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quotes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card--call { grid-column: 1 / -1; }
}

@media (min-width: 1000px) {
  .hero { grid-template-columns: 1.05fr .95fr; align-items: center; }
  .hero__figure img { aspect-ratio: 4 / 5; }
  .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .card--call { grid-column: auto; }
  .split { grid-template-columns: 1.35fr .95fr; }
  .area { grid-template-columns: 1.1fr .9fr; align-items: start; }
  .quotes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .topbar__nav { display: none; }
  .topbar { padding-left: calc(var(--pad) + 1.6rem); }
  .spine { font-size: .62rem; letter-spacing: .26em; left: .35rem; }
  :root { --spine-w: 1.9rem; }
}

@media (max-width: 560px) {
  .callbtn__label { display: none; }
  .callbtn { padding: .5rem .8rem; }
  .item { grid-template-columns: 1fr; }
  .item__price { text-align: left; }
}

/* ── reduced motion ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .viz__bar { transform: scaleY(.55); }
  .progress__fill { transform: scaleX(1); }
}

@media print {
  .topbar, .progress, .spine, .viz, .themebtn { display: none; }
  body::before { display: none; }
}
