/* =========================================================
   Gearheadz Garage — spec preview
   Design system: dark automotive / metallic silver / race red
   ========================================================= */

:root {
  /* palette */
  --ink: #0d0e11;
  --char: #14161a;
  --char-2: #191c22;
  --panel: #1e2128;
  --steel: #2b3038;
  --steel-line: #333944;
  --silver: #cbcfd6;
  --silver-2: #969ba5;
  --fog: #eceef1;
  --white: #ffffff;
  --red: #e4271f;
  --red-hot: #ff342b;
  --red-deep: #b31810;

  /* type */
  --font-display: "Helvetica Neue", "Arial Narrow", Arial, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* fluid type scale */
  --fs-eyebrow: clamp(0.72rem, 0.68rem + 0.2vw, 0.8rem);
  --fs-body:    clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  --fs-lede:    clamp(1.08rem, 1rem + 0.6vw, 1.35rem);
  --fs-h3:      clamp(1.25rem, 1.1rem + 0.8vw, 1.6rem);
  --fs-h2:      clamp(2rem, 1.5rem + 2.6vw, 3.4rem);
  --fs-h1:      clamp(2.7rem, 1.9rem + 4.4vw, 5.6rem);
  --fs-display: clamp(3.2rem, 2rem + 6vw, 7rem);

  /* space */
  --shell: 1240px;
  --gutter: clamp(1.5rem, 5vw, 5rem);
  --section-y: clamp(3.75rem, 8vw, 7.5rem);

  --radius: 14px;
  --radius-sm: 9px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--fog);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

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

.skip {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--red); color: #fff; padding: 0.75rem 1.25rem;
  border-radius: 0 0 8px 0; font-weight: 700;
}
.skip:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--red-hot);
  outline-offset: 3px;
  border-radius: 3px;
}

::selection { background: var(--red); color: #fff; }

/* ---------- shared type ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--red-hot);
  margin: 0 0 1.1rem;
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.4rem 0.7rem;
}
.eyebrow::before {
  content: ""; width: 30px; height: 2px; background: var(--red); display: inline-block; flex: none;
}
.eyebrow--dark { color: var(--red); }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-h2);
  line-height: 1.07;
  letter-spacing: -0.022em;
  text-transform: uppercase;
  color: var(--white);
  text-wrap: balance;
}
.section-intro {
  margin-top: 1.25rem;
  max-width: 54ch;
  color: var(--silver);
  font-size: var(--fs-lede);
}

/* ---------- buttons ---------- */
.btn {
  --pad-y: 0.95rem;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: var(--pad-y) 1.7rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .28s var(--ease), background-color .28s var(--ease),
              box-shadow .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease);
  will-change: transform;
}
.btn-sm { --pad-y: 0.7rem; padding: var(--pad-y) 1.3rem; font-size: 0.82rem; }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 26px -12px rgba(228,39,31,0.85);
}
.btn-primary:hover {
  background: var(--red-hot);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px -12px rgba(228,39,31,0.95);
}
.btn-ghost {
  background: transparent;
  color: var(--fog);
  border-color: rgba(203,207,214,0.35);
}
.btn-ghost:hover {
  border-color: var(--fog);
  transform: translateY(-3px);
  background: rgba(255,255,255,0.04);
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(13,14,17,0.86);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--steel-line);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.9);
}
.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  padding-block: 0.7rem;
}
.brand { display: inline-flex; margin-right: auto; }
.brand-logo {
  height: clamp(52px, 6vw, 66px); width: auto;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.5));
}
.nav { display: flex; gap: clamp(1rem, 2vw, 2rem); }
.nav a {
  text-decoration: none;
  color: var(--silver);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 0.4rem 0;
  position: relative;
  transition: color .25s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--red); transition: width .3s var(--ease);
}
.nav a:hover { color: var(--white); }
.nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 1.1rem; }
.phone-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  text-decoration: none; color: var(--fog); font-weight: 700;
  font-size: 0.95rem; white-space: nowrap;
  transition: color .25s var(--ease);
}
.phone-link:hover { color: var(--red-hot); }
.phone-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 4px rgba(228,39,31,0.2);
}

