/* ============================================================
   Markham Mobile Car Mechanic 24/7
   Composition: warm earth editorial · diagonal split ·
   kinetic hero · expandable index · animated noise field
   ============================================================ */

/* ---------- tokens ---------- */
:root {
  --bg: #f5efe4;
  --bg-2: #ece3d3;
  --ink: #2b1e14;
  --ink-soft: #5a4636;
  --ink-faint: #8a7563;
  --accent: #c25a37;
  --accent-deep: #9c4224;
  --secondary: #6a7a4a;
  --line: rgba(43, 30, 20, 0.16);
  --line-soft: rgba(43, 30, 20, 0.09);
  --card: rgba(255, 252, 246, 0.72);
  --shadow: 0 1px 2px rgba(43, 30, 20, 0.05), 0 12px 32px -18px rgba(43, 30, 20, 0.35);
  --radius: 3px;
  --wrap: 1180px;
  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', 'Inter', system-ui, -apple-system, sans-serif;
  --noise-opacity: 0.5;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #17120d;
    --bg-2: #1f1811;
    --ink: #f2e9dc;
    --ink-soft: #cbb9a4;
    --ink-faint: #9b8874;
    --accent: #e07a52;
    --accent-deep: #f0936d;
    --secondary: #9aad74;
    --line: rgba(242, 233, 220, 0.18);
    --line-soft: rgba(242, 233, 220, 0.1);
    --card: rgba(38, 29, 21, 0.66);
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 18px 40px -22px rgba(0, 0, 0, 0.8);
    --noise-opacity: 0.28;
  }
}

/* explicit theme override wins over OS preference */
html[data-theme='light'] {
  --bg: #f5efe4; --bg-2: #ece3d3; --ink: #2b1e14; --ink-soft: #5a4636;
  --ink-faint: #8a7563; --accent: #c25a37; --accent-deep: #9c4224;
  --secondary: #6a7a4a; --line: rgba(43,30,20,0.16); --line-soft: rgba(43,30,20,0.09);
  --card: rgba(255,252,246,0.72);
  --shadow: 0 1px 2px rgba(43,30,20,0.05), 0 12px 32px -18px rgba(43,30,20,0.35);
  --noise-opacity: 0.5;
}
html[data-theme='dark'] {
  --bg: #17120d; --bg-2: #1f1811; --ink: #f2e9dc; --ink-soft: #cbb9a4;
  --ink-faint: #9b8874; --accent: #e07a52; --accent-deep: #f0936d;
  --secondary: #9aad74; --line: rgba(242,233,220,0.18); --line-soft: rgba(242,233,220,0.1);
  --card: rgba(38,29,21,0.66);
  --shadow: 0 1px 2px rgba(0,0,0,0.4), 0 18px 40px -22px rgba(0,0,0,0.8);
  --noise-opacity: 0.28;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.7;
  font-optical-sizing: auto;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent); }
:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.12; margin: 0; letter-spacing: -0.015em; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; }

/* ---------- animated noise field ---------- */
.noise-layer {
  position: fixed;
  inset: -10%;
  z-index: 0;
  pointer-events: none;
  opacity: var(--noise-opacity);
  mix-blend-mode: multiply;
  transition: opacity 0.4s ease;
}
html[data-theme='dark'] .noise-layer { mix-blend-mode: screen; }
@media (prefers-color-scheme: dark) {
  .noise-layer { mix-blend-mode: screen; }
}
.noise-layer svg { width: 100%; height: 100%; display: block; }
.noise-layer .turb { animation: breathe 24s ease-in-out infinite alternate; }
@keyframes breathe {
  from { baseFrequency: 0.62 0.68; }
  to   { baseFrequency: 0.78 0.72; }
}

/* ---------- shell ---------- */
.shell { position: relative; z-index: 1; }
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(1.15rem, 4.5vw, 3rem);
}
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 0.9rem;
}
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- header ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px) saturate(1.2);
  border-bottom: 1px solid var(--line-soft);
}
.site-head .wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 68px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}
.brand-mark {
  width: 38px; height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff8f0;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--serif); font-size: 1.02rem; font-weight: 600; letter-spacing: -0.01em; }
