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

  :root {
    --black: #080808;
    --off-black: #111111;
    --surface: #161616;
    --border: rgba(255,255,255,0.08);
    --gold: #c9a96e;
    --gold-light: #e0c99a;
    --ivory: #f5f0e8;
    --muted: rgba(245,240,232,0.45);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--ivory);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.5rem 4rem;
    background: rgba(8,8,8,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 0.5px solid var(--border);
    transition: padding 0.3s;
  }

  .nav-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--ivory);
    cursor: pointer;
    text-transform: uppercase;
  }

  .nav-logo span { color: var(--gold); }

  .nav-links {
    display: flex; gap: 2.5rem; list-style: none;
  }

  .nav-links a {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.25s;
    cursor: pointer;
  }

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

  /* PAGES */
  .page { display: none; animation: fadeUp 0.5s ease forwards; }
  

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

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 0 4rem 6rem;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(to bottom, rgba(8,8,8,0.35) 0%, rgba(8,8,8,0.6) 55%, var(--black) 100%),
      url("assets/hero-bg.jpg");
    background-size: cover;
    background-position: center 40%;
  }

  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 30%, transparent 100%);
  }

  .hero-tag {
    position: relative;
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 1rem;
  }

  .hero-tag::before {
    content: '';
    display: block; width: 40px; height: 0.5px;
    background: var(--gold);
  }

  .hero-title {
    position: relative;
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--ivory);
    margin-bottom: 2rem;
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-sub {
    position: relative;
    max-width: 480px;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--muted);
    margin-bottom: 3rem;
    line-height: 1.8;
  }

  .hero-actions {
    position: relative;
    display: flex; gap: 1.5rem; align-items: center;
  }

  .btn-primary {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    border: none;
    padding: 1rem 2.5rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }

  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

  .btn-ghost {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ivory);
    background: transparent;
    border: 0.5px solid rgba(245,240,232,0.3);
    padding: 1rem 2.5rem;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
  }

  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

  .hero-scroll {
    position: absolute; bottom: 2.5rem; right: 4rem;
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--muted);
  }

  .scroll-line {
    width: 0.5px; height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollDrop 2s ease infinite;
  }

  @keyframes scrollDrop {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.4) translateY(10px); opacity: 0.4; }
  }

  /* STATS BAR */
  .stats-bar {
    display: grid; grid-template-columns: repeat(3, 1fr);
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    margin: 0 4rem;
  }

  .stat-item {
    padding: 2.5rem 2rem;
    border-right: 0.5px solid var(--border);
  }

  .stat-item:last-child { border-right: none; }

  .stat-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.4rem;
  }

  .stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* SECTION COMMON */
  section {
    padding: 6rem 4rem;
  }

  .section-tag {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex; align-items: center; gap: 1rem;
  }

  .section-tag::before {
    content: '';
    display: block; width: 30px; height: 0.5px;
    background: var(--gold);
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--ivory);
    margin-bottom: 1.5rem;
  }

  .section-title em { font-style: italic; color: var(--gold-light); }

  /* ABOUT PAGE */
  .about-hero {
    min-height: 45vh;
    display: flex; align-items: flex-end;
    padding: 8rem 4rem 4rem;
    background: linear-gradient(to bottom, transparent, var(--black)),
                radial-gradient(ellipse at 30% 50%, rgba(201,169,110,0.06) 0%, transparent 50%);
    border-bottom: 0.5px solid var(--border);
  }

  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem;
    padding: 5rem 4rem;
    align-items: start;
  }

  .about-text p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--muted);
    margin-bottom: 1.5rem;
    line-height: 1.85;
  }

  .about-text p strong { color: var(--ivory); font-weight: 400; }

  .values-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .value-card {
    padding: 2rem;
    border: 0.5px solid var(--border);
    background: var(--surface);
    transition: border-color 0.25s;
  }

  .value-card:hover { border-color: rgba(201,169,110,0.3); }

  .value-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.75rem;
  }

  .value-title {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ivory);
    margin-bottom: 0.5rem;
  }

  .value-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.6;
  }

  /* SERVICES PAGE */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--border);
    border: 0.5px solid var(--border);
    margin-top: 4rem;
  }

  .service-card {
    background: var(--off-black);
    padding: 3rem 2.5rem;
    transition: background 0.3s;
    cursor: default;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
  }

  .service-card:hover { background: var(--surface); }
  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1.5rem;
    opacity: 0.7;
  }

  .service-name {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
  }

  .service-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1.5rem;
  }

  .service-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold);
  }

  .service-price span {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    vertical-align: middle;
    margin-left: 0.3rem;
  }

  .service-includes {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 0.5px solid var(--border);
    list-style: none;
  }

  .service-includes li {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--muted);
    padding: 0.3rem 0;
    display: flex; align-items: center; gap: 0.75rem;
  }

  .service-includes li::before {
    content: '';
    display: block; width: 12px; height: 0.5px;
    background: var(--gold);
    flex-shrink: 0;
  }

  /* TESTIMONIALS PAGE */
  .testimonials-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
  }

  .testimonial-card {
    padding: 2.5rem;
    border: 0.5px solid var(--border);
    background: var(--surface);
    position: relative;
  }

  .testimonial-card::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: 0.6;
    color: var(--gold);
    opacity: 0.25;
    position: absolute;
    top: 1.5rem; left: 2rem;
  }

  .testimonial-text {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 300;
    color: var(--ivory);
    line-height: 1.75;
    margin-bottom: 2rem;
    position: relative;
    padding-top: 2rem;
  }

  .testimonial-author {
    display: flex; align-items: center; gap: 1rem;
    border-top: 0.5px solid var(--border);
    padding-top: 1.5rem;
  }

  .author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--off-black);
    border: 0.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold);
    flex-shrink: 0;
  }

  .author-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ivory);
  }

  .author-vehicle {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--muted);
    margin-top: 0.15rem;
  }

  .stars {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
  }

  /* CONTACT PAGE */
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    padding-top: 4rem;
  }

  .contact-info-block {
    margin-bottom: 2.5rem;
  }

  .contact-label {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }

  .contact-value {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--ivory);
  }

  .contact-form {
    display: flex; flex-direction: column; gap: 1.5rem;
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  .form-field {
    display: flex; flex-direction: column; gap: 0.5rem;
  }

  .form-field label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    background: var(--surface);
    border: 0.5px solid var(--border);
    color: var(--ivory);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    padding: 0.9rem 1.1rem;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    resize: none;
  }

  .form-field input::placeholder,
  .form-field textarea::placeholder { color: rgba(245,240,232,0.2); }

  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus { border-color: var(--gold); }

  .form-field select option { background: #1a1a1a; }

  /* FOOTER */
  footer {
    border-top: 0.5px solid var(--border);
    padding: 3rem 4rem;
    display: flex; align-items: center; justify-content: space-between;
  }

  .footer-brand {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .footer-brand span { color: var(--gold); }

  .footer-copy {
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(245,240,232,0.25);
    letter-spacing: 0.05em;
  }

  /* DIVIDER */
  .gold-line {
    width: 60px; height: 0.5px;
    background: var(--gold);
    margin: 2rem 0;
  }

  /* ── TABLET ─────────────────────────────────────────── */
  @media (max-width: 900px) {
    nav { padding: 1.2rem 2rem; }
    .nav-links { gap: 1.5rem; }
    section, .hero, .about-hero { padding-left: 2rem; padding-right: 2rem; }
    .about-grid { padding-left: 2rem; padding-right: 2rem; grid-template-columns: 1fr; gap: 3rem; }
    .stats-bar { margin: 0 2rem; grid-template-columns: repeat(3,1fr); }
    .hero-title { font-size: 3rem; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; padding-left: 2rem; padding-right: 2rem; }
    .form-row { grid-template-columns: 1fr 1fr; }
    footer { flex-direction: column; gap: 1rem; text-align: center; }
  }

  /* ── MOBILE ──────────────────────────────────────────── */
  @media (max-width: 600px) {
    /* Nav */
    nav { padding: 1rem 1.25rem; }
    .nav-links { display: none; }
    .nav-logo { font-size: 1.1rem; }

    /* Hero */
    .hero { padding: 0 1.25rem 4rem; min-height: 100svh; }
    .hero-tag { font-size: 0.6rem; margin-bottom: 1rem; }
    .hero-title { font-size: 2.2rem; margin-bottom: 1.25rem; }
    .hero-sub { font-size: 0.85rem; margin-bottom: 2rem; }
    .hero-actions { flex-direction: column; gap: 0.75rem; }
    .hero-actions .btn-primary,
    .hero-actions .btn-ghost { width: 100%; text-align: center; padding: 0.9rem 1.5rem; }
    .hero-scroll { display: none; }

    /* Stats bar */
    .stats-bar { margin: 0; grid-template-columns: repeat(3,1fr); }
    .stat-item { padding: 1.5rem 1rem; border-right: 0.5px solid var(--border); }
    .stat-num { font-size: 2rem; }
    .stat-label { font-size: 0.6rem; }

    /* Sections */
    section { padding: 3.5rem 1.25rem; }
    .section-title { font-size: 2rem; }
    .gold-line { margin: 1.5rem 0; }

    /* Services */
    #services-wrap { padding: 0 1rem 3rem !important; }
    .services-grid { grid-template-columns: 1fr; gap: 1.5px; margin-top: 2rem; }
    .service-card { padding: 2rem 1.5rem; }

    /* About */
    .about-hero { padding: 6rem 1.25rem 3rem; min-height: auto; }
    .about-grid { padding: 3rem 1.25rem; grid-template-columns: 1fr; gap: 2.5rem; }
    .values-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .value-card { padding: 1.25rem; }

    /* Testimonials strip */
    [style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns: 1fr !important; }

    /* Coverage section */
    [style*="grid-template-columns:1fr 1fr"][style*="gap:6rem"] { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
    [style*="grid-template-columns:1fr 1fr"][style*="gap:0.5rem"] { grid-template-columns: 1fr 1fr !important; }

    /* Social links */
    [style*="display:flex"][style*="gap:1.5rem"][style*="flex-wrap:wrap"] { gap: 1rem !important; }
    [style*="display:flex"][style*="gap:1.5rem"][style*="flex-wrap:wrap"] > a { width: 100% !important; }

    /* Gallery */
    #gallery-track > div { flex: 0 0 260px !important; height: 200px !important; }
    [style*="padding:0 4rem 2rem"] { padding: 0 1.25rem 1.5rem !important; }
    [style*="padding:0 4rem;overflow-x"] { padding: 0 1.25rem !important; }

    /* Contact */
    .contact-grid { padding: 0 1.25rem 4rem !important; }
    .form-row { grid-template-columns: 1fr !important; }
    .contact-info-block { margin-bottom: 1.75rem; }

    /* Footer */
    footer { padding: 2rem 1.25rem; flex-direction: column; gap: 0.75rem; text-align: center; }
    .footer-copy { font-size: 0.65rem; }

    /* Buttons */
    .btn-primary, .btn-ghost { font-size: 0.65rem; }

    /* Nav mobile hamburger menu */
    #hamburger { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; cursor: pointer; background: none; border: none; padding: 0; z-index: 200; }
    #hamburger span { display: block; width: 24px; height: 1.5px; background: var(--ivory); transition: all 0.3s ease; margin: 0 auto; }
    #hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    #hamburger.open span:nth-child(2) { opacity: 0; }
    #hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  }
  #gallery-track::-webkit-scrollbar { display: none; }
  @media (max-width: 600px) { #why-grid { grid-template-columns: 1fr !important; } }
  @media (max-width: 900px) { #why-grid { grid-template-columns: 1fr 1fr !important; } }
  @media (max-width: 600px) { #wa-float { display: none !important; } }
  @media (max-width: 600px) { #sticky-cta { display: flex !important; } body { padding-bottom: 50px; } }
  @media (max-width: 600px) { #footer-grid { grid-template-columns: 1fr 1fr !important; gap: 2rem !important; } }
  @media (max-width: 400px) { #footer-grid { grid-template-columns: 1fr !important; } }
  @media (max-width: 600px) { #hiw-grid { grid-template-columns: 1fr !important; } #trust-strip { padding: 1.25rem !important; gap: 1rem !important; justify-content: flex-start !important; } }
  @media (max-width: 600px) {
    #est-result > div { flex-direction: column !important; }
    #est-price { font-size: 3rem !important; }
  }
  @media (max-width: 600px) {
    #hamburger { display: flex !important; }
  }
  #mobile-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--off-black);
    z-index: 150;
    align-items: center;
    justify-content: center;
    gap: 2.75rem;
  }
  #mobile-nav a {
    color: var(--ivory);
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
  }
  #mobile-nav a:hover, #mobile-nav a.mobile-gold { color: var(--gold); }
  #mobile-nav-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: 0.5px solid rgba(245,240,232,0.2);
    color: var(--ivory);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s;
  }
  #mobile-nav-close:hover { border-color: var(--gold); color: var(--gold); }
  #mobile-nav-divider { width: 40px; height: 0.5px; background: var(--border); }

/* ═══════════════════════════════════════════════════════
   SERVICE DETAIL PAGES
   ═══════════════════════════════════════════════════════ */

/* ── Breadcrumb ── */
.breadcrumb {
  padding: 5.5rem 4rem 0;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ── Service hero ── */
.svc-hero {
  padding: 3rem 4rem 4rem;
  max-width: 780px;
}
.svc-hero .service-number {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.svc-hero .service-number::before {
  content: '';
  display: block;
  width: 40px;
  height: 0.5px;
  background: var(--gold);
}
.svc-hero h1 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.svc-hero h1 em {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
}
.svc-hero .svc-tagline {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  max-width: 600px;
  margin-bottom: 2rem;
}
.svc-hero-meta {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.svc-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.svc-meta-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.svc-meta-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: 0.05em;
}
.svc-meta-value em { color: var(--gold); font-style: normal; }
.svc-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Image slider ── */
.svc-slider-section {
  padding: 0 0 5rem;
}
.svc-slider-label {
  padding: 0 4rem;
  margin-bottom: 2rem;
}
.svc-slider-wrap {
  position: relative;
}
.svc-slider-track {
  display: flex;
  gap: 12px;
  padding: 0 4rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.svc-slider-track::-webkit-scrollbar { display: none; }
.svc-slide {
  flex: 0 0 420px;
  height: 280px;
  overflow: hidden;
  border-radius: 2px;
  background: var(--surface);
}
.svc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.svc-slide:hover img { transform: scale(1.03); }
.svc-slide-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.svc-slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 0 4rem;
}
.svc-slider-btn {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 0.5px solid rgba(245,240,232,0.2);
  padding: 0.75rem 1.75rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.svc-slider-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ── Video placeholder ── */
.video-section {
  padding: 0 4rem 6rem;
}
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  overflow: hidden;
}
.video-wrap.has-video { background: #000; border: none; }
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-play-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 0.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-placeholder-text {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

/* ── Content sections ── */
.svc-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding: 5rem 4rem;
  align-items: start;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.svc-content-full { padding: 0 4rem 5rem; max-width: 780px; }
.svc-content h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.svc-content h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
}
.svc-content p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

/* ── What's included ── */
.includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
}
.includes-list li::before {
  content: '';
  display: block;
  width: 14px;
  height: 0.5px;
  background: var(--gold);
  margin-top: 0.7em;
  flex-shrink: 0;
}

/* ── Process steps ── */
.svc-process {
  padding: 5rem 4rem;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.svc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.svc-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.svc-step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(201,169,110,0.2);
  line-height: 1;
}
.svc-step-title {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: 0.05em;
}
.svc-step-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Pricing table ── */
.svc-pricing {
  padding: 5rem 4rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.svc-price-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  margin-top: 3rem;
  background: var(--border);
}
.pricing-cell {
  background: var(--surface);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pricing-cell.header {
  background: rgba(201,169,110,0.08);
}
.pricing-vehicle {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.pricing-example {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--muted);
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ivory);
  margin-top: 0.5rem;
}
.pricing-note {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ── Why bother section ── */
.svc-why {
  padding: 5rem 4rem;
  border-top: 0.5px solid var(--border);
}
.svc-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.svc-why-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem;
  border: 0.5px solid var(--border);
}
.svc-why-title {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: 0.05em;
}
.svc-why-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Service-specific FAQ ── */
.svc-faq { padding: 5rem 4rem; border-top: 0.5px solid var(--border); }

/* ── Final CTA banner ── */
.svc-cta {
  padding: 5rem 4rem;
  text-align: center;
  background: var(--surface);
  border-top: 0.5px solid var(--border);
}
.svc-cta h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.svc-cta h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
}
.svc-cta p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.85;
}
.svc-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Mobile overrides ── */
@media (max-width: 900px) {
  .svc-hero h1 { font-size: 2.5rem; }
  .svc-content { grid-template-columns: 1fr; gap: 3rem; }
  .svc-steps { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .svc-why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  #booking-hero { padding-top: 6rem !important; }
  .breadcrumb { padding: 5rem 1.25rem 0; }
  .svc-hero { padding: 2rem 1.25rem 3rem; }
  .svc-hero h1 { font-size: 2rem; }
  .svc-hero-meta { gap: 1.5rem; }
  .svc-slider-label { padding: 0 1.25rem; }
  .svc-slider-track { padding: 0 1.25rem; }
  .svc-slide { flex: 0 0 280px; height: 200px; }
  .svc-slider-controls { padding: 0 1.25rem; }
  .video-section { padding: 0 1.25rem 4rem; }
  .svc-content { padding: 3.5rem 1.25rem; gap: 2.5rem; }
  .svc-content-full { padding: 0 1.25rem 3.5rem; }
  .svc-process { padding: 3.5rem 1.25rem; }
  .svc-steps { grid-template-columns: 1fr; gap: 2rem; }
  .svc-pricing { padding: 3.5rem 1.25rem; }
  .svc-price-cards { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-cell { padding: 1.25rem 1rem; }
  .pricing-amount { font-size: 1.5rem; }
  .svc-why { padding: 3.5rem 1.25rem; }
  .svc-why-grid { grid-template-columns: 1fr; }
  .svc-faq { padding: 3.5rem 1.25rem; }
  .svc-cta { padding: 4rem 1.25rem; }
  .svc-cta h2 { font-size: 1.75rem; }
}

/* ── Service card photo thumbnail ── */
.service-thumb {
  width: calc(100% + 5rem);
  margin: -3rem -2.5rem 2rem;
  height: 180px;
  overflow: hidden;
  position: relative;
}
.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.72) saturate(0.85);
  transition: transform 0.5s ease, filter 0.4s ease;
}
a.service-card:hover .service-thumb img {
  transform: scale(1.06);
  filter: brightness(0.88) saturate(1.05);
}

/* ── FAQ open state ── */
.faq-item.open {
  box-shadow: inset 3px 0 0 var(--gold);
  padding-left: 1.5rem;
}

/* ── Process step number ── */
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.55;
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

/* ── Pricing card visual upgrade ── */
.price-card-size {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.price-card-amount {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.price-card-examples {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Clickable service cards ── */
a.service-card {
  text-decoration: none;
  display: block;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
a.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
a.service-card .card-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.2s ease;
}
a.service-card:hover .card-cta { gap: 0.85rem; }
a.service-card .card-cta-line {
  display: block;
  width: 20px;
  height: 0.5px;
  background: var(--gold);
  transition: width 0.2s ease;
}
a.service-card:hover .card-cta-line { width: 32px; }
.service-card-quote {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════════
   BOOKING SYSTEM
   ═══════════════════════════════════════════════════════ */

/* ── Progress bar ── */
.booking-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 2.5rem 4rem 0;
  max-width: 640px;
  margin: 0 auto;
}
.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  position: relative;
}
.progress-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 16px;
  left: calc(50% + 16px);
  right: calc(-50% + 16px);
  height: 0.5px;
  background: var(--border);
  transition: background 0.3s;
}
.progress-step.done:not(:last-child)::after { background: var(--gold); }
.progress-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0.5px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}
.progress-step.active .progress-dot {
  border-color: var(--gold);
  background: rgba(201,169,110,0.12);
  color: var(--gold);
}
.progress-step.done .progress-dot {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}
.progress-label {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  transition: color 0.3s;
}
.progress-step.active .progress-label { color: var(--gold); }
.progress-step.done .progress-label { color: var(--ivory); }

/* ── Booking steps container ── */
.booking-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 3.5rem 2rem 6rem;
}
.booking-step {
  display: none;
  animation: fadeInUp 0.3s ease;
}
.booking-step.active { display: block; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.booking-step-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.booking-step-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
}
.booking-step-sub {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* ── Service selector cards ── */
.booking-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-bottom: 2.5rem;
}
@media (max-width: 600px) {
  .booking-services { display: none !important; }
  #service-dropdown-wrap { display: block !important; }
}
.booking-svc {
  background: var(--surface);
  padding: 1.5rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  border: 2px solid transparent;
  position: relative;
  outline: none;
}
.booking-svc:hover { background: rgba(201,169,110,0.06); }
.booking-svc.selected {
  background: rgba(201,169,110,0.1);
  border-color: var(--gold);
  z-index: 1;
}
.booking-svc-num {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.booking-svc-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}
.booking-svc-price {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--gold);
}
.booking-svc-check {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  display: none;
  align-items: center;
  justify-content: center;
}
.booking-svc.selected .booking-svc-check { display: flex; }

/* ── Vehicle size pills ── */
.booking-pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.booking-pill {
  border: 0.5px solid var(--border);
  background: var(--surface);
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  outline: none;
}
.booking-pill:hover { border-color: rgba(201,169,110,0.4); }
.booking-pill.selected {
  border-color: var(--gold);
  background: rgba(201,169,110,0.1);
}
.booking-pill-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory);
}
.booking-pill-eg {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--muted);
}

/* ── Form inputs ── */
.booking-field {
  margin-bottom: 1.5rem;
}
.booking-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.booking-input {
  width: 100%;
  background: var(--surface);
  border: 0.5px solid var(--border);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

/* Flatpickr overrides — keep the date input dark */
.flatpickr-input {
  background: var(--surface) !important;
  color: var(--ivory) !important;
  border: 0.5px solid var(--border) !important;
  border-radius: 0 !important;
}
.flatpickr-input:focus { border-color: var(--gold) !important; }

/* ── Two-column section layout (FAQ + Estimator desktop) ── */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.two-col-left {
  position: sticky;
  top: 5rem;
}
.two-col-right {
  /* right col fills remaining space naturally */
}
@media (max-width: 860px) {
  .two-col-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .two-col-left {
    position: static;
  }
}

/* ── Homepage estimator dropdowns ── */
.est-field {
  margin-bottom: 1.25rem;
}
.est-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.est-select {
  width: 100%;
  background: var(--surface);
  border: 0.5px solid var(--border);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.est-select:focus { border-color: var(--gold); }
.est-select:disabled { opacity: 0.4; cursor: default; }
.est-select option { background: #1a1a1a; }

.booking-select,
.booking-textarea {
  width: 100%;
  background: var(--surface);
  border: 0.5px solid var(--border);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}
.booking-input:focus,
.booking-select:focus,
.booking-textarea:focus { border-color: var(--gold); }
.booking-input::placeholder,
.booking-textarea::placeholder { color: rgba(245,240,232,0.25); }
.booking-input.error { border-color: #e05c5c; }
.booking-error-msg {
  font-size: 0.72rem;
  color: #e05c5c;
  margin-top: 0.4rem;
  display: none;
}
.booking-textarea { resize: vertical; min-height: 100px; }
.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ── Date picker (flatpickr dark theme overrides) ── */
.flatpickr-calendar {
  background: var(--off-black) !important;
  border: 0.5px solid var(--border) !important;
  border-radius: 0 !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5) !important;
  font-family: var(--font-body) !important;
}
.flatpickr-months { background: var(--surface) !important; }
.flatpickr-months .flatpickr-month { color: var(--ivory) !important; }
.flatpickr-current-month { color: var(--ivory) !important; font-weight: 300 !important; }
.flatpickr-weekday { color: var(--muted) !important; font-size: 0.65rem !important; letter-spacing: 0.1em !important; }
.flatpickr-day { color: var(--muted) !important; border-radius: 0 !important; }
.flatpickr-day:hover { background: rgba(201,169,110,0.12) !important; border-color: var(--gold) !important; color: var(--ivory) !important; }
.flatpickr-day.selected, .flatpickr-day.selected:hover { background: var(--gold) !important; border-color: var(--gold) !important; color: var(--black) !important; }
.flatpickr-day.disabled, .flatpickr-day.disabled:hover { color: rgba(245,240,232,0.15) !important; }
.flatpickr-prev-month svg, .flatpickr-next-month svg { fill: var(--gold) !important; }
.numInputWrapper span.arrowUp::after { border-bottom-color: var(--gold) !important; }
.numInputWrapper span.arrowDown::after { border-top-color: var(--gold) !important; }
.flatpickr-time { border-top: 0.5px solid var(--border) !important; background: var(--surface) !important; }
.flatpickr-time input { color: var(--ivory) !important; background: transparent !important; }
.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month { color: var(--gold) !important; }

/* ── Time slot pills ── */
.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.time-slot {
  border: 0.5px solid var(--border);
  background: var(--surface);
  padding: 1rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  outline: none;
}
.time-slot:hover { border-color: rgba(201,169,110,0.4); }
.time-slot.selected { border-color: var(--gold); background: rgba(201,169,110,0.1); }
.time-slot-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory);
  display: block;
  margin-bottom: 0.25rem;
}
.time-slot-range {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--muted);
}

/* ── Booking nav buttons ── */
.booking-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  gap: 1rem;
}
.btn-booking-back {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 0.5px solid var(--border);
  padding: 0.9rem 1.75rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-booking-back:hover { border-color: var(--gold); color: var(--ivory); }
.btn-booking-next {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border: none;
  padding: 0.9rem 2.5rem;
  cursor: pointer;
  transition: opacity 0.2s;
  flex: 1;
  max-width: 260px;
}
.btn-booking-next:hover { opacity: 0.88; }
.btn-booking-next:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── Summary box ── */
.booking-summary {
  background: var(--surface);
  border: 0.5px solid var(--border);
  padding: 1.75rem;
  margin-bottom: 2rem;
}
.booking-summary-title {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.booking-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.6rem 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.04);
  gap: 1rem;
}
.booking-summary-row:last-child { border-bottom: none; }
.booking-summary-key {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--muted);
  white-space: nowrap;
}
.booking-summary-val {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--ivory);
  text-align: right;
}

