/* ─── Reset & Custom Properties ───────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:           #09090b;
  --bg-2:         #0d0d10;
  --border:       rgba(255, 255, 255, 0.07);
  --text:         #fafafa;
  --text-muted:   rgba(255, 255, 255, 0.48);
  --accent:       #00cfff;
  --accent-dim:   rgba(0, 207, 255, 0.18);
  --accent-glow:  rgba(0, 207, 255, 0.28);
  --serif:        'Cormorant Garamond', Georgia, serif;
  --sans:         'Inter', -apple-system, system-ui, sans-serif;
  --nav-h:        72px;
  --radius:       3px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Page hidden until intro animation completes */
body > header,
body > main,
body > footer {
  opacity: 0;
  transition: opacity 0.2s ease; /* quick reveal — hero text has its own stagger */
}

body.loaded > header,
body.loaded > main,
body.loaded > footer {
  opacity: 1;
}

/* ─── Hero text — GSAP-controlled, start hidden ───────────────── */
#hero h1,
#hero .hero-sub,
#hero .btn-hero {
  opacity: 0;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Intro Overlay (GSAP-controlled — no CSS transitions) ───── */
#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-image: url('bmw-headlights.jpg');
  background-size: cover;
  background-position: center center;
  filter: brightness(0.04);
  will-change: opacity, filter;
}

.headlight-left,
.headlight-right {
  position: absolute;
  width: 180px;
  height: 120px;
  top: calc(60% - 60px);
  border-radius: 50%;
  mix-blend-mode: screen;
  opacity: 0;
  will-change: transform, opacity;
}

.headlight-left {
  left: calc(24% - 90px);
  background: radial-gradient(ellipse at center, #ffb300 0%, rgba(255, 179, 0, 0.5) 35%, transparent 70%);
}

.headlight-right {
  left: calc(76% - 90px);
  background: radial-gradient(ellipse at center, #ffb300 0%, rgba(255, 179, 0, 0.5) 35%, transparent 70%);
}

.amber-ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 20% 15% at 24% 62%, rgba(255, 179, 0, 0.6) 0%, transparent 100%),
    radial-gradient(ellipse 20% 15% at 76% 62%, rgba(255, 179, 0, 0.6) 0%, transparent 100%);
  mix-blend-mode: screen;
  opacity: 0;
  will-change: opacity;
}

/* Skip intro button — mobile only */
#intro-skip {
  display: none;
  position: absolute;
  bottom: 28px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  cursor: pointer;
  padding: 8px 4px;
  z-index: 1;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
  #intro-skip { display: block; }

  #intro-overlay {
    background-position: center 65%;
  }

  .headlight-left {
    left: calc(22% - 90px);
    top: calc(58% - 60px);
  }

  .headlight-right {
    left: calc(78% - 90px);
    top: calc(58% - 60px);
  }

  .amber-ambient {
    background:
      radial-gradient(ellipse 20% 15% at 22% 58%, rgba(255, 179, 0, 0.6) 0%, transparent 100%),
      radial-gradient(ellipse 20% 15% at 78% 58%, rgba(255, 179, 0, 0.6) 0%, transparent 100%);
  }
}

/* ─── Layout ──────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container { padding: 0 48px; }
}

/* ─── Navigation ──────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

#navbar.scrolled {
  background: rgba(9, 9, 11, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  width: 100%;
}

.wordmark {
  font-family: var(--serif);
  font-size: 1.3125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
  flex-shrink: 0;
}

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links {
  display: flex;
  gap: 18px;
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

.btn-cta {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 20px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 767px) {
  .nav-right    { display: none; }
  .nav-toggle   { display: flex; }

  #navbar.nav-open .nav-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    padding: 28px 24px 32px;
    background: rgba(9, 9, 11, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }

  #navbar.nav-open .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  #navbar.nav-open .nav-links li {
    border-bottom: 1px solid var(--border);
  }

  #navbar.nav-open .nav-links a {
    display: block;
    padding: 18px 0;
    font-size: 1rem;
    letter-spacing: 0.06em;
  }

  #navbar.nav-open .btn-cta {
    margin-top: 24px;
    height: 48px;
    padding: 0 28px;
    font-size: 0.9rem;
  }

  /* Hamburger → X */
  #navbar.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  #navbar.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  #navbar.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 36px;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background: #33ddff;
  box-shadow: 0 0 48px var(--accent-glow), 0 0 100px var(--accent-dim);
  transform: translateY(-1px);
}

.btn-primary.btn-full {
  width: 100%;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  height: 54px;
  padding: 0 36px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: border-color 0.3s ease, color 0.2s ease, box-shadow 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px var(--accent-dim);
}

/* ─── Reveal Animations ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Section Shared ──────────────────────────────────────────── */
.section-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-header {
  margin-bottom: 64px;
}

.section-header h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--text);
}

.section-header h2 em {
  font-style: italic;
  color: var(--accent);
}

