/* ============================================================
   404 Mobile Truck Repair and Tires
   Palette: desaturated 70s photo — mustard, avocado, ochre,
   burnt sienna, warm off-white, with a subtle grain overlay.
   ============================================================ */

:root {
  --bg:        #efe6d0;
  --paper:     #f6efdd;
  --ink:       #3a2f1a;
  --ink-soft:  #6b5c3e;
  --a:         #a67c00;   /* mustard */
  --b:         #6b7a3a;   /* avocado */
  --c:         #c04e1a;   /* burnt sienna */
  --ochre:     #d9a441;
  --line:      rgba(58, 47, 26, 0.22);
  --line-soft: rgba(58, 47, 26, 0.12);
  --shadow:    0 1px 0 rgba(58,47,26,.14), 0 12px 28px -18px rgba(58,47,26,.55);

  --band-avocado: #6b7a3a;
  --band-paper:   #f6efdd;
  --band-ochre:   #d9a441;
  --band-sienna:  #c04e1a;
  --band-ink:     #2b2313;

  --on-dark:   #f6efdd;
  --on-dark-soft: rgba(246, 239, 221, 0.78);

  --maxw: 1180px;
  --radius: 4px;

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

/* Dark mode — same faded-print family, inverted to a night yard. */
html[data-theme="dark"] {
  --bg:        #1c1810;
  --paper:     #241f14;
  --ink:       #f0e7d2;
  --ink-soft:  #c3b492;
  --a:         #d9a441;
  --b:         #9aa85c;
  --c:         #e2703a;
  --ochre:     #c08f2e;
  --line:      rgba(240, 231, 210, 0.24);
  --line-soft: rgba(240, 231, 210, 0.12);
  --shadow:    0 1px 0 rgba(0,0,0,.4), 0 14px 30px -18px rgba(0,0,0,.9);

  --band-avocado: #2f3618;
  --band-paper:   #241f14;
  --band-ochre:   #6d4f14;
  --band-sienna:  #6b2c10;
  --band-ink:     #14110a;

  --on-dark:   #f6efdd;
  --on-dark-soft: rgba(246, 239, 221, 0.76);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.62;
  font-variation-settings: "opsz" 14;
  overflow-x: hidden;
}

/* Grain overlay — the "faded print" texture. Decorative only. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.32;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
html[data-theme="dark"] body::after { mix-blend-mode: screen; opacity: 0.16; }

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;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-variation-settings: "opsz" 96, "SOFT" 0, "WONK" 1;
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 1.6rem + 5.4vw, 5.4rem); }
h2 { font-size: clamp(1.85rem, 1.2rem + 2.6vw, 3.1rem); }
h3 { font-size: clamp(1.15rem, 1rem + 0.7vw, 1.5rem); letter-spacing: -0.01em; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* ---------- hand-drawn scribble annotation ---------- */
.scribble {
  background: none;
  color: inherit;
  position: relative;
  white-space: nowrap;
  padding-bottom: 0.12em;
}
.scribble::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -0.06em;
  height: 0.42em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20' preserveAspectRatio='none'%3E%3Cpath d='M3 13 C 30 5, 52 17, 78 10 S 128 3, 152 12 S 186 8, 197 11' fill='none' stroke='%23c04e1a' stroke-width='3.4' stroke-linecap='round'/%3E%3Cpath d='M6 17 C 40 12, 70 19, 104 14 S 160 10, 194 15' fill='none' stroke='%23c04e1a' stroke-width='2.1' stroke-linecap='round' opacity='.6'/%3E%3C/svg%3E");
}
html[data-theme="dark"] .scribble::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20' preserveAspectRatio='none'%3E%3Cpath d='M3 13 C 30 5, 52 17, 78 10 S 128 3, 152 12 S 186 8, 197 11' fill='none' stroke='%23e2703a' stroke-width='3.4' stroke-linecap='round'/%3E%3Cpath d='M6 17 C 40 12, 70 19, 104 14 S 160 10, 194 15' fill='none' stroke='%23e2703a' stroke-width='2.1' stroke-linecap='round' opacity='.6'/%3E%3C/svg%3E");
}
.band-avocado .scribble::after,
.band-sienna .scribble::after,
.band-ink .scribble::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20' preserveAspectRatio='none'%3E%3Cpath d='M3 13 C 30 5, 52 17, 78 10 S 128 3, 152 12 S 186 8, 197 11' fill='none' stroke='%23d9a441' stroke-width='3.4' stroke-linecap='round'/%3E%3Cpath d='M6 17 C 40 12, 70 19, 104 14 S 160 10, 194 15' fill='none' stroke='%23d9a441' stroke-width='2.1' stroke-linecap='round' opacity='.6'/%3E%3C/svg%3E");
}

