/* =========================================================================
   Floorjack Auto Repair — styles.css
   Brand colors preserved from the live site: red #eb282f, charcoal #121212–
   #242424, white / light-grey #ededed. Tokens expressed in OKLCH.
   ========================================================================= */

:root {
  /* ---- Color (existing brand palette) ---- */
  --bg:           oklch(1.000 0.000 0);      /* #ffffff */
  --surface:      oklch(0.962 0.000 0);      /* ~#f3f3f3 panels */
  --surface-2:    oklch(0.928 0.000 0);      /* ~#ededed bands */
  --ink:          oklch(0.235 0.000 0);      /* ~#1b1b1b body text */
  --ink-deep:     oklch(0.175 0.000 0);      /* ~#111 darkest band */
  --surface-dark: oklch(0.255 0.000 0);      /* ~#1f1f1f dark section */
  --on-dark:      oklch(0.975 0.000 0);      /* text on charcoal */
  --on-dark-mut:  oklch(0.760 0.000 0);      /* muted text on charcoal */
  --muted:        oklch(0.455 0.000 0);      /* ~#5a5a5a secondary text */
  --primary:      oklch(0.575 0.222 27);     /* #eb282f brand red (use on light) */
  --primary-deep: oklch(0.500 0.205 27);     /* hover/active red */
  --primary-bright: oklch(0.685 0.196 32);   /* brighter red for small text on charcoal (AA) */
  --primary-soft: oklch(0.575 0.222 27 / 0.10);
  --line:         oklch(0.885 0.000 0);      /* hairline */
  --line-dark:    oklch(1 0 0 / 0.14);       /* hairline on charcoal */

  --ok:           oklch(0.560 0.130 150);    /* green status pill bg */
  --warn-bg:      oklch(0.900 0.100 80);     /* amber status pill bg */
  --warn-ink:     oklch(0.280 0.050 70);     /* amber status pill text */
  --primary-hi:   oklch(0.760 0.160 35);     /* brightest red, hover on dark */
  --on-primary:   oklch(0.990 0 0);          /* near-white text on the red */
  --on-light-08:  oklch(1 0 0 / 0.08);       /* faint white fill on charcoal */
  --on-light-16:  oklch(1 0 0 / 0.16);       /* hover of the above */

  /* ---- Type ---- */
  --font-display: "Archivo Expanded", "Hanken Grotesk", system-ui, sans-serif;
  --font-body:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --font-mono:    "Spline Sans Mono", ui-monospace, monospace;

  /* fluid scale, ratio ~1.25 — ceilings kept composed, not shouty */
  --step--1: clamp(0.83rem, 0.79rem + 0.18vw, 0.92rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
  --step-1:  clamp(1.13rem, 1.05rem + 0.4vw, 1.35rem);
  --step-2:  clamp(1.4rem, 1.25rem + 0.7vw, 1.8rem);
  --step-3:  clamp(1.7rem, 1.45rem + 1.15vw, 2.3rem);
  --step-4:  clamp(2rem, 1.7rem + 1.6vw, 2.9rem);
  --step-5:  clamp(2.4rem, 1.9rem + 2.4vw, 3.6rem);

  /* ---- Space / radius / motion ---- */
  --shell: 1180px;
  --gutter: clamp(1.15rem, 4vw, 2.75rem);
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.06), 0 4px 12px oklch(0 0 0 / 0.05);
  --shadow-md: 0 10px 30px oklch(0 0 0 / 0.10), 0 2px 6px oklch(0 0 0 / 0.06);
  --shadow-lg: 0 30px 70px oklch(0 0 0 / 0.30);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);          /* ease-out-expo-ish */
  --dur: 0.55s;

  /* z-scale */
  --z-sticky: 100;
  --z-header: 200;
  --z-menu: 300;
  --z-skip: 400;
}

/* ---------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--ink-deep); color: var(--on-dark);
  padding: 0.6rem 1rem; border-radius: var(--radius-sm);
  z-index: var(--z-skip); transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------------------------------------------------------------- type */