/* ── Confirmation screen ── */
.booking-confirm {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
  animation: fadeInUp 0.4s ease;
}
.booking-confirm.active { display: block; }
.confirm-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 0.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}
.confirm-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 1rem;
}
.confirm-title em { font-family: var(--font-serif); font-style: italic; color: var(--gold); }
.confirm-sub {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.85;
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .booking-progress { padding: 1.5rem 1.25rem 0; gap: 0; }
  .progress-label { display: none; }
  .booking-wrap { padding: 2.5rem 1.25rem 5rem; }
  .booking-step-title { font-size: 1.6rem; }
  .booking-services { grid-template-columns: 1fr; }
  .booking-row { grid-template-columns: 1fr; }
  .time-slots { grid-template-columns: 1fr; }
  .booking-nav { flex-direction: column-reverse; }
  .btn-booking-next { max-width: 100%; width: 100%; }
  .btn-booking-back { width: 100%; }
}

/* ═══════════════════════════════════════════════════════
   GOOGLE REVIEWS
   ═══════════════════════════════════════════════════════ */

.gr-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  padding: 1.25rem 1.5rem;
  border: 0.5px solid var(--border);
  background: var(--surface);
  max-width: 280px;
}
.gr-rating-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
}
.gr-stars {
  color: #fbbc04;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  margin: 0.25rem 0 0.2rem;
}
.gr-source {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.gr-card {
  padding: 1.5rem;
  border: 0.5px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
}
.gr-card-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.gr-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
  flex-shrink: 0;
}
.gr-reviewer-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.2;
}
.gr-date {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.1rem;
}
.gr-card-stars {
  color: #fbbc04;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}
.gr-review-text {
  font-size: 0.86rem;
  font-weight: 300;
  color: rgba(245,240,232,0.8);
  line-height: 1.78;
  flex: 1;
}
.gr-vehicle-tag {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 0.5px solid var(--border);
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.gr-see-all {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  border: 0.5px solid rgba(245,240,232,0.25);
  padding: 0.9rem 2rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.gr-see-all:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 900px) {
  .gr-grid { grid-template-columns: 1fr; }
  .gr-header { max-width: 100%; }
}
@media (max-width: 600px) {
  .gr-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   BEFORE / AFTER COMPARISON SLIDER
   ═══════════════════════════════════════════════════════ */

.ba-wrap {
  padding: 0 4rem 2rem;
}
.ba-slider {
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  height: 460px;
  border-radius: 2px;
}
.ba-after {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}
.ba-before-wrap {
  position: absolute;
  top: 0; left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.ba-before-wrap img {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
  filter: grayscale(1) brightness(0.65) contrast(1.05);
}
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: rgba(255,255,255,0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(0,0,0,0.4);
}
.ba-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px rgba(0,0,0,0.55);
  flex-shrink: 0;
  pointer-events: none;
}
.ba-arrows {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #111;
  font-size: 0.75rem;
  font-family: var(--font-body);
}
.ba-label {
  position: absolute;
  bottom: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  background: rgba(8,8,8,0.7);
  color: var(--ivory);
  backdrop-filter: blur(6px);
  pointer-events: none;
}
.ba-label--before { left: 1.25rem; }
.ba-label--after { right: 1.25rem; }
.ba-hint {
  margin-top: 0.85rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 600px) {
  .ba-wrap { padding: 0 0 2rem; }
  .ba-slider { height: 280px; }
  .ba-circle { width: 40px; height: 40px; }
}

/* ── Booking add-ons grid ── */
.addon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}
.addon-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 0.5px solid var(--border);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  user-select: none;
  -webkit-user-select: none;
}
.addon-card:hover {
  border-color: rgba(201,169,110,0.4);
}
.addon-cb {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}
.addon-tick {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  flex-shrink: 0;
}
.addon-card:has(.addon-cb:checked) {
  border-color: var(--gold);
  background: rgba(201,169,110,0.06);
}
.addon-card:has(.addon-cb:checked) .addon-tick {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1a1a;
}
.addon-info {
  flex: 1;
  min-width: 0;
}
.addon-name {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}
.addon-desc {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.45;
}
.addon-price {
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--gold);
  white-space: nowrap;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .addon-grid { grid-template-columns: 1fr; }
}

/* ── Homepage hero before/after slider ── */
.home-ba-section {
  padding: 5rem 0 0;
  border-top: 0.5px solid var(--border);
}
.home-ba-label {
  text-align: center;
  padding: 0 4rem 2.5rem;
}
.home-ba-wrap {
  padding: 0;
}
.home-ba-slider {
  height: 580px;
  border-radius: 0;
}
@media (max-width: 768px) {
  .home-ba-label { padding: 0 1.5rem 2rem; }
  .home-ba-slider { height: 360px; }
}
@media (max-width: 480px) {
  .home-ba-slider { height: 280px; }
}
