/* ═══════════════════════════════════════════════════════════════════════
   APEX DETAIL — MIRROR CHROME — style.css
   CSS custom properties are injected by the inline <script> in <head>.
   This file references only var(--xxx) — never hardcoded brand colors.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── GOOGLE FONTS ──────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700;900&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── RESET ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ── CUSTOM CURSOR (desktop only) ─────────────────────────────────────── */
html.has-cursor * { cursor: none !important; }
#cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 99999;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.15s, height 0.15s, opacity 0.15s;
}
#cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 99998;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0.45;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, border-radius 0.25s ease,
              opacity 0.25s ease, background 0.25s ease;
  display: flex; align-items: center; justify-content: center;
}
#cursor-ring .cursor-label {
  font-family: 'Outfit', sans-serif;
  font-size: 8px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: white; opacity: 0;
  transition: opacity 0.15s;
  white-space: nowrap;
  pointer-events: none;
}
html.cursor-view #cursor-ring  { width: 72px; height: 72px; background: rgba(232,166,32,0.12); opacity: 1; }
html.cursor-view #cursor-dot   { opacity: 0; }
html.cursor-view .cursor-label { opacity: 1; }
html.cursor-drag #cursor-ring  { width: 100px; height: 36px; border-radius: 9999px; opacity: 1; }
html.cursor-drag #cursor-dot   { opacity: 0; }
html.cursor-drag .cursor-label { opacity: 1; }
html.cursor-cta  #cursor-ring  { width: 48px; height: 48px; background: var(--accent); opacity: 1; border-color: var(--accent); }
html.cursor-cta  #cursor-dot   { width: 4px; height: 4px; }
html.cursor-cta  .cursor-label { opacity: 1; color: #080808; }

/* ── URGENCY BANNER ────────────────────────────────────────────────────── */
#urgency-banner {
  background: var(--accent-dim);
  border-bottom: 1px solid rgba(232,160,32,0.25);
  padding: 10px 24px;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 400;
  color: var(--text);
  letter-spacing: 0.02em;
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
}
#urgency-banner span { color: var(--accent); font-weight: 500; }

/* ── NAV ───────────────────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: 72px; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 56px);
  transition: background 0.4s ease, border-color 0.4s ease;
}
#nav.urgency-offset { top: 40px; }
#nav.scrolled {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(232,160,32,0.15);
}
.nav-logo {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.4s ease;
  white-space: nowrap;
}
#nav.scrolled .nav-logo { color: var(--accent); }
.nav-links {
  display: flex; gap: clamp(20px, 3vw, 44px);
  list-style: none;
}
.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(232,230,224,0.65);
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 100%; 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); }

/* Nav Book Button */
.nav-cta {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 24px;
  background: var(--accent);
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #080808;
  border-radius: 0;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.nav-cta::after {
  content: ''; position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.7s ease;
}
.nav-cta:hover::after { left: 200%; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 6px; width: 48px; height: 48px; cursor: pointer;
  padding: 10px;
}
.nav-hamburger span {
  display: block; height: 1px;
  background: var(--text);
  transition: transform 0.35s ease, opacity 0.35s ease, width 0.35s ease;
  transform-origin: center;
}
.nav-hamburger span:nth-child(1) { width: 100%; }
.nav-hamburger span:nth-child(2) { width: 70%; }
.nav-hamburger span:nth-child(3) { width: 85%; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 100%; }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 100%; }