h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.04; letter-spacing: -0.02em; text-wrap: balance; }
.kicker {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.9rem;
}
.section-title { font-size: var(--step-3); color: var(--ink); }
.section-title--light { color: var(--on-dark); }
.section-head { max-width: 30ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-sub { font-size: var(--step-1); color: var(--muted); margin-top: 1rem; line-height: 1.4; max-width: 46ch; }
.section-sub--light { color: var(--on-dark-mut); }

/* ---------------------------------------------------------------- buttons */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--on-dark);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--step--1);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  padding: 0.85rem 1.5rem;
  min-height: 48px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
/* promote to a layer only while interacting, not for every resting button */
.btn:hover, .btn:focus-visible { will-change: transform; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: var(--step-0); min-height: 56px; }
.btn--block { width: 100%; }

.btn--primary { --btn-bg: var(--primary); --btn-fg: var(--on-primary); box-shadow: 0 6px 18px oklch(0.575 0.222 27 / 0.30); }
.btn--primary:hover { --btn-bg: var(--primary-deep); box-shadow: 0 10px 26px oklch(0.575 0.222 27 / 0.40); }

.btn--outline { background: transparent; color: var(--ink); border-color: currentColor; }
.btn--outline:hover { background: var(--ink); color: var(--on-dark); border-color: var(--ink); }

.btn--ghost { background: var(--on-light-08); color: var(--on-dark); border-color: var(--line-dark); }
.btn--ghost:hover { background: var(--on-light-16); }

/* on dark backgrounds, the outline button needs light strokes */
.hero .btn--outline,
.inspection .btn--outline { color: var(--on-dark); }
.hero .btn--outline:hover,
.inspection .btn--outline:hover { background: var(--on-dark); color: var(--ink-deep); border-color: var(--on-dark); }

/* ---------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: oklch(1 0 0 / 0.86);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header[data-scrolled] { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.header__inner { display: flex; align-items: center; gap: 1.25rem; min-height: 76px; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; min-height: 44px; }
.brand__logo { height: clamp(40px, 6vw, 52px); width: auto; }

.nav { display: flex; gap: clamp(1rem, 2.4vw, 2rem); margin-left: auto; }
.nav a {
  font-weight: 600; font-size: var(--step--1); color: var(--ink);
  position: relative; padding: 0.4rem 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--primary); transition: right 0.3s var(--ease);
}
.nav a:hover::after, .nav a:focus-visible::after { right: 0; }

.header__actions { display: flex; align-items: center; gap: 0.85rem; margin-left: clamp(1rem, 2vw, 1.75rem); }
.phone-link { display: inline-flex; align-items: center; gap: 0.5rem; min-height: 44px; font-family: var(--font-display); font-weight: 800; font-size: var(--step--1); white-space: nowrap; }
.phone-link__icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--primary-soft); color: var(--primary); }
.phone-link__icon svg { width: 17px; height: 17px; }
.phone-link:hover { color: var(--primary); }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px; justify-content: center;
  width: 48px; height: 48px; padding: 0 11px; background: transparent; border: 1px solid var(--line); border-radius: var(--radius-sm);
}
.menu-toggle__bar { height: 2.5px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s var(--ease); transform-origin: center; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* mobile menu panel */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 1rem var(--gutter) 1.5rem;
}
.mobile-menu[data-open] { display: block; animation: menu-in 0.3s var(--ease); }
.mobile-menu__nav { display: flex; flex-direction: column; }
.mobile-menu__nav a { font-family: var(--font-display); font-weight: 800; font-size: var(--step-1); padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
.mobile-menu__cta { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.25rem; }
@keyframes menu-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ---------------------------------------------------------------- hero */
.hero { position: relative; background: var(--ink-deep); color: var(--on-dark); overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; filter: grayscale(0.2) contrast(1.04); }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    /* flat darkening floor — ~65% everywhere so no bright patch washes out text
       (written as a gradient so it's a valid background-image layer) */
    linear-gradient(oklch(0.09 0 0 / 0.65), oklch(0.09 0 0 / 0.65)),
    /* heavier on the headline (left) side for extra depth */
    linear-gradient(90deg, oklch(0.09 0 0 / 0.55) 0%, oklch(0.09 0 0 / 0.22) 55%, oklch(0.09 0 0 / 0) 100%),
    /* slight bottom anchor */
    linear-gradient(0deg, oklch(0.09 0 0 / 0.45) 0%, oklch(0.09 0 0 / 0) 50%);
}
.hero__content { position: relative; z-index: 2; padding-block: clamp(6rem, 11vw, 9rem); max-width: 42rem; }
.hero__locale { display: inline-flex; align-items: center; gap: 0.5rem; max-width: 100%; font-size: var(--step--1); font-weight: 600; color: var(--on-dark); background: var(--on-light-08); border: 1px solid var(--line-dark); padding: 0.4rem 0.85rem 0.4rem 0.7rem; border-radius: 999px; margin-bottom: 1.35rem; }
.hero__locale svg { width: 15px; height: 15px; color: var(--primary-bright); flex-shrink: 0; }
/* Archivo Expanded is a wide face — keep the floor low so the headline never
   overflows on narrow phones (overflow-x:hidden would silently clip it). */
