/* ==========================================================================
   Luciano Auto Boutique — Design Tokens & Base
   ========================================================================== */

:root {
  /* Surfaces */
  --bg: #08090a;
  --bg-soft: #0c0d0f;
  --surface: #121316;
  --surface-2: #1a1b1f;
  --surface-3: #222327;
  --border: #2a2b30;
  --border-soft: #1e1f23;

  /* Text */
  --text: #f5f5f4;
  --text-muted: #a8a8ad;
  --text-faint: #6f6f76;

  /* Chrome metallic */
  --chrome-1: #f2f2f4;
  --chrome-2: #c7c8cd;
  --chrome-3: #8b8c92;
  --chrome-gradient: linear-gradient(115deg, #8b8c92 0%, #f2f2f4 22%, #c7c8cd 40%, #ffffff 52%, #9a9ba1 68%, #f2f2f4 84%, #8b8c92 100%);

  /* Accent — silver/chrome, monochrome only */
  --accent: #d7d8dc;
  --accent-soft: #f7f7f8;
  --accent-dark: #838489;
  --accent-glow: rgba(215, 216, 220, 0.35);

  /* Status */
  --danger: #e0554f;
  --success: #5fb489;

  /* Type */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing scale */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Layout */
  --container: 1440px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 999px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 180ms;
  --dur-med: 320ms;
  --dur-slow: 600ms;

  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-x: clip;
}

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

svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: var(--accent);
  color: #131316;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section {
  padding-block: clamp(4rem, 9vw, var(--space-3xl));
  position: relative;
}

.section-alt {
  background: var(--bg-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-xl);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-top: var(--space-sm);
}

.section-sub {
  margin-top: var(--space-sm);
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 52ch;
}

.section-head.center .section-sub {
  margin-inline: auto;
}

.chrome-text {
  background: var(--chrome-gradient);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: chrome-sheen 7s linear infinite;
}

@keyframes chrome-sheen {
  0% { background-position: 0% 50%; }
  100% { background-position: 220% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .chrome-text { animation: none; background-position: 40% 50%; }
}

.italic {
  font-style: italic;
  font-weight: 500;
}

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95rem 1.8rem;
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), background var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast);
  white-space: nowrap;
  min-height: 44px;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-soft), var(--accent) 55%, var(--accent-dark));
  color: #131316;
  box-shadow: 0 10px 30px -10px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -12px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  border-color: var(--chrome-2);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

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

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 1.1rem 2.2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.65rem 1.3rem;
  font-size: 0.8125rem;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-block: 1.15rem;
  transition: background var(--dur-med) var(--ease-soft), border-color var(--dur-med) var(--ease-soft), padding var(--dur-med) var(--ease-soft), backdrop-filter var(--dur-med);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(8, 9, 10, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--border-soft);
  padding-block: 0.75rem;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand img {
  height: 34px;
  width: auto;
  transform-style: preserve-3d;
  will-change: transform;
  animation: logo-spin-3d 12s linear infinite;
}

@keyframes logo-spin-3d {
  0% { transform: perspective(700px) rotateY(0deg); }
  100% { transform: perspective(700px) rotateY(360deg); }
}

.brand-fallback {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding-block: 0.3rem;
  transition: color var(--dur-fast);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--dur-med) var(--ease-out);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.phone-link svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

/* Mobile menu */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(6, 7, 8, 0.98);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-med) var(--ease-soft), visibility var(--dur-med);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--text);
}

.mobile-menu .phone-link {
  font-size: 1.1rem;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 6.5rem;
  padding-bottom: var(--space-xl);
  overflow: hidden;
  background: radial-gradient(120% 90% at 50% -10%, #1a1c20 0%, var(--bg) 55%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.hero-video-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 9, 10, 0.82) 0%, rgba(8, 9, 10, 0.5) 32%, rgba(8, 9, 10, 0.6) 65%, rgba(8, 9, 10, 0.94) 100%),
    linear-gradient(90deg, rgba(8, 9, 10, 0.5) 0%, transparent 40%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  mix-blend-mode: screen;
}

.hero-glow-1 {
  width: 46vw;
  height: 46vw;
  max-width: 620px;
  max-height: 620px;
  top: -10%;
  right: -8%;
  background: radial-gradient(circle, rgba(210, 211, 216, 0.28), transparent 70%);
}

.hero-glow-2 {
  width: 34vw;
  height: 34vw;
  max-width: 460px;
  max-height: 460px;
  bottom: -12%;
  left: -6%;
  background: radial-gradient(circle, rgba(160, 160, 165, 0.18), transparent 70%);
}


.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.9rem 0.4rem 0.5rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-soft);
  margin-bottom: var(--space-md);
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.hero h1 {
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  letter-spacing: -0.02em;
}

.hero-sub {
  margin-top: var(--space-md);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--text-muted);
  max-width: 46ch;
}

