/* ============================================================
   Bates Window Tint — design system
   ============================================================ */

:root {
  --bg: #0a0a0a;
  --bg-2: #121212;
  --bg-3: #1a1a1a;
  --bg-4: #232323;
  --border: #2a2a2a;
  --border-light: #3a3a3a;

  --gold: #d4af37;
  --gold-bright: #f4d03f;
  --gold-dim: #8a7228;
  --gold-glow: rgba(212, 175, 55, 0.4);

  --silver: #c0c0c0;
  --silver-dim: #888;

  --text: #f5f5f5;
  --text-muted: #a8a8a8;
  --text-dim: #6a6a6a;

  --success: #4ade80;
  --danger: #ef4444;

  --max-width: 1280px;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;

  --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.15);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);

  /* Hero slider — must live on :root so JS-set values aren't shadowed */
  --slider-pos: 100%;
  --handle-color: #d4af37;
  --handle-glow: rgba(212, 175, 55, 0.55);

  --transition: 280ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);

  --font-display: 'Anton', 'Impact', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-script: 'Allura', cursive;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-bright);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.05;
}

h1 { font-size: clamp(2.5rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: 1.25rem; letter-spacing: 0.05em; }

p { color: var(--text-muted); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
  position: relative;
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  background-size: 200% 200%;
  color: #0a0a0a;
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-primary:hover {
  background-position: 100% 100%;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
  color: #000;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: #0a0a0a;
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--border-light);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
}

.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.8rem; }