.hero__title { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.9rem, 0.9rem + 4.4vw, 3.85rem); line-height: 1.04; letter-spacing: -0.03em; }
.hero__title em { font-style: normal; color: var(--primary-bright); }
.hero__lede { font-size: var(--step-0); line-height: 1.55; color: var(--on-dark); opacity: 0.9; margin-top: 1.25rem; max-width: 48ch; text-wrap: pretty; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.75rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 1.75rem; font-size: var(--step--1); font-weight: 600; color: var(--on-dark-mut); }
.hero__trust li { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__trust span { color: var(--primary); }

/* ---------------------------------------------------------------- proof strip */
.proof { background: var(--surface-2); border-bottom: 1px solid var(--line); }
.proof__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3.5rem); padding-block: clamp(2.75rem, 6vw, 4.5rem); }
.proof__item { position: relative; }
.proof__icon { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--bg); border: 1px solid var(--line); color: var(--primary); box-shadow: var(--shadow-sm); }
.proof__icon svg { width: 23px; height: 23px; }
.proof__h { font-size: var(--step-1); margin: 1rem 0 0.65rem; letter-spacing: -0.01em; }
.proof__item p { color: var(--muted); font-size: var(--step-0); max-width: 34ch; }

/* ---------------------------------------------------------------- services */
.services { padding-block: clamp(3.5rem, 8vw, 7rem); }
.services__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(1.25rem, 3vw, 2rem); }
.svc-col { padding: 1.6rem 1.6rem 1.8rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease); }
.svc-col:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-col__title { font-size: var(--step-1); margin-bottom: 1rem; padding-bottom: 0.8rem; border-bottom: 2px solid var(--ink-deep); display: inline-block; }
.svc-list li { padding: 0.5rem 0 0.5rem 1.4rem; position: relative; color: var(--ink); border-bottom: 1px solid var(--line); font-weight: 500; }
.svc-list li:last-child { border-bottom: 0; }
.svc-list li::before { content: ""; position: absolute; left: 0; top: 50%; width: 7px; height: 7px; background: var(--primary); border-radius: 2px; transform: translateY(-50%) rotate(45deg); }
.svc-col--accent { background: var(--ink-deep); color: var(--on-dark); border-color: var(--ink-deep); }
.svc-col--accent .svc-col__title { border-bottom-color: var(--primary); color: var(--on-dark); }
.svc-col--accent .svc-list li { color: var(--on-dark); border-bottom-color: var(--line-dark); }
.svc-col__link { display: inline-flex; align-items: center; min-height: 44px; margin-top: 0.75rem; font-family: var(--font-display); font-weight: 800; font-size: var(--step--1); color: var(--primary-bright); text-transform: uppercase; letter-spacing: 0.02em; }
.svc-col__link:hover { color: var(--primary-hi); }
.services__note { margin-top: clamp(1.75rem, 4vw, 2.5rem); color: var(--muted); font-size: var(--step-0); max-width: 60ch; }

