/* ============================================================
   LYFTED AUTO DETAILING — Premium Design System
   Brand: Black / White / Charcoal / Silver
   ============================================================ */

/* ── CSS Custom Properties ──────────────────────────────────── */
:root {
  --black:       #0a0a0a;
  --dark:        #111111;
  --charcoal:    #1e1e1e;
  --mid:         #2a2a2a;
  --grey:        #3c3c3c;
  --grey-light:  #6b6b6b;
  --silver:      #9e9e9e;
  --border:      #2a2a2a;
  --white:       #ffffff;
  --off-white:   #f5f5f5;
  --cream:       #ececec;
  --accent:      #c8a96e;   /* warm gold/metallic accent */
  --accent-dim:  #9a7c47;
  --success:     #2e7d32;
  --error:       #c62828;
  --warning:     #e65100;

  --font-heading: 'Barlow Condensed', 'Inter', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   16px;
  --radius-xl:   24px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,0.4);
  --shadow:      0 4px 20px rgba(0,0,0,0.5);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 30px rgba(200,169,110,0.15);

  --nav-h:       72px;
  --transition:  0.28s ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Utility ─────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 100px 0; }
.section--dark  { background: var(--black); }
.section--mid   { background: var(--dark); }
.section--charcoal { background: var(--charcoal); }

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--white);
}
.section-subtitle {
  font-size: 17px;
  font-weight: 400;
  color: var(--silver);
  margin-top: 14px;
  max-width: 560px;
}
.section-header { margin-bottom: 60px; }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin: 14px auto 0; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--black);
}
.btn-primary:hover {
  background: #d4b87c;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200,169,110,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  border: 1.5px solid var(--border);
}
.btn-dark:hover {
  background: var(--mid);
  border-color: var(--accent);
  color: var(--accent);
}
.btn-sm { padding: 10px 22px; font-size: 12px; }
.btn-lg { padding: 20px 44px; font-size: 15px; }

/* ── Navigation ──────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-svg {
  width: 130px;
  height: auto;
  display: block;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,0.5));
}
.logo-img {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-cta { margin-left: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 0;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .btn { margin-top: 16px; justify-content: center; }

/* ── Hero ────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.82) 55%, rgba(10,10,10,0.4) 100%),
    url('https://images.unsplash.com/photo-1607860108855-64acf2078ed9?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--black), transparent);
}
/* Two-column inner layout */
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 100px;
  min-height: 100vh;
  box-sizing: border-box;
}
.hero-content {
  max-width: 600px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--accent);
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
}
.hero-subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 28px;
}
/* Pill tags */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 7px 14px;
  transition: border-color 0.2s, color 0.2s;
}
.hero-pill:hover {
  border-color: rgba(200,169,110,0.5);
  color: var(--accent);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
/* Inline rating row */
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-rating-stars {
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--accent);
}
.hero-rating-text {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.hero-rating-text strong {
  color: var(--white);
  font-weight: 700;
}
/* Right-side stat cards */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex-shrink: 0;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px 20px;
  min-width: 110px;
  transition: border-color 0.3s, background 0.3s;
}
.hero-stat:hover {
  background: rgba(200,169,110,0.06);
  border-color: rgba(200,169,110,0.25);
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--silver);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-hint svg { width: 18px; opacity: 0.5; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Trust Bar ────────────────────────────────────────────────── */
#trust {
  background: var(--dark);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-header { text-align: center; margin-bottom: 56px; }
.trust-stat-row {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 64px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.trust-stat {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid var(--border);
}
.trust-stat:last-child { border-right: none; }
.trust-stat-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.trust-stat-num span { color: var(--accent); }
.trust-stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 6px;
}
.stars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-bottom: 4px;
}
.star {
  color: var(--accent);
  font-size: 16px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.review-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  transition: border-color var(--transition), transform var(--transition);
}
.review-card:hover {
  border-color: rgba(200,169,110,0.35);
  transform: translateY(-2px);
}
.review-card-stars { margin-bottom: 14px; }
.review-card-text {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}
.review-card-author { display: flex; align-items: center; gap: 12px; }
.review-author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--mid);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--accent);
}
.review-author-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}
.review-google-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--silver);
  margin-top: 8px;
}
.google-g {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4, #0f9d58, #f4b400, #db4437);
  display: inline-block;
}

