/* ============================================================
   Quality Auto Builders Collision Center — spec preview
   Woodcrest Marketing
   ============================================================ */

:root {
  --ink:        #14181d;   /* near-black charcoal (brand primary) */
  --ink-2:      #1c222a;   /* raised charcoal surface */
  --steel:      #3f4a57;   /* steel gray (secondary) */
  --accent:     #c8342b;   /* collision red (accent) */
  --accent-dk:  #a32720;
  --paper:      #f6f4f1;   /* warm off-white */
  --paper-2:    #ece8e2;
  --line:       #d9d3ca;
  --muted:      #5c6570;
  --muted-lt:   #a9b2bd;
  --white:      #ffffff;

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

  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.9rem);
  --step-0:  clamp(1rem, 0.95rem + 0.25vw, 1.13rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 2.1rem);
  --step-3:  clamp(2rem, 1.6rem + 2vw, 3.2rem);
  --step-4:  clamp(2.6rem, 1.9rem + 3.4vw, 5rem);

  --container: 1200px;
  --gutter: clamp(1.5rem, 5vw, 5rem);
  --section-y: clamp(4rem, 8vw, 7rem);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 24px 60px -24px rgba(15, 18, 22, 0.4);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

/* Flex/grid children default to min-width:auto and can refuse to shrink below
   their content, forcing horizontal overflow (clips the right edge on mobile).
   Reset it globally so nothing ever pushes the page wider than the viewport. */
*, *::before, *::after { min-width: 0; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: var(--step--1);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
              color 0.25s var(--ease), border-color 0.25s var(--ease),
              box-shadow 0.25s var(--ease);
  will-change: transform;
}
.btn-lg { padding: 1.05rem 1.9rem; font-size: var(--step-0); }
.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 12px 26px -12px rgba(200, 52, 43, 0.7);
}
.btn-accent:hover { background: var(--accent-dk); transform: translateY(-3px); }
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); transform: translateY(-3px); }
.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--white); transform: translateY(-3px); }
.btn:focus-visible,
a:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
/* Top-of-page scrim so the white logo + nav stay readable over any photo */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 13, 16, 0.72) 0%, rgba(10, 13, 16, 0.28) 55%, rgba(10, 13, 16, 0) 100%);
  transition: opacity 0.3s var(--ease);
}
.site-header.scrolled::before { opacity: 0; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.9rem;
}
.brand-logo {
  height: 56px; width: auto;
  border-radius: 8px;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.45));
}
.nav { display: flex; gap: 2rem; }
.nav a {
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding-block: 0.3rem;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav a:hover { color: var(--white); }
.nav a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 1.25rem; }
.phone-link { font-weight: 700; color: var(--white); letter-spacing: 0.02em; }
.phone-link:hover { color: var(--accent); }

/* scrolled state (added by JS) */
.site-header.scrolled {
  background: rgba(18, 22, 27, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px -18px rgba(0, 0, 0, 0.8);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(600px, 92svh, 940px);
  display: flex;
  align-items: center;
  padding-block: clamp(8rem, 15vh, 12rem) clamp(4rem, 8vh, 7rem);
  overflow: hidden;
  background: var(--ink);
}
.hero-media { position: absolute; inset: 0; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 60% center;
  transform: scale(1.12);
  animation: heroZoom 16s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(15,18,22,0.97) 0%, rgba(15,18,22,0.88) 32%, rgba(15,18,22,0.45) 64%, rgba(15,18,22,0.18) 100%),
    linear-gradient(0deg, rgba(15,18,22,0.72) 0%, rgba(15,18,22,0) 48%);
}
/* subtle vignette for cinematic depth */
.hero-scrim::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 70% 40%, transparent 55%, rgba(8,10,13,0.5) 100%);
}
.hero-grid { position: relative; z-index: 2; }
.hero-copy { max-width: min(44rem, 100%); }

/* Above-the-fold entrance: CSS-only, runs on load (not gated on JS/scroll),
   so the headline is never captured empty. Ends fully visible either way. */
