/* J's Professional Detail: GARAGE theme. Gunmetal, concrete, safety orange. */
:root {
  --bay: #14171b;
  --gunmetal: #1d2126;
  --panel: #242a31;
  --panel-2: #2a3139;
  --steel: #3a4149;
  --concrete: #e9e3d5;
  --dim: #b3ab99;
  --faint: #7d7666;
  --orange: #c2611e;
  --orange-hot: #d9752c;
  --paper: #e7e0cf;
  --ink: #22262c;
  --ink-soft: #4a5058;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --step-0: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step-1: clamp(1.2rem, 1.05rem + 0.6vw, 1.5rem);
  --step-3: clamp(1.75rem, 1.4rem + 1.75vw, 2.5rem);
  --step-5: clamp(2.5rem, 1.6rem + 4.5vw, 4.5rem);
  --step-6: clamp(3rem, 1.8rem + 6vw, 6rem);
  --grain: 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.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--concrete);
  background: var(--bay);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.05;
  pointer-events: none;
  z-index: 2000;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
address { font-style: normal; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.hero-title, .section-title, .cta-title, .bay-plate, .stat-num, .step-num, .lift-line, .marquee-track, .shop-plate {
  font-family: "Chakra Petch", -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1, h2, h3 { line-height: 1.05; text-wrap: balance; }
p { text-wrap: pretty; }
section { padding: clamp(5rem, 10vw, 9rem) 0; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: var(--step-5);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title em, .cta-title em, .hero-title em {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--orange);
}
.lede {
  font-size: var(--step-1);
  color: var(--dim);
  max-width: 62ch;
  margin-bottom: 3rem;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 23, 27, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--steel);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45); }
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.9rem 24px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand-plate { display: inline-flex; gap: 3px; }
.brand-plate span { width: 8px; height: 22px; background: var(--orange); transform: skewX(-12deg); display: block; }
.brand-plate span:nth-child(2) { opacity: 0.65; }
.brand-plate span:nth-child(3) { opacity: 0.35; }
.brand-name {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-nav { display: flex; gap: 1.6rem; margin-left: auto; }
.site-nav a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  position: relative;
  padding: 0.4rem 0;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease-out;
}
.site-nav a:hover { color: var(--concrete); }
.site-nav a:hover::after { transform: scaleX(1); }
.header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  background: var(--orange);
  color: var(--bay);
  padding: 0.65rem 1.1rem;
  border-radius: 5px;
  transition: background 0.18s ease-out, transform 0.18s ease-out;
  white-space: nowrap;
}
.header-call svg { width: 18px; height: 18px; }
.header-call:hover { background: var(--orange-hot); transform: translateY(-2px); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 700;
  padding: 1rem 1.7rem;
  border-radius: 5px;
  transition: transform 0.18s ease-out, background 0.18s ease-out, box-shadow 0.18s ease-out, color 0.18s ease-out;
  min-height: 48px;
}
.btn svg { width: 20px; height: 20px; }
.btn-primary {
  background: var(--orange);
  color: var(--bay);
  box-shadow: 0 6px 24px rgba(194, 97, 30, 0.28);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(233, 227, 213, 0.35), transparent);
  transform: skewX(-18deg);
  transition: left 0.45s var(--ease-out);
}
.btn-primary:hover { background: var(--orange-hot); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(194, 97, 30, 0.4); }
.btn-primary:hover::after { left: 130%; }
.btn-ghost {
  border: 1px solid var(--steel);
  color: var(--concrete);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-3px); }