/* ============================================================
   Header / Nav
   ============================================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.header.scrolled {
  padding: 12px 0;
  background: rgba(10, 10, 10, 0.95);
  border-bottom-color: var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 52px;
  width: auto;
  transition: height var(--transition);
}

.header.scrolled .nav-logo img {
  height: 44px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active { color: var(--gold); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 1100;
  background: transparent;
  border-radius: 50%;
  transition: background var(--transition);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--gold);
}
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--gold);
}

@media (max-width: 968px) {
  .nav-toggle { display: flex; }
  .nav-cta .btn:not(.nav-cta-mobile) { display: none; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100vw;
    width: 100dvw;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(140deg, #0a0a0a 0%, #15110a 50%, #0a0a0a 100%);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    list-style: none;
    padding: 100px 32px 80px;
    margin: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .nav-links::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 25% 25%, rgba(212, 175, 55, 0.14) 0%, transparent 55%),
      radial-gradient(ellipse at 75% 75%, rgba(212, 175, 55, 0.08) 0%, transparent 55%);
    pointer-events: none;
  }

  .nav-links::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease-out 0.3s;
  }

  .nav-links.open::after { opacity: 1; }

  .nav-links.open { transform: translateX(0); }

  .nav-links li {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    list-style: none;
  }

  .nav-links.open li {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.2, 0.65, 0.3, 1);
  }

  .nav-links.open li:nth-child(1) { transition-delay: 0.10s; }
  .nav-links.open li:nth-child(2) { transition-delay: 0.16s; }
  .nav-links.open li:nth-child(3) { transition-delay: 0.22s; }
  .nav-links.open li:nth-child(4) { transition-delay: 0.28s; }
  .nav-links.open li:nth-child(5) { transition-delay: 0.34s; }
  .nav-links.open li:nth-child(6) { transition-delay: 0.40s; }
  .nav-links.open li:nth-child(7) { transition-delay: 0.46s; }

  .nav-links a {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 6vw, 2.4rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 16px;
    color: var(--text);
    text-align: center;
    transition: color 0.2s ease, transform 0.2s ease;
  }

  .nav-links a:hover,
  .nav-links a:active { color: var(--gold); transform: scale(1.04); }

  .nav-links a.active {
    color: var(--gold);
    position: relative;
  }

  .nav-links a.active::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 12px var(--gold);
  }

  .nav-links a::after { display: none; }
}

/* ============================================================
   Hero — before/after slider
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: 18vh 0 30vh;
  background: #000;
  isolation: isolate;
}

@media (max-height: 720px) { .hero { padding: 14vh 0 26vh; } }
@media (max-height: 560px) { .hero { padding: 11vh 0 22vh; } }

.slider-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  cursor: ew-resize;
  z-index: 0;
  touch-action: pan-y;
}

.slider-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  pointer-events: none;
  transform: scale(1.04);
  animation: photoDrift 36s ease-in-out infinite alternate;
}

.slider-img.tinted {
  background-image: url('../images/hero/hero-tinted.png');
  z-index: 1;
}

.slider-img.bare {
  background-image: url('../images/hero/hero-bare.png');
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--slider-pos)) 0 0);
  -webkit-clip-path: inset(0 calc(100% - var(--slider-pos)) 0 0);
}

.layer-mood {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 60% at 50% 18%,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.25) 40%,
      transparent 75%),
    radial-gradient(ellipse 100% 80% at 50% 60%,
      rgba(212, 175, 55, 0.06) 0%, transparent 60%);
}

.layer-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}

.mote {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255, 220, 170, 0.65);
  box-shadow: 0 0 4px rgba(255, 220, 170, 0.5);
  animation: moteDrift linear infinite;
}

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--slider-pos);
  width: 2px;
  background: linear-gradient(180deg,
    rgba(212, 175, 55, 0) 0%,
    rgba(212, 175, 55, 0.7) 12%,
    var(--handle-color) 50%,
    rgba(212, 175, 55, 0.7) 88%,
    rgba(212, 175, 55, 0) 100%);
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
  box-shadow:
    0 0 14px var(--handle-glow),
    0 0 32px rgba(212, 175, 55, 0.25);
}

.slider-handle::before,
.slider-handle::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 1px;
  height: 26px;
  background: linear-gradient(var(--handle-color), transparent);
  transform: translateX(-50%);
}
.slider-handle::before { top: -26px; }
.slider-handle::after { bottom: -26px; transform: translateX(-50%) scaleY(-1); }

.slider-knob {
  position: absolute;
  top: 72%;
  left: var(--slider-pos);
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff 0%, #ffe8a8 35%, var(--handle-color) 70%, #8a7228 100%);
  box-shadow:
    0 0 0 1.5px #1a1410,
    0 0 0 6px rgba(0, 0, 0, 0.55),
    0 0 24px var(--handle-glow),
    0 0 60px rgba(212, 175, 55, 0.35),
    0 8px 24px rgba(0, 0, 0, 0.5);
  z-index: 5;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1410;
  transition: transform 0.18s ease;
  animation: knobPulse 2.6s ease-in-out infinite;
}

.slider-knob:hover { transform: translate(-50%, -50%) scale(1.06); }
.slider-knob:active { transform: translate(-50%, -50%) scale(0.96); animation: none; }

.slider-knob svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #1a1410;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.knob-hint {
  position: absolute;
  top: calc(72% + 38px);
  left: var(--slider-pos);
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 100px;
  padding: 7px 14px;
  white-space: nowrap;
  z-index: 5;
  pointer-events: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  animation: hintIn 0.6s ease-out 1.4s forwards, hintNudge 1.6s ease-in-out 2.0s 2;
}

.knob-hint::before { content: '↔'; margin-right: 6px; color: var(--gold-bright); }
.knob-hint.hidden { opacity: 0 !important; animation: none !important; }

/* Side labels */
.side-label {
  position: absolute;
  bottom: 14vh;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.2vw, 1.05rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 4;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.side-label.before {
  left: 4vw;
  color: #ffd9b3;
  border: 1px solid rgba(255, 200, 130, 0.45);
  text-shadow: 0 0 12px rgba(255, 200, 130, 0.6);
}
.side-label.before::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ffb86b;
  box-shadow: 0 0 10px #ffb86b;
}
.side-label.after {
  right: 4vw;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.5);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}
.side-label.after::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

@media (max-width: 720px) {
  .side-label {
    font-size: 0.62rem;
    padding: 5px 11px;
    letter-spacing: 0.18em;
    bottom: 14vh;
  }
  .slider-knob { width: 48px; height: 48px; }
  .knob-hint { font-size: 0.6rem; padding: 5px 11px; }
}