@keyframes heroIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero-copy > * { opacity: 0; animation: heroIn 0.7s var(--ease) forwards; }
.hero-copy > .eyebrow      { animation-delay: 0.06s; }
.hero-copy > .hero-title   { animation-delay: 0.14s; }
.hero-copy > .hero-lede    { animation-delay: 0.26s; }
.hero-copy > .hero-actions { animation-delay: 0.38s; }
.hero-copy > .hero-badges  { animation-delay: 0.48s; }
.hero-tag { opacity: 0; animation: heroIn 0.7s var(--ease) 0.56s forwards; }
.eyebrow {
  display: inline-block;
  font-size: var(--step--1);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 1.25rem;
  padding-left: 3.4rem;
  position: relative;
}
.eyebrow::before {
  content: "";
  position: absolute; left: 0; top: 0.6em;
  width: 2.6rem; height: 2px;
  background: var(--accent);
}
.hero-title {
  color: var(--white);
  font-size: var(--step-4);
  line-height: 1.07;
  letter-spacing: -0.028em;
  max-width: min(15ch, 100%);
  margin-bottom: 1.6rem;
  text-shadow: 0 2px 30px rgba(8, 10, 13, 0.45);
}
.hero-lede {
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--step-1);
  line-height: 1.55;
  max-width: min(44ch, 100%);
  margin: 0 0 2.25rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-badges {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.75rem;
}
.hero-badges li {
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
  padding-left: 1.6rem;
  position: relative;
}
.hero-badges li::before {
  content: "";
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 0.7rem; height: 0.7rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(200, 52, 43, 0.22);
}
.hero-tag {
  position: absolute;
  z-index: 3;
  right: clamp(1.5rem, 5vw, 5rem);
  bottom: clamp(1.5rem, 5vw, 3rem);
  max-width: 20rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(20, 24, 29, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  border-left: 4px solid var(--accent);
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-sm);
}
.hero-tag-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--step-2);
  color: var(--white);
  line-height: 1;
}
.hero-tag-label { font-size: var(--step--1); color: rgba(255,255,255,0.78); line-height: 1.35; }

@media (max-width: 900px) {
  .hero-tag { display: none; }
}

/* ---------- Credential strip ---------- */
.strip { background: var(--ink-2); color: var(--white); }
.strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.7rem 1.15rem;
  padding-block: 1.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: clamp(0.74rem, 0.66rem + 0.34vw, 0.86rem);
}
.strip-inner span:not(.dot) { white-space: nowrap; }
.strip-inner .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* ---------- Section helpers ---------- */
.section-eyebrow {
  font-size: var(--step--1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 1rem;
}
.section-eyebrow.light { color: #ff8078; }
.section-title {
  font-size: var(--step-3);
  line-height: 1.14;
  letter-spacing: -0.022em;
  margin: 0 0 1.4rem;
  max-width: min(20ch, 100%);
}
.section-title.light { color: var(--white); }

/* ---------- About ---------- */
.about { padding-block: var(--section-y); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 0.95fr 1.05fr; }
}
.about-figure { position: relative; }
.cred-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--white);
  background:
    radial-gradient(120% 120% at 85% -10%, rgba(200,52,43,0.32), transparent 55%),
    linear-gradient(155deg, var(--ink-2) 0%, var(--ink) 70%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.75rem;
}
.cred-panel::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--accent);
}
.cred-stat { display: flex; align-items: center; gap: 1.25rem; }
.cred-stat strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 2rem + 5vw, 4.6rem);
  line-height: 0.82;
  letter-spacing: -0.03em;
  color: var(--white);
  display: flex;
  flex-direction: column;
}
.cred-stat strong span {
  font-size: var(--step-0);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.35rem;
}
.cred-stat p { margin: 0; color: rgba(255,255,255,0.78); font-size: var(--step-0); max-width: 18ch; }
.cred-badge {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-start;
}
.cred-badge img { width: auto; height: clamp(58px, 13vw, 74px); flex: none; }
.cred-badge-note {
  font-size: var(--step--1);
  line-height: 1.4;
  font-weight: 600;
  color: var(--ink);
}
.cred-badge-note span {
  display: block;
  font-weight: 500;
  color: var(--muted);
}
.cred-chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.cred-chips li {
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.9);
}
.about-copy p { color: var(--muted); margin: 0 0 1.1rem; max-width: 52ch; }
.check-list { list-style: none; margin: 1.75rem 0 0; padding: 0; display: grid; gap: 0.9rem; }
.check-list li {
  position: relative;
  padding-left: 2.2rem;
  font-weight: 600;
  color: var(--ink);
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 0.15em;
  width: 1.4rem; height: 1.4rem;
  border-radius: 50%;
  background: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 0.85rem;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- Services ---------- */
.services { padding-block: var(--section-y); background: var(--paper-2); }
.services-head { max-width: 40rem; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 1.25rem;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem 1.9rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.svc-card::before {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 100%; height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--step-1);
  color: var(--accent);
  letter-spacing: 0.02em;
}
.svc-card h3 { font-size: var(--step-1); margin: 0.6rem 0 0.7rem; line-height: 1.2; }
.svc-card p { margin: 0; color: var(--muted); font-size: var(--step-0); }

/* ---------- Offer band ---------- */
.offer {
  padding-block: var(--section-y);
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(200,52,43,0.22), transparent 60%),
    var(--ink);
  color: var(--white);
}
.offer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .offer-inner { grid-template-columns: 1.1fr 0.9fr; }
}
.offer-copy p { color: rgba(255,255,255,0.78); margin: 0; max-width: 46ch; }
.offer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.offer-list li {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
}
.offer-list strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--step-2);
  color: var(--white);
  white-space: nowrap;
}
.offer-list span { color: rgba(255,255,255,0.8); font-size: var(--step-0); }