.btn-big { font-size: 1.15rem; padding: 1.15rem 2.2rem; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(4rem, 7vw, 6.5rem);
  overflow: hidden;
  background:
    radial-gradient(900px 480px at 82% 12%, rgba(194, 97, 30, 0.14), transparent 65%),
    radial-gradient(700px 500px at 8% 88%, rgba(58, 65, 73, 0.5), transparent 60%),
    var(--bay);
}
.hero-track { position: absolute; inset: 0; pointer-events: none; }
.tread-svg { width: 100%; height: 100%; }
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 70% 30%, rgba(194, 97, 30, 0.10), transparent 70%);
}
.hero-inner { position: relative; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hero-eyebrow { color: var(--orange); }
.hero-title {
  font-size: clamp(3.4rem, 11vw, 8.5rem);
  text-transform: uppercase;
  line-height: 0.98;
  margin-bottom: 1.5rem;
  color: var(--concrete);
}
.hero-title .accent-word { font-size: 0.92em; }
.hero-sub {
  font-size: var(--step-1);
  color: var(--dim);
  max-width: 56ch;
  margin-bottom: 2.25rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.trust-row {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
}
.trust-row svg { width: 17px; height: 17px; color: var(--orange); flex: none; }
.shop-plate {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  color: var(--faint);
  border: 1px dashed var(--steel);
  padding: 0.55rem 1rem;
  border-radius: 3px;
}

/* hero entrance */
.mask { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.mask > span { display: inline-block; transform: translateY(112%); animation: rise 0.75s var(--ease-out) forwards; }
.hero-title .mask:nth-child(2) > span { animation-delay: 0.12s; }
@keyframes rise { to { transform: translateY(0); } }

/* ---------- scroll reveals (JS-gated) ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal.revealed {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.js .reveal-item { opacity: 0; transform: translateY(14px); }
.js .reveal-item.revealed {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.js .hero-sub.revealed { transition-delay: 0.35s; }
.js .hero-ctas.revealed { transition-delay: 0.45s; }
.js .trust-row.revealed { transition-delay: 0.55s; }
.js .shop-plate.revealed { transition-delay: 0.65s; }

/* ---------- transition 1: tread divider ---------- */
.tread-divider { padding: 0; background: var(--bay); }
.tread-chevrons { display: block; width: 100%; height: 64px; }
.js .chev { stroke-dasharray: 1; stroke-dashoffset: 1; }
.js .tread-divider.drawn .chev { animation: chevdraw 0.5s var(--ease-out) forwards; }
.js .tread-divider.drawn .chev:nth-child(3n) { animation-delay: 0.05s; }
.js .tread-divider.drawn .chev:nth-child(3n+1) { animation-delay: 0.15s; }
.js .tread-divider.drawn .chev-hot { animation-delay: 0.4s; }
@keyframes chevdraw { to { stroke-dashoffset: 0; } }

/* ---------- stats ---------- */
.stats { padding: clamp(3rem, 6vw, 4.5rem) 0; background: var(--gunmetal); border-top: 1px solid var(--steel); border-bottom: 1px solid var(--steel); }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.stat { display: flex; flex-direction: column; gap: 0.4rem; border-left: 3px solid var(--orange); padding-left: 1.25rem; }
.stat-num {
  font-size: var(--step-5);
  color: var(--concrete);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.stat-label { font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dim); }

/* ---------- bays (services) ---------- */
.bays { background: var(--bay); }
.bay-list { list-style: none; border-top: 1px solid var(--steel); }
.bay-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 1rem;
  border-bottom: 1px solid var(--steel);
  transition: background 0.2s ease-out, transform 0.2s ease-out;
}
.bay-row:hover { background: var(--gunmetal); transform: translateX(6px); }
.bay-plate {
  font-size: 2.2rem;
  color: var(--concrete);
  border: 2px solid var(--steel);
  border-radius: 4px;
  text-align: center;
  padding: 0.7rem 0;
  letter-spacing: 0.04em;
  transition: background 0.2s ease-out, border-color 0.2s ease-out, color 0.2s ease-out;
  font-variant-numeric: tabular-nums;
}
.bay-row:hover .bay-plate { background: var(--orange); border-color: var(--orange); color: var(--bay); }
.bay-body h3 {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
}
.bay-body p { color: var(--dim); max-width: 60ch; }
.bay-book {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 0.8rem 0.4rem;
  white-space: nowrap;
}
.bay-book svg { width: 18px; height: 18px; transition: transform 0.2s ease-out; }
.bay-book:hover svg { transform: translateX(5px); }

/* ---------- transition 2: lift band ---------- */
.lift-band { position: relative; margin: 0; padding: 0; overflow: hidden; min-height: 420px; display: flex; align-items: center; justify-content: center; }
.lift-band img {
  position: absolute;
  inset: -6%;
  width: 112%;
  height: 112%;
  object-fit: cover;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.07); } }