/* Hero foreground content */
.hero-content {
  position: relative;
  z-index: 6;
  text-align: center;
  max-width: 920px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  animation: fgIn 0.7s ease-out 0.2s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold);
  animation: pulse 2s infinite;
}

.hero h1 {
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  background: none;
  -webkit-text-fill-color: initial;
}

.hero h1 .word {
  display: inline-block;
  background: linear-gradient(180deg, #fff 0%, #cfcfcf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.95);
  opacity: 0;
  transform: translateY(18px);
  animation: titleIn 0.8s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
}

.hero h1 .accent {
  background: linear-gradient(180deg, #f4d03f 0%, #d4af37 50%, #8a7228 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1 .word:nth-child(1) { animation-delay: 0.30s; }
.hero h1 .word:nth-child(2) { animation-delay: 0.42s; }
.hero h1 .word:nth-child(3) { animation-delay: 0.56s; }
.hero h1 .word:nth-child(4) { animation-delay: 0.68s; }

.hero-tagline {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  color: #ece8da;
  max-width: 600px;
  margin: 0 auto 32px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.95);
  opacity: 0;
  animation: fgIn 0.7s ease-out 0.85s forwards;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fgIn 0.7s ease-out 1.0s forwards;
}

.hero-cta .btn-secondary {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.45);
}

@media (max-height: 720px) {
  .hero h1 { font-size: clamp(2.1rem, 6.2vw, 4.8rem); margin-bottom: 14px; }
  .hero-eyebrow { margin-bottom: 18px; padding: 6px 14px; font-size: 0.7rem; }
  .hero-tagline { margin-bottom: 24px; font-size: 0.92rem; }
}
@media (max-height: 560px) {
  .hero h1 { font-size: clamp(1.9rem, 5.4vw, 3.4rem); }
  .hero-tagline { display: none; }
}

/* Dashboard HUD */
.dashboard-hud {
  position: absolute;
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 6;
  opacity: 0;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
  animation: hudOn 0.9s ease-out 1.15s forwards;
  white-space: nowrap;
}

.dashboard-hud .hud-sep {
  width: 1px;
  height: 14px;
  background: rgba(212, 175, 55, 0.4);
}
.dashboard-hud .hud-star {
  color: var(--gold-bright);
  margin-right: 4px;
}

@media (max-width: 720px) {
  .dashboard-hud {
    font-size: 0.58rem;
    gap: 10px;
    padding: 7px 14px;
    bottom: 3%;
    letter-spacing: 0.15em;
  }
  .dashboard-hud .hud-warranty { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 16vh 0 22vh; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn { padding: 12px 18px; font-size: 0.82rem; }
  .side-label {
    font-size: 0.55rem;
    padding: 4px 10px;
    letter-spacing: 0.15em;
    bottom: 12vh;
  }
  .side-label.before { left: 3vw; }
  .side-label.after { right: 3vw; }
  .knob-hint { display: none; }
  .slider-knob { width: 44px; height: 44px; }
  .slider-knob svg { width: 18px; height: 18px; }
}

.hero-scroll { display: none; }

/* ============================================================
   Site-wide mobile polish
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  section { padding: 56px 0; }
  .page-hero { padding: 140px 0 70px; }
  .page-hero p { font-size: 1rem; }
  .featured-grid { gap: 36px; }
  .featured-content h2 { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .section-heading { margin-bottom: 40px; }
  .section-heading p { font-size: 0.95rem; }
  .featured-specs { grid-template-columns: 1fr 1fr; gap: 12px; }
  .spec { padding: 16px; }
  .spec-num { font-size: 1.6rem; }
  .review-card { padding: 24px; }
  .review-text { font-size: 0.95rem; }
  .why-card { padding: 24px; }
  .process-step { padding: 24px 20px; }
  .process-step::before { font-size: 2.4rem; }
  .map-wrap { height: 300px; }
  .footer { padding: 56px 0 24px; }
  .footer-grid { gap: 28px; margin-bottom: 32px; }
  .footer-logo img { height: 52px; }
  .modal { max-height: 100vh; max-height: 100dvh; border-radius: 0; }
  .modal-backdrop { padding: 0; align-items: stretch; }
  .modal-header, .modal-progress, .modal-body, .modal-footer { padding-left: 20px; padding-right: 20px; }
  .modal-body { padding-top: 24px; padding-bottom: 24px; }
  .modal-step h3 { font-size: 1.3rem; }
  .calendar { padding: 14px; }
  .calendar-day { font-size: 0.85rem; }
  .time-slots { grid-template-columns: 1fr 1fr; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .slider-img, .knob-hint, .slider-knob,
  .hero h1 .word, .hero-tagline, .hero-cta,
  .hero-eyebrow, .dashboard-hud, .mote {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .slider-img.tinted, .slider-img.bare { transform: scale(1); }
  .slider-knob { transform: translate(-50%, -50%); }
  .slider-knob:hover { transform: translate(-50%, -50%); }
}

/* ============================================================
   Page hero (smaller, for inner pages)
   ============================================================ */

.page-hero {
  position: relative;
  padding: 200px 0 100px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center top, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, var(--bg) 100%);
  z-index: 0;
}

.page-hero > * { position: relative; z-index: 1; }

.page-hero .breadcrumb {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 620px;
  margin: 24px auto 0;
  font-size: 1.1rem;
}

/* ============================================================
   Section heading
   ============================================================ */

.section-heading {
  text-align: center;
  margin-bottom: 64px;
}

.section-heading .eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-heading p {
  max-width: 620px;
  margin: 20px auto 0;
}

/* ============================================================
   Service cards
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  padding: 40px 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  min-height: 2.4em;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-end;
}

.service-card > p {
  min-height: 4.8em;
  margin-bottom: 8px;
}

.service-card ul {
  flex: 1;
}

.services-grid {
  align-items: stretch;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-100%);
  transition: transform var(--transition-slow);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.service-card:hover::before { transform: translateX(0); }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.02));
  border: 1px solid rgba(212, 175, 55, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 1.65rem;
  line-height: 1;
  transition: all var(--transition);
  position: relative;
}

.service-icon::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(244, 208, 63, 0.4), transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.04));
  border-color: rgba(244, 208, 63, 0.5);
}

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

.service-card h3 {
  margin-bottom: 12px;
  color: var(--text);
}

.service-card .price {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.25rem;
  margin-top: 16px;
}

.service-card ul {
  list-style: none;
  margin: 20px 0;
}

.service-card li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.service-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

/* ============================================================
   Featured product (Geoshield)
   ============================================================ */

.featured {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 968px) {
  .featured-grid { grid-template-columns: 1fr; gap: 48px; }
}

.featured-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.featured-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
}