/* ---------- Paint feature ---------- */
.feature { padding-block: var(--section-y); }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-figure { order: 2; }
}
.feature-copy p { color: var(--muted); margin: 0 0 1.1rem; max-width: 50ch; }
.feature-copy .btn { margin-top: 1rem; }
.brand-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  display: grid;
  gap: 1.5rem;
  justify-items: center;
}
.brand-card::before {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 100%; height: 5px;
  background: linear-gradient(90deg, var(--accent), #f0a020);
}
.brand-card-eyebrow {
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.brand-card img {
  width: auto;
  height: clamp(96px, 18vw, 150px);
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.12));
}
.brand-card-specs {
  list-style: none; margin: 0; padding: 1.5rem 0 0; width: 100%;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 0.75rem;
}
.brand-card-specs li {
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--ink);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--paper-2);
}

/* ---------- Reviews ---------- */
.reviews { padding-block: var(--section-y); background: var(--ink); color: var(--white); }
.reviews-head { max-width: 36rem; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  gap: 1.25rem;
}
.review {
  margin: 0;
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.9rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.review:hover { transform: translateY(-5px); border-color: rgba(200,52,43,0.5); }
.review blockquote {
  margin: 0;
  font-size: var(--step-1);
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  position: relative;
  padding-top: 1.5rem;
}
.review blockquote::before {
  content: "\201C";
  position: absolute; top: -0.35rem; left: -0.2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--accent);
}
.review figcaption { font-weight: 700; letter-spacing: 0.02em; margin-top: auto; }
.review figcaption span { display: block; font-weight: 500; font-size: var(--step--1); color: var(--muted-lt); margin-top: 0.2rem; }

/* ---------- Contact ---------- */
.contact {
  padding-block: var(--section-y);
  background:
    radial-gradient(900px 500px at 85% 120%, rgba(200,52,43,0.22), transparent 60%),
    var(--ink-2);
  color: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1.1fr 0.9fr; }
}
.contact-copy p { color: rgba(255,255,255,0.8); margin: 0 0 2rem; max-width: 46ch; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.contact-details { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.contact-details li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact-details li:first-child { padding-top: 0; }
.contact-details li:last-child { border-bottom: none; }
.c-label {
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #ff8078;
}
.contact-details a, .contact-details li > span:not(.c-label) {
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--white);
}
.contact-details a:hover { color: #ff8078; }

/* ---------- Site footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.72); padding-block: clamp(3rem, 6vw, 4.5rem); }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo { height: 56px; width: auto; border-radius: 8px; margin-bottom: 1.25rem; }
.footer-brand p { margin: 0; max-width: 34ch; font-size: var(--step--1); }
.footer-meta { display: grid; gap: 0.5rem; font-size: var(--step--1); }
.footer-meta a:hover { color: var(--white); }

/* ---------- Spec footer (mandatory) ---------- */
.spec-footer {
  background: #0c0f12;
  color: #8b95a1;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.6;
  padding: 1.5rem var(--gutter);
}
.spec-footer a { color: var(--accent); font-weight: 600; }
.spec-footer a:hover { text-decoration: underline; }

/* ---------- Reveal animations ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .hero-copy > *, .hero-tag { opacity: 1; animation: none; }
  .hero-img { transform: none; animation: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- Small screens ---------- */
@media (max-width: 760px) {
  .nav { display: none; }
  .header-cta .phone-link { display: none; }
  .brand-logo { height: 46px; }
  .hero { min-height: 86svh; }
  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(15,18,22,0.55) 0%, rgba(15,18,22,0.78) 55%, rgba(15,18,22,0.94) 100%);
  }
  .hero-scrim::after { display: none; }
  .hero-title { line-height: 1.08; }
  .hero-lede, .eyebrow { overflow-wrap: break-word; }
  .eyebrow { padding-left: 2.6rem; letter-spacing: 0.12em; }
  .eyebrow::before { width: 1.9rem; }
  .strip-inner {
    gap: 0.4rem 0.9rem;
    letter-spacing: 0.06em;
    font-size: 0.72rem;
    padding-block: 1.1rem;
  }
  .strip-inner .dot { display: none; }
}

@media (max-width: 420px) {
  .hero-title { font-size: clamp(2.15rem, 1.2rem + 5.2vw, 2.7rem); }
  .cred-stat { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}
