/* ============================================================
   Mobile Mechanic Auto Services — warm paper + hand-drawn ink
   ============================================================ */

:root {
  --paper:      #f8f2e2;
  --paper-2:    #f1e8d3;
  --paper-3:    #e9dfc6;
  --ink:        #0a0a0a;
  --ink-soft:   #3a352c;
  --ink-faint:  #6d6558;
  --rule:       #0a0a0a;
  --accent:     #c8452b;   /* red grease-pencil */
  --accent-2:   #1f5f4b;   /* deep shop green */
  --accent-3:   #d9a521;   /* safety yellow */
  --block-1:    #f8f2e2;
  --block-2:    #0a0a0a;
  --block-3:    #e9dfc6;
  --block-4:    #1f5f4b;
  --block-5:    #c8452b;
  --block-6:    #f8f2e2;

  --shadow: 0 1px 0 var(--ink), 0 6px 0 -2px rgba(10,10,10,.14);
  --wrap: 1180px;
  --pad: clamp(1.25rem, 4vw, 3rem);

  --f-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --f-body: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
}

html[data-theme="dark"] {
  --paper:      #14120e;
  --paper-2:    #1c1913;
  --paper-3:    #262218;
  --ink:        #f4eddc;
  --ink-soft:   #d8cfba;
  --ink-faint:  #a79d88;
  --rule:       #f4eddc;
  --accent:     #ff6a4d;
  --accent-2:   #6fd0ac;
  --accent-3:   #f0c24a;
  --block-1:    #14120e;
  --block-2:    #f4eddc;
  --block-3:    #1c1913;
  --block-4:    #123a2f;
  --block-5:    #7a2417;
  --block-6:    #14120e;
  --shadow: 0 1px 0 var(--ink), 0 6px 0 -2px rgba(0,0,0,.5);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.62;
  font-variation-settings: "opsz" 14;
  text-wrap: pretty;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--f-display); font-weight: 700; line-height: 1.05; margin: 0; letter-spacing: -.015em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
table { border-collapse: collapse; width: 100%; }
address { font-style: normal; }

.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: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ---------- scroll progress strip ---------- */
.progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 5px;
  z-index: 60;
  background: color-mix(in srgb, var(--ink) 12%, transparent);
  pointer-events: none;
}
.progress__fill {
  display: block;
  height: 100%;
  background: var(--accent);
  transform-origin: 0 50%;
  transform: scaleX(0);
  animation: fill linear both;
  animation-timeline: scroll(root block);
}
@keyframes fill { to { transform: scaleX(1); } }

/* ---------- top bar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: clamp(.75rem, 2vw, 2rem);
  padding: .7rem var(--pad);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--rule);
}
.wordmark {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  flex: 0 0 auto;
}
.wordmark__mark { color: var(--accent); display: grid; place-items: center; }
.wordmark__text { display: grid; line-height: 1.1; }
.wordmark__text strong {
  font-family: var(--f-display);
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: -.02em;
}
.wordmark__text em {
  font-family: var(--f-mono);
  font-style: normal;
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.topnav {
  display: none;
  gap: 1.4rem;
  margin-inline-start: auto;
  font-size: .9rem;
}
.topnav a {
  text-decoration: none;
  padding: .35rem 0;
  border-bottom: 1px solid transparent;
}
.topnav a:hover { border-bottom-color: var(--accent); }

.topbar__actions {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-inline-start: auto;
}
.topnav + .topbar__actions { margin-inline-start: 0; }

.callbtn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 44px;
  padding: .45rem .9rem;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  border: 2px solid var(--ink);
  font-family: var(--f-mono);
  font-size: .82rem;
  letter-spacing: .02em;
  box-shadow: 3px 3px 0 var(--accent);
  transition: transform .12s ease, box-shadow .12s ease;
}
.callbtn:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--accent); }
.callbtn__label { opacity: .72; }
.callbtn__num { font-weight: 700; }

.themebtn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 44px;
  padding: .45rem .8rem;
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}
.themebtn__icon {
  width: 14px; height: 14px; border-radius: 50%;
  background: linear-gradient(90deg, var(--ink) 50%, transparent 50%);
  border: 1.5px solid var(--ink);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--block-1);
  padding: clamp(2.5rem, 7vw, 5.5rem) 0 0;
  border-bottom: 2px solid var(--rule);
}
.hero__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}
.kicker {
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 8.5vw, 5rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}
.hero__lede {
  font-size: clamp(1.02rem, .98rem + .35vw, 1.2rem);
  max-width: 46ch;
  color: var(--ink-soft);
}

/* hand-drawn scribble underline */
.scribble {
  background: none;
  color: inherit;
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.scribble::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -.12em;
  height: .34em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 20' preserveAspectRatio='none'%3E%3Cpath d='M2 13C40 6 78 15 116 9 154 3 190 14 228 8 258 4 280 11 298 7' fill='none' stroke='%23c8452b' stroke-width='4.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}