/* Mobile Nav Overlay */
#nav-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: #080808;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(24px,8vw,64px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
#nav-overlay.open { opacity: 1; pointer-events: all; }
.nav-overlay-links {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
}
.nav-overlay-links li {
  display: flex; align-items: baseline; gap: 24px;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
#nav-overlay.open .nav-overlay-links li { opacity: 1; transform: translateY(0); }
.nav-overlay-num {
  font-family: 'Outfit', sans-serif;
  font-size: 10px; font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.1em;
  min-width: 32px;
}
.nav-overlay-links a {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 14vw; font-weight: 700;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: var(--text);
  line-height: 1;
  transition: color 0.2s;
}
.nav-overlay-links a:hover { color: var(--accent); }
.nav-overlay-phone {
  margin-top: 40px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 10vw; font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.nav-overlay-close {
  position: absolute; top: 20px; right: 20px;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--muted);
  cursor: pointer;
}

/* ── HERO ──────────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100svh; min-height: 600px;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 40%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg,
    rgba(8,8,8,0.92) 0%,
    rgba(8,8,8,0.75) 45%,
    rgba(8,8,8,0.40) 100%
  );
  z-index: 2;
}
#particles-canvas {
  position: absolute; inset: 0;
  z-index: 3; pointer-events: none;
}
.hero-grain {
  position: absolute; inset: 0; z-index: 4;
  pointer-events: none; mix-blend-mode: overlay;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}
.hero-content {
  position: relative; z-index: 10;
  padding: 0 7% 8% 7%;
  max-width: 840px;
}
.hero-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  margin-bottom: 24px;
  /* AnimatedGradientText */
  background: linear-gradient(90deg, var(--accent) 0%, var(--text) 50%, var(--accent) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-slide 3s linear infinite;
}
.hero-name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(72px, 18vw, 240px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--text);
  overflow: hidden;
}
.hero-name .char { display: inline-block; }
.hero-rule {
  width: 100px; height: 1px;
  background: var(--accent);
  margin: 20px 0;
  transform: scaleX(0); transform-origin: left;
}
.hero-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(14px, 2.2vw, 22px);
  font-weight: 300;
  color: rgba(232,230,224,0.72);
  max-width: 480px;
  line-height: 1.75;
  opacity: 0; transform: translateY(16px);
}
.hero-ctas {
  display: flex; gap: 16px; margin-top: 40px;
  align-items: center;
  opacity: 0; transform: translateY(20px);
}
.hero-phone-line {
  margin-top: 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 300;
  color: var(--muted);
  opacity: 0; transform: translateY(20px);
}
.hero-phone-line a {
  color: var(--accent); font-weight: 500;
  text-decoration: none;
}

/* Shimmer Button */
.btn-shimmer {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  height: 54px; padding: 0 32px;
  background: var(--accent);
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #080808;
  border-radius: 0;
  border: none; cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
  text-decoration: none;
}
.btn-shimmer::after {
  content: ''; position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.22), transparent);
  transition: left 0.7s ease;
}
.btn-shimmer:hover::after { left: 200%; }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  height: 54px; padding: 0 32px;
  background: transparent;
  border: 1px solid rgba(232,230,224,0.35);
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text);
  border-radius: 0; cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.25s, color 0.25s;
  text-decoration: none;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* Hero Trust Strip */
.hero-trust {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 11;
  background: rgba(8,8,8,0.6);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 16px 7%;
  gap: 16px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 400;
  color: var(--text);
  opacity: 0; transform: translateY(12px);
}
.trust-item::before {
  content: '✓';
  color: var(--accent);
  font-size: 14px; font-weight: 600;
  flex-shrink: 0;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%);
  z-index: 12; display: flex; flex-direction: column; align-items: center; gap: 8px;
  pointer-events: none;
}
.scroll-line {
  width: 1px; height: 48px;
  background: var(--accent);
  animation: scroll-line-pulse 2s ease-in-out infinite;
}
.scroll-label {
  font-family: 'Outfit', sans-serif;
  font-size: 8px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted);
}

/* ── MARQUEE BAR ───────────────────────────────────────────────────────── */
#marquee-bar {
  background: var(--accent);
  height: 52px;
  overflow: hidden;
  display: flex; align-items: center;
  position: relative; z-index: 20;
}
.marquee-track {
  display: flex; align-items: center;
  white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
}
#marquee-bar:hover .marquee-track { animation-play-state: paused; }
.marquee-track-inner {
  display: flex; align-items: center; gap: 0;
  padding-right: 0;
}
.marquee-item {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #080808;
  padding: 0 28px;
  white-space: nowrap;
}
.marquee-sep {
  color: rgba(8,8,8,0.5);
  font-size: 10px;
  flex-shrink: 0;
}

/* ── STATS SECTION ─────────────────────────────────────────────────────── */
#stats {
  position: relative;
  background: #080808;
  padding: clamp(80px, 10vw, 140px) 0;
  overflow: hidden;
}
.stats-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60vw 60vw at 50% 50%, rgba(232,160,32,0.04) 0%, transparent 70%);
}
.stats-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 12vw; font-weight: 900;
  text-transform: uppercase;
  color: var(--text); opacity: 0.025;
  white-space: nowrap; pointer-events: none;
  letter-spacing: -0.03em; line-height: 1;
}
/* Meteors */
.meteor {
  position: absolute;
  top: -5%;
  width: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0.7), transparent);
  border-radius: 9999px;
  pointer-events: none;
  animation: meteor-fall 1.5s ease-in forwards;
  opacity: 0;
}
.stats-row {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 1400px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(232,230,224,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(72px, 10vw, 140px);
  font-weight: 900; line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
  display: flex; align-items: baseline;
}
.stat-suffix {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 0.5em; font-weight: 900;
  color: var(--accent);
  margin-left: 4px;
}
.stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 300;
  color: var(--muted);
  margin-top: 16px;
  letter-spacing: 0.04em;
}
.stats-rule {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,160,32,0.3), transparent);
  margin-top: 60px;
}

