/* Zoom Complete Car Repair — speed-lines aesthetic
   cobalt + white + yellow signal accent. Asymmetric, leaning forward. */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #0a1638;
  background: #f4f5f8;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
iframe { width: 100%; border: 0; }
a { color: inherit; }

:root {
  --cobalt: #143cd1;
  --cobalt-deep: #0a1f7a;
  --cobalt-ink: #0a1638;
  --paper: #f4f5f8;
  --signal: #ffd400;
  --line: rgba(20, 60, 209, 0.18);
}

/* Reusable: speed-line gradient overlay */
.speedlines {
  background-image:
    repeating-linear-gradient(
      105deg,
      transparent 0,
      transparent 22px,
      rgba(255, 255, 255, 0.06) 22px,
      rgba(255, 255, 255, 0.06) 24px,
      transparent 24px,
      transparent 60px,
      rgba(255, 255, 255, 0.10) 60px,
      rgba(255, 255, 255, 0.10) 61px
    );
}

/* ───────── Nav ───────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: #ffffffee;
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--cobalt-ink);
}
.brand-mark {
  display: inline-block;
  font-family: 'Archivo Black', sans-serif;
  font-style: italic;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #fff;
  background: var(--cobalt);
  padding: 5px 9px 6px;
  transform: skewX(-12deg);
  line-height: 1;
}
.brand-mark span { display: inline-block; transform: skewX(12deg); }
.brand-word {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.brand-word em {
  font-style: italic;
  font-weight: 800;
  color: var(--cobalt);
}
.nav-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.status {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cobalt-ink);
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.25);
}
.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: var(--cobalt);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 14px;
  min-height: 44px;
  border-radius: 6px;
  letter-spacing: 0.01em;
}
.nav-call-num { font-variant-numeric: tabular-nums; }
.nav-call-label { display: none; }

@media (min-width: 720px) {
  .nav { padding: 14px 28px; }
  .brand-word { font-size: 16px; }
  .status { display: inline-flex; }
  .nav-call-label { display: inline; opacity: 0.85; }
}

/* ───────── Hero ───────── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cobalt-deep);
  color: #fff;
  padding: 36px 16px 48px;
}
.hero::before {
  /* speed-line stripes leaning forward */
  content: "";
  position: absolute;
  inset: -20% -10% -20% -10%;
  background-image:
    repeating-linear-gradient(
      102deg,
      transparent 0,
      transparent 40px,
      rgba(255, 255, 255, 0.05) 40px,
      rgba(255, 255, 255, 0.05) 42px,
      transparent 42px,
      transparent 110px,
      rgba(255, 212, 0, 0.18) 110px,
      rgba(255, 212, 0, 0.18) 112px,
      transparent 112px,
      transparent 200px,
      rgba(255, 255, 255, 0.08) 200px,
      rgba(255, 255, 255, 0.08) 202px
    );
  pointer-events: none;
}
.hero::after {
  /* a yellow signal flash bar diagonal */
  content: "";
  position: absolute;
  top: 18%;
  right: -30%;
  width: 90%;
  height: 5px;
  background: var(--signal);
  transform: rotate(-12deg);
  box-shadow: 0 0 30px rgba(255, 212, 0, 0.6);
  opacity: 0.85;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  z-index: 2;
}
.eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--signal);
  padding: 6px 10px;
  border: 1px solid rgba(255, 212, 0, 0.5);
  border-radius: 3px;
  margin-bottom: 22px;
}
.hero-h {
  font-family: 'Archivo Black', sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(2.6rem, 11vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  text-transform: none;
}
.hero-h .lead {
  display: block;
  transform: translateX(-2px);
}
.hero-h .lean {
  display: block;
  margin-left: 8%;
}
.hero-h .punch {
  display: block;
  margin-left: 16%;
  color: var(--signal);
}
.hero-h .arrow {
  display: inline-block;
  transform: skewX(-14deg);
  background: #fff;
  color: var(--cobalt-deep);
  padding: 0 12px 4px;
  margin-left: 4px;
  font-style: italic;
}
.hero-sub {
  max-width: 640px;
  font-size: clamp(1rem, 2.6vw, 1.18rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 26px;
}
.hero-sub strong {
  color: #fff;
  font-weight: 700;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 14px 18px;
  min-height: 48px;
  border-radius: 4px;
  transition: transform 0.12s ease;
}
.btn-primary {
  background: var(--signal);
  color: var(--cobalt-ink);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.18);
}
.btn-primary:hover { transform: translate(-1px, -1px); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover { border-color: #fff; }
.btn-num {
  font-family: 'JetBrains Mono', monospace;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
.btn-xl {
  font-size: 18px;
  padding: 18px 24px;
  min-height: 56px;
}

.hero-photo-strip {
  position: relative;
  z-index: 2;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 8px;
  height: 200px;
}
.hero-photo-strip figure {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.18);
}
.hero-photo-strip figure:first-child { transform: skewX(-6deg); margin-left: -16px; }
.hero-photo-strip figure:last-child { transform: skewX(-6deg); }
.hero-photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: skewX(6deg) scale(1.15);
}

@media (min-width: 720px) {
  .hero { padding: 64px 32px 80px; }
  .hero-photo-strip { height: 280px; gap: 12px; }
}
@media (min-width: 1000px) {
  .hero { padding: 84px 56px 96px; }
  .hero-h .lean { margin-left: 14%; }
  .hero-h .punch { margin-left: 26%; }
  .hero-photo-strip { height: 340px; }
}

/* ───────── Tachometer stats band ───────── */
.tach {
  position: relative;
  background: #fff;
  padding: 36px 16px 44px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.tach::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      96deg,
      transparent 0,
      transparent 80px,
      rgba(20, 60, 209, 0.04) 80px,
      rgba(20, 60, 209, 0.04) 82px
    );
  pointer-events: none;
}
.tach-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: end;
}
.tach-needle {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-left: 12px;
}
.tach-needle::before {
  /* the needle line itself */
  content: "";
  position: absolute;
  left: -16px;
  bottom: 14px;
  width: 64px;
  height: 4px;
  background: var(--signal);
  transform: rotate(-22deg);
  transform-origin: right center;
  box-shadow: 0 0 14px rgba(255, 212, 0, 0.7);
}
.tach-big {
  font-family: 'Archivo Black', sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(5rem, 22vw, 9rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--cobalt);
  font-variant-numeric: tabular-nums;
}
.tach-big .star {
  font-size: 0.45em;
  color: var(--signal);
  margin-left: 0.05em;
  vertical-align: 0.42em;
}
.tach-big-cap {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cobalt-ink);
  opacity: 0.7;
  max-width: 110px;
  line-height: 1.3;
  padding-bottom: 8px;
}
.tach-arc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 2px solid var(--cobalt-ink);
  padding-top: 14px;
  position: relative;
}
.tach-arc::before {
  /* tick marks across the top */
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 8px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--cobalt-ink) 0,
    var(--cobalt-ink) 1px,
    transparent 1px,
    transparent 8.33%
  );
}
.tach-arc-cell {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tach-arc-num {
  font-family: 'Archivo Black', sans-serif;
  font-style: italic;
  font-size: clamp(1.4rem, 5vw, 2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cobalt-ink);
  font-variant-numeric: tabular-nums;
}
.tach-arc-cap {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cobalt-ink);
  opacity: 0.65;
}