.hero-location {
  margin-top: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-faint);
}

.hero-location svg {
  width: 15px;
  height: 15px;
  color: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: var(--space-lg);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-soft);
  max-width: 640px;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 0.15em;
}

.hero-stat-label {
  margin-top: 0.3rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.scroll-cue {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-faint);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue .line {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--accent), transparent);
  animation: scroll-cue-move 1.8s ease-in-out infinite;
}

@keyframes scroll-cue-move {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue .line { animation: none; }
}

/* ==========================================================================
   Marquee strip
   ========================================================================== */

.marquee-strip {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-soft);
  padding-block: 1.1rem;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
  gap: 0;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; overflow-x: auto; }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-inline: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  white-space: nowrap;
}

.marquee-item svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.marquee-item strong {
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   Services
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.service-card {
  position: relative;
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med), box-shadow var(--dur-med);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(210, 211, 216, 0.35);
  box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.6);
}

.service-card.is-featured {
  border-color: var(--accent);
  background: linear-gradient(165deg, rgba(210, 211, 216, 0.1), var(--surface) 55%);
}

.service-badge {
  position: absolute;
  top: -13px;
  right: var(--space-md);
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  color: #131316;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--accent);
  flex-shrink: 0;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-top: 0.25rem;
}

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

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.25rem;
  margin-bottom: var(--space-sm);
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.service-features svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.service-card .btn {
  margin-top: auto;
}

/* ==========================================================================
   Mini service cards (Interior / Exterior a la carte)
   ========================================================================== */

.mini-services-group {
  margin-top: var(--space-xl);
}

.mini-services-group:first-child {
  margin-top: 0;
}

.mini-services-heading {
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
}

.mini-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.mini-services-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.mini-service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: border-color var(--dur-fast), transform var(--dur-fast);
}

.mini-service-card:hover {
  border-color: var(--chrome-2);
  transform: translateY(-2px);
}

.mini-service-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-sm);
}

.mini-service-row h4 {
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
}

.mini-service-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
  white-space: nowrap;
}

.mini-service-card p {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.mini-service-foot {
  margin-top: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-soft);
}

.mini-service-foot span {
  font-size: 0.75rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mini-service-foot a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  transition: color var(--dur-fast);
}

.mini-service-foot a:hover {
  color: var(--accent-soft);
}

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

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  position: relative;
}

.process-line {
  position: absolute;
  top: 27px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: var(--border);
  overflow: hidden;
}

.process-line-fill {
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: left;
}

.process-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.process-step h3 {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.process-step p {
  margin-top: 0.4rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonial-wrap {
  position: relative;
  max-width: 760px;
  margin-inline: auto;
}

.testimonial-track {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.testimonial-slides {
  display: flex;
  transition: transform var(--dur-slow) var(--ease-out);
}

.testimonial-card {
  flex: 0 0 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: var(--space-md);
  color: var(--accent);
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
}

.testimonial-author {
  margin-top: var(--space-md);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.testimonial-author strong {
  color: var(--text);
  font-weight: 600;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.testimonial-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--dur-fast), transform var(--dur-fast);
}

.testimonial-arrow:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.testimonial-arrow svg {
  width: 16px;
  height: 16px;
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  transition: background var(--dur-fast), transform var(--dur-fast);
}

.testimonial-dot.is-active {
  background: var(--accent);
  transform: scale(1.2);
}

/* ==========================================================================
   About / Owner
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-2xl);
  align-items: center;
}


.why-us-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md) var(--space-md);
  transition: border-color var(--dur-fast), transform var(--dur-med) var(--ease-out);
}

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

.why-us-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.why-us-icon svg {
  width: 22px;
  height: 22px;
}

.why-us-card h3 {
  font-size: 1.1rem;
}

.why-us-card p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Service area
   ========================================================================== */

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.area-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  font-size: 0.9rem;
  font-weight: 500;
}

.area-pill svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.area-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  filter: grayscale(1) invert(0.92) contrast(0.9);
}

.area-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ==========================================================================
   Service pricing / ceramic banner
   ========================================================================== */

.service-price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text);
}