/* ── SECTION COMMON ────────────────────────────────────────────────────── */
.section-container {
  max-width: 1400px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.section-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
  /* AnimatedGradientText — color fallback if clip unsupported */
  color: var(--accent);
  background: linear-gradient(90deg, var(--accent) 0%, var(--text) 50%, var(--accent) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-slide 3s linear infinite;
}
.section-heading {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
  text-transform: uppercase;
}
/* Word-split wrapper — overflow clips the slide-up animation */
.section-heading .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
/* Inner span — GSAP manages opacity/transform; no hidden state in CSS */
.section-heading .word span { display: inline-block; }
.section-intro {
  font-family: 'Outfit', sans-serif;
  font-size: 17px; font-weight: 300;
  color: var(--muted);
  margin-top: 20px;
  line-height: 1.7;
}

/* ── SERVICES ──────────────────────────────────────────────────────────── */
#services {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--bg);
}
.services-header { margin-bottom: 52px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  position: relative;
  height: 380px;
  overflow: hidden;
  border-radius: 0;
  cursor: pointer;
  border-left: 0px solid var(--accent);
  transition: border-left-width 0.3s ease;
}
.service-card:hover { border-left-width: 3px; }
.service-card-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.12);
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img { transform: scale(1.06); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(8,8,8,0.95) 0%,
    rgba(8,8,8,0.5) 50%,
    rgba(8,8,8,0.15) 100%
  );
  z-index: 2;
}
.service-card-badge {
  position: absolute; top: 20px; left: 20px; z-index: 3;
  font-family: 'Outfit', sans-serif;
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 10px;
  background: transparent;
  border-radius: 0;
}
.service-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 24px 28px;
  z-index: 3;
}
.service-card-name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 28px; font-weight: 700;
  letter-spacing: 0.01em; text-transform: uppercase;
  color: var(--text); line-height: 1.1;
  margin-bottom: 8px;
}
.service-card-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}
.service-card-more {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 500;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
  position: relative;
}
.service-card-more::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover .service-card-more::after { transform: scaleX(1); }
/* Wipe reveal overlay */
.service-card::after {
  content: ''; position: absolute; inset: 0; z-index: 5;
  background: var(--bg);
  transform: scaleX(1); transform-origin: right;
}
.service-card.revealed::after { transform: scaleX(0); transition: transform 0.8s cubic-bezier(0.77,0,0.175,1); }