html[data-theme="dark"] .scribble::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 20' preserveAspectRatio='none'%3E%3Cpath d='M2 13C40 6 78 15 116 9 154 3 190 14 228 8 258 4 280 11 298 7' fill='none' stroke='%23ff6a4d' stroke-width='4.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.hero__cta { margin-top: 2rem; }
.bigcall {
  display: inline-grid;
  gap: .1rem;
  padding: .85rem 1.4rem;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--accent);
  transition: transform .12s ease, box-shadow .12s ease;
}
.bigcall:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--accent); }
.bigcall__pre {
  font-family: var(--f-mono);
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .7;
}
.bigcall__num {
  font-family: var(--f-display);
  font-size: clamp(1.35rem, 5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -.01em;
}
.bigcall--invert {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
  box-shadow: 5px 5px 0 var(--accent-3);
}
.hero__note {
  margin-top: 1rem;
  max-width: 44ch;
  font-size: .92rem;
  color: var(--ink-faint);
}

.hero__stats {
  display: grid;
  gap: 1.25rem;
  margin: 2.25rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--ink) 25%, transparent);
}
.hero__stats > div { display: grid; gap: .15rem; }
.hero__stats dt {
  font-family: var(--f-mono);
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero__stats dd {
  margin: 0;
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 700;
}
.hero__stats dd span {
  display: block;
  font-family: var(--f-body);
  font-size: .82rem;
  font-weight: 400;
  color: var(--ink-faint);
}

.hero__figure { margin: 0; }
.hero__figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--accent-2);
}
.hero__figure figcaption,
.area__figure figcaption,
.shots figcaption {
  margin-top: .7rem;
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .04em;
  color: var(--ink-faint);
}

/* ---------- audio-visualizer bars ---------- */
.viz {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 58px;
  padding: 0 var(--pad) 0;
  max-width: var(--wrap);
  margin-inline: auto;
  border-top: 1px solid color-mix(in srgb, var(--ink) 20%, transparent);
  padding-top: 10px;
  overflow: hidden;
}
.viz span {
  flex: 1 1 0;
  min-width: 3px;
  height: 100%;
  background: var(--ink);
  transform-origin: 50% 100%;
  transform: scaleY(.14);
  animation: pulse 1.5s ease-in-out infinite alternate;
}
.viz span:nth-child(3n)   { background: var(--accent); }
.viz span:nth-child(4n+1) { background: var(--accent-2); }
.viz span:nth-child(5n+2) { background: var(--accent-3); }
.viz span:nth-child(1)  { animation-delay: -.10s; }
.viz span:nth-child(2)  { animation-delay: -.35s; }
.viz span:nth-child(3)  { animation-delay: -.60s; }
.viz span:nth-child(4)  { animation-delay: -.20s; }
.viz span:nth-child(5)  { animation-delay: -.85s; }
.viz span:nth-child(6)  { animation-delay: -.45s; }
.viz span:nth-child(7)  { animation-delay: -.70s; }
.viz span:nth-child(8)  { animation-delay: -.05s; }
.viz span:nth-child(9)  { animation-delay: -.95s; }
.viz span:nth-child(10) { animation-delay: -.30s; }
.viz span:nth-child(11) { animation-delay: -.55s; }
.viz span:nth-child(12) { animation-delay: -.75s; }
.viz span:nth-child(13) { animation-delay: -.15s; }
.viz span:nth-child(14) { animation-delay: -.40s; }
.viz span:nth-child(15) { animation-delay: -.65s; }
.viz span:nth-child(16) { animation-delay: -.90s; }
.viz span:nth-child(17) { animation-delay: -.25s; }
.viz span:nth-child(18) { animation-delay: -.50s; }
.viz span:nth-child(19) { animation-delay: -.80s; }
.viz span:nth-child(20) { animation-delay: -.12s; }
.viz span:nth-child(21) { animation-delay: -.38s; }
.viz span:nth-child(22) { animation-delay: -.62s; }
.viz span:nth-child(23) { animation-delay: -.88s; }
.viz span:nth-child(24) { animation-delay: -.22s; }
.viz span:nth-child(25) { animation-delay: -.48s; }
.viz span:nth-child(26) { animation-delay: -.72s; }
@keyframes pulse {
  from { transform: scaleY(.12); }
  to   { transform: scaleY(1); }
}