.service-price strong {
  font-size: 1.3rem;
  font-weight: 600;
}

.service-price span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-faint);
  font-weight: 500;
}

.service-time {
  margin-top: auto;
  padding-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-faint);
}

.pricing-policy-note {
  margin-top: var(--space-lg);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  border: 1px dashed var(--border);
  font-size: 0.8125rem;
  color: var(--text-faint);
  line-height: 1.6;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.ceramic-banner {
  margin-top: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  flex-wrap: wrap;
}

.ceramic-banner-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ceramic-banner-icon svg {
  width: 22px;
  height: 22px;
}

.ceramic-banner-copy {
  flex: 1;
  min-width: 200px;
}

.ceramic-banner-copy h3 {
  font-size: 1.05rem;
}

.ceramic-banner-copy p {
  margin-top: 0.2rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Quote Builder
   ========================================================================== */

.quote-builder {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: var(--space-xl);
  align-items: start;
}

.qb-main {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.qb-step-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.qb-step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qb-step-optional {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--text-faint);
  text-transform: none;
  letter-spacing: normal;
}

.qb-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.qb-option {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: var(--radius-full);
  padding: 0.65rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: border-color var(--dur-fast), color var(--dur-fast), background var(--dur-fast);
  min-height: 44px;
}

.qb-option:hover {
  border-color: var(--chrome-2);
  color: var(--text);
}

.qb-option.is-selected {
  background: var(--accent);
  border-color: var(--accent);
  color: #131316;
}

.qb-category-group {
  margin-bottom: var(--space-md);
}

.qb-category-group:last-child {
  margin-bottom: 0;
}

.qb-category-heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.5rem;
}

.qb-package-list,
.qb-addon-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.qb-package,
.qb-addon {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  width: 100%;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}

.qb-package:hover,
.qb-addon:hover {
  border-color: var(--chrome-2);
}

.qb-package.is-selected,
.qb-addon.is-selected {
  border-color: var(--accent);
  background: linear-gradient(165deg, rgba(210, 211, 216, 0.08), var(--surface) 60%);
}

.qb-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--border);
  flex-shrink: 0;
  margin-top: 0.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: border-color var(--dur-fast), background var(--dur-fast), color var(--dur-fast);
}

.qb-package .qb-check {
  border-radius: 50%;
}

.qb-addon .qb-check {
  border-radius: 6px;
}

.qb-package.is-selected .qb-check,
.qb-addon.is-selected .qb-check {
  background: var(--accent);
  border-color: var(--accent);
  color: #131316;
}

.qb-check svg {
  width: 12px;
  height: 12px;
}

.qb-package-body,
.qb-addon-body {
  flex: 1;
}

.qb-package-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.qb-package-name,
.qb-addon-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.qb-package-price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text);
  white-space: nowrap;
}

.qb-package-desc,
.qb-addon-desc {
  margin-top: 0.25rem;
  font-size: 0.825rem;
  color: var(--text-muted);
}

.qb-summary {
  position: sticky;
  top: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.qb-summary h3 {
  font-size: 1.15rem;
}

.qb-summary-rows {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.qb-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.qb-summary-row strong {
  color: var(--text);
  font-weight: 500;
}

.qb-summary-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-soft);
}

.qb-summary-total span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.qb-summary-total strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text);
}

.qb-summary-note {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-faint);
}

.qb-summary #qbRequestBtn {
  margin-top: var(--space-md);
}

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

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(4, 4, 5, 0.72);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-med) var(--ease-soft), visibility var(--dur-med);
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transform: translateY(16px) scale(0.98);
  transition: transform var(--dur-med) var(--ease-out);
}

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

.modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close svg {
  width: 16px;
  height: 16px;
}

.modal-close:hover {
  color: var(--text);
  border-color: var(--chrome-2);
}

.modal h3 {
  font-size: 1.3rem;
  padding-right: 2rem;
}

.modal-summary {
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.modal-summary strong {
  color: var(--text);
}

.form-group {
  margin-bottom: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.9rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9375rem;
  min-height: 44px;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface-2);
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--danger);
}

.form-error {
  font-size: 0.75rem;
  color: var(--danger);
  display: none;
}

.form-group.has-error .form-error {
  display: block;
}