/* ── PROCESS ──────────────────────────────────────────────────────────── */
#process {
  padding: clamp(80px, 10vw, 130px) 0;
  background: #080808;
  position: relative; overflow: hidden;
}
.process-scanlines {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: repeating-linear-gradient(0deg,
    rgba(232,230,224,0.015) 0px, transparent 1px, transparent 3px
  );
}
.process-photo-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.06; filter: blur(4px);
  pointer-events: none;
}
.process-header { position: relative; z-index: 2; margin-bottom: 60px; }
.process-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.process-connector {
  position: absolute; top: 32px; left: 12.5%; right: 12.5%;
  height: 1px; z-index: 0;
  border-top: 1px dashed rgba(232,160,32,0.3);
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.2s ease;
}
.process-connector.revealed { transform: scaleX(1); }
.process-step {
  position: relative;
  padding: 0 32px 0 0;
  opacity: 0; transform: translateX(-32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.process-step.visible { opacity: 1; transform: translateX(0); }
.process-step-num {
  position: absolute; top: -20px; right: 0;
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 7vw; font-weight: 900;
  color: var(--accent); opacity: 0.12;
  line-height: 1; pointer-events: none;
  letter-spacing: -0.03em;
}
.process-step-label {
  font-family: 'Outfit', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.process-step-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 26px; font-weight: 700;
  text-transform: uppercase;
  color: var(--text); margin-bottom: 12px;
  line-height: 1.1;
}
.process-step-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 300;
  color: var(--muted); line-height: 1.8;
  margin-bottom: 10px;
}
.process-step-dur {
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 400;
  font-style: italic; color: var(--accent);
}

/* ── BEFORE / AFTER ────────────────────────────────────────────────────── */
#before-after {
  background: #080808;
  padding: clamp(60px, 8vw, 100px) 0 clamp(60px, 8vw, 100px);
  position: relative;
  clip-path: polygon(0 48px, 100% 0, 100% 100%, 0 100%);
  margin-top: -48px;
  padding-top: calc(48px + clamp(60px, 8vw, 100px));
}
.ba-header { text-align: center; margin-bottom: 48px; }
.ba-slider-wrap {
  position: relative;
  width: 100%; height: 65vh;
  min-height: 400px;
  overflow: hidden; cursor: ew-resize;
  user-select: none; -webkit-user-select: none;
}
.ba-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.ba-after { z-index: 1; }
.ba-before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}
.ba-before-label, .ba-after-label {
  position: absolute; top: 20px; z-index: 5;
  font-family: 'Outfit', sans-serif;
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: white;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  pointer-events: none;
}
.ba-before-label { left: 20px; }
.ba-after-label  { right: 20px; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; z-index: 4;
  width: 2px; background: white;
  transform: translateX(-50%); left: 40%;
  cursor: ew-resize;
}
.ba-handle-circle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: white; font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  white-space: nowrap;
  letter-spacing: -2px;
}
.ba-info {
  margin-top: 28px;
  padding: 0 clamp(20px, 4vw, 56px);
}
.ba-location {
  font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 300;
  color: var(--muted); margin-bottom: 8px;
}
.ba-description {
  font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 300;
  color: var(--muted); margin-bottom: 16px;
  line-height: 1.7;
}
.ba-cta-link {
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
}
.ba-cta-link:hover { border-color: var(--accent); }

/* ── GALLERY ───────────────────────────────────────────────────────────── */
#gallery {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--bg);
}
.gallery-header { margin-bottom: 52px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  /* Asymmetric placement via grid-row/col on children */
}
.gallery-item {
  position: relative; overflow: hidden;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-row: 1 / span 2; }
.gallery-item:nth-child(6) { grid-column: 1 / span 2; }
.gallery-item-img {
  width: 100%; height: 100%; min-height: 380px;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.gallery-item:nth-child(1) .gallery-item-img { min-height: 764px; }
.gallery-item:nth-child(6) .gallery-item-img { min-height: 380px; }
.gallery-item:hover .gallery-item-img { transform: scale(1.04); }
.gallery-item-caption {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0.75);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: 24px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.gallery-item:hover .gallery-item-caption { opacity: 1; transform: translateY(0); }
.gallery-caption-text {
  font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 400;
  color: var(--text); text-align: center;
}
.gallery-caption-vehicle {
  font-family: 'Outfit', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-top: 6px;
}
/* Gallery wipe reveal */
.gallery-item::after {
  content: ''; position: absolute; inset: 0; z-index: 3;
  background: var(--bg);
  transform: scaleX(1); transform-origin: right;
}
.gallery-item.revealed::after {
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(0.77,0,0.175,1);
}
.gallery-follow {
  text-align: center; margin-top: 40px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 300; color: var(--muted);
}
.gallery-follow a { color: var(--accent); }

/* ── PRICING ───────────────────────────────────────────────────────────── */
#pricing {
  padding: clamp(80px, 10vw, 130px) 0;
  background: #F0EDE8;
  color: #1A1A1A;
}
#pricing .section-eyebrow {
  background: linear-gradient(90deg, var(--accent) 0%, #333 50%, var(--accent) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-slide 3s linear infinite;
}
#pricing .section-heading { color: #1A1A1A; }
#pricing .section-intro { color: rgba(26,26,26,0.55); }

.pricing-header { margin-bottom: 40px; }
.pricing-eyebrow-wrap {
  display: flex; align-items: center; gap: 16px; margin-bottom: 12px;
}
.pricing-eyebrow-line {
  width: 32px; height: 2px; background: var(--accent);
}

/* Vehicle Tabs */
.vehicle-tabs {
  display: flex; gap: 0;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(26,26,26,0.15);
}
.vehicle-tab {
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0 28px;
  height: 48px;
  border: 1px solid rgba(26,26,26,0.2);
  border-bottom: none;
  background: transparent;
  color: rgba(26,26,26,0.65);
  cursor: pointer;
  border-radius: 0;
  margin-right: -1px;
  position: relative; z-index: 1;
  transition: background 0.2s, color 0.2s;
}
.vehicle-tab.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  z-index: 2;
}
.vehicle-tab:hover:not(.active) {
  background: rgba(26,26,26,0.06);
  color: #1A1A1A;
}