/* ---------- scroll progress strip (design element, not chrome) ---------- */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  z-index: 60;
  background: var(--line-soft);
}
.progress span {
  display: block;
  height: 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--b), var(--ochre) 45%, var(--c));
}
@supports (animation-timeline: scroll()) {
  .progress span {
    animation: fill-progress linear both;
    animation-timeline: scroll(root block);
  }
  @keyframes fill-progress { to { transform: scaleX(1); } }
}
/* JS fallback for browsers without scroll-driven animations */
.progress span.is-js { transform: scaleX(var(--p, 0)); }

/* ---------- top bar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.7rem clamp(1rem, 4vw, 2.5rem);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}
.brand-mark {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  background: var(--c);
  color: #f6efdd;
  padding: 0.28rem 0.5rem;
  border-radius: 3px;
}
.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.brand-text em { font-style: italic; color: var(--a); }

.topnav { display: flex; gap: 1.15rem; }
.topnav a {
  font-size: 0.88rem;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 0.55rem 0.15rem;
  border-bottom: 2px solid transparent;
}
.topnav a:hover { color: var(--ink); border-bottom-color: var(--c); }

.topbar-actions { display: flex; align-items: center; gap: 0.6rem; }

.theme-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink);
}
.theme-toggle:hover { border-color: var(--c); }
.theme-icon {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: inset -5px -3px 0 0 var(--bg);
}
html[data-theme="dark"] .theme-icon {
  background: var(--ochre);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ochre) 30%, transparent);
}

.call-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.05rem;
  text-decoration: none;
  background: var(--c);
  color: #f6efdd;
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius);
  min-height: 44px;
  justify-content: center;
  line-height: 1.15;
}
.call-btn:hover { background: var(--a); color: #2b2313; }
.call-label { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.85; }
.call-num { font-family: var(--font-mono); font-weight: 600; font-size: 0.92rem; }

/* ---------- layout helpers ---------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.15rem, 5vw, 3rem);
}
.wrap-narrow { max-width: 780px; }

.band { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.band-avocado { background: var(--band-avocado); color: var(--on-dark); }
.band-paper   { background: var(--band-paper); }
.band-ochre   { background: var(--band-ochre); color: #2b2313; }
.band-sienna  { background: var(--band-sienna); color: var(--on-dark); }
.band-ink     { background: var(--band-ink); color: var(--on-dark); }

.band-avocado a, .band-sienna a, .band-ink a { color: var(--ochre); }
.band-avocado a:hover, .band-sienna a:hover, .band-ink a:hover { color: #f6efdd; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 0.9rem;
  opacity: 0.82;
}
.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-lede { font-size: 1.06rem; opacity: 0.9; max-width: 58ch; }

/* ---------- hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.15rem, 5vw, 3rem) clamp(3rem, 7vw, 6rem);
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero-inner { max-width: 40ch; }
.hero-lede { font-size: 1.08rem; color: var(--ink-soft); max-width: 46ch; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.6rem 0 1.9rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}
.btn-primary { background: var(--c); color: #f6efdd; }
.btn-primary:hover { background: var(--a); color: #2b2313; transform: translateY(-2px); }
.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--c); color: var(--c); transform: translateY(-2px); }
.btn-block { width: 100%; margin-top: 1.2rem; }

.hero-facts {
  list-style: none;
  margin: 0;
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.45rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.hero-facts strong { color: var(--ink); font-family: var(--font-mono); font-size: 0.88rem; }

.hero-photo { margin: 0; }
.hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  filter: saturate(0.82) contrast(1.04) sepia(0.12);
}
.hero-photo figcaption {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-top: 0.7rem;
}

/* ---------- signature: frequency bars under the hero name ---------- */
.viz {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 34px;
  margin: 0.4rem 0 1.4rem;
}
.viz span {
  flex: 1 1 auto;
  min-width: 3px;
  height: 100%;
  background: var(--b);
  transform-origin: 50% 100%;
  transform: scaleY(0.18);
  border-radius: 1px;
}
.viz span:nth-child(3n)   { background: var(--ochre); }
.viz span:nth-child(4n+1) { background: var(--c); }