/* Trust statement */
.trust-statement {
  text-align: center;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.trust-statement p {
  font-size: 19px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}
.trust-statement em { font-style: normal; color: var(--white); font-weight: 600; }

/* ── Services ────────────────────────────────────────────────── */
#services { background: var(--black); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover { border-color: rgba(200,169,110,0.3); transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(200,169,110,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.service-icon svg { width: 28px; height: 28px; stroke: var(--accent); fill: none; stroke-width: 1.5; }
.service-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.service-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--silver);
}
.service-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.service-list li::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Pricing ─────────────────────────────────────────────────── */
#pricing { background: var(--dark); }
.pricing-note {
  background: rgba(200,169,110,0.08);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
}
.pricing-note strong { color: var(--accent); }
.vehicle-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}
.vtab {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--silver);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.vtab:hover { border-color: var(--accent); color: var(--accent); }
.vtab.active { background: var(--accent); border-color: var(--accent); color: var(--black); }
.vehicle-panel { display: none; }
.vehicle-panel.active { display: block; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pricing-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition);
}
.pricing-card.featured {
  background: var(--mid);
  border-color: rgba(200,169,110,0.4);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-card-name {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.pricing-card-tagline {
  font-size: 12px;
  color: var(--silver);
  margin-bottom: 24px;
}
.pricing-price {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price sup {
  font-size: 22px;
  vertical-align: super;
  font-weight: 700;
}
.pricing-includes {
  font-size: 11px;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  margin-top: 4px;
}
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}
.check-icon {
  width: 16px; height: 16px;
  background: rgba(200,169,110,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-icon svg { width: 9px; stroke: var(--accent); fill: none; stroke-width: 2.5; }
.pricing-cta {
  margin-top: 28px;
  width: 100%;
  justify-content: center;
}
.pricing-disclaimer {
  text-align: center;
  margin-top: 36px;
  font-size: 13px;
  color: var(--silver);
}

/* ── Add-Ons ─────────────────────────────────────────────────── */
#addons { background: var(--black); }
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.addon-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--transition);
}
.addon-card:hover {
  border-color: rgba(200,169,110,0.35);
  transform: translateY(-2px);
}
.addon-icon {
  width: 44px; height: 44px;
  margin: 0 auto 14px;
  background: rgba(200,169,110,0.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.addon-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.5; }
.addon-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.addon-price {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}
.addon-price span { font-size: 13px; font-weight: 400; color: var(--silver); }
.addon-note {
  font-size: 11px;
  color: var(--grey-light);
  margin-top: 4px;
}

/* ── Gallery ─────────────────────────────────────────────────── */
#gallery { background: var(--dark); }
.gallery-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.gtab {
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--silver);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all var(--transition);
}
.gtab:hover { color: var(--white); border-color: var(--grey); }
.gtab.active {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--charcoal);
  cursor: pointer;
}
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-before-after {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}
.gallery-half {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.gallery-half--before {
  background: linear-gradient(135deg, #2a1a0a, #1a1a1a);
}
.gallery-half--after {
  background: linear-gradient(135deg, #0a1a0a, #111111);
}
.gallery-half-label {
  position: absolute;
  top: 10px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.gallery-half--before .gallery-half-label {
  left: 10px;
  background: rgba(200,100,100,0.2);
  color: #ff8080;
  border: 1px solid rgba(200,100,100,0.3);
}
.gallery-half--after .gallery-half-label {
  right: 10px;
  background: rgba(100,200,100,0.2);
  color: #80ff80;
  border: 1px solid rgba(100,200,100,0.3);
}
.gallery-divider {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--accent);
  z-index: 2;
}
.gallery-divider::after {
  content: '↔';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px; height: 28px;
  background: var(--accent);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}
.gallery-svg-art {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Why Choose Us ───────────────────────────────────────────── */
#why { background: var(--charcoal); }
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-visual {
  position: relative;
}
.why-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.why-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.why-img-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.why-img-badge-icon { color: var(--accent); font-size: 22px; }
.why-img-badge-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.why-img-badge-text span {
  font-size: 12px;
  color: var(--silver);
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-item-icon {
  width: 48px; height: 48px;
  background: rgba(200,169,110,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-item-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.5; }
.why-item-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.why-item-text {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.6;
}

/* ── Booking ─────────────────────────────────────────────────── */
#booking { background: var(--black); }
.booking-container {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.booking-steps {
  display: flex;
  background: var(--charcoal);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}
.booking-step {
  flex: 1;
  min-width: 120px;
  padding: 18px 16px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--grey-light);
  border-right: 1px solid var(--border);
  position: relative;
  transition: color var(--transition);
}
.booking-step:last-child { border-right: none; }
.booking-step.active { color: var(--accent); }
.booking-step.done { color: var(--silver); }
.booking-step.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
}
.booking-step-num {
  display: block;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 6px;
  font-weight: 800;
}
.booking-step.done .booking-step-num {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}
.booking-body {
  padding: 48px 48px 40px;
}
.booking-panel { display: none; }
.booking-panel.active { display: block; }
.booking-panel-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.booking-panel-sub {
  font-size: 14px;
  color: var(--silver);
  margin-bottom: 32px;
}

/* Package select */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.pkg-option {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}
.pkg-option:hover { border-color: rgba(200,169,110,0.4); }
.pkg-option.selected {
  border-color: var(--accent);
  background: rgba(200,169,110,0.07);
}
.pkg-check {
  position: absolute;
  top: 12px; right: 12px;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.pkg-option.selected .pkg-check {
  background: var(--accent);
  border-color: var(--accent);
}
.pkg-check svg { width: 10px; stroke: var(--black); fill: none; stroke-width: 3; display: none; }
.pkg-option.selected .pkg-check svg { display: block; }
.pkg-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.pkg-desc { font-size: 12px; color: var(--silver); margin-bottom: 12px; }
.pkg-price { font-size: 22px; font-weight: 800; color: var(--accent); font-family: var(--font-heading); }
.pkg-price span { font-size: 12px; font-weight: 400; color: var(--silver); }

/* Vehicle size */
.size-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}
.size-option {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
}
.size-option:hover { border-color: rgba(200,169,110,0.4); }
.size-option.selected {
  border-color: var(--accent);
  background: rgba(200,169,110,0.07);
}
.size-icon { font-size: 28px; margin-bottom: 8px; }
.size-name { font-size: 13px; font-weight: 700; color: var(--white); }
.size-note { font-size: 11px; color: var(--silver); margin-top: 2px; }

/* Add-on checkboxes */
.addon-checks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}
.addon-check {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  cursor: pointer;
  transition: all var(--transition);
}
.addon-check:hover { border-color: rgba(200,169,110,0.3); }
.addon-check.selected {
  border-color: rgba(200,169,110,0.5);
  background: rgba(200,169,110,0.06);
}
.addon-check-box {
  width: 18px; height: 18px;
  border: 1.5px solid var(--grey);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.addon-check.selected .addon-check-box {
  background: var(--accent);
  border-color: var(--accent);
}
.addon-check-box svg { width: 10px; stroke: var(--black); fill: none; stroke-width: 3; }
.addon-check-label { font-size: 13px; font-weight: 600; color: var(--white); }
.addon-check-price { font-size: 12px; color: var(--accent); margin-left: auto; font-weight: 700; }

/* Calendar */
.calendar-wrap {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 28px;
}
.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.cal-month {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}
.cal-nav-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--silver);
  transition: all var(--transition);
  background: none;
  cursor: pointer;
}
.cal-nav-btn:hover { border-color: var(--accent); color: var(--accent); }
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}
.cal-weekday {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--silver);
  padding: 8px 0;
}
.cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--silver);
  cursor: default;
  transition: all var(--transition);
}
.cal-day.other-month { color: var(--grey); }
.cal-day.past { color: var(--grey); text-decoration: line-through; }
.cal-day.available {
  background: rgba(200,169,110,0.08);
  color: var(--white);
  cursor: pointer;
  border: 1px solid transparent;
}
.cal-day.available:hover { background: rgba(200,169,110,0.2); border-color: rgba(200,169,110,0.4); }
.cal-day.selected { background: var(--accent); color: var(--black); font-weight: 800; }
.cal-day.blocked { color: var(--grey); cursor: not-allowed; opacity: 0.4; }