/* Package Cards */
.packages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.package-card {
  position: relative; overflow: hidden;
  padding: 40px 36px 36px;
  background: #ffffff;
  border: 1px solid rgba(26,26,26,0.1);
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
}
.package-card:hover:not(.recommended) {
  background: #080808;
  color: var(--text);
  border-color: #080808;
}
.package-card:hover:not(.recommended) .pkg-name { color: var(--accent); }
.package-card:hover:not(.recommended) .pkg-price { color: var(--text); }
.package-card:hover:not(.recommended) .pkg-period { color: var(--muted); }
.package-card:hover:not(.recommended) .pkg-feature { color: rgba(232,230,224,0.7); }
.package-card:hover:not(.recommended) .pkg-check { color: var(--accent); }
.package-card.recommended {
  background: #1A1A1A;
  color: white;
  border-color: #1A1A1A;
}
.pkg-badge {
  display: inline-block; margin-bottom: 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--accent);
  color: white; padding: 4px 12px;
  border-radius: 0;
}
.pkg-name {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.pkg-price-row {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 6px;
}
.pkg-price {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 44px; font-weight: 700;
  color: #1A1A1A; line-height: 1;
  transition: color 0.4s;
}
.recommended .pkg-price { color: white; }
.pkg-period {
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 300;
  color: rgba(26,26,26,0.5);
  transition: color 0.4s;
}
.recommended .pkg-period { color: rgba(255,255,255,0.5); }
.pkg-divider {
  height: 1px; background: rgba(26,26,26,0.12);
  margin: 24px 0;
  transition: background 0.4s;
}
.recommended .pkg-divider { background: rgba(255,255,255,0.12); }
.package-card:hover:not(.recommended) .pkg-divider { background: rgba(232,230,224,0.12); }
.pkg-features { list-style: none; margin-bottom: 32px; }
.pkg-feature {
  font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 300;
  color: rgba(26,26,26,0.75);
  padding: 7px 0;
  display: flex; align-items: flex-start; gap: 10px;
  border-bottom: 1px solid rgba(26,26,26,0.06);
  transition: color 0.4s;
}
.recommended .pkg-feature { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.06); }
.pkg-check {
  color: var(--accent); font-size: 14px;
  flex-shrink: 0; margin-top: 1px;
}
.pkg-cta { width: 100%; }
.pkg-cta.btn-shimmer { color: white; }
.recommended .pkg-cta.btn-shimmer {
  background: white; color: #080808;
}

/* Border Beam on recommended card — CSS glow pulse, no content obstruction */
.border-beam-el { display: none; } /* element kept in DOM but unused */

.package-card.recommended {
  outline: 1px solid transparent;
  animation: border-beam-pulse 2.5s ease-in-out infinite;
}
@keyframes border-beam-pulse {
  0%   { outline-color: rgba(232,160,32,0.35);
         box-shadow: 0 0 0 1px rgba(232,160,32,0.15), 0 0 24px rgba(232,160,32,0.08); }
  50%  { outline-color: rgba(232,160,32,1);
         box-shadow: 0 0 0 1px rgba(232,160,32,0.6), 0 0 40px rgba(232,160,32,0.25); }
  100% { outline-color: rgba(232,160,32,0.35);
         box-shadow: 0 0 0 1px rgba(232,160,32,0.15), 0 0 24px rgba(232,160,32,0.08); }
}

.pricing-note {
  text-align: center; margin-top: 36px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 300;
  color: rgba(26,26,26,0.45);
}

/* ── TESTIMONIALS ─────────────────────────────────────────────────────── */
#testimonials {
  padding: clamp(80px, 10vw, 130px) 0;
  background: #080808;
}
.testimonials-heading {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700; text-transform: uppercase;
  color: var(--text); line-height: 1.1;
  margin-bottom: 64px; max-width: 600px;
}
.review-block {
  position: relative;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.review-block:first-of-type { border-top: 1px solid var(--border); }
.review-quote-mark {
  position: absolute; top: 32px; left: -8px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 80px; font-weight: 900; line-height: 1;
  color: rgba(232,160,32,0.18);
  pointer-events: none; z-index: 0;
}
.review-text {
  font-family: 'Outfit', sans-serif;
  font-size: 22px; font-weight: 300;
  font-style: italic; line-height: 1.55;
  color: rgba(232,230,224,0.82);
  position: relative; z-index: 1;
  padding-left: 24px;
  max-width: 80%;
}
.review-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 24px; padding-left: 24px;
}
.review-author {
  font-family: 'Outfit', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
}
.review-stars {
  font-size: 14px; color: var(--accent);
  letter-spacing: 2px;
}
.review-source {
  font-family: 'Outfit', sans-serif;
  font-size: 10px; font-weight: 300;
  color: rgba(90,90,82,0.6);
  margin-left: auto; padding-left: 24px;
}
.review-block:nth-child(even) .review-text { margin-left: auto; padding-right: 24px; padding-left: 0; }
.review-block:nth-child(even) .review-meta { padding-right: 24px; padding-left: 24px; }