@media (min-width: 720px) {
  .tach { padding: 60px 32px 64px; }
  .tach-inner {
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
  }
  .tach-needle::before { width: 90px; left: -28px; }
}

/* ───────── Section base ───────── */
.section {
  padding: 64px 16px;
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}
.kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--cobalt);
  display: inline-block;
}
.section-h {
  font-family: 'Archivo Black', sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(2rem, 7vw, 3.4rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--cobalt-ink);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.section-h em {
  font-style: italic;
  background: var(--signal);
  color: var(--cobalt-ink);
  padding: 0.08em 0.22em 0.16em;
  margin: -0.08em -0.04em -0.16em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: 1.05;
}

@media (min-width: 720px) {
  .section { padding: 88px 32px; }
}

/* ───────── Services ───────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.svc {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px 22px 24px;
  overflow: hidden;
}
.svc::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 38%;
  height: 4px;
  background: var(--cobalt);
}
.svc::after {
  content: "";
  position: absolute;
  top: 0; left: 38%;
  width: 8%;
  height: 4px;
  background: var(--signal);
}
.svc-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--cobalt);
  opacity: 0.7;
}
.svc h3 {
  font-family: 'Archivo Black', sans-serif;
  font-style: italic;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  margin: 6px 0 8px;
  color: var(--cobalt-ink);
  text-transform: uppercase;
}
.svc p {
  font-size: 0.97rem;
  line-height: 1.55;
  color: rgba(10, 22, 56, 0.78);
}

@media (min-width: 720px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (min-width: 1000px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ───────── Photo plate (cinematic full-bleed) ───────── */
.plate {
  position: relative;
  margin: 0;
  padding: 0;
  background: var(--cobalt-deep);
  overflow: hidden;
  min-height: 320px;
  display: grid;
  grid-template-columns: 1fr;
}
.plate-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.plate-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}
.plate-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 31, 122, 0.0) 0%, rgba(10, 31, 122, 0.55) 100%);
}
.plate-copy {
  padding: 36px 16px 40px;
  color: #fff;
  position: relative;
}
.plate-copy::before {
  content: "";
  position: absolute;
  top: 0; left: 16px; right: 16px;
  height: 4px;
  background: var(--signal);
}
.plate-copy .kicker {
  color: var(--signal);
}
.plate-copy .kicker::before { background: var(--signal); }
.plate-copy h2 {
  font-family: 'Archivo Black', sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.plate-copy p {
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
}

@media (min-width: 720px) {
  .plate { grid-template-columns: 1.2fr 1fr; min-height: 420px; }
  .plate-img { height: auto; }
  .plate-copy { padding: 56px 40px; }
  .plate-copy::before { left: 40px; right: 40px; }
}

/* ───────── Reviews ───────── */
.reviews {
  background:
    repeating-linear-gradient(
      102deg,
      transparent 0,
      transparent 60px,
      rgba(20, 60, 209, 0.025) 60px,
      rgba(20, 60, 209, 0.025) 62px
    ),
    var(--paper);
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.review {
  background: #fff;
  border-left: 4px solid var(--cobalt);
  padding: 22px 22px 20px;
  position: relative;
}
.review::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 32px; height: 32px;
  background: var(--signal);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}
.review .stars {
  color: var(--signal);
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  -webkit-text-stroke: 0.5px var(--cobalt-ink);
}
.review p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--cobalt-ink);
  margin-bottom: 14px;
}
.review footer {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10, 22, 56, 0.6);
}
.review footer strong {
  color: var(--cobalt);
  font-weight: 700;
}