.brand-sub { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); }

.head-actions { display: flex; align-items: center; gap: 0.55rem; }
.theme-toggle {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.theme-toggle:hover { background: var(--bg-2); border-color: var(--ink-faint); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-moon { display: none; }
html[data-theme='dark'] .theme-toggle .icon-sun { display: none; }
html[data-theme='dark'] .theme-toggle .icon-moon { display: block; }
@media (prefers-color-scheme: dark) {
  html:not([data-theme='light']) .theme-toggle .icon-sun { display: none; }
  html:not([data-theme='light']) .theme-toggle .icon-moon { display: block; }
}

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.55rem 1.05rem;
  background: var(--accent);
  color: #fff8f0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.2s ease;
}
.call-btn:hover { background: var(--accent-deep); color: #fff8f0; transform: translateY(-1px); }
.call-btn svg { width: 15px; height: 15px; }
.call-btn .call-label-long { display: none; }
@media (min-width: 560px) { .call-btn .call-label-long { display: inline; } .call-btn .call-label-short { display: none; } }

/* ---------- hero: diagonal split ---------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  isolation: isolate;
  overflow: hidden;
}
.hero-half { position: relative; padding: clamp(2.6rem, 7vw, 5.2rem) 0; }
.hero-half--paper { background: var(--bg); }
.hero-half--ink {
  background: var(--ink);
  color: var(--bg);
  margin-top: -3.2rem;
  padding-top: clamp(4.6rem, 10vw, 7.4rem);
  clip-path: polygon(0 3.2rem, 100% 0, 100% 100%, 0 100%);
}
.hero-half--ink a { color: var(--bg); }
.hero-half--ink .eyebrow { color: rgba(245, 239, 228, 0.6); }
html[data-theme='dark'] .hero-half--ink { background: #0d0a07; }
@media (prefers-color-scheme: dark) {
  html:not([data-theme='light']) .hero-half--ink { background: #0d0a07; }
}

.hero h1 {
  font-size: clamp(2.5rem, 8.4vw, 5.4rem);
  font-variation-settings: 'wght' 300, 'SOFT' 20, 'WONK' 1;
  margin: 0 0 1.1rem;
  max-width: 16ch;
  text-wrap: balance;
}
.hero h1 .accent-word { color: var(--accent); font-style: italic; }
.hero-lede {
  font-size: clamp(1.05rem, 2.1vw, 1.22rem);
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 1.6rem;
}
.hero-half--ink .hero-lede { color: rgba(245, 239, 228, 0.82); }

.hero-cta-row { display: flex; flex-wrap: wrap; gap: 0.7rem; align-items: center; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  min-height: 44px; padding: 0.55rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.94rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.btn-ghost:hover { background: var(--bg-2); border-color: var(--ink-faint); color: var(--ink); }

/* kinetic weight shift on scroll */
@keyframes weigh {
  from { font-variation-settings: 'wght' 200, 'SOFT' 20, 'WONK' 1; }
  to   { font-variation-settings: 'wght' 800, 'SOFT' 20, 'WONK' 1; }
}
@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) {
    .hero h1 {
      animation: weigh linear both;
      animation-timeline: scroll(root);
      animation-range: 0 32vh;
    }
  }
}

.hero-figure {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-2);
}
.hero-figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.hero-figure figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1.1rem 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: #fff6ec;
  background: linear-gradient(to top, rgba(20, 12, 6, 0.82), transparent);
}
.hero-grid {
  display: grid;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
}