.reviews-rating {
  margin-top: 56px; text-align: center;
  display: flex; align-items: baseline; justify-content: center; gap: 16px;
}
.reviews-rating-value {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 32px; font-weight: 700;
  color: var(--accent);
}
.reviews-rating-text {
  font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 300;
  color: var(--muted);
}

/* ── ABOUT ─────────────────────────────────────────────────────────────── */
#about {
  padding: clamp(80px, 10vw, 130px) 0;
  background: #080808;
  overflow: hidden;
}
.about-inner {
  display: grid; grid-template-columns: 42% 58%;
  min-height: 640px;
}
.about-content {
  padding: clamp(40px, 5vw, 80px) clamp(20px, 4vw, 56px) clamp(40px, 5vw, 80px);
  display: flex; flex-direction: column; justify-content: center;
}
.about-body {
  font-family: 'Outfit', sans-serif;
  font-size: 16px; font-weight: 300;
  color: var(--muted); line-height: 1.9;
  margin: 24px 0 32px;
}
.certs-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-bottom: 32px;
}
.cert-item {
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 500;
  color: var(--text);
  padding-left: 12px;
  border-left: 2px solid var(--accent);
}
.owner-quote {
  font-family: 'Outfit', sans-serif;
  font-size: 17px; font-weight: 300;
  font-style: italic;
  color: var(--accent);
  max-width: 400px; line-height: 1.6;
  margin-bottom: 12px;
}
.owner-name {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.about-image-wrap {
  position: relative; overflow: hidden;
}
.about-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.about-image-fade {
  position: absolute; inset: 0;
  background: linear-gradient(to right, #080808 0%, transparent 40%);
  pointer-events: none; z-index: 2;
}
/* About image wipe */
.about-image-wrap::after {
  content: ''; position: absolute; inset: 0; z-index: 3;
  background: var(--bg);
  transform: scaleX(1); transform-origin: right;
}
.about-image-wrap.revealed::after {
  transform: scaleX(0);
  transition: transform 1s cubic-bezier(0.77,0,0.175,1);
}

/* ── CONTACT ───────────────────────────────────────────────────────────── */
#contact {
  padding: clamp(80px, 10vw, 130px) 0;
  background: #0A0A0A;
}
.contact-inner {
  display: grid; grid-template-columns: 60% 40%;
  gap: clamp(40px, 6vw, 80px);
}
.contact-heading {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: 700; text-transform: uppercase;
  color: var(--text); line-height: 1.05;
  margin-bottom: 16px;
}
.contact-subtext {
  font-family: 'Outfit', sans-serif;
  font-size: 17px; font-weight: 300;
  color: var(--muted); line-height: 1.7;
  margin-bottom: 32px; max-width: 440px;
}
.contact-divider {
  height: 1px; background: var(--accent);
  opacity: 0.3; margin: 28px 0;
}
.contact-phone-label {
  font-family: 'Outfit', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.contact-phone {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 32px; font-weight: 700;
  color: var(--accent); letter-spacing: 0.01em;
  display: block; text-decoration: none;
  margin-bottom: 12px;
}
.contact-email {
  font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 300;
  color: var(--muted); text-decoration: none;
  display: block; margin-bottom: 8px;
}
.contact-email:hover { color: var(--text); }
.contact-address {
  font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 300;
  color: var(--muted); margin-bottom: 24px;
}
.hours-table { margin-bottom: 20px; }
.hours-row {
  display: flex; justify-content: space-between;
  font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 300;
  color: var(--muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}
.hours-row.today {
  color: var(--accent); font-weight: 500;
}
.hours-row.closed {
  font-style: italic; opacity: 0.35;
}
.hours-day { flex: 1; }
.hours-time { text-align: right; }
.contact-radius {
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 300; font-style: italic;
  color: var(--muted);
}

/* Contact Form */
.contact-form-label {
  font-family: 'Outfit', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 24px; display: block;
}
.form-group { margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid rgba(232,230,224,0.15);
  color: var(--text); font-family: 'Outfit', sans-serif;
  font-size: 16px; font-weight: 300;
  padding: 14px 0; outline: none;
  transition: border-color 0.25s;
  border-radius: 0; -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(90,90,82,0.45); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
}
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23E8A020' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
  color: var(--text);
}
.form-select option { background: #1A1A1A; color: var(--text); }
.form-textarea { height: 120px; resize: none; }
.form-submit { margin-top: 24px; }
.form-submit .btn-shimmer { width: 100%; height: 56px; justify-content: center; color: white; }
.form-privacy {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 300;
  color: var(--muted); text-align: center;
  margin-top: 12px;
}
.form-success {
  display: none; text-align: center; padding: 40px 0;
}
.form-success-heading {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 48px; font-weight: 700;
  color: var(--accent); text-transform: uppercase;
  margin-bottom: 12px;
}
.form-success-text {
  font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 300;
  color: var(--muted);
}
#contact-form.success-state { display: none; }
#contact-form.success-state + .form-success { display: block; }

/* ── CTA STRIP ─────────────────────────────────────────────────────────── */
#cta-strip {
  position: relative;
  background: var(--accent);
  clip-path: polygon(0 56px, 100% 0, 100% 100%, 0 100%);
  padding: calc(56px + clamp(60px, 8vw, 100px)) clamp(20px, 4vw, 56px) clamp(60px, 8vw, 100px);
  text-align: center;
  overflow: hidden;
}
.cta-strip-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.12; mix-blend-mode: multiply;
  pointer-events: none;
}
.cta-strip-content { position: relative; z-index: 2; }
.cta-heading {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(42px, 6vw, 96px);
  font-weight: 900; text-transform: uppercase;
  color: #080808; letter-spacing: -0.03em;
  line-height: 0.95; margin-bottom: 16px;
}
.cta-subtext {
  font-family: 'Outfit', sans-serif;
  font-size: 17px; font-weight: 300;
  color: rgba(8,8,8,0.8);
  margin-bottom: 36px;
}
.cta-strip .btn-shimmer {
  background: #080808; color: white;
  height: 60px; padding: 0 48px;
}

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
#footer {
  background: var(--dark);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 56px) clamp(40px, 5vw, 60px);
}
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  margin-bottom: 48px;
}
.footer-name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--accent); text-transform: uppercase;
  letter-spacing: 0.02em; margin-bottom: 10px;
}
.footer-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 300;
  color: var(--muted); line-height: 1.6;
  margin-bottom: 12px;
}
.footer-license {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 300;
  color: rgba(232,230,224,0.25);
}
.footer-links-title {
  font-family: 'Outfit', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px;
}
.footer-links {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.footer-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 300;
  color: rgba(232,230,224,0.55);
  transition: color 0.2s;
  text-decoration: none;
}
.footer-links a:hover { color: var(--text); }
.footer-contact-phone {
  font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 400;
  color: var(--accent); margin-bottom: 8px; display: block;
  text-decoration: none;
}
.footer-contact-email, .footer-contact-address {
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 300;
  color: var(--muted); display: block;
  margin-bottom: 6px; text-decoration: none;
}
.footer-social { margin-top: 16px; display: flex; gap: 20px; }
.footer-social a {
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 300;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--accent); }
.footer-bar {
  border-top: 1px solid rgba(232,230,224,0.06);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 300;
  color: rgba(232,230,224,0.25);
}