.section-sub {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ─── Hero ────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: var(--nav-h);
  overflow: hidden;
  background-image: url('bmw-headlights.jpg');
  background-size: cover;
  background-position: center center;
  /* No overlay needed — image has a pure black background */
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 24px;
  /* Text sits in upper quarter — clear space between CTA and headlights */
  margin-top: clamp(16px, calc(22vh - var(--nav-h)), 260px);
  padding-bottom: 40px;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-content { padding: 0 48px 40px; }
}

.eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

#hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5.5vw, 4.5rem); /* 4.5rem = 72px */
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #ffffff;
  margin-bottom: 0;
  white-space: nowrap;
}

@media (max-width: 560px) {
  #hero h1 { white-space: normal; }
}

.hero-sub {
  font-size: 16px;
  color: #aaaaaa;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Hero CTA — white outline pill, fills white on hover */
.btn-hero {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  border: 1.5px solid #ffffff;
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-hero:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
}

.scroll-hint span {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  transform-origin: top;
  animation: line-drop 2s ease-in-out infinite;
}

@keyframes line-drop {
  0%   { transform: scaleY(0); opacity: 1; }
  55%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ─── Detailing Section ───────────────────────────────────────── */
#detailing {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  #detailing { padding: 160px 0; }
}

/* Package grid — 3 columns share a 1px gap border */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

@media (max-width: 960px) {
  .pkg-grid { grid-template-columns: 1fr; }
}

.pkg-card {
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.pkg-card:hover {
  transform: scale(1.03);
  border-color: var(--accent);
}

.tier-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.pkg-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  background: var(--accent);
  color: #000;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 14px;
}

.pkg-name {
  font-family: var(--serif);
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.1;
}

.pkg-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.pkg-includes {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 32px;
}

.pkg-includes li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.pkg-includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-muted);
  font-size: 0.75rem;
  top: 1px;
}

.pkg-pricing {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-bottom: 28px;
}

.pkg-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  font-size: 0.875rem;
}

.vehicle-type { color: var(--text-muted); }

.price-tbd {
  color: rgba(255, 255, 255, 0.25);
  font-style: italic;
  font-size: 0.8125rem;
}

/* Package buttons */
.btn-pkg {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn-pkg:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn-pkg--solid {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  font-weight: 600;
}

.btn-pkg--solid:hover {
  background: #33e8ff;
  border-color: #33e8ff;
  color: #000;
}

/* À la carte block */
.alacarte-block { margin-top: 0; }

.alacarte-heading {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 28px;
}

.alacarte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 767px) {
  .alacarte-grid { grid-template-columns: 1fr; }
}

.alacarte-card {
  background: var(--bg-2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.alacarte-card:hover {
  transform: scale(1.03);
  border-color: var(--accent);
}

.alacarte-card h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
}

.alacarte-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.alacarte-pricing {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.25);
  font-style: italic;
}

.alacarte-link {
  font-size: 0.8125rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-top: 4px;
  transition: opacity 0.2s ease;
}

.alacarte-link:hover { opacity: 0.7; }

/* ─── Detailing Location Note ──────────────────────────────────── */
.detailing-location-note {
  font-size: 13px;
  font-style: italic;
  color: #666;
  margin-top: 10px;
  margin-bottom: 0;
}

/* Package pricing — real prices */
.pkg-starting {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  opacity: 0.6;
}

.pkg-price {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}

/* ─── Add-ons Section ──────────────────────────────────────────── */
.addons-block {
  margin-top: 64px;
}

.addons-heading {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 24px;
}

.addons-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.addon-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1;
}

.addon-pill em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.35);
}

/* ─── Add-ons Callout ──────────────────────────────────────────── */
.addons-callout {
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid #00cfff;
  border-radius: 8px;
}

.addons-callout-q {
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 5px;
}

.addons-callout-a {
  font-size: 12px;
  font-style: italic;
  color: #888;
  line-height: 1.6;
}

/* ─── Pricing Policy Note ──────────────────────────────────────── */
.pricing-policy {
  margin-top: 56px;
  font-size: 0.8125rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  line-height: 1.7;
}

/* ─── Mechanic Services Section ───────────────────────────────── */
#mechanic {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  #mechanic { padding: 160px 0; }
}

.mechanic-sub {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-top: 10px;
}

.mechanic-group-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  margin-top: 0;
}

.mechanic-group-label + .mechanic-grid {
  margin-bottom: 0;
}

.mechanic-grid + .mechanic-group-label {
  margin-top: 64px;
}

/* 4-column grid for fixed-price, 2-column for quote */
.mechanic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mechanic-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 1024px) {
  .mechanic-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .mechanic-grid,
  .mechanic-grid--two { grid-template-columns: 1fr; }
}

.mechanic-card {
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.mechanic-card:hover {
  transform: scale(1.03);
  border-color: var(--accent);
}

.mechanic-card h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
}

.mechanic-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.mechanic-pricing {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.25);
  font-style: italic;
}

.badge-fixed {
  display: inline-block;
  align-self: flex-start;
  padding: 3px 10px;
  background: var(--accent);
  color: #000;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
}