.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 44px; padding: 0 9px;
  background: transparent; border: 1px solid var(--steel-line); border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--fog); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: min(96vh, 900px);
  display: flex; align-items: flex-end;
  padding-block: clamp(8.5rem, 15vw, 12rem) clamp(3rem, 7vw, 6rem);
  overflow: hidden;
  isolation: isolate;
}
.hero-img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover; object-position: 70% 52%;
  transform: scale(1.06);
  animation: heroPan 20s ease-out forwards;
}
/* protects nav legibility (top), anchors the text column (left), grounds the CTAs (bottom) */
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(9,10,12,0.66) 0%, rgba(9,10,12,0) 20%),
    linear-gradient(96deg, rgba(9,10,12,0.96) 0%, rgba(9,10,12,0.9) 30%, rgba(9,10,12,0.6) 55%, rgba(9,10,12,0.28) 80%, rgba(9,10,12,0.42) 100%),
    linear-gradient(0deg, rgba(9,10,12,0.95) 0%, rgba(9,10,12,0.05) 44%),
    radial-gradient(130% 90% at 82% 26%, rgba(0,0,0,0) 38%, rgba(0,0,0,0.55) 100%);
}
.hero-inner { position: relative; max-width: 47ch; padding-left: clamp(1.35rem, 1.8vw, 2rem); }
/* race-red rule running down the left of the text column, capped with a solid tab */
.hero-inner::before {
  content: ""; position: absolute; left: 0; top: 0.5rem; bottom: 0.6rem;
  width: 3px; border-radius: 3px;
  background: linear-gradient(180deg, var(--red-hot) 0%, var(--red) 22%, rgba(228,39,31,0.04) 100%);
  box-shadow: 0 0 18px rgba(228,39,31,0.45);
}
.hero .eyebrow { color: var(--red-hot); }
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-h1);
  line-height: 0.97;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 6px 34px rgba(0,0,0,0.6);
}
.hero-lede {
  margin-top: 1.6rem;
  max-width: 42ch;
  font-size: var(--fs-lede);
  color: var(--silver);
  text-shadow: 0 2px 14px rgba(0,0,0,0.55);
}
.d-br { display: inline; }
.hero-actions {
  margin-top: 2.2rem;
  display: flex; flex-wrap: wrap; gap: 1rem;
}
.hero-trust {
  margin-top: 2.3rem;
  display: flex; flex-wrap: wrap; gap: 0.6rem 0.7rem;
  border-top: 1px solid rgba(203,207,214,0.16);
  padding-top: 1.5rem;
}
.hero-trust li {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--silver); position: relative;
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.5rem 0.9rem 0.5rem 0.8rem;
  border: 1px solid rgba(203,207,214,0.16);
  border-radius: 999px;
  background: rgba(20,22,26,0.4);
  backdrop-filter: blur(4px);
}
.hero-trust li::before {
  content: ""; flex: none;
  width: 7px; height: 7px; background: var(--red); border-radius: 1px; rotate: 45deg;
  box-shadow: 0 0 8px rgba(228,39,31,0.7);
}

/* scroll cue */
.hero-scroll {
  position: absolute; right: clamp(1.5rem, 5vw, 5rem); bottom: clamp(2rem, 4vw, 3.25rem);
  z-index: 2;
  display: inline-flex; flex-direction: column; align-items: center; gap: 0.7rem;
  text-decoration: none; color: var(--silver-2);
  font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 700;
  transition: color .3s var(--ease);
}
.hero-scroll-label { line-height: 1; writing-mode: vertical-rl; }
.hero-scroll-line {
  width: 1px; height: 46px;
  background: linear-gradient(180deg, rgba(203,207,214,0.5), rgba(228,39,31,0.9));
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 40%;
  background: var(--red-hot);
  animation: scrollTrace 2.4s var(--ease) infinite;
}
.hero-scroll:hover { color: var(--fog); }
@keyframes scrollTrace {
  0%   { transform: translateY(-110%); }
  60%  { transform: translateY(260%); }
  100% { transform: translateY(260%); }
}

@keyframes heroPan {
  from { transform: scale(1.12); }
  to   { transform: scale(1.0); }
}

/* =========================================================
   STAT STRIPE
   ========================================================= */