/* ── MOBILE STICKY CALL BAR ─────────────────────────────────────────────── */
#sticky-call-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  height: 64px; z-index: 9999;
  background: var(--accent);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.6);
  text-decoration: none;
  align-items: center; justify-content: center; gap: 12px;
}
.sticky-bar-icon {
  font-size: 18px;
  animation: pulse-phone 3.5s ease-in-out infinite;
}
.sticky-bar-text {
  font-family: 'Outfit', sans-serif;
  font-size: 15px; font-weight: 600;
  color: white; letter-spacing: 0.02em;
}

/* ── ANIMATIONS ─────────────────────────────────────────────────────────── */
@keyframes gradient-slide {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes scroll-line-pulse {
  0%, 100% { transform: scaleY(0); opacity: 0; transform-origin: top; }
  50%       { transform: scaleY(1); opacity: 1; transform-origin: top; }
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes meteor-fall {
  0%   { opacity: 0; transform: translateY(0) translateX(0); }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(400px) translateX(-200px); }
}
@keyframes border-beam-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes pulse-phone {
  0%, 100% { transform: scale(1); }
  40%       { transform: scale(1.2); }
  60%       { transform: scale(0.95); }
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── REDUCED MOTION ─────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hero-name .char { opacity: 1 !important; transform: none !important; }
  .hero-rule { transform: scaleX(1) !important; }
  .hero-tagline, .hero-ctas, .hero-phone-line, .trust-item { opacity: 1 !important; transform: none !important; }
  .section-heading .word span { opacity: 1 !important; transform: none !important; }
  #cursor-dot, #cursor-ring { display: none; }
  #particles-canvas { display: none; }
  .meteor { display: none; }
  .gallery-item::after, .service-card::after, .about-image-wrap::after { display: none; }
}

/* ── TABLET ──────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-row: auto; }
  .gallery-item:nth-child(6) { grid-column: auto; }
  .contact-inner { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-image-wrap { height: 55vw; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ── MOBILE ──────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Nav */
  #nav { height: 64px; }
  #nav.urgency-offset { top: 36px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero-name { font-size: 24vw; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-shimmer, .btn-ghost { width: 100%; height: 58px; justify-content: center; }

  /* Hero Trust */
  .hero-trust { grid-template-columns: 1fr 1fr; padding: 16px 5%; }

  /* Scroll indicator hidden */
  .scroll-indicator { display: none; }

  /* Marquee bar */
  #marquee-bar { height: 44px; }
  .marquee-item { font-size: 9px; padding: 0 16px; }

  /* Stats */
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(232,230,224,0.08); padding: 32px 16px; }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(232,230,224,0.08); }
  .stat-value { font-size: 20vw; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { height: 72vw; }

  /* Process */
  .process-grid {
    grid-template-columns: 1fr;
    padding-left: 32px;
    border-left: 1px dashed rgba(232,160,32,0.3);
    gap: 48px;
  }
  .process-connector { display: none; }
  .process-step { padding: 0 0 0 16px; }
  .process-step-num { font-size: 14vw; top: -10px; right: 0; }

  /* Before/After */
  .ba-slider-wrap { height: 70vw; min-height: 280px; }

  /* Gallery */
  .gallery-grid {
    display: flex; flex-direction: row;
    overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 12px; padding: 0 5% 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gallery-grid::-webkit-scrollbar { display: none; }
  .gallery-item {
    flex: 0 0 86vw; width: 86vw; height: 65vw; min-height: unset;
    scroll-snap-align: start;
  }
  .gallery-item:nth-child(1), .gallery-item:nth-child(6) {
    grid-row: auto; grid-column: auto;
    flex: 0 0 86vw;
  }
  .gallery-item-img { min-height: 65vw; height: 65vw; }
  .gallery-item:nth-child(1) .gallery-item-img,
  .gallery-item:nth-child(6) .gallery-item-img { min-height: 65vw; }
  .gallery-item-caption { opacity: 1; transform: none; background: rgba(8,8,8,0.6); }

  /* Pricing */
  .packages-grid { grid-template-columns: 1fr; }
  .vehicle-tabs { width: 100%; }
  .vehicle-tab { flex: 1; padding: 0 12px; font-size: 11px; }
  .package-card { padding: 28px 24px 24px; }

  /* Testimonials */
  .review-text { max-width: 100%; font-size: 18px; }
  .review-block:nth-child(even) .review-text { margin-left: 0; padding-right: 0; padding-left: 24px; }

  /* About */
  .about-inner { grid-template-columns: 1fr; }
  .about-image-wrap { order: -1; height: 55vw; }
  .about-image-fade { background: linear-gradient(to top, #080808 0%, transparent 40%); }
  .about-content { padding: 32px 5%; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; }

  /* CTA */
  .cta-heading { font-size: clamp(32px, 10vw, 60px); }
  .cta-strip .btn-shimmer { width: 100%; height: 58px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  #footer { padding-bottom: 80px; }

  /* Sticky call bar */
  #sticky-call-bar { display: flex; }

  /* Cursor off */
  #cursor-dot, #cursor-ring { display: none; }

  /* Particles off */
  #particles-canvas { display: none; }

  /* Meteors off */
  .meteor { display: none; }
}

@media (max-width: 480px) {
  .hero-trust { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: 1fr; }
}