.badge-quote {
  display: inline-block;
  align-self: flex-start;
  padding: 3px 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
}

.btn-mechanic {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: auto;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn-mechanic:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ─── Services ────────────────────────────────────────────────── */
#services {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  #services { padding: 160px 0; }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: var(--bg);
  padding: 48px 40px;
  position: relative;
  transition: background 0.3s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(0, 212, 255, 0.25);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover {
  background: var(--bg-2);
}

.service-card:hover::after {
  opacity: 1;
}

.service-number {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.service-card:hover .service-number {
  color: rgba(0, 212, 255, 0.2);
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--accent);
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.service-card--accent {
  background: rgba(0, 212, 255, 0.025);
}

.service-badge {
  display: inline-block;
  margin-top: 18px;
  padding: 5px 14px;
  border: 1px solid rgba(0, 212, 255, 0.35);
  border-radius: 999px;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

@media (max-width: 639px) {
  .service-card { padding: 36px 28px; }
}

/* ─── About ───────────────────────────────────────────────────── */
#about {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  #about { padding: 160px 0; }
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

@media (min-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr 1fr;
    gap: 100px;
  }
}

.about-text h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 28px;
  margin-top: 16px;
}

.about-text h2 em {
  font-style: italic;
  color: var(--accent);
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 20px;
}

.about-text .btn-secondary { margin-top: 12px; }

.about-stats {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
}

.stat-number {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
}

.stat-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.about-visual {
  order: -1;
}

@media (min-width: 900px) {
  .about-visual { order: 0; }
}

.about-image {
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.025);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
}

/* ─── Submit Button ───────────────────────────────────────────── */
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 36px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn-submit:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn-submit.btn-full {
  width: 100%;
}

/* ─── Contact ─────────────────────────────────────────────────── */
#contact {
  padding: 120px 0;
}

@media (min-width: 768px) {
  #contact { padding: 160px 0; }
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr 320px;
    gap: 80px;
    align-items: start;
  }
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.9375rem;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2371717a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.form-group select option {
  background: #09090b;
  color: var(--text);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  padding: 16px 20px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: var(--radius);
  color: var(--accent);
  font-size: 0.9375rem;
  text-align: center;
}

.form-success.visible { display: block; }

/* Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 4px;
}

.contact-method-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-method-value {
  font-family: var(--serif);
  font-size: 1.625rem;
  color: var(--text);
  line-height: 1.2;
  transition: color 0.2s ease;
}

.contact-method-value:hover { color: var(--accent); }

.response-note {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── Footer ──────────────────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  padding-top: 80px;
  padding-bottom: 64px;
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 60px;
    padding-bottom: 48px;
  }
}

.footer-wordmark {
  font-family: var(--serif);
  font-size: 1.625rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--text-muted);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.social-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-col-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-size: 0.9375rem;
  color: var(--text);
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--accent); }

.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-phone {
  font-size: 1.125rem;
  color: var(--text);
  transition: color 0.2s ease;
}

.footer-phone:hover { color: var(--accent); }

.footer-email {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-email:hover { color: var(--accent); }

.footer-location {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 4px;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  padding-top: 24px;
  padding-bottom: 40px;
  text-align: center;
}

.copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
}

/* ═══ Mobile Responsiveness ════════════════════════════════════════ */
@media (max-width: 767px) {

  /* Nav — tighter side padding on small screens */
  .nav-inner { padding: 0 20px; }

  /* Sections — reduce vertical padding from 120px to 72px */
  #detailing,
  #mechanic,
  #about,
  #contact { padding: 72px 0; }

  /* Section headers — less bottom margin */
  .section-header { margin-bottom: 40px; }

  /* Package cards — less inner padding */
  .pkg-card { padding: 32px 24px; }
  .pkg-grid { gap: 16px; margin-bottom: 48px; }

  /* À la carte */
  .alacarte-block { margin-top: 40px; }
  .alacarte-grid { gap: 16px; }

  /* Mechanic section spacing */
  .mechanic-grid + .mechanic-group-label { margin-top: 40px; }
  .mechanic-grid { gap: 16px; }

  /* Add-ons & pricing note */
  .addons-block { margin-top: 48px; }
  .addons-heading { font-size: 1.375rem; }
  .pricing-policy { margin-top: 36px; }

  /* About stats — wrap if needed on very small screens */
  .about-stats { flex-wrap: wrap; }

  /* Sidebar phone number — scale down for mobile */
  .contact-method-value { font-size: 1.25rem; }

  /* Hide decorative scroll hint on mobile */
  /* Hero — tighten top margin */
  .hero-content {
    margin-top: clamp(16px, 12vh, 100px);
  }
}

/* Mobile hero — use portrait image */
@media (max-width: 768px) {
  #hero {
    background-image: url('bmw-headlights-mobile.jpg');
    background-position: center center;
    background-size: cover;
  }
}

/* Tablet (768px–1024px) adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
  .pkg-card { padding: 36px 28px; }
  .mechanic-grid { gap: 20px; }
}