.lift-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 23, 27, 0.72), rgba(20, 23, 27, 0.35) 45%, rgba(20, 23, 27, 0.78)),
    linear-gradient(115deg, rgba(194, 97, 30, 0.28), rgba(20, 23, 27, 0.1) 55%);
}
.lift-caption { position: relative; z-index: 2; text-align: center; padding: 5rem 24px; }
.lift-kicker { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem; }
.lift-line { display: block; font-size: clamp(1.8rem, 5vw, 3.4rem); text-transform: uppercase; color: var(--concrete); text-shadow: 0 2px 24px rgba(0,0,0,0.6); margin-bottom: 0.6rem; }
.lift-sub { display: block; color: var(--dim); font-size: var(--step-0); }

/* ---------- reviews (concrete band) ---------- */
.reviews { background: var(--paper); color: var(--ink); }
.reviews .eyebrow { color: var(--orange); }
.reviews .section-title { color: var(--ink); }
.reviews .section-title em { color: var(--orange); }
.reviews .lede { color: var(--ink-soft); }
.featured-review {
  border-left: 5px solid var(--orange);
  background: var(--concrete);
  padding: 2.5rem 2.5rem 2rem;
  border-radius: 0 6px 6px 0;
  margin-bottom: 2.5rem;
  box-shadow: 0 14px 40px rgba(34, 38, 44, 0.12);
}
.quote-mark { width: 34px; height: 34px; color: var(--orange); margin-bottom: 1rem; }
.featured-text { font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.55; color: var(--ink); margin-bottom: 1.5rem; max-width: 62ch; }
.featured-review footer, .review-card footer { display: flex; align-items: center; gap: 0.9rem; }
.reviewer-initials {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gunmetal); color: var(--concrete);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.05em; flex: none;
}
.reviewer-meta { display: flex; flex-direction: column; }
.reviewer-meta strong { font-size: 1rem; color: var(--ink); }
.reviews .reviewer-meta > span { font-size: 0.85rem; color: var(--ink-soft); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.review-card {
  background: var(--concrete);
  border: 1px solid rgba(34, 38, 44, 0.1);
  border-radius: 6px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}
.review-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(34, 38, 44, 0.16); }
.review-card p { color: var(--ink-soft); font-size: 0.98rem; flex: 1; }
.stars { display: flex; gap: 3px; }
.stars svg { width: 16px; height: 16px; color: var(--orange); }
.mid-cta { text-align: center; padding: 1rem 0 0; }
.mid-cta p { font-family: "Chakra Petch", sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; font-size: 1.2rem; color: var(--ink); margin-bottom: 1.25rem; }

/* ---------- process ---------- */
.process { background: var(--gunmetal); }
.process-steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.process-steps::before {
  content: "";
  position: absolute;
  top: 34px; left: 4%; right: 4%;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--steel) 0 14px, transparent 14px 24px);
}
.process-step { position: relative; }
.step-num {
  width: 68px; height: 68px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  color: var(--orange);
  border: 3px solid var(--orange);
  border-radius: 50%;
  background: var(--gunmetal);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  font-variant-numeric: tabular-nums;
}
.process-step h3 {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}
.process-step p { color: var(--dim); font-size: 0.98rem; }

/* ---------- service area ---------- */
.service-area { background: var(--bay); }
.area-split { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: start; }
.area-address {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--concrete);
  border-left: 3px solid var(--orange);
  padding-left: 1.25rem;
  margin: 1.75rem 0;
  line-height: 1.5;
}
.area-note { color: var(--dim); }
.area-note a { color: var(--orange); font-weight: 600; }
.area-card {
  background: var(--panel);
  border: 1px solid var(--steel);
  border-radius: 6px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}
.area-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4); }
.area-card h3 { font-family: "Chakra Petch", sans-serif; font-weight: 700; text-transform: uppercase; font-size: 1.2rem; }
.area-card p { color: var(--dim); }
.area-phone {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--orange);
  text-decoration: none;
  font-variant-numeric: tabular-nums;
}
.area-phone:hover { color: var(--orange-hot); }