.form-success {
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: rgba(95, 180, 137, 0.12);
  border: 1px solid rgba(95, 180, 137, 0.35);
  color: var(--success);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.form-success.is-visible {
  display: flex;
}

.form-success svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

#modalForm.is-submitted .form-fields {
  display: none;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  background: none;
  border: none;
  color: var(--text);
  padding: 1.15rem 1.4rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
}

.faq-question svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--dur-med) var(--ease-out);
}

.faq-item.is-open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-med) var(--ease-soft);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer p {
  padding: 0 1.4rem 1.3rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  max-width: 62ch;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */

.final-cta {
  position: relative;
  text-align: center;
  padding-block: var(--space-3xl);
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, #0e0e10 100%);
}

.final-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  max-width: 16ch;
  margin-inline: auto;
}

.final-cta p {
  margin-top: var(--space-sm);
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.final-cta-actions {
  margin-top: var(--space-lg);
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  padding-top: var(--space-2xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
}

.footer-brand img {
  height: 30px;
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  color: var(--text-faint);
  font-size: 0.875rem;
  max-width: 32ch;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: var(--space-md);
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color var(--dur-fast), color var(--dur-fast);
}

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

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-col h5 {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  font-family: var(--font-body);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a,
.footer-col li {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-block: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-faint);
}

/* ==========================================================================
   Mobile sticky CTA bar
   ========================================================================== */

.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(10, 11, 12, 0.92);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  gap: 0.6rem;
}

.mobile-sticky-bar .btn {
  flex: 1;
}

/* ==========================================================================
   Reveal utility (JS-driven via GSAP, CSS fallback state)
   ========================================================================== */

.reveal,
.stagger-child {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-in,
.stagger-child.is-in,
.no-js .reveal,
.reduced-motion .reveal,
.reduced-motion .stagger-child {
  opacity: 1;
  transform: none;
}

/* iOS shows a big play button when it refuses to autoplay - hide it, the
   poster frame stays as the background instead. */
.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-start-playback-button,
.hero-video::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
}

/* ==========================================================================
   Preloader
   ========================================================================== */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s var(--ease-soft), visibility 0.5s;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader img {
  height: 44px;
  width: auto;
  opacity: 0;
  animation: preloader-fade 1.1s var(--ease-out) forwards;
}

@keyframes preloader-fade {
  0% { opacity: 0; filter: brightness(0.6); }
  60% { opacity: 1; }
  100% { opacity: 1; filter: brightness(1); }
}

/* ==========================================================================
   Sub-page hero (Why Choose Us and future content pages)
   ========================================================================== */

.page-hero {
  min-height: auto;
  padding-top: 8.5rem;
  padding-bottom: var(--space-2xl);
  text-align: center;
}

.page-hero .hero-content {
  max-width: 820px;
  margin-inline: auto;
}

.breadcrumb-nav {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-faint);
}

.breadcrumb-nav a {
  color: var(--text-muted);
  transition: color var(--dur-fast);
}

.breadcrumb-nav a:hover {
  color: var(--text);
}

.page-hero .hero-sub {
  margin-inline: auto;
}

.page-hero .hero-actions {
  justify-content: center;
}

/* ==========================================================================
   Checklists (differentiators / process elements / paint-safe practices)
   ========================================================================== */

.checklist-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 2.5rem;
  max-width: 920px;
}

.checklist-2col.center {
  margin-inline: auto;
}

/* ==========================================================================
   Climate factor cards (reuses .why-us-card visual language)
   ========================================================================== */

.climate-grid {
  margin-top: var(--space-xl);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

/* ==========================================================================
   Detail chip cloud (reuses .area-pill visual language)
   ========================================================================== */

.detail-chip-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: var(--space-lg);
}

/* ==========================================================================
   Callout box (paint-safe myth-busting note, etc.)
   ========================================================================== */

.callout-box {
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  border-left: 3px solid var(--accent);
  background: var(--surface);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 760px;
}

/* ==========================================================================
   Two-column split cards (Paint Correction / Ceramic Coating)
   ========================================================================== */

.split-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.split-grid-2 .why-us-card {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
}

.split-grid-2 .service-features {
  margin-top: var(--space-sm);
}

.split-grid-2 .btn {
  margin-top: var(--space-md);
  align-self: flex-start;
}

/* ==========================================================================
   Flex-wrap service-link grid (avoids empty trailing grid cells on odd counts)
   ========================================================================== */