/* ---------- section headers ---------- */
.sechead { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.sechead h2 {
  font-size: clamp(1.9rem, 5.5vw, 3.1rem);
  font-weight: 800;
  margin-bottom: .9rem;
}
.sechead__lede { color: var(--ink-soft); }
.sechead--invert .kicker { color: var(--accent-3); }

/* ---------- services (menu) ---------- */
.services {
  background: var(--block-3);
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-bottom: 2px solid var(--rule);
}
.menu {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}
.menu__group h3 {
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  padding-bottom: .5rem;
  margin-bottom: 1.1rem;
  border-bottom: 2px solid var(--rule);
}
.item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .35rem 1.25rem;
  align-items: baseline;
  padding: .85rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
}
.item:last-child { border-bottom: 0; }
.item__name {
  font-family: var(--f-display);
  font-size: 1.06rem;
  font-weight: 700;
  margin: 0;
}
.item__desc {
  grid-column: 1;
  margin: .15rem 0 0;
  font-size: .88rem;
  color: var(--ink-faint);
  max-width: 52ch;
}
.item__price {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-family: var(--f-mono);
  font-size: .88rem;
  font-weight: 700;
  white-space: nowrap;
  color: var(--accent);
}
.menu__foot {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.5rem;
  border-top: 2px solid var(--rule);
  max-width: 62ch;
  color: var(--ink-soft);
}