@media (prefers-reduced-motion: no-preference) {
  .viz span {
    animation: pulse 1.5s ease-in-out infinite alternate;
  }
  .viz span:nth-child(1)  { animation-delay: -0.10s; }
  .viz span:nth-child(2)  { animation-delay: -0.42s; }
  .viz span:nth-child(3)  { animation-delay: -0.24s; }
  .viz span:nth-child(4)  { animation-delay: -0.66s; }
  .viz span:nth-child(5)  { animation-delay: -0.05s; }
  .viz span:nth-child(6)  { animation-delay: -0.51s; }
  .viz span:nth-child(7)  { animation-delay: -0.33s; }
  .viz span:nth-child(8)  { animation-delay: -0.77s; }
  .viz span:nth-child(9)  { animation-delay: -0.18s; }
  .viz span:nth-child(10) { animation-delay: -0.60s; }
  .viz span:nth-child(11) { animation-delay: -0.29s; }
  .viz span:nth-child(12) { animation-delay: -0.88s; }
  .viz span:nth-child(13) { animation-delay: -0.13s; }
  .viz span:nth-child(14) { animation-delay: -0.47s; }
  .viz span:nth-child(15) { animation-delay: -0.71s; }
  .viz span:nth-child(16) { animation-delay: -0.22s; }
  .viz span:nth-child(17) { animation-delay: -0.55s; }
  .viz span:nth-child(18) { animation-delay: -0.36s; }
  .viz span:nth-child(19) { animation-delay: -0.81s; }
  .viz span:nth-child(20) { animation-delay: -0.08s; }
  .viz span:nth-child(21) { animation-delay: -0.63s; }
  .viz span:nth-child(22) { animation-delay: -0.40s; }
  .viz span:nth-child(23) { animation-delay: -0.26s; }
  .viz span:nth-child(24) { animation-delay: -0.58s; }

  @keyframes pulse {
    0%   { transform: scaleY(0.14); }
    35%  { transform: scaleY(0.92); }
    65%  { transform: scaleY(0.38); }
    100% { transform: scaleY(0.72); }
  }
}