.time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
  margin-top: 20px;
}
.time-slot {
  padding: 12px 10px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  color: var(--silver);
  cursor: pointer;
  transition: all var(--transition);
}
.time-slot:hover { border-color: rgba(200,169,110,0.4); color: var(--white); }
.time-slot.selected { background: var(--accent); border-color: var(--accent); color: var(--black); }
.time-slot.booked {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.2);
  cursor: not-allowed;
  text-decoration: line-through;
  position: relative;
}
.time-slot.booked::after {
  content: 'Booked';
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,100,100,0.55);
  margin-top: 2px;
  text-decoration: none;
}
.time-slot-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--silver);
  font-size: 13px;
  padding: 14px 0;
  opacity: 0.7;
  font-style: italic;
}

/* ── Custom Time Request ── */
.custom-time-wrap {
  margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 18px;
}
.custom-time-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  opacity: 0.75;
  transition: opacity var(--transition), color var(--transition);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-style: dashed;
}
.custom-time-toggle:hover,
.custom-time-wrap.active .custom-time-toggle {
  opacity: 1;
  color: var(--accent);
}
.custom-time-banner {
  margin-top: 14px;
  background: rgba(200,169,110,0.07);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: fadeSlideUp 0.25s ease both;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.custom-time-icon svg {
  stroke: var(--accent);
  opacity: 0.7;
}
.custom-time-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.custom-time-text p {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.65;
  margin: 0;
}
.btn-accent {
  background: var(--accent);
  color: var(--black);
  border: none;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.btn-accent:hover {
  background: #dfc07e;
  color: var(--black);
}
.custom-time-select.chosen {
  background: rgba(200,169,110,0.15);
  color: var(--accent);
  border: 1px solid rgba(200,169,110,0.4);
  cursor: default;
  pointer-events: none;
}

/* ── Service Areas ── */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
}
.area-tag {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 9px 20px;
  font-size: 14px;
  color: var(--silver);
  transition: all var(--transition);
}
.area-tag:hover {
  border-color: rgba(200,169,110,0.4);
  color: var(--white);
}

/* Contact Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  font-size: 15px;
  transition: border-color var(--transition);
}
.form-input:focus {
  outline: none;
  border-color: rgba(200,169,110,0.5);
  background: rgba(200,169,110,0.04);
}
.form-input::placeholder { color: var(--grey-light); }
textarea.form-input { resize: vertical; min-height: 100px; }

/* Booking Summary */
.booking-summary {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 28px;
}
.booking-summary-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 16px;
}
.booking-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.booking-summary-row:last-child { border-bottom: none; font-weight: 700; font-size: 16px; }
.booking-summary-row span:first-child { color: var(--silver); }
.booking-summary-row span:last-child { color: var(--white); }
.booking-summary-row.total span:last-child { color: var(--accent); font-size: 22px; font-family: var(--font-heading); }