/* stat strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  margin-top: clamp(2rem, 5vw, 3rem);
}
@media (min-width: 720px) { .stat-strip { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: var(--bg);
  padding: 1.15rem 1.1rem;
}
.hero-half--ink .stat { background: transparent; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.4vw, 2rem);
  font-weight: 600;
  display: block;
  line-height: 1.1;
  color: var(--accent);
}
.hero-half--ink .stat-num { color: var(--accent); }
.stat-label {
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero-half--ink .stat-label { color: rgba(245, 239, 228, 0.62); }

/* ---------- generic section ---------- */
.section { padding: clamp(3rem, 8vw, 5.6rem) 0; }
.section--tint { background: var(--bg-2); }
.section-head { max-width: 62ch; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.section-head h2 { font-size: clamp(1.75rem, 4.4vw, 2.7rem); margin-bottom: 0.7rem; }
.section-head p { color: var(--ink-soft); }

/* ---------- expandable index ---------- */
.index-list { border-top: 1px solid var(--line); }
.index-item { border-bottom: 1px solid var(--line); }
.index-item > summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 0.9rem 1.1rem;
  padding: 1.25rem 0.25rem;
  min-height: 44px;
  transition: color 0.2s ease, padding-left 0.25s ease;
}
.index-item > summary::-webkit-details-marker { display: none; }
.index-item > summary:hover { color: var(--accent); padding-left: 0.6rem; }
.index-num {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  padding-top: 0.35rem;
}
.index-title {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.9vw, 1.72rem);
  font-weight: 500;
  line-height: 1.2;
}
.index-title small {
  display: block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink-faint);
  margin-top: 0.35rem;
}
.index-toggle {
  width: 30px; height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  position: relative;
  flex: 0 0 30px;
  align-self: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.3s ease;
}
.index-toggle::before, .index-toggle::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
}
.index-toggle::before { width: 11px; height: 1.5px; }
.index-toggle::after { width: 1.5px; height: 11px; transition: transform 0.3s ease, opacity 0.3s ease; }
.index-item[open] > summary { color: var(--accent); }
.index-item[open] .index-toggle { background: var(--accent); border-color: var(--accent); color: #fff8f0; transform: rotate(180deg); }
.index-item[open] .index-toggle::after { transform: scaleY(0); opacity: 0; }

.index-body {
  padding: 0 0.25rem 1.9rem;
  display: grid;
  gap: clamp(1.2rem, 3vw, 2rem);
  animation: reveal 0.4s ease both;
}
@media (min-width: 820px) {
  .index-body { grid-template-columns: 1.15fr 0.85fr; padding-left: 3.1rem; }
}
@keyframes reveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
.index-body p { color: var(--ink-soft); max-width: 62ch; }
.index-body figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.index-body figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.index-body figcaption { font-size: 0.76rem; color: var(--ink-faint); padding-top: 0.5rem; }

.detail-list { margin-top: 1rem; border-top: 1px solid var(--line-soft); }
.detail-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.94rem;
}
.detail-list li span:first-child { color: var(--ink-faint); }
.detail-list li span:last-child { font-weight: 500; text-align: right; }

/* ---------- coverage / area ---------- */
.area-grid { display: grid; gap: clamp(1.5rem, 4vw, 3rem); }
@media (min-width: 880px) { .area-grid { grid-template-columns: 0.9fr 1.1fr; } }
.area-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.55rem 1.4rem; }
@media (min-width: 620px) { .area-list { grid-template-columns: repeat(3, 1fr); } }
.area-list li {
  font-size: 0.95rem;
  padding: 0.42rem 0 0.42rem 1.15rem;
  position: relative;
  border-bottom: 1px solid var(--line-soft);
}
.area-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 1.05rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--secondary);
}
.area-figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.area-figure img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