/* ---------- service cards ---------- */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.card {
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.6rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
html[data-theme="dark"] .card { background: color-mix(in srgb, #2b2416 92%, transparent); }
.card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 3px;
  margin-bottom: 1.1rem;
  filter: saturate(0.85) contrast(1.03) sepia(0.1);
}
.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 0.96rem; color: var(--ink-soft); }
.card-note {
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px dashed var(--line);
  font-family: var(--font-mono);
  font-size: 0.74rem !important;
  letter-spacing: 0.02em;
  color: var(--a) !important;
}

/* ---------- menu / rates ---------- */
.menu { display: grid; gap: clamp(2rem, 4vw, 3rem); }
.menu section h3 {
  border-bottom: 2px solid var(--ink);
  padding-bottom: 0.5rem;
  margin-bottom: 0.4rem;
}
.menu .item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 0.72rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.menu .item > span:first-child {
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.menu .item em {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-weight: 400;
}
.menu .price {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.94rem;
  white-space: nowrap;
  color: var(--c);
}
.menu-foot {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--ink-soft);
  max-width: 70ch;
}

/* ---------- hours / location / dispatch cards ---------- */
.footer-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.info-card {
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow);
}
html[data-theme="dark"] .info-card { background: color-mix(in srgb, #2b2416 90%, transparent); }
.info-card h3 { margin-bottom: 0.9rem; }
.info-card address { font-style: normal; font-weight: 500; margin-bottom: 0.9rem; }
.info-note { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 0.8rem; }

.hours { list-style: none; margin: 0 0 1rem; padding: 0; }
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.42rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.92rem;
}
.hours li span:last-child { font-family: var(--font-mono); font-size: 0.82rem; color: var(--b); }
html[data-theme="dark"] .hours li span:last-child { color: var(--b); }

.steps { margin: 0; padding-left: 1.15rem; font-size: 0.92rem; color: var(--ink-soft); }
.steps li { margin-bottom: 0.6rem; }
.steps strong { color: var(--ink); }

/* ---------- service area ---------- */
.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.area-col h3 {
  font-size: 1.1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(246,239,221,0.4);
  margin-bottom: 0.9rem;
}
.area-col ul { list-style: none; margin: 0; padding: 0; }
.area-col li {
  padding: 0.42rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(246,239,221,0.16);
}
.area-col-quote blockquote {
  margin: 0 0 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--ochre);
}
.area-col-quote p { font-family: var(--font-display); font-size: 1.02rem; font-style: italic; }
.area-col-quote cite {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

/* ---------- about ---------- */
.prose p { font-size: 1.05rem; }
.prose p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.1rem;
  line-height: 0.82;
  float: left;
  padding: 0.1rem 0.6rem 0 0;
  color: var(--c);
}
.about-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.about-strip div { display: flex; flex-direction: column; gap: 0.2rem; }
.about-strip strong {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  color: var(--c);
}
.about-strip span { font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- closing ---------- */
.closing { text-align: center; }
.closing .eyebrow { opacity: 0.7; }
.closing-lede { max-width: 52ch; margin: 0 auto 1.75rem; color: var(--on-dark-soft); }
.phone-big {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(1.5rem, 1rem + 3.2vw, 2.9rem);
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ochre);
  padding: 0.35rem 0.6rem;
  border-bottom: 3px solid var(--c);
}
.phone-big:hover { color: #f6efdd; border-bottom-color: var(--ochre); }
.closing-meta {
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--on-dark-soft);
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 3.5rem;
}
.footer-inner { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start; }
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0;
}
.footer-meta { font-size: 0.86rem; color: var(--ink-soft); margin: 0; }

.claim-banner {
  display: inline-block;
  font-size: 0.78rem;
  padding: 0.4rem 0.7rem;
  border-radius: 3px;
  background: var(--line-soft);
  color: var(--ink-soft);
  text-decoration: none;
  border: 1px solid var(--line-soft);
}
.claim-banner:hover { color: var(--ink); border-color: var(--line); }

.attribution {
  position: static;
  font-size: 0.72rem;
  opacity: 0.55;
  margin: 0;
  font-family: var(--font-mono);
}
.attribution a { color: inherit; }

/* ---------- responsive ---------- */
@media (min-width: 640px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .about-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .hero { grid-template-columns: 1.05fr 1fr; }
  .footer-cards { grid-template-columns: repeat(3, 1fr); }
  .area-grid { grid-template-columns: 1fr 1fr 1.15fr; }
  .menu { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 3.5rem; }
}

@media (min-width: 1100px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .topnav { display: none; }
  .brand-text { font-size: 0.94rem; }
  .call-label { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .viz span { transform: scaleY(0.4); }
  .btn:hover { transform: none; }
}