.featured-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 10px 18px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  z-index: 1;
}

.featured-product-name {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 1;
}

.featured-product-name h4 {
  font-size: 2rem;
  color: #fff;
}

.featured-product-name p {
  color: var(--silver);
  margin-top: 4px;
}

.featured-content h2 { margin-bottom: 24px; }

.featured-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.spec {
  padding: 20px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.spec-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.spec-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ============================================================
   Why Choose Us
   ============================================================ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.why-card {
  padding: 32px;
  text-align: center;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold);
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 20px;
  transition: all var(--transition);
}

.why-card:hover .why-icon {
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.why-card h4 {
  margin-bottom: 8px;
  color: var(--text);
}

/* ============================================================
   Gallery
   ============================================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-grid.compact { gap: 12px; }

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.85) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item .label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 1;
  color: #fff;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}

.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover .label { opacity: 1; transform: translateY(0); }

.gallery-item.tall { aspect-ratio: 3/4; }
.gallery-item.wide { aspect-ratio: 16/9; }

/* ============================================================
   Reviews
   ============================================================ */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  padding: 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  transition: all var(--transition);
}

.review-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
}

.review-name {
  font-weight: 600;
  color: var(--text);
}

.review-date {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ============================================================
   CTA banner
   ============================================================ */

.cta-banner {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1408 50%, #0a0a0a 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
}

.cta-banner > * { position: relative; }

.cta-banner h2 {
  margin-bottom: 24px;
}

.cta-banner p {
  font-size: 1.15rem;
  max-width: 580px;
  margin: 0 auto 40px;
}

/* ============================================================
   Footer
   ============================================================ */

.footer {
  padding: 80px 0 32px;
  background: #050505;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

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

.footer-logo img {
  height: 64px;
  margin-bottom: 16px;
}

.footer p { font-size: 0.95rem; }

.footer h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.footer-contact {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-contact a { color: var(--text-muted); }
.footer-contact a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ============================================================
   Scheduler Modal
   ============================================================ */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

.modal-backdrop.open {
  display: flex;
  opacity: 1;
}

.modal {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: transform var(--transition);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(212, 175, 55, 0.08);
}

.modal-backdrop.open .modal {
  transform: scale(1) translateY(0);
}

.modal-header {
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: var(--bg-2);
  z-index: 2;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-muted);
  transition: all var(--transition);
}

.modal-close:hover {
  background: var(--gold);
  color: #000;
}

.modal-body {
  padding: 32px;
}

.modal-progress {
  display: flex;
  gap: 8px;
  padding: 20px 32px 0;
}

.modal-progress-step {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  transition: background var(--transition);
}

.modal-progress-step.active { background: var(--gold); }

.modal-step { display: none; }
.modal-step.active { display: block; animation: stepIn 0.4s ease-out; }

.modal-step h3 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.modal-step .step-sub {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.modal-footer {
  display: flex;
  gap: 12px;
  padding: 20px 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  position: sticky;
  bottom: 0;
}

.modal-footer .btn { flex: 1; }

/* ============================================================
   Form elements
   ============================================================ */

.form-group {
  margin-bottom: 20px;
}

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

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

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-4);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

textarea { resize: vertical; min-height: 100px; }

select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d4af37'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 44px;
}

.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

.option-card {
  padding: 20px;
  background: var(--bg-3);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.option-card:hover {
  border-color: var(--gold-dim);
  background: var(--bg-4);
}

.option-card.selected {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.option-card .option-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: 10px;
  transition: all var(--transition);
}

.option-card:hover .option-icon,
.option-card.selected .option-icon {
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--gold);
}

.option-card .option-title {
  font-weight: 600;
  color: var(--text);
}

.option-card .option-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================================
   Calendar
   ============================================================ */

.calendar {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.calendar-month {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.calendar-nav {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.calendar-nav:hover:not(:disabled) {
  background: var(--gold);
  color: #000;
}

.calendar-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-dow {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 8px 0;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
  color: var(--text);
  border: 1px solid transparent;
}

.calendar-day:hover:not(.disabled):not(.empty) {
  background: var(--bg-4);
  border-color: var(--gold-dim);
}

.calendar-day.disabled {
  color: var(--text-dim);
  cursor: not-allowed;
  opacity: 0.4;
}

.calendar-day.empty {
  cursor: default;
}

.calendar-day.today {
  border-color: var(--border-light);
  font-weight: 600;
}

.calendar-day.selected {
  background: var(--gold);
  color: #000;
  font-weight: 700;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.time-slot {
  padding: 14px 8px;
  background: var(--bg-3);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
  font-size: 0.9rem;
}

.time-slot:hover:not(:disabled) {
  border-color: var(--gold-dim);
  background: var(--bg-4);
}

.time-slot.selected {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.time-slot:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Review summary */
.review-summary {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}

.review-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.review-summary-row:last-child { border-bottom: none; }
.review-summary-row .label-text {
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.review-summary-row .value-text {
  color: var(--text);
  font-weight: 500;
  text-align: right;
}

/* Success state */
.success-screen {
  text-align: center;
  padding: 24px 8px;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #000;
  animation: successPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-screen h3 { margin-bottom: 12px; }
.success-screen p { margin-bottom: 24px; }

/* ============================================================
   Comparison cards (Ceramic vs Carbon)
   ============================================================ */

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

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

.comparison-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.comparison-card.flagship {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.2), 0 20px 60px rgba(212, 175, 55, 0.08);
}

.comparison-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.comparison-card.flagship:hover {
  box-shadow: 0 0 0 1px var(--gold), 0 24px 70px rgba(212, 175, 55, 0.15);
}

.comparison-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #000;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  border-radius: 100px;
}

.comparison-image {
  aspect-ratio: 1/1;
  background: var(--bg-3);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.comparison-image.landscape {
  aspect-ratio: 16/10;
}

.comparison-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.comparison-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.comparison-body > .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.comparison-body h3 {
  margin: 8px 0 14px;
  font-size: 2rem;
}

.comparison-body > p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.comparison-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 8px 0 24px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.comparison-specs > div {
  text-align: center;
}

.comparison-specs strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}

.comparison-specs span {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 6px;
}

.comparison-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.comparison-body li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.comparison-body li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.best-for {
  margin-top: auto;
  padding: 18px 20px;
  background: var(--bg-3);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  min-height: 130px;
}

.best-for strong {
  white-space: nowrap;
}

.best-for strong {
  color: var(--gold);
}

.comparison-summary {
  max-width: 800px;
  margin: 0 auto;
  padding: 28px 32px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.comparison-summary p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
}

.comparison-summary strong { color: var(--gold); }

@media (max-width: 540px) {
  .comparison-specs {
    grid-template-columns: 1fr 1fr;
    gap: 18px 14px;
  }
  .comparison-body { padding: 24px; }
  .comparison-body h3 { font-size: 1.6rem; }
  .best-for { min-height: 0; }
}

/* ============================================================
   Reveal animations
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes photoDrift {
  from { transform: scale(1.04) translate(0, 0); }
  to { transform: scale(1.07) translate(-1%, -0.8%); }
}

@keyframes moteDrift {
  0% { transform: translate3d(0, 0, 0); opacity: 0; }
  10% { opacity: 0.85; }
  90% { opacity: 0.55; }
  100% { transform: translate3d(20px, -120px, 0); opacity: 0; }
}

@keyframes knobPulse {
  0%, 100% {
    box-shadow:
      0 0 0 1.5px #1a1410,
      0 0 0 6px rgba(0, 0, 0, 0.55),
      0 0 24px var(--handle-glow),
      0 0 60px rgba(212, 175, 55, 0.35),
      0 8px 24px rgba(0, 0, 0, 0.5);
  }
  50% {
    box-shadow:
      0 0 0 1.5px #1a1410,
      0 0 0 6px rgba(0, 0, 0, 0.55),
      0 0 36px rgba(255, 230, 160, 0.7),
      0 0 88px rgba(212, 175, 55, 0.5),
      0 8px 24px rgba(0, 0, 0, 0.5);
  }
}

@keyframes hintIn { to { opacity: 1; } }

@keyframes hintNudge {
  0%, 100% { transform: translateX(-50%); }
  25% { transform: translate(calc(-50% - 8px)); }
  75% { transform: translate(calc(-50% + 8px)); }
}

@keyframes titleIn { to { opacity: 1; transform: translateY(0); } }

@keyframes fgIn { to { opacity: 1; transform: translateY(0); } }

@keyframes hudOn {
  from { opacity: 0; transform: translate(-50%, 8px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes stepIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes successPop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* ============================================================
   About / story
   ============================================================ */

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 968px) {
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
}

.story-image {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background-image: url('../images/gallery/Honda%20Pilot%20-%20Drivers%20Side.jpg');
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  position: relative;
}

.story-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5));
  border-radius: var(--radius-lg);
}

.story-content h2 { margin-bottom: 24px; }
.story-content p { margin-bottom: 16px; font-size: 1.05rem; }

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.story-stat .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}

.story-stat .label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ============================================================
   Process steps
   ============================================================ */

.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 32px 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  counter-increment: step;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.process-step h4 {
  margin-bottom: 8px;
  color: var(--text);
}

/* ============================================================
   Hours table
   ============================================================ */

.hours-table {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--text); font-weight: 500; }
.hours-row .time { color: var(--gold); font-weight: 500; font-variant-numeric: tabular-nums; }

/* ============================================================
   Contact map
   ============================================================ */

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 400px;
  filter: grayscale(0.3) invert(0.92) hue-rotate(180deg);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   Util
   ============================================================ */

.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mb-md { margin-bottom: 24px; }
.mb-lg { margin-bottom: 48px; }