/* Booking nav */
.booking-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}
.booking-progress {
  font-size: 12px;
  color: var(--silver);
}

/* Success */
.booking-success {
  text-align: center;
  padding: 60px 20px;
}
.booking-success-icon {
  width: 80px; height: 80px;
  background: rgba(46,125,50,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  border: 1.5px solid rgba(46,125,50,0.4);
}
.booking-success-icon svg { width: 40px; stroke: #4caf50; fill: none; stroke-width: 2; }
.booking-success h3 { font-size: 28px; font-weight: 800; font-family: var(--font-heading); margin-bottom: 10px; }
.booking-success p { color: var(--silver); max-width: 400px; margin: 0 auto; line-height: 1.6; }

/* ── Contact ─────────────────────────────────────────────────── */
#contact { background: var(--dark); }
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.contact-info { }
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(200,169,110,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; stroke: var(--accent); fill: none; stroke-width: 1.5; }
.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}
.contact-info-value a:hover { color: var(--accent); }
.contact-form {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.contact-form-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
}

/* ── Footer ──────────────────────────────────────────────────── */
#footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 60px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { }
.footer-logo svg { width: 150px; }
.footer-tagline {
  font-size: 13px;
  color: var(--silver);
  margin-top: 14px;
  line-height: 1.65;
  max-width: 260px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--silver);
  transition: all var(--transition);
}
.social-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(200,169,110,0.08);
}
.social-btn svg { width: 18px; fill: currentColor; }
.footer-col-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: var(--silver);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 12px;
  color: var(--grey-light);
}
.footer-google-reviews {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--silver);
}
.footer-google-reviews .stars-row { gap: 2px; }
.footer-google-reviews .star { font-size: 12px; }