.mini-services-grid-flex {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.mini-services-grid-flex .mini-service-card {
  flex: 1 1 300px;
}

/* ==========================================================================
   Plain process steps (no connector line — for longer step lists)
   ========================================================================== */

.process-list-plain {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg) var(--space-md);
}

/* ==========================================================================
   Local trust panel
   ========================================================================== */

.trust-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  max-width: 720px;
  margin-inline: auto;
}

.trust-row {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-soft);
}

.trust-row:last-of-type {
  border-bottom: none;
}

.trust-row svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.trust-row h4 {
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.trust-row p {
  margin-top: 0.2rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.trust-panel-actions {
  margin-top: var(--space-md);
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

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

  .footer-col.hide-tablet {
    display: none;
  }
}

@media (max-width: 860px) {
  .main-nav,
  .header-actions .btn {
    display: none;
  }

  .mini-services-grid-3,
  .climate-grid,
  .process-list-plain {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: 5.5rem;
    text-align: left;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    row-gap: var(--space-md);
  }

  .about-grid,
  .area-grid,
  .quote-builder,
  .split-grid-2,
  .checklist-2col {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 6.5rem;
  }

  .qb-summary {
    position: static;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .process-line {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-sticky-bar {
    display: flex;
  }

  body {
    padding-bottom: 4.5rem;
  }
}

@media (max-width: 560px) {
  .mini-services-grid,
  .mini-services-grid-3,
  .climate-grid,
  .process-list-plain {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}

/* ==========================================================================
   DetailerBook quote + booking popup (v2 rebuild)
   ========================================================================== */

.service-range { font-size: 0.78rem; font-weight: 500; color: var(--text-faint); margin-left: 0.35rem; }
.service-more { margin-top: 0.5rem; font-size: 0.78rem; color: var(--text-faint); font-style: italic; }
.services-grid.is-loading::after { content: "Loading live prices…"; color: var(--text-faint); font-size: 0.85rem; }

.bk-overlay { align-items: flex-end; padding: 0; }
@media (min-width: 640px) { .bk-overlay { align-items: center; padding: var(--space-md); } }

.modal.bk-modal {
  max-width: 640px;
  max-height: min(92vh, 100dvh);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--bg-soft);
}
@media (min-width: 640px) { .modal.bk-modal { border-radius: var(--radius-lg); } }

.bk-head {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 1rem 0.9rem;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(8, 9, 10, 0.6);
  backdrop-filter: blur(10px);
  flex-shrink: 0;
}
.bk-back, .bk-close {
  width: 36px; height: 36px; flex-shrink: 0; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text-muted);
  display: inline-flex; align-items: center; justify-content: center; padding: 0;
}
.bk-back svg, .bk-close svg { width: 16px; height: 16px; }
.bk-back:hover, .bk-close:hover { color: var(--text); border-color: var(--chrome-2); }
.bk-back-ph { background: none; border: none; }
.bk-title { flex: 1; text-align: center; font-family: var(--font-display); font-size: 1.1rem; }

.bk-steps { flex: 1; display: flex; justify-content: center; gap: clamp(0.4rem, 2vw, 1rem); margin: 0; padding: 0; list-style: none; }
.bk-steps li { display: flex; align-items: center; gap: 0.35rem; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-faint); }
.bk-step-dot { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--border); display: inline-flex; align-items: center; justify-content: center; font-size: 0.68rem; font-family: var(--font-body); letter-spacing: 0; }
.bk-step-dot svg { width: 11px; height: 11px; }
.bk-steps li.is-current { color: var(--text); }
.bk-steps li.is-current .bk-step-dot { background: linear-gradient(135deg, var(--accent-soft), var(--accent) 55%, var(--accent-dark)); color: #131316; border-color: transparent; }
.bk-steps li.is-done .bk-step-dot { color: var(--accent); border-color: var(--accent-dark); }
.bk-step-label { display: none; }
@media (min-width: 560px) { .bk-steps li.is-current .bk-step-label { display: inline; } }
@media (min-width: 720px) { .bk-step-label { display: inline; } }

.bk-body { overflow-y: auto; padding: var(--space-md); flex: 1; -webkit-overflow-scrolling: touch; }
.bk-loading { padding: 3rem 0; text-align: center; }
.bk-intro h3 { font-size: 1.45rem; }
.bk-intro p { margin-top: 0.35rem; color: var(--text-muted); font-size: 0.9rem; }
.bk-intro { margin-bottom: var(--space-md); }
.bk-muted { color: var(--text-faint); font-size: 0.85rem; }
.bk-optional { font-weight: 400; color: var(--text-faint); font-size: 0.8em; text-transform: none; letter-spacing: 0; }
.bk-req { color: var(--danger); }
.bk-error { padding: 0.75rem 1rem; border-radius: var(--radius-md); background: rgba(224, 85, 79, 0.12); border: 1px solid rgba(224, 85, 79, 0.4); color: #f0847f; font-size: 0.875rem; margin-bottom: var(--space-sm); }

/* Service cards inside the popup */
.bk-cards { display: grid; gap: 0.75rem; }
.bk-card {
  position: relative; width: 100%; text-align: left;
  display: flex; flex-direction: column; gap: 0.5rem;
  padding: 1rem 3rem 1rem 1.1rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  color: var(--text); font-family: inherit;
  transition: border-color var(--dur-fast), background var(--dur-fast), transform var(--dur-fast);
}
.bk-card:hover { border-color: var(--chrome-3); background: var(--surface-2); }
.bk-card.is-selected { border-color: var(--accent); background: rgba(215, 216, 220, 0.06); box-shadow: 0 0 0 1px var(--accent) inset; }
.bk-card-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.bk-card-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; }
.bk-card-price { font-weight: 700; font-size: 1.05rem; white-space: nowrap; display: flex; align-items: baseline; gap: 0.3rem; }
.bk-card-price small { font-weight: 500; font-size: 0.7rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.08em; }
.bk-card-intro { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.bk-card-list { display: grid; gap: 0.3rem; margin: 0; padding: 0; list-style: none; }
.bk-card-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.83rem; color: var(--text-muted); }
.bk-card-list li svg { width: 13px; height: 13px; margin-top: 0.2em; color: var(--accent); flex-shrink: 0; }
.bk-card-foot { display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: 0.75rem; color: var(--text-faint); margin-top: 0.15rem; }
.bk-more { white-space: nowrap; color: var(--accent); font-weight: 600; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.bk-card-check {
  position: absolute; top: 1rem; right: 1rem; width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: transparent;
}
.bk-card-check svg { width: 13px; height: 13px; }
.bk-card.is-selected .bk-card-check { background: linear-gradient(135deg, var(--accent-soft), var(--accent) 55%, var(--accent-dark)); border-color: transparent; color: #131316; }

/* Option groups */
.bk-group { margin-bottom: var(--space-md); }
.bk-group h4 { font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.65rem; }
.bk-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.bk-pill {
  display: inline-flex; flex-direction: column; align-items: flex-start; gap: 0.1rem;
  padding: 0.6rem 1rem; border-radius: var(--radius-md);
  background: var(--surface); border: 1px solid var(--border); color: var(--text); font-family: inherit; font-size: 0.9rem; font-weight: 600;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.bk-pill small { font-size: 0.72rem; font-weight: 500; color: var(--text-faint); }
.bk-pill:hover { border-color: var(--chrome-3); }
.bk-pill.is-selected { border-color: var(--accent); background: rgba(215, 216, 220, 0.08); box-shadow: 0 0 0 1px var(--accent) inset; }
.bk-pill.is-selected small { color: var(--accent); }
.bk-addons { display: grid; gap: 0.5rem; }
.bk-addon {
  display: flex; align-items: center; gap: 0.75rem; width: 100%; text-align: left;
  padding: 0.75rem 1rem; border-radius: var(--radius-md);
  background: var(--surface); border: 1px solid var(--border); color: var(--text); font-family: inherit; font-size: 0.9rem;
}
.bk-addon .bk-check { width: 20px; height: 20px; border-radius: 6px; border: 1px solid var(--border); display: inline-flex; align-items: center; justify-content: center; color: transparent; flex-shrink: 0; }
.bk-addon .bk-check svg { width: 12px; height: 12px; }
.bk-addon.is-selected { border-color: var(--accent); }
.bk-addon.is-selected .bk-check { background: var(--accent); color: #131316; border-color: transparent; }
.bk-addon-name { flex: 1; font-weight: 600; }
.bk-addon-price { color: var(--text-muted); font-size: 0.85rem; }

.bk-quote {
  margin-top: var(--space-sm); padding: 1rem 1.1rem; border-radius: var(--radius-md);
  border: 1px solid var(--border); background: linear-gradient(160deg, var(--surface-2), var(--surface));
}
.bk-quote > div { display: flex; justify-content: space-between; align-items: baseline; }
.bk-quote-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); }
.bk-quote strong { font-family: var(--font-display); font-size: 1.9rem; background: var(--chrome-gradient); background-size: 220% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; }
.bk-quote p { margin-top: 0.4rem; font-size: 0.8rem; color: var(--text-faint); }

/* Calendar */
.bk-cal { margin-bottom: var(--space-md); }
.bk-cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.6rem; font-family: var(--font-display); font-size: 1.05rem; }
.bk-cal-btn { width: 34px; height: 34px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--border); color: var(--text); display: inline-flex; align-items: center; justify-content: center; padding: 0; }
.bk-cal-btn svg { width: 15px; height: 15px; }
.bk-cal-btn.bk-cal-next svg { transform: rotate(180deg); }
.bk-cal-btn:disabled { opacity: 0.3; cursor: default; }
.bk-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.4rem; }
.bk-day {
  display: flex; flex-direction: column; align-items: center; gap: 0.15rem; padding: 0.55rem 0.2rem;
  border-radius: var(--radius-md); background: var(--surface); border: 1px solid var(--border); color: var(--text); font-family: inherit;
}
.bk-day small { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-faint); }
.bk-day span { font-size: 1.05rem; font-weight: 600; }
.bk-day:disabled { opacity: 0.28; cursor: default; }
.bk-day.is-today span { text-decoration: underline; text-underline-offset: 3px; }
.bk-day.is-selected { border-color: var(--accent); background: rgba(215, 216, 220, 0.08); box-shadow: 0 0 0 1px var(--accent) inset; }
.bk-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 0.5rem; }
.bk-slot { padding: 0.6rem 0.4rem; border-radius: var(--radius-full); background: var(--surface); border: 1px solid var(--border); color: var(--text); font-family: inherit; font-size: 0.85rem; font-weight: 600; }
.bk-slot:hover { border-color: var(--chrome-3); }
.bk-slot.is-selected { background: linear-gradient(135deg, var(--accent-soft), var(--accent) 55%, var(--accent-dark)); color: #131316; border-color: transparent; }

/* Details form */
.bk-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.bk-hint { font-size: 0.75rem; color: var(--text-faint); }
.bk-consent { font-size: 0.75rem; color: var(--text-faint); margin-top: 0.25rem; }

/* Review */
.bk-review { border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); overflow: hidden; margin-bottom: var(--space-sm); }
.bk-review-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.7rem 1rem; border-bottom: 1px solid var(--border-soft); font-size: 0.875rem; }
.bk-review-row span { color: var(--text-faint); flex-shrink: 0; }
.bk-review-row strong { text-align: right; font-weight: 500; color: var(--text); }
.bk-review-total { display: flex; justify-content: space-between; align-items: baseline; padding: 0.9rem 1rem; background: var(--surface-2); }
.bk-review-total span { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.bk-review-total strong { font-family: var(--font-display); font-size: 1.5rem; }

/* Done */
.bk-done { text-align: center; padding: 1.5rem 0.5rem; display: flex; flex-direction: column; align-items: center; gap: 0.9rem; }
.bk-done-ico { width: 64px; height: 64px; border-radius: 50%; background: rgba(95, 180, 137, 0.14); border: 1px solid rgba(95, 180, 137, 0.4); color: var(--success); display: flex; align-items: center; justify-content: center; }
.bk-done-ico svg { width: 28px; height: 28px; }
.bk-done h3 { font-size: 1.7rem; }
.bk-done p { color: var(--text-muted); font-size: 0.95rem; max-width: 40ch; }
.bk-done p strong { color: var(--text); }
.bk-done a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* Sticky footer */
.bk-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border-soft); background: rgba(8, 9, 10, 0.85); backdrop-filter: blur(10px); flex-shrink: 0;
}
.bk-foot-price { display: flex; flex-direction: column; line-height: 1.15; }
.bk-foot-price small { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); font-weight: 600; }
.bk-foot-price strong { font-family: var(--font-display); font-size: 1.35rem; }
.bk-foot-price a { font-weight: 600; color: var(--text); }
.bk-next { flex: 1; max-width: 300px; }
.bk-next:disabled { opacity: 0.45; cursor: not-allowed; transform: none !important; box-shadow: none; }