.stripe {
  background:
    radial-gradient(120% 160% at 85% -10%, rgba(255,90,74,0.55), rgba(255,90,74,0) 55%),
    linear-gradient(120deg, #7c0f0a 0%, #b31810 42%, #d9231b 100%);
  color: #fff;
  padding-block: clamp(3.25rem, 6vw, 5rem);
  position: relative;
  border-top: 2px solid var(--red-hot);
  border-bottom: 1px solid rgba(0,0,0,0.4);
  box-shadow: inset 0 22px 60px -40px rgba(0,0,0,0.85), inset 0 -20px 50px -40px rgba(0,0,0,0.7);
}
.stripe::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(0,0,0,0.34) 0%, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0) 62%),
    repeating-linear-gradient(-52deg, rgba(0,0,0,0.05) 0 2px, rgba(0,0,0,0) 2px 22px);
  pointer-events: none; mix-blend-mode: multiply;
}
.stripe-inner {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 1.6fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.stripe-kicker {
  display: inline-flex; align-items: center; gap: 0.55rem; margin-bottom: 0.9rem;
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase;
  color: #ffe4e1;
}
.stripe-kicker::before {
  content: ""; width: 26px; height: 2px; background: rgba(255,255,255,0.85); display: inline-block;
}
.stripe-lead p {
  font-size: clamp(1.2rem, 1rem + 1vw, 1.62rem); font-weight: 600; line-height: 1.42; color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.28);
  text-wrap: balance;
}
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin: 0;
}
.stat {
  padding: 1.05rem 1.5rem 0; border-left: 1px solid rgba(255,255,255,0.28);
  position: relative;
}
.stat::before {
  content: ""; position: absolute; left: 1.5rem; top: 0; width: 26px; height: 3px;
  background: rgba(255,255,255,0.92);
}
.stat:first-child { padding-left: 0; border-left: none; }
.stat:first-child::before { left: 0; }
.stat dt { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: #ffd9d5; font-weight: 800; }
.stat dd {
  margin: 0.55rem 0 0.4rem;
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(1.7rem, 1.15rem + 1.7vw, 2.35rem); line-height: 1; color: #fff;
  letter-spacing: -0.015em; text-shadow: 0 3px 16px rgba(0,0,0,0.35);
  white-space: nowrap;
}
.stat p { font-size: 0.84rem; color: rgba(255,255,255,0.95); line-height: 1.45; }

/* =========================================================
   ABOUT
   ========================================================= */
.about { padding-block: var(--section-y); background: var(--char); }
.about-grid {
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about-media { position: relative; }
.about-img { border-radius: var(--radius); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.9); filter: saturate(0.94) contrast(1.03); }
.about-img--tall {
  width: 82%; aspect-ratio: 4 / 5; object-fit: cover;
  border: 1px solid var(--steel-line);
}
.about-img--inset {
  position: absolute; right: 0; bottom: -2.5rem; width: 52%;
  aspect-ratio: 3 / 4; object-fit: cover;
  border: 4px solid var(--char);
  box-shadow: 0 24px 48px -22px rgba(0,0,0,0.95);
}
.about-copy p { color: var(--silver); margin-top: 1.15rem; }
.about-copy .section-title { margin-top: 0.4rem; }
.check-list { margin-top: 1.8rem; display: grid; gap: 0.75rem; }
.check-list li {
  position: relative; padding-left: 2rem; color: var(--fog); font-weight: 500;
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 0.45em;
  width: 12px; height: 7px; border-left: 2.5px solid var(--red); border-bottom: 2.5px solid var(--red);
  transform: rotate(-45deg);
}

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  padding-block: var(--section-y);
  background:
    radial-gradient(80% 60% at 88% 0%, rgba(228,39,31,0.09), rgba(228,39,31,0) 60%),
    var(--ink);
}
.services-head { max-width: 62ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.svc-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--steel-line);
}
.svc {
  display: flex; gap: 1.4rem; align-items: flex-start;
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1.2rem, 2.5vw, 2.2rem);
  border-bottom: 1px solid var(--steel-line);
  border-right: 1px solid var(--steel-line);
  position: relative;
  transition: background-color .35s var(--ease);
}
.svc:nth-child(2n) { border-right: none; }
.svc::after {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--red);
  transition: width .4s var(--ease);
}
.svc:hover { background: var(--char-2); }
.svc:hover::after { width: 100%; }
.svc-num {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(1.7rem, 1rem + 2.2vw, 2.5rem);
  line-height: 1; color: transparent;
  -webkit-text-stroke: 1.5px #4a515e;
  transition: -webkit-text-stroke-color .35s var(--ease), color .35s var(--ease);
  flex: none;
}
.svc:hover .svc-num { -webkit-text-stroke-color: var(--red); }
.svc-body h3 {
  font-family: var(--font-display); font-weight: 700; font-size: var(--fs-h3);
  text-transform: uppercase; letter-spacing: -0.005em; line-height: 1.1; color: var(--white);
}
.svc-body p { margin-top: 0.6rem; color: var(--silver-2); font-size: 0.98rem; }