/* ---------------------------------------------------------------- inspection */
.inspection { background: var(--surface-dark); color: var(--on-dark); padding-block: clamp(3.5rem, 8vw, 7rem); }
.inspection .kicker { color: var(--primary-bright); }   /* red on charcoal → brighter for AA */
.inspection__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.inspection__lede { font-size: var(--step-1); line-height: 1.55; color: var(--on-dark); opacity: 0.9; margin: 1.5rem 0 2rem; max-width: 46ch; text-wrap: pretty; }

.report { background: var(--bg); color: var(--ink); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.report__photo { width: 100%; height: clamp(180px, 28vw, 240px); object-fit: cover; }
.report__body { padding: 1.4rem 1.5rem 1.6rem; }
.report__row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
.report__label { font-family: var(--font-mono); font-size: var(--step--1); color: var(--ink); letter-spacing: -0.01em; }
.report__status { font-family: var(--font-mono); font-size: var(--step--1); font-weight: 600; padding: 0.25rem 0.6rem; border-radius: 999px; white-space: nowrap; }
.report__status--red { color: var(--on-primary); background: var(--primary); }
.report__status--amber { color: var(--warn-ink); background: var(--warn-bg); }
.report__status--green { color: var(--on-primary); background: var(--ok); }
.report__note { font-size: var(--step--1); color: var(--muted); margin-top: 1rem; line-height: 1.45; }

/* ---------------------------------------------------------------- shop */
.shop { padding-block: clamp(3.5rem, 8vw, 7rem); }
.shop__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.shop__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.shop__media img { width: 100%; height: clamp(280px, 42vw, 460px); object-fit: cover; }
.shop__copy p { color: var(--muted); margin-top: 1.1rem; max-width: 52ch; }
.shop__copy strong { color: var(--ink); }
.shop__stats { display: grid; grid-template-columns: repeat(3, auto); gap: clamp(1.25rem, 3vw, 2.5rem); margin-top: 2rem; }
.shop__stats dt { font-family: var(--font-mono); font-size: var(--step--1); color: var(--primary); text-transform: uppercase; letter-spacing: 0.03em; }
.shop__stats dd { font-family: var(--font-display); font-weight: 800; font-size: var(--step-0); margin-top: 0.35rem; }

/* ---------------------------------------------------------------- reviews */
.reviews { background: var(--ink-deep); color: var(--on-dark); padding-block: clamp(3.5rem, 8vw, 7rem); }
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(1.25rem, 3vw, 2rem); }
.review { background: oklch(1 0 0 / 0.04); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 1.75rem 1.6rem; display: flex; flex-direction: column; gap: 1.1rem; }
.review p { font-size: var(--step-1); line-height: 1.45; color: var(--on-dark); text-wrap: pretty; }
.review p::before { content: "“"; color: var(--primary-bright); font-family: var(--font-display); font-size: 1.2em; }
.review cite { font-style: normal; font-family: var(--font-mono); font-size: var(--step--1); color: var(--on-dark-mut); margin-top: auto; }
.reviews__placeholder-note { margin-top: 2rem; font-size: var(--step--1); color: var(--on-dark-mut); }