/* ── Logo Concepts ───────────────────────────────────────────── */
#logos { background: var(--charcoal); padding: 100px 0; }
.logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.logo-concept-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.logo-concept-card:hover { border-color: rgba(200,169,110,0.4); }
.logo-preview {
  padding: 40px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}
.logo-preview.on-black { background: #0a0a0a; }
.logo-preview.on-white { background: #ffffff; }
.logo-preview.on-charcoal { background: #1e1e1e; }
.logo-concept-info {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.logo-concept-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 4px;
}
.logo-concept-desc {
  font-size: 12px;
  color: var(--silver);
}

/* ── Misc / Animations ───────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0;
  opacity: 0.4;
}

/* Toast */
#toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition);
  max-width: 340px;
  box-shadow: var(--shadow-lg);
}
#toast.success { border-color: #2e7d32; }
#toast.error   { border-color: #c62828; }
#toast.show { transform: translateY(0); opacity: 1; }

/* ── Loading Screen ──────────────────────────────────────────── */
body.loading { overflow: hidden; }

#loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.loader-logo {
  width: clamp(200px, 45vw, 300px);
  opacity: 0;
  transform: scale(0.88) translateY(8px);
  animation: loaderLogoIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
  filter: drop-shadow(0 0 40px rgba(200,169,110,0.4));
}
.loader-logo svg {
  width: 100%;
  height: auto;
  display: block;
}
@keyframes loaderLogoIn {
  to { opacity: 1; transform: scale(1); }
}
.loader-bar-wrap {
  width: clamp(140px, 30vw, 220px);
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: loaderBarAppear 0.4s ease 0.7s forwards;
}
@keyframes loaderBarAppear {
  to { opacity: 1; }
}
.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #c8a96e, #e8c98e, #c8a96e);
  border-radius: 2px;
  animation: loaderBarFill 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
}
@keyframes loaderBarFill {
  to { width: 100%; }
}
.loader-tagline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0;
  animation: loaderTagIn 0.5s ease 1s forwards;
}
@keyframes loaderTagIn {
  to { opacity: 1; }
}

/* ── Responsive ─────────────────────────────────────────────── */