/* ---------- how it works ---------- */
.steps { display: grid; gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { background: var(--bg); padding: clamp(1.4rem, 3vw, 2rem); }
.section--tint .step { background: var(--bg-2); }
.step-num {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 0.7rem;
}
.step h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- quote ---------- */
.quote-block {
  display: grid;
  gap: clamp(1.4rem, 4vw, 2.6rem);
  align-items: center;
}
@media (min-width: 860px) { .quote-block { grid-template-columns: 0.8fr 1.2fr; } }
.quote-block figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.quote-block figure img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.42;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  text-wrap: pretty;
}
blockquote cite {
  display: block;
  margin-top: 1.1rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ---------- contact ---------- */
.contact-grid { display: grid; gap: clamp(1.6rem, 4vw, 3rem); }
@media (min-width: 880px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3.4vw, 2.1rem);
  backdrop-filter: blur(6px);
}
.contact-card h3 { font-size: 1.3rem; margin-bottom: 0.9rem; }
.big-phone {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 5vw, 2.3rem);
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.01em;
  margin: 0.2rem 0 0.6rem;
  word-break: break-word;
}
.big-phone:hover { color: var(--accent-deep); }
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours-table th, .hours-table td { text-align: left; padding: 0.55rem 0; border-bottom: 1px solid var(--line-soft); font-weight: 400; }
.hours-table th { color: var(--ink-faint); font-weight: 400; }
.hours-table td { text-align: right; font-weight: 500; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: 0; }
.open-flag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 0.9rem;
}
.open-flag::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 0 rgba(106, 122, 74, 0.55);
  animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(106, 122, 74, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(106, 122, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(106, 122, 74, 0); }
}
.addr { font-style: normal; font-size: 1.02rem; color: var(--ink-soft); }
.addr strong { color: var(--ink); font-weight: 600; display: block; font-size: 1.05rem; }

/* ---------- footer ---------- */
.site-foot {
  background: var(--ink);
  color: rgba(245, 239, 228, 0.78);
  padding: clamp(2.4rem, 6vw, 3.6rem) 0 2rem;
  margin-top: clamp(2rem, 5vw, 3.5rem);
}
html[data-theme='dark'] .site-foot { background: #0d0a07; }
@media (prefers-color-scheme: dark) {
  html:not([data-theme='light']) .site-foot { background: #0d0a07; }
}
.site-foot a { color: rgba(245, 239, 228, 0.92); }
.site-foot a:hover { color: #fff; }
.foot-grid { display: grid; gap: 1.6rem; }
@media (min-width: 760px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.foot-brand { font-family: var(--serif); font-size: 1.25rem; color: #f5efe4; margin-bottom: 0.5rem; }
.foot-note { font-size: 0.9rem; max-width: 34ch; }
.foot-h {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.55);
  margin-bottom: 0.7rem;
}
.foot-list li { font-size: 0.92rem; padding: 0.22rem 0; }
.foot-bottom {
  margin-top: 2.2rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(245, 239, 228, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}
.claim-banner {
  display: inline-block;
  font-size: 0.78rem;
  padding: 0.4rem 0.75rem;
  border-radius: 2px;
  background: rgba(245, 239, 228, 0.09);
  border: 1px solid rgba(245, 239, 228, 0.18);
  color: rgba(245, 239, 228, 0.82) !important;
  text-decoration: none;
  transition: background 0.2s ease;
}
.claim-banner:hover { background: rgba(245, 239, 228, 0.16); }
.attribution {
  position: static;
  font-size: 0.78rem;
  opacity: 0.62;
  font-family: var(--sans);
}
.attribution a { color: inherit; }

/* ---------- sticky mobile call bar ---------- */
.call-dock {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  display: flex;
  gap: 0.6rem;
  padding: 0.6rem clamp(0.9rem, 4vw, 1.4rem) calc(0.6rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.call-dock a {
  flex: 1;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.call-dock .dock-call { background: var(--accent); color: #fff8f0; }
.call-dock .dock-call:hover { background: var(--accent-deep); color: #fff8f0; }
.call-dock .dock-map { border: 1px solid var(--line); color: var(--ink); }
.call-dock svg { width: 16px; height: 16px; }
@media (min-width: 760px) { .call-dock { display: none; } }
body { padding-bottom: 76px; }
@media (min-width: 760px) { body { padding-bottom: 0; } }

/* ---------- motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .index-body { animation: none; }
  .noise-layer .turb { animation: none; }
}
