/* Evolve Auto Care — Elevated Automotive Care */
:root {
  --bg: #050506;
  --bg-2: #0b0b0d;
  --card: #101014;
  --line: rgba(255,255,255,0.08);
  --blue: #3db4ff;
  --blue-dim: rgba(61,180,255,0.14);
  --blue-glow: rgba(61,180,255,0.35);
  --text: #f2f3f5;
  --muted: #9a9aa3;
  --soft: #c8c8cf;
  --font: "Outfit", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--bg); color: var(--text); }
body {
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 88px;
}

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

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(5,5,6,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
}
.nav img { height: 50px; width: auto; }
.nav-links {
  display: flex; gap: 22px; align-items: center;
  font-family: var(--font);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #f2f3f5;
}
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--blue); }
.nav-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  line-height: 1.15;
}
.nav-phone {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #f2f3f5;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--blue); }
.nav-hours {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a9aa3;
  white-space: nowrap;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; border: 0; cursor: pointer;
  font-family: var(--font); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 22px; border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--blue); color: #041018;
  box-shadow: 0 0 0 1px rgba(61,180,255,0.3), 0 10px 30px var(--blue-glow);
}
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 72px 0 96px;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
  text-align: center;
  color: #f2f3f5;
  background: #050506 url("assets/hero-detailing-poster.jpg") center / cover no-repeat;
}
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-media { z-index: 0; }
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: saturate(1.02) contrast(1.06) brightness(1.05);
}
.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5,5,6,0.28) 0%, rgba(5,5,6,0.22) 40%, rgba(5,5,6,0.55) 100%);
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero-copy h1,
.hero-copy .lede,
.hero-copy .eyebrow {
  text-shadow: 0 2px 18px rgba(0,0,0,0.85), 0 0 28px rgba(0,0,0,0.55);
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}
.hero-logo {
  width: min(420px, 86%);
  height: auto;
  margin: 0 auto 28px;
  filter: drop-shadow(0 4px 22px rgba(0,0,0,0.85)) drop-shadow(0 0 18px rgba(0,0,0,0.55));
}
.hero h1 {
  font-family: var(--font);
  font-size: clamp(26px, 4.4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  max-width: min(16ch, 100%);
  margin: 0 auto 14px;
  text-transform: none;
  overflow-wrap: break-word;
  color: #f2f3f5;
}
.hero p.lede {
  color: #9a9aa3;
  font-size: 17px;
  font-weight: 400;
  max-width: 42ch;
  margin: 0 auto 28px;
}
.hero .btn-ghost {
  color: #f2f3f5;
  border-color: rgba(255,255,255,0.16);
}
.hero .btn-ghost:hover { color: var(--blue); border-color: var(--blue); }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.eyebrow {
  font-family: var(--font);
  font-weight: 500;
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

section { padding: 72px 0; }
.section-title {
  font-family: var(--font);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.section-sub { color: var(--muted); font-weight: 400; margin-bottom: 36px; max-width: 52ch; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
}
.step-num { color: var(--blue); font-weight: 800; letter-spacing: 0.16em; font-size: 12px; margin-bottom: 10px; }
.step h3 { font-family: var(--font); font-size: 20px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14.5px; font-weight: 400; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px 24px 28px;
  display: flex; flex-direction: column;
}
.card.hero-card {
  border-color: rgba(61,180,255,0.45);
  box-shadow: 0 0 0 1px rgba(61,180,255,0.12), 0 20px 60px rgba(61,180,255,0.08);
  background: linear-gradient(180deg, rgba(61,180,255,0.08), transparent 40%), var(--card);
  transform: scale(1.03);
}
.badge {
  align-self: flex-start;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 800;
  color: #041018; background: var(--blue); padding: 5px 9px; border-radius: 999px; margin-bottom: 12px;
}
.card h3 { font-family: var(--font); font-size: 28px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 4px; }
.time { font-family: var(--font); color: var(--blue); font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.price { font-size: 15px; font-weight: 400; margin-bottom: 4px; }
.price strong { font-size: 22px; font-family: var(--font); font-weight: 800; letter-spacing: -0.01em; }
.price span { color: var(--muted); font-size: 13px; }
.blurb { color: var(--muted); font-size: 14px; font-weight: 400; margin: 12px 0 16px; }
.card ul { list-style: none; color: var(--soft); font-size: 14px; font-weight: 400; display: grid; gap: 8px; margin-bottom: 18px; flex: 1; }
.card ul li::before { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); margin-right: 10px; }
.not { color: var(--muted); font-size: 12.5px; border-top: 1px solid var(--line); padding-top: 12px; }

.area {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.pill {
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px;
  font-size: 13px; color: var(--soft);
}
.hoa-note {
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  margin-top: 22px;
  max-width: 58ch;
}

.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.about p { color: var(--muted); margin-bottom: 14px; }
.quiet-note { font-size: 14px; color: var(--muted); }
.about-mark { width: min(340px, 100%); margin: 0 auto; background: transparent; }

.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 24px;
}
.faq-item h3 {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.faq-item p { color: var(--muted); font-size: 14.5px; font-weight: 400; }

.book {
  text-align: center;
  background: radial-gradient(700px 280px at 50% 0%, rgba(61,180,255,0.12), transparent 70%);
}
.book .hours {
  font-family: var(--font);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--soft);
  margin: -18px auto 28px;
}
.book .review-ask {
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 400;
  max-width: 46ch;
  margin: 22px auto 0;
}
.book .contact { margin-top: 22px; color: var(--muted); display: grid; gap: 6px; }
.book .contact a { color: var(--text); text-decoration: none; }
.book .contact a:hover { color: var(--blue); }

.book-cta {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

.sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 30;
  display: flex; gap: 10px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(5,5,6,0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
}
.sticky-bar .btn {
  flex: 1;
  padding: 12px 16px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 13px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}

@media (min-width: 861px) {
  body { padding-bottom: 64px; }
  .sticky-bar {
    padding: 8px 16px;
    max-width: 420px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(5,5,6,0.88);
  }
  .sticky-bar .btn { padding: 10px 18px; }
  .book { padding-bottom: 96px; }
}

@media (max-width: 860px) {
  .nav-links > a:not(.btn) { display: none; }
  .nav img { height: 42px; }
  .nav-phone { font-size: 14px; }
  .nav-hours { font-size: 10px; }
  .steps, .cards, .about-grid { grid-template-columns: 1fr; }
  .card.hero-card { transform: none; }
  .hero { padding: 48px 0 72px; min-height: 72vh; }
  .hero h1 {
    font-size: clamp(24px, 7vw, 36px);
    max-width: 100%;
  }
  section { padding: 56px 0; }
  .book { padding-bottom: 88px; }
}