/* =========================================================
   FEATURE (classics & custom)
   ========================================================= */
.feature {
  padding-block: var(--section-y);
  background:
    radial-gradient(70% 80% at 8% 30%, rgba(228,39,31,0.08), rgba(228,39,31,0) 55%),
    var(--char);
  position: relative; overflow: hidden;
}
.feature-grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.feature-copy p { color: var(--silver); margin-top: 1.15rem; }
.feature-copy .btn { margin-top: 2rem; }
.feature-media { position: relative; margin: 0; }
.feature-img {
  width: 100%; aspect-ratio: 5 / 4; object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--steel-line);
  box-shadow: 0 34px 70px -34px rgba(0,0,0,0.95);
  filter: saturate(0.94) contrast(1.03);
}
.feature-media figcaption {
  margin-top: 1rem; font-size: 0.82rem; letter-spacing: 0.04em; color: var(--silver-2);
  text-transform: uppercase; font-weight: 600;
}
.feature-media::before {
  content: ""; position: absolute; left: -1.25rem; top: -1.25rem; width: 60%; height: 60%;
  border: 2px solid var(--red); border-radius: var(--radius); z-index: -1;
  opacity: 0.45;
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery { padding-block: var(--section-y); background: var(--ink); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}
.g-item { margin: 0; overflow: hidden; border-radius: var(--radius-sm); border: 1px solid var(--steel-line); position: relative; }
.g-item img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1;
  transition: transform .6s var(--ease), filter .5s var(--ease);
  filter: saturate(0.92) contrast(1.02);
}
.g-item--wide { grid-column: span 2; }
.g-item--wide img { aspect-ratio: 2 / 1; }
.g-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(228,39,31,0) 55%, rgba(228,39,31,0.18) 100%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.g-item:hover img { transform: scale(1.06); filter: saturate(1.05) contrast(1.05); }
.g-item:hover::after { opacity: 1; }

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews { padding-block: var(--section-y); background: var(--char); }
.review-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
}
.review {
  margin: 0;
  background: var(--panel);
  border: 1px solid var(--steel-line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 2.5vw, 2.2rem);
  position: relative;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.review:hover { transform: translateY(-4px); border-color: rgba(228,39,31,0.55); }
.reviews-feature { grid-column: span 2; background: linear-gradient(150deg, var(--char-2), var(--panel)); }
.stars { color: var(--red-hot); letter-spacing: 0.18em; font-size: 1.05rem; margin-bottom: 1rem; }
.review-text {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
  line-height: 1.6; color: var(--fog);
}
.reviews-feature .review-text { font-size: clamp(1.15rem, 1rem + 0.7vw, 1.5rem); font-weight: 500; max-width: 46ch; }
.review-by {
  margin-top: 1.25rem;
  font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  font-size: 0.82rem; color: var(--silver-2);
}
.review-by::before { content: "— "; color: var(--red); }

/* =========================================================
   VISIT
   ========================================================= */
.visit { padding-block: var(--section-y); background: var(--ink); }
.visit-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.visit-copy p { margin-top: 1.15rem; color: var(--silver); max-width: 46ch; }
.visit-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.visit-card {
  background: var(--char);
  border: 1px solid var(--steel-line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  box-shadow: 0 30px 60px -34px rgba(0,0,0,0.9);
}
.vc-row {
  display: grid; grid-template-columns: 108px 1fr; gap: 1rem; align-items: start;
  padding: 1.1rem 0; border-bottom: 1px solid var(--steel-line);
}
.vc-row--last { border-bottom: none; padding-bottom: 0; }
.vc-row:first-child { padding-top: 0; }
.vc-label {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
  color: var(--red); padding-top: 0.2rem;
}
.vc-value { color: var(--fog); font-weight: 500; line-height: 1.5; }
.vc-value a { text-decoration: none; }
.vc-value a:hover { color: var(--red-hot); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--char); border-top: 1px solid var(--steel-line); padding-block: clamp(3rem, 5vw, 4.5rem); }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem);
}
.footer-brand img { height: 72px; width: auto; margin-bottom: 1.2rem; }
.footer-brand p { color: var(--silver-2); max-width: 34ch; font-size: 0.95rem; }
.footer-col h4 {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 1rem; color: var(--white); margin-bottom: 1.1rem;
}
.footer-col li { color: var(--silver-2); font-size: 0.95rem; padding: 0.32rem 0; }
.footer-col a { text-decoration: none; transition: color .25s var(--ease); }
.footer-col a:hover { color: var(--red-hot); }