/* ---------- how it works ---------- */
.how {
  background: var(--block-2);
  color: var(--paper);
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-bottom: 2px solid var(--rule);
}
html[data-theme="dark"] .how { color: #14120e; }
.how .sechead h2 { color: inherit; }
.steps {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  counter-reset: step;
}
.step {
  padding-top: 1.25rem;
  border-top: 1px solid color-mix(in srgb, currentColor 35%, transparent);
}
.step__num {
  font-family: var(--f-mono);
  font-size: .8rem;
  letter-spacing: .2em;
  color: var(--accent-3);
  margin-bottom: .6rem;
}
.step h3 { font-size: 1.25rem; margin-bottom: .6rem; }
.step p { font-size: .95rem; opacity: .86; }

.how__split {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
.how__figure { margin: 0; }
.how__figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 2px solid currentColor;
}
.how__text h3 { font-size: clamp(1.3rem, 3.5vw, 1.8rem); margin-bottom: .9rem; }
.how__text p { opacity: .86; }

/* ---------- info cards ---------- */
.info {
  background: var(--block-1);
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-bottom: 2px solid var(--rule);
}
.cards {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
}
.card {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: var(--paper);
  border: 2px solid var(--rule);
  box-shadow: 6px 6px 0 color-mix(in srgb, var(--ink) 14%, transparent);
}
.card h3 {
  font-size: 1.15rem;
  padding-bottom: .5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 30%, transparent);
}
.hours th, .hours td {
  text-align: left;
  padding: .42rem 0;
  font-size: .92rem;
  border-bottom: 1px dotted color-mix(in srgb, var(--ink) 22%, transparent);
}
.hours th { font-weight: 500; color: var(--ink-soft); }
.hours td { text-align: right; font-family: var(--f-mono); font-size: .82rem; }
.hours tr.is-open td { color: var(--accent); font-weight: 700; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.card__note { margin-top: 1rem; font-size: .88rem; color: var(--ink-faint); }
.addr {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
}
.card__phone {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 800;
  margin-bottom: .5rem;
}
.card__phone a { text-decoration: none; border-bottom: 3px solid var(--accent); }
.card__links { margin-top: 1rem; }
.card__links a {
  font-family: var(--f-mono);
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

/* ---------- service area ---------- */
.area {
  background: var(--block-4);
  color: var(--paper);
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-bottom: 2px solid var(--rule);
}
html[data-theme="dark"] .area { color: #f4eddc; }
.area__grid { display: grid; gap: clamp(2rem, 4vw, 3rem); }
.area .kicker { color: var(--accent-3); }
.area h2 { font-size: clamp(1.8rem, 5vw, 2.8rem); margin-bottom: 1rem; }
.area__copy p { opacity: .9; }
.area__line {
  margin-top: 1.25rem;
  font-family: var(--f-mono);
  font-size: .8rem;
  letter-spacing: .06em;
  padding-top: 1rem;
  border-top: 1px solid color-mix(in srgb, currentColor 35%, transparent);
}
.area__figure { margin: 0 0 1.5rem; }
.area__figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 2px solid currentColor;
}
.area__figure figcaption { color: color-mix(in srgb, currentColor 70%, transparent); }
.hoods {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.hoods li {
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .04em;
  padding: .35rem .65rem;
  border: 1px solid color-mix(in srgb, currentColor 45%, transparent);
}

/* ---------- gallery ---------- */
.shots {
  background: var(--block-6);
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-bottom: 2px solid var(--rule);
}
.shots__grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
}
.shots figure { margin: 0; }
.shots img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 2px solid var(--rule);
  filter: saturate(.94);
}

/* ---------- closing ---------- */
.closing {
  background: var(--block-5);
  color: #f8f2e2;
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-bottom: 2px solid var(--rule);
}
html[data-theme="dark"] .closing { color: #f8f2e2; }
.closing__inner { display: grid; gap: clamp(2rem, 4vw, 3rem); }
.quote { margin: 0; }
.quote p {
  font-family: var(--f-display);
  font-size: clamp(1.35rem, 4.5vw, 2.3rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -.01em;
  margin-bottom: 1rem;
}
.quote footer {
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .8;
}
.closing__line {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.closing__meta {
  margin-top: 1rem;
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .04em;
  opacity: .85;
}

/* ---------- footer ---------- */
.sitefoot {
  background: var(--paper-2);
  padding: clamp(2.5rem, 6vw, 4rem) 0 2rem;
}
.sitefoot__grid {
  display: grid;
  gap: 1.75rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
}
.sitefoot__name {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: .5rem;
}
.sitefoot__head {
  font-family: var(--f-mono);
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: .6rem;
}
.sitefoot__meta { font-size: .9rem; color: var(--ink-soft); }
.sitefoot__meta a { text-decoration: none; border-bottom: 1px solid var(--accent); }

.claim-row { margin: 1.5rem 0 0; }
.claim-banner {
  display: inline-block;
  font-size: .78rem;
  padding: .4rem .7rem;
  background: color-mix(in srgb, var(--ink) 7%, transparent);
  border: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
  color: var(--ink-soft);
  text-decoration: none;
}
.claim-banner:hover { border-color: var(--accent); color: var(--ink); }

.muted {
  margin-top: 1.25rem;
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .06em;
  color: var(--ink-faint);
}
.attribution a { text-decoration: none; border-bottom: 1px solid currentColor; }

/* ---------- responsive ---------- */
@media (min-width: 640px) {
  .hero__stats { grid-template-columns: repeat(3, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .card--call { grid-column: span 2; }
  .shots__grid { grid-template-columns: repeat(2, 1fr); }
  .sitefoot__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (min-width: 900px) {
  .topnav { display: flex; }
  .hero__grid { grid-template-columns: 1.15fr .85fr; align-items: start; }
  .menu { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 3.5rem; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .how__split { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .card--call { grid-column: auto; }
  .area__grid { grid-template-columns: 1.1fr .9fr; }
  .shots__grid { grid-template-columns: repeat(4, 1fr); }
  .closing__inner { grid-template-columns: 1.2fr .8fr; align-items: center; }
}

/* ---------- motion preferences ---------- */
@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 span { transform: scaleY(.55); }
  .progress__fill { transform: scaleX(1); }
  .callbtn:hover, .bigcall:hover { transform: none; }
}