@media (min-width: 720px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .review-tall { grid-row: span 2; }
}
@media (min-width: 1000px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ───────── Visit / Map ───────── */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.visit-block {
  background: #fff;
  border: 1px solid var(--line);
  padding: 20px 22px;
}
.visit-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 8px;
}
.visit-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cobalt-ink);
  line-height: 1.4;
  margin-bottom: 10px;
}
.mono { font-family: 'JetBrains Mono', monospace; font-variant-numeric: tabular-nums; }
.visit-cta {
  display: inline-block;
  text-decoration: none;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--cobalt);
  border-bottom: 2px solid var(--signal);
  padding-bottom: 2px;
  min-height: 44px;
  line-height: 44px;
}
.hours { list-style: none; }
.hours li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(20, 60, 209, 0.15);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}
.hours li:last-child { border-bottom: 0; }
.hours li.closed span:last-child { color: rgba(10, 22, 56, 0.5); }
.visit-map iframe {
  height: 320px;
  border: 1px solid var(--line);
}

@media (min-width: 720px) {
  .visit-grid {
    grid-template-columns: 1fr 1fr;
  }
  .visit-map { grid-column: span 2; }
}
@media (min-width: 1000px) {
  .visit-grid {
    grid-template-columns: 1fr 1fr 1.4fr;
  }
  .visit-hours { grid-row: span 2; grid-column: 3; }
  .visit-map { grid-column: span 2; }
}

/* ───────── Foot CTA ───────── */
.cta-foot {
  background: var(--cobalt);
  color: #fff;
  padding: 56px 16px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-foot::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      105deg,
      transparent 0,
      transparent 60px,
      rgba(255, 255, 255, 0.06) 60px,
      rgba(255, 255, 255, 0.06) 62px,
      transparent 62px,
      transparent 140px,
      rgba(255, 212, 0, 0.2) 140px,
      rgba(255, 212, 0, 0.2) 142px
    );
  pointer-events: none;
}
.cta-foot-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.cta-h {
  font-family: 'Archivo Black', sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.cta-h em {
  font-style: italic;
  color: var(--signal);
}
.cta-fine {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 18px;
}

/* ───────── Footer ───────── */
.foot {
  background: var(--cobalt-ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 32px 16px;
}
.foot-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.foot-brand {
  font-family: 'Archivo Black', sans-serif;
  font-style: italic;
  color: #fff;
  font-size: 1rem;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.foot-line {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.foot-fine {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.55;
}

@media (min-width: 720px) {
  .foot { padding: 40px 32px; }
  .foot-grid {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 24px;
  }
}