/* ---------------------------------------------------------------- visit */
.visit { padding-block: clamp(3.5rem, 8vw, 7rem); }
.visit__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }
.visit__block { padding: 1.4rem 0; border-top: 1px solid var(--line); }
.visit__block:first-of-type { border-top: 0; padding-top: 0; }
.visit__block h3 { font-size: var(--step--1); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); margin-bottom: 0.6rem; font-weight: 500; }
.visit__block p { font-size: var(--step-1); line-height: 1.4; }
.visit__link { display: inline-flex; align-items: center; min-height: 44px; margin-top: 0.4rem; font-weight: 700; color: var(--primary); }
.visit__link:hover { text-decoration: underline; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.4rem 0; max-width: 22rem; font-size: var(--step-0); border-bottom: 1px solid var(--line); }
.hours li:last-child { border-bottom: 0; }
.hours__closed { color: var(--primary); font-weight: 700; }
.visit__block--contact { display: flex; flex-wrap: wrap; gap: 0.85rem; border-top: 1px solid var(--line); }
.visit__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); min-height: 360px; border: 1px solid var(--line); }
.visit__map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; }

/* ---------------------------------------------------------------- footer */
.site-footer { background: var(--ink-deep); color: var(--on-dark-mut); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(1.75rem, 4vw, 3rem); padding-bottom: 2.75rem; }
.footer__logo { height: 48px; width: auto; margin-bottom: 1.1rem; }
.footer__brand p { max-width: 34ch; line-height: 1.55; font-size: var(--step--1); }
.footer__col h3 { font-family: var(--font-mono); font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; font-size: var(--step--1); color: var(--on-dark); margin-bottom: 1rem; }
.footer__col ul { display: flex; flex-direction: column; gap: 0.35rem; font-size: var(--step--1); line-height: 1.45; }
.footer__col a { display: inline-flex; align-items: center; min-height: 44px; }
.footer__col a:hover { color: var(--primary); }
.footer__base { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding-block: 1.5rem; border-top: 1px solid var(--line-dark); font-size: var(--step--1); }
.footer__top { display: inline-flex; align-items: center; min-height: 44px; }
.footer__top:hover { color: var(--primary); }

/* ---------------------------------------------------------------- sticky bar (mobile) */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-sticky);
  display: none; gap: 0.6rem; padding: 0.6rem clamp(0.75rem, 4vw, 1rem);
  padding-bottom: calc(0.6rem + env(safe-area-inset-bottom, 0px));
  background: oklch(1 0 0 / 0.92); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  transform: translateY(120%); transition: transform 0.35s var(--ease);
}
.sticky-bar[data-show] { transform: translateY(0); }
.sticky-bar__btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem; min-height: 50px; border-radius: var(--radius-sm); font-family: var(--font-display); font-weight: 800; font-size: var(--step--1); text-transform: uppercase; }
.sticky-bar__btn svg { width: 18px; height: 18px; }
.sticky-bar__btn--call { background: var(--bg); color: var(--ink); border: 2px solid var(--ink); flex: 0 0 38%; }
.sticky-bar__btn--book { background: var(--primary); color: var(--on-primary); }

/* ---------------------------------------------------------------- reveal motion
   Content is visible by default; the hidden start-state only applies when JS is
   active (.js), so no-JS / crawlers / headless renders never ship blank. */
.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ======================================================= responsive ===== */
@media (max-width: 900px) {
  .inspection__grid, .shop__grid, .visit__grid { grid-template-columns: 1fr; }
  .shop__grid { gap: 2rem; }
  .shop__media { order: -1; }
  .proof__grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav, .header__book, .phone-link__text { display: none; }
  .menu-toggle { display: flex; }
  .header__actions { margin-left: auto; gap: 0.6rem; }
  .phone-link { color: var(--primary); min-width: 44px; justify-content: center; }
  .sticky-bar { display: flex; }
  body { padding-bottom: 4.5rem; } /* room for sticky bar */
  .hero__content { padding-block: clamp(4.5rem, 15vw, 6.5rem); }
  .shop__stats { grid-template-columns: 1fr; gap: 1rem; }
  .footer__base { justify-content: flex-start; }
}

@media (max-width: 440px) {
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
}

/* ======================================================= reduced motion === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .btn:hover, .svc-col:hover { transform: none; }
  .sticky-bar { transition: none; }
}