/* ---------- transition 3: marquee ---------- */
.marquee {
  background: var(--orange);
  overflow: hidden;
  padding: 1rem 0;
  border-top: 3px solid var(--bay);
  border-bottom: 3px solid var(--bay);
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bay);
  animation: marquee 30s linear infinite;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- faq ---------- */
.faq { background: var(--gunmetal); }
.faq-narrow { max-width: 820px; }
.faq-list { border-top: 1px solid var(--steel); }
.faq-item { border-bottom: 1px solid var(--steel); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--concrete);
  font-family: "Chakra Petch", sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  text-align: left;
  padding: 1.4rem 3rem 1.4rem 0;
  cursor: pointer;
  position: relative;
  min-height: 56px;
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 0.4rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--orange);
  transition: transform 0.25s var(--ease-out);
}
.faq-q[aria-expanded="true"]::after { transform: translateY(-50%) rotate(45deg); }
.faq-q:hover { color: var(--orange); }
.js .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease-out); }
.faq-a p { color: var(--dim); padding: 0 0 1.5rem; max-width: 64ch; }

/* ---------- final cta ---------- */
.final-cta { background: var(--bay); text-align: center; position: relative; padding-top: 0; }
.torque-edge {
  height: 26px;
  background: repeating-linear-gradient(-55deg, var(--orange) 0 26px, var(--bay) 26px 52px);
  margin-bottom: clamp(4rem, 8vw, 7rem);
}
.cta-title {
  font-size: var(--step-6);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.cta-sub { color: var(--dim); font-size: var(--step-1); margin-bottom: 2rem; }
.cta-phone {
  display: block;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  color: var(--concrete);
  text-decoration: none;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  transition: color 0.2s ease-out;
}
.cta-phone:hover { color: var(--orange); }
.cta-email { margin-top: 1.75rem; color: var(--dim); }
.cta-email a { color: var(--orange); font-weight: 600; }

/* ---------- footer ---------- */
.site-footer { background: var(--bay); border-top: 1px solid var(--steel); padding: 3rem 0 6rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.footer-brand { display: flex; flex-direction: column; gap: 0.8rem; max-width: 420px; }
.footer-brand .brand-name { font-size: 1.05rem; }
.footer-brand p { color: var(--faint); font-size: 0.92rem; }
.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; text-align: right; }
.footer-contact a { color: var(--dim); text-decoration: none; font-weight: 600; }
.footer-contact a:hover { color: var(--orange); }
.footer-contact address { color: var(--faint); font-size: 0.92rem; }

/* ---------- mobile call bar ---------- */
.mobile-callbar { display: none; }
@media (max-width: 820px) {
  .mobile-callbar {
    display: block;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 150;
    background: rgba(20, 23, 27, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--steel);
    padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  }
  .mobile-callbar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: var(--orange);
    color: var(--bay);
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    padding: 0.85rem;
    border-radius: 5px;
    min-height: 52px;
  }
  .mobile-callbar svg { width: 20px; height: 20px; }
  .site-footer { padding-bottom: 8rem; }
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .process-steps::before { display: none; }
  .area-split { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 820px) {
  .site-nav { display: none; }
  .header-call { margin-left: auto; font-size: 0.92rem; padding: 0.6rem 0.9rem; }
  .brand-name { font-size: 0.88rem; }
  .stats-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .bay-row { grid-template-columns: 84px 1fr; gap: 1.25rem; }
  .bay-plate { font-size: 1.5rem; padding: 0.5rem 0; }
  .bay-book { grid-column: 2; justify-self: start; padding: 0.4rem 0; }
  .review-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(3rem, 15vw, 4.5rem); }
  .lift-band { min-height: 340px; }
}

/* ---------- reduced motion ---------- */
@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; }
  .js .reveal, .js .reveal-item { opacity: 1; transform: none; }
  .mask > span { transform: none; }
  .js .chev { stroke-dashoffset: 0; }
  .js .faq-a { max-height: none; }
  .marquee-track { animation: none; }
  .lift-band img { animation: none; }
}