/* spec footer (mandatory) */
.spec-footer {
  background: var(--ink);
  color: var(--silver-2);
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.6;
  padding: clamp(2rem, 3vw, 2.75rem) var(--gutter);
  border-top: 1px solid var(--steel-line);
}
.spec-footer a { color: var(--red-hot); }

/* =========================================================
   REVEAL ANIMATION
   Pure-CSS, auto-playing on load. Because it doesn't depend on scroll
   position or IntersectionObserver, it always completes for every element
   (above AND below the fold) shortly after render, so a full-page capture
   never catches content stranded at opacity:0. Content is visible by
   default (no-JS + reduced-motion both fall through to full opacity).
   ========================================================= */
.js [data-reveal] {
  animation: revealUp 0.7s var(--ease) both;
}
.js [data-reveal].shown { animation: none; opacity: 1; transform: none; }
@keyframes revealUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
/* staggered hero entrance */
.js .hero .eyebrow      { animation-delay: 0.05s; }
.js .hero .hero-title   { animation-delay: 0.16s; }
.js .hero .hero-lede    { animation-delay: 0.30s; }
.js .hero .hero-actions { animation-delay: 0.44s; }
.js .hero .hero-trust   { animation-delay: 0.56s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .stripe-inner { grid-template-columns: 1fr; gap: 2rem; }
  .visit-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav, .header-cta .phone-link { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { margin-left: auto; }

  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(13,14,17,0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--steel-line);
    padding: 0.5rem var(--gutter) 1.25rem;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
  }
  .nav.open { display: flex; opacity: 1; transform: none; pointer-events: auto; }
  .nav a { padding: 0.85rem 0; border-bottom: 1px solid var(--steel-line); width: 100%; font-size: 1.05rem; }
  .nav a::after { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img--tall { width: 100%; aspect-ratio: 16 / 11; }
  .about-img--inset { position: static; width: 60%; margin-top: 1rem; aspect-ratio: 4 / 3; }
  .feature-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-media { order: -1; }
  .feature-media::before { display: none; }
}

@media (max-width: 680px) {
  .header-cta .btn-primary { display: none; }
  .svc-list { grid-template-columns: 1fr; }
  .svc { border-right: none; }
  .stats { grid-template-columns: 1fr; gap: 1.6rem; }
  .stat { padding: 1rem 0 1.6rem; border-left: none; border-bottom: 1px solid rgba(255,255,255,0.28); }
  .stat::before { left: 0; }
  .stat:last-child { border-bottom: none; padding-bottom: 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .g-item--wide { grid-column: span 2; }
  .review-grid { grid-template-columns: 1fr; }
  .reviews-feature { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.25rem; }
}

@media (max-width: 760px) {
  .d-br { display: none; }
  .hero {
    min-height: 84vh;
    padding-block: clamp(7rem, 22vw, 9rem) clamp(2.75rem, 9vw, 3.75rem);
  }
  .hero-img { object-position: 66% 54%; }
  .hero-inner { max-width: 100%; padding-left: 1rem; }
  .hero-title { line-height: 1; letter-spacing: -0.02em; overflow-wrap: break-word; }
  .hero-scroll { display: none; }
}

@media (max-width: 420px) {
  .hero-title { font-size: clamp(2.2rem, 8.8vw, 2.7rem); }
  .hero-lede { margin-top: 1.3rem; }
  .hero-trust { gap: 0.5rem 0.5rem; }
  .hero-trust li { font-size: 0.68rem; padding: 0.45rem 0.75rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .g-item--wide { grid-column: span 1; }
  .g-item img, .g-item--wide img { aspect-ratio: 3 / 2; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-img { animation: none; transform: none; }
  .js [data-reveal] { opacity: 1; transform: none; transition: none; animation: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