/* ─── 1024px – Tablet Landscape ─── */
@media (max-width: 1024px) {
  /* Layout */
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  /* Why */
  .why-split { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { display: none; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }

  /* Contact */
  .contact-split { grid-template-columns: 1fr; gap: 40px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

/* ─── 768px – Tablet Portrait / Large Mobile ─── */
@media (max-width: 768px) {
  /* Global */
  :root { --nav-h: 64px; }
  .container { padding: 0 16px; }
  .section { padding: 64px 0; }
  .section-title { font-size: clamp(28px, 7vw, 44px); }
  .section-subtitle { font-size: 15px; }
  .section-header { margin-bottom: 40px; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; gap: 36px; padding-top: calc(var(--nav-h) + 40px); padding-bottom: 80px; min-height: unset; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .hero-stat { padding: 16px 8px; min-width: unset; }
  .hero-stat-num { font-size: 20px; }
  .hero-stat-label { font-size: 9px; }
  .hero-title { font-size: clamp(36px, 9vw, 56px); }
  .hero-subtitle { font-size: 15px; max-width: 100%; }

  /* Trust */
  .trust-stat-row {
    flex-wrap: wrap;
    border: none;
    gap: 12px;
    justify-content: center;
  }
  .trust-stat {
    border: 1px solid var(--border) !important;
    border-radius: var(--radius);
    flex: 0 0 calc(50% - 6px);
    max-width: none;
    padding: 16px 12px;
  }
  .trust-stat-num { font-size: 36px; }
  .reviews-grid { grid-template-columns: 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Pricing */
  .pricing-grid { max-width: 100%; }
  .pricing-card { padding: 28px 22px; }
  .pricing-price { font-size: 42px; }

  /* Add-ons */
  .addons-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery-item--wide { grid-column: span 1; }

  /* Why */
  .why-list { gap: 20px; }

  /* Booking */
  .booking-container { border-radius: var(--radius-lg); }
  .booking-steps { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .booking-step { min-width: 80px; padding: 14px 10px; font-size: 9px; }
  .booking-body { padding: 28px 20px; }
  .pkg-grid { grid-template-columns: 1fr; }
  .size-grid { grid-template-columns: 1fr 1fr; }
  .addon-checks-grid { grid-template-columns: 1fr; }
  .booking-nav { flex-wrap: wrap; gap: 10px; }
  .booking-nav .btn { flex: 1; justify-content: center; min-width: 120px; }

  /* Contact */
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .logos-grid { grid-template-columns: 1fr; }

  /* CTA Band */
  .cta-band { padding: 52px 0; }
  .cta-band-inner { flex-direction: column; text-align: center; gap: 32px; }
  .cta-band-sub { max-width: 100%; font-size: 15px; }
  .cta-band-actions { flex-direction: row; flex-wrap: wrap; justify-content: center; width: 100%; }
  .cta-band-actions .btn { flex: 1; min-width: 140px; justify-content: center; }
}

/* ─── 480px – Mobile ─── */
@media (max-width: 480px) {
  /* Global */
  .container { padding: 0 14px; }
  .section { padding: 52px 0; }

  /* Buttons */
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .btn-lg { padding: 17px 28px; font-size: 14px; }

  /* Hero checklist (legacy) removed */
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .hero-stat { padding: 16px 10px; min-width: unset; }
  .hero-stat-num { font-size: 22px; }
  .hero-pills { gap: 8px; }
  .hero-pill { font-size: 11px; padding: 6px 12px; }

  /* Trust */
  .trust-stat { flex: 0 0 calc(50% - 6px); }
  .trust-stat-num { font-size: 30px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Add-ons */
  .addons-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .addon-card { padding: 18px 12px; }
  .addon-price { font-size: 18px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; gap: 8px; }
  .gallery-item--wide { grid-column: span 1; }

  /* Booking */
  .booking-steps { display: none; }
  .booking-body { padding: 22px 16px; }
  .size-grid { grid-template-columns: 1fr; }
  .time-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-nav { flex-direction: column; gap: 10px; }
  .booking-nav .btn { width: 100%; justify-content: center; }
  .booking-nav .booking-progress { order: -1; text-align: center; }

  /* Pricing */
  .pricing-card { padding: 24px 18px; }
  .pricing-price { font-size: 38px; }
  .vtab { padding: 8px 14px; font-size: 12px; }

  /* Contact form */
  .contact-form { padding: 24px 16px; }

  /* CTA */
  .cta-band { padding: 44px 0; }
  .cta-band-actions .btn { width: 100%; }

  /* Footer */
  .social-links { flex-wrap: wrap; gap: 8px; }
}

/* ─── 360px – Small Mobile ─── */
@media (max-width: 360px) {
  .section-title { font-size: 26px; }
  .hero-title { font-size: 34px; }
  .booking-body { padding: 18px 12px; }
  .addons-grid { grid-template-columns: 1fr; }
  .trust-stat { flex: 0 0 calc(50% - 6px); }
  .cta-band-title { font-size: 26px; }
  .btn { padding: 14px 20px; font-size: 13px; }
}

/* ── CTA Band ────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #111111 0%, #1a1508 50%, #111111 100%);
  border-top: 1px solid rgba(200,169,110,0.2);
  border-bottom: 1px solid rgba(200,169,110,0.2);
  padding: 72px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.cta-band-text { flex: 1; }
.cta-band-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
.cta-band-sub {
  font-size: 16px;
  color: var(--silver);
  line-height: 1.65;
  margin-top: 14px;
  max-width: 520px;
}
.cta-band-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}
.cta-band-actions .btn {
  min-width: 200px;
  justify-content: center;
  text-align: center;
}
@media (max-width: 768px) {
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-sub { max-width: 100%; }
  .cta-band-actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .cta-band-actions .btn { min-width: 160px; }
}

/* ── FAQ Section ─────────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
.faq-item {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item:hover {
  border-color: var(--accent);
}
.faq-item[open] {
  border-color: var(--accent);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.2s ease;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-item[open] .faq-question {
  color: var(--accent);
}
.faq-answer {
  padding: 0 24px 22px;
  border-top: 1px solid var(--border);
}
.faq-answer p {
  color: var(--silver);
  font-size: 15px;
  line-height: 1.7;
  margin-top: 16px;
}
.faq-answer strong { color: var(--white); }

@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-question { font-size: 15px; padding: 18px 20px; }
  .faq-answer { padding: 0 20px 18px; }
}
@media (max-width: 480px) {
  .faq-question { font-size: 14px; padding: 16px 16px; }
  .faq-answer { padding: 0 16px 16px; }
}
