﻿/* =====================================================================
   LUXE MOBILE DETAILING — Landing Page Styles
   Brand palette lives in :root below. Swap these hex values to match
   your final brand colors and the whole site updates automatically.
   ===================================================================== */

:root {
  /* PRIMARY ACCENT — luxury gold */
  --luxe-gold: #F5B800;
  --luxe-gold-dark: #D4A000;
  /* SECONDARY ACCENT — soft champagne for highlights */
  --luxe-champagne: #FFD84D;
  /* NEUTRALS */
  --luxe-black: #0a0a0a;
  --luxe-ink: #111418;
  --luxe-charcoal: #1a1d22;
  --luxe-white: #ffffff;
  --luxe-cream: #f6f4ef;
  --luxe-muted: #8b8579;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--luxe-ink);
  background: var(--luxe-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
/* Oswald weight control — 600 gives a slightly thinner look than 700 */
[style*="font-family:'Oswald'"], [class*="Oswald"] { font-weight: 600; }
.section-title, h2.section-title, h3, h4 { font-weight: 600; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- TOP BAR ---------- */
.topbar {
  background: var(--luxe-black);
  color: var(--luxe-white);
  font-size: 13px;
  padding: 8px 0;
  text-align: center;
  letter-spacing: 0.5px;
}
.topbar a { color: var(--luxe-gold); text-decoration: none; font-weight: 600; }
.topbar strong { color: var(--luxe-white); }

/* ---------- NAV ---------- */
header.nav {
  background: var(--luxe-black);
  border-bottom: 3px solid var(--luxe-gold);
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 90px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
/* Mobile nav fixes */
@media (max-width: 700px) {
  header.nav { min-height: 0; }
  .nav-inner { padding: 10px 16px; gap: 8px; }
  .logo-img { height: 55px; }
  footer .logo-img { height: 70px; }
  .nav-cta {
    padding: 9px 14px;
    font-size: 0 !important;
    white-space: nowrap;
  }
  .nav-cta::after {
    content: 'Get Quote';
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
}
.logo-wordmark {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo-wordmark .accent { color: var(--luxe-gold); }
.logo-img {
  height: 90px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5));
}
footer .logo-img {
  height: 100px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.logo-wordmark .sub {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--luxe-muted);
  align-self: flex-end;
  padding-bottom: 4px;
}
.nav-cta {
  background: var(--luxe-gold);
  color: var(--luxe-black);
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.15s ease, background 0.15s ease;
}
.nav-cta:hover { background: var(--luxe-champagne); transform: translateY(-2px); }
.nav-phone { color: white; text-decoration: none; font-weight: 600; margin-right: 18px; font-size: 14px; }
@media (max-width: 600px) { .nav-phone { display: none; } }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.90) 0%, rgba(10,10,10,0.70) 55%, rgba(201,162,75,0.35) 100%),
    /* TEMP placeholder photo — replace with assets/images/hero.jpg (your own shot) */
    url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: white;
  padding: 90px 0 110px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(201,162,75,0.25), transparent 50%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; } }
.hero-eyebrow {
  display: inline-block;
  background: var(--luxe-gold);
  color: var(--luxe-black);
  padding: 6px 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  font-size: 12px;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.0;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 .accent-gold { color: var(--luxe-gold); }
.hero h1 .accent-champagne { color: var(--luxe-champagne); }
.hero p.lede {
  font-size: 19px;
  line-height: 1.5;
  color: #ded9cf;
  margin-bottom: 30px;
  max-width: 540px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: 6px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}
.btn-primary { background: var(--luxe-gold); color: var(--luxe-black); }
.btn-primary:hover { background: var(--luxe-champagne); color: var(--luxe-black); transform: translateY(-2px); }
.btn-outline { background: transparent; color: white; border-color: white; }
.btn-outline:hover { background: white; color: var(--luxe-black); transform: translateY(-2px); }

.hero-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  font-size: 14px;
  color: #ded9cf;
}
.stars { color: var(--luxe-gold); font-size: 18px; letter-spacing: 2px; }

/* Hero offer card */
.offer-card {
  background: linear-gradient(140deg, var(--luxe-charcoal) 0%, #0e1116 100%);
  border: 2px solid var(--luxe-gold);
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,162,75,0.2);
  position: relative;
}
.offer-card::before {
  content: 'WE COME TO YOU';
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--luxe-gold);
  color: var(--luxe-black);
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 4px;
}
.offer-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: white;
}
.offer-card .gold-text { color: var(--luxe-gold); }
.offer-card .champagne-text { color: var(--luxe-champagne); }
.offer-card p { color: #c8c2b6; font-size: 15px; margin-bottom: 18px; }
.offer-card .price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
}
.offer-card .price-line .amount {
  font-family: 'Oswald', sans-serif;
  color: var(--luxe-gold);
  font-size: 56px;
  line-height: 1;
  letter-spacing: 1px;
}
.offer-card .price-line .amount sup { font-size: 28px; vertical-align: super; }
.offer-card .price-line small { color: #c8c2b6; font-size: 13px; }
.offer-card ul { list-style: none; padding: 0; margin: 0 0 18px 0; }
.offer-card ul li {
  color: #ded9cf;
  font-size: 14px;
  padding: 6px 0 6px 26px;
  position: relative;
}
.offer-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--luxe-gold);
  font-weight: 800;
}

/* ---------- SECTION HEADERS ---------- */
section { padding: 80px 0; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 800;
  color: var(--luxe-gold-dark);
  margin-bottom: 14px;
}
h2.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.05;
  margin-bottom: 16px;
}
h2.section-title .gold { color: var(--luxe-gold-dark); }
h2.section-title .champagne { color: var(--luxe-gold); }
.section-sub { font-size: 17px; color: #5a554b; max-width: 720px; margin-bottom: 40px; }

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  background: var(--luxe-cream);
  padding: 28px 0;
  border-top: 1px solid #e7e2d8;
  border-bottom: 1px solid #e7e2d8;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
@media (max-width: 700px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
.trust-item .number {
  font-family: 'Oswald', sans-serif;
  font-size: 38px;
  color: var(--luxe-black);
  line-height: 1;
}
.trust-item .number .accent { color: var(--luxe-gold-dark); }
.trust-item .label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #5a554b;
  font-weight: 600;
  margin-top: 6px;
}

/* ---------- WHY SECTION ---------- */
.why-section { background: var(--luxe-white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; gap: 36px; } }
.why-grid img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.3);
}
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
}
@media (max-width: 500px) { .benefit-grid { grid-template-columns: 1fr; } }
.benefit {
  padding: 18px;
  background: var(--luxe-cream);
  border-radius: 10px;
  border-left: 4px solid var(--luxe-gold);
}
.benefit h4 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 17px;
  margin-bottom: 4px;
}
.benefit p { color: #5a554b; font-size: 14px; line-height: 1.5; }

/* ---------- PROCESS SECTION ---------- */
.process-section {
  background: linear-gradient(160deg, var(--luxe-black) 0%, #11161c 100%);
  color: white;
}
.process-section h2 { color: white; }
.process-section .section-sub { color: #c2bcae; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 30px;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .process-grid { grid-template-columns: 1fr; } }
.process-step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px;
  position: relative;
}
.process-step .step-badge {
  font-family: 'Oswald', sans-serif;
  font-size: 56px;
  line-height: 1;
  color: var(--luxe-gold);
  opacity: 0.6;
  margin-bottom: 12px;
}
.process-step h4 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 18px;
  margin-bottom: 8px;
}
.process-step p { color: #c2bcae; font-size: 14px; }

/* ---------- PACKAGES SECTION ---------- */
.packages-section { background: var(--luxe-cream); }
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
@media (max-width: 900px) { .package-grid { grid-template-columns: 1fr; } }
.package {
  background: white;
  padding: 32px 26px;
  border-radius: 14px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.15);
  position: relative;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.package:hover { transform: translateY(-4px); box-shadow: 0 30px 70px -20px rgba(0,0,0,0.25); }
.package.featured {
  border-color: var(--luxe-gold);
  transform: scale(1.03);
}
.package.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--luxe-gold);
  color: var(--luxe-black);
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 4px;
}
.package h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.package .price {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: var(--luxe-gold-dark);
  margin-bottom: 18px;
}
.package .price .save { color: var(--luxe-gold-dark); font-size: 14px; display: block; margin-top: 4px; font-family: 'Inter', sans-serif; font-weight: 700; }
.package ul { list-style: none; padding: 0; margin: 0 0 20px 0; }
.package ul li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 14px;
  color: #5a554b;
  border-bottom: 1px dashed #e7e2d8;
}
.package ul li:last-child { border-bottom: none; }
.package ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--luxe-gold-dark);
  font-weight: 800;
}
.package .btn {
  display: block;
  text-align: center;
  margin-top: 6px;
}
.included-block {
  margin-top: 50px;
  background: white;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.1);
}
.included-block h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--luxe-gold-dark);
  margin-bottom: 16px;
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 18px;
}
@media (max-width: 700px) { .included-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 450px) { .included-grid { grid-template-columns: 1fr; } }
.included-grid div {
  padding-left: 22px;
  position: relative;
  color: #5a554b;
  font-size: 14px;
}
.included-grid div::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--luxe-gold-dark);
  font-weight: 800;
}

/* ---------- ROLLING REVIEWS ---------- */
.reviews-section {
  background: var(--luxe-black);
  color: white;
  overflow: hidden;
  padding: 80px 0 90px;
}
.reviews-section h2 { color: white; text-align: center; }
.reviews-section .eyebrow { color: var(--luxe-gold); text-align: center; }
.reviews-source {
  text-align: center;
  color: #6b675c;
  font-size: 13px;
  margin: 0 0 36px;
}
.reviews-source strong { color: #c2bcae; }
.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
          mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  padding: 6px 0;
}
.marquee-track {
  display: flex;
  gap: 22px;
  animation: scroll-x 80s linear infinite;
  flex-shrink: 0;
  padding-right: 22px;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll-x {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-card {
  flex: 0 0 360px;
  background: linear-gradient(160deg, #1a1d22 0%, #11161c 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
}
.review-card .stars-row {
  color: var(--luxe-gold);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.review-card .quote {
  color: #ded9cf;
  font-size: 14.5px;
  line-height: 1.55;
  flex: 1;
  margin-bottom: 16px;
}
.review-card .quote::before { content: '"'; color: var(--luxe-gold); font-size: 28px; vertical-align: -6px; margin-right: 2px; font-family: 'Oswald', sans-serif; }
.review-card .quote::after  { content: '"'; color: var(--luxe-gold); font-size: 28px; vertical-align: -10px; margin-left: 2px; font-family: 'Oswald', sans-serif; }
.review-card .meta {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.review-card .reviewer { font-weight: 700; font-size: 13px; color: white; }
.review-card .vehicle {
  font-size: 11px;
  color: #6b675c;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.reviews-cta { text-align: center; margin-top: 36px; }
.reviews-cta a { color: var(--luxe-gold); text-decoration: none; font-weight: 700; }

/* ---------- SERVICE AREA / MISSION SECTION ---------- */
.mission { background: var(--luxe-white); position: relative; overflow: hidden; }
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .mission-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; } }
.mission blockquote {
  border-left: 4px solid var(--luxe-gold);
  padding: 6px 0 6px 22px;
  margin: 20px 0;
  font-style: italic;
  color: #2a2820;
}
.mission-badge-block { text-align: center; }
.mission-badge-text {
  display: inline-block;
  background: var(--luxe-black);
  color: white;
  font-family:'Oswald', sans-serif;
  padding: 14px 28px;
  border-radius: 999px;
  letter-spacing: 2px;
  font-size: 18px;
}
.mission-badge-text .accent { color: var(--luxe-gold); }
.mission-sublabel {
  font-size: 12px;
  color: #5a554b;
  margin-top: 10px;
  letter-spacing: 2px;
}

/* ---------- FINAL CTA SECTION ---------- */
.quote-section {
  background:
    linear-gradient(135deg, rgba(10,10,10,0.92), rgba(10,10,10,0.85)),
    /* TEMP placeholder photo — replace with assets/images/cta.jpg (your own shot) */
    url('https://images.unsplash.com/photo-1493238792000-8113da705763?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat fixed;
  color: white;
  padding: 100px 0;
}
.quote-section h2 { color: white; }
.quote-section .section-sub { color: #c8c2b6; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--luxe-black);
  color: #c2bcae;
  padding: 50px 0 20px;
  text-align: center;
}
footer .logo-wordmark { justify-content: center; margin-bottom: 16px; display: flex; }
footer .footer-info { font-size: 14px; line-height: 1.9; }
footer .footer-info a { color: var(--luxe-gold); text-decoration: none; }
footer .copy { font-size: 12px; color: #6b675c; margin-top: 24px; border-top: 1px solid #1a1d22; padding-top: 18px; }

/* Floating CTA on mobile */
.float-cta {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 100;
}
.float-cta a {
  display: block;
  text-align: center;
  background: var(--luxe-gold);
  color: var(--luxe-black);
  padding: 16px;
  border-radius: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 10px 30px -5px rgba(0,0,0,0.5);
}
@media (max-width: 700px) { .float-cta { display: block; } }

/* ---------- GHL FORM MODAL ---------- */
.ghl-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5,8,12,0.88);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.25s ease;
  overflow-y: auto;
}
.ghl-modal-backdrop.open { display: flex; opacity: 1; }
body.ghl-locked { overflow: hidden; }
.ghl-modal {
  background: #0e1116;
  border: 2px solid var(--luxe-gold);
  border-radius: 18px;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: 0 30px 80px -10px rgba(0,0,0,0.8);
  transform: translateY(20px);
  transition: transform 0.25s ease;
  margin: auto;
  overflow: hidden;
}
.ghl-modal-backdrop.open .ghl-modal { transform: translateY(0); }
.ghl-modal-close {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  width: 34px; height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  z-index: 10;
  transition: background 0.15s ease;
}
.ghl-modal-close:hover { background: rgba(255,255,255,0.22); }

/* ---------- NATIVE QUOTE FORM (posts to GHL webhook) ---------- */
.qf {
  padding: 36px 30px 26px;
  font-family: 'Inter', sans-serif;
}
.qf-badge {
  display: inline-block;
  background: var(--luxe-gold);
  color: var(--luxe-black);
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
  padding: 5px 11px; border-radius: 4px; text-transform: uppercase;
  margin-bottom: 14px;
}
.qf h3 {
  font-family: 'Oswald', sans-serif; font-weight: 600;
  font-size: 30px; text-transform: uppercase; letter-spacing: 1px;
  line-height: 1.05; margin-bottom: 8px; color: #fff;
}
.qf h3 span { color: var(--luxe-gold); }
.qf .qf-sub { font-size: 14px; color: #b8c0cb; margin-bottom: 22px; line-height: 1.5; }
.qf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.qf-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.qf-field.in-row { margin-bottom: 0; }
.qf-field label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; color: #d8dde3;
}
.qf-field input,
.qf-field select {
  padding: 13px 14px; border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.14);
  font-size: 15px; font-family: inherit;
  background: rgba(255,255,255,0.06); color: #fff;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.qf-field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238b949e' stroke-width='2.5'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 38px;
}
.qf-field select option { background: #1a1d22; color: #fff; }
.qf-field input::placeholder { color: #8b949e; }
.qf-field input:focus,
.qf-field select:focus {
  outline: none; border-color: var(--luxe-gold);
  box-shadow: 0 0 0 3px rgba(245,184,0,0.18);
  background-color: rgba(255,255,255,0.10);
}
.qf-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 18px 0 16px; }
.qf-section-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 2px;
  color: var(--luxe-gold); font-weight: 800; margin-bottom: 10px;
}
.qf-tc { display: flex; align-items: flex-start; gap: 11px; margin: 18px 0 4px; }
.qf-tc input[type="checkbox"] {
  width: 18px; height: 18px; min-width: 18px;
  accent-color: var(--luxe-gold); margin-top: 2px; cursor: pointer;
}
.qf-tc label { font-size: 12px; color: #b8c0cb; line-height: 1.5; cursor: pointer; }
.qf-tc label a { color: var(--luxe-gold); text-decoration: underline; }
.qf-tc label a:hover { color: var(--luxe-champagne); }
.qf-submit {
  width: 100%; background: var(--luxe-gold); color: #fff; border: none;
  padding: 16px; font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; border-radius: 8px;
  cursor: pointer; margin-top: 12px;
  transition: background 0.2s ease, transform 0.15s ease;
}
.qf-submit:hover:not(:disabled) { background: var(--luxe-champagne); transform: translateY(-2px); }
.qf-submit:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }
.qf-error {
  display: none; background: rgba(220,53,69,0.15); border: 1px solid rgba(220,53,69,0.4);
  color: #ffb3ba; padding: 10px 14px; border-radius: 8px; font-size: 13px; margin-top: 12px;
}
.qf-error.show { display: block; }
.qf-legal { text-align: center; font-size: 12px; color: #8b949e; line-height: 1.5; margin-top: 14px; }
.qf-legal a { color: var(--luxe-gold); text-decoration: underline; }
.qf-trust {
  display: flex; align-items: center; justify-content: center; gap: 22px;
  margin-top: 14px; font-size: 12px; color: #8b8579; flex-wrap: wrap;
}
.qf-trust .dot { color: var(--luxe-gold); margin-right: 4px; }
.qf-success { display: none; text-align: center; padding: 50px 24px; }
.qf-success.show { display: block; }
.qf-success .check {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--luxe-gold); color: var(--luxe-black);
  display: flex; align-items: center; justify-content: center;
  font-size: 38px; margin: 0 auto 18px;
}
.qf-success h3 {
  color: #fff; font-family: 'Oswald', sans-serif; font-weight: 600;
  font-size: 26px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;
}
.qf-success p { color: #b8c0cb; max-width: 320px; margin: 0 auto; }
/* Compact form on phones so the whole thing fits without scrolling */
@media (max-width: 600px) {
  .ghl-modal-backdrop { padding: 8px; align-items: flex-start; }
  .ghl-modal { margin: 6px auto; }
  .qf { padding: 22px 18px 16px; }
  .qf-badge { margin-bottom: 8px; padding: 4px 9px; font-size: 10px; }
  .qf h3 { font-size: 21px; margin-bottom: 5px; }
  .qf .qf-sub { font-size: 12.5px; margin-bottom: 14px; line-height: 1.4; }
  .qf-row { grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
  .qf-field { gap: 4px; margin-bottom: 10px; }
  .qf-field label { font-size: 11px; letter-spacing: 0.8px; }
  .qf-field input, .qf-field select { padding: 10px 12px; font-size: 14px; }
  .qf-divider { margin: 12px 0 10px; }
  .qf-section-label { font-size: 10px; margin-bottom: 7px; }
  .qf-tc { margin: 12px 0 2px; gap: 9px; }
  .qf-tc label { font-size: 11px; line-height: 1.4; }
  .qf-submit { padding: 13px; font-size: 17px; margin-top: 10px; }
  .qf-trust { margin-top: 10px; font-size: 11px; gap: 16px; }
  /* Compact thank-you message */
  .qf-success { padding: 34px 18px; }
  .qf-success .check { width: 56px; height: 56px; font-size: 30px; margin-bottom: 14px; }
  .qf-success h3 { font-size: 21px; }
  .qf-success p { font-size: 14px; }
}

/* ---------- QUOTE MODAL ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 12, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
  overflow-y: auto;
}
.modal-backdrop.open { display: flex; opacity: 1; }
body.modal-locked { overflow: hidden; }
.modal {
  background: linear-gradient(160deg, #0e1116 0%, #1a1d22 100%);
  color: white;
  border-radius: 18px;
  max-width: 480px;
  width: 100%;
  padding: 38px 34px 30px;
  position: relative;
  box-shadow: 0 30px 80px -10px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,162,75,0.15);
  transform: translateY(20px);
  transition: transform 0.25s ease;
  margin: auto;
}
.modal-backdrop.open .modal { transform: translateY(0); }
.modal::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(135deg, var(--luxe-gold) 0%, var(--luxe-champagne) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: white;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  transition: background 0.15s ease;
}
.modal-close:hover { background: rgba(255,255,255,0.18); }
.modal-badge {
  display: inline-block;
  background: var(--luxe-gold);
  color: var(--luxe-black);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 5px 11px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.modal h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.05;
  margin-bottom: 8px;
}
.modal h3 .accent { color: var(--luxe-gold); }
.modal p.modal-sub { font-size: 14px; color: #c2bcae; margin-bottom: 22px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
  width: 100%;
  min-width: 0;
}
.form-row .form-field { min-width: 0; }
.form-row input, .form-row select { width: 100%; box-sizing: border-box; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
input, select {
  padding: 13px 14px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.14);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.modal .form-field label { color: #ded9cf; }
.modal input,
.modal select {
  background: rgba(255,255,255,0.06);
  color: white;
}
.modal select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238b8579' stroke-width='2.5'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 38px;
}
.modal select option { background: #1a1d22; color: white; }
.modal input::placeholder { color: #6b675c; }
.modal input:focus,
.modal select:focus {
  outline: none;
  border-color: var(--luxe-gold);
  box-shadow: 0 0 0 3px rgba(201,162,75,0.18);
  background-color: rgba(255,255,255,0.10);
}
button.submit {
  width: 100%;
  background: var(--luxe-gold);
  color: var(--luxe-black);
  border: none;
  padding: 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s ease, transform 0.15s ease;
}
button.submit:hover:not(:disabled) { background: var(--luxe-champagne); transform: translateY(-2px); }
button.submit:disabled { opacity: 0.6; cursor: not-allowed; }
.modal-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 16px;
  font-size: 12px;
  color: #8b8579;
  flex-wrap: wrap;
}
.modal-trust .dot { color: var(--luxe-gold); margin-right: 4px; }
.form-success { display: none; text-align: center; padding: 30px 4px 10px; }
.form-success.show { display: block; }
.form-success .check-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--luxe-gold);
  color: var(--luxe-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  margin: 0 auto 18px;
}
.form-success h3 {
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.form-success p { color: #c2bcae; }
.modal-error {
  display: none;
  background: rgba(220,53,69,0.15);
  border: 1px solid rgba(220,53,69,0.4);
  color: #ffb3ba;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  margin-top: 12px;
}
.modal-error.show { display: block; }
@media (max-width: 500px) {
  .modal { padding: 30px 22px 24px; }
  .modal h3 { font-size: 26px; }
}

/* =====================================================================
   FULL-SITE COMPONENTS (homepage + Services / About / Contact pages)
   ===================================================================== */

/* ---------- NAV with dropdown + page links ---------- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}
.nav-links a {
  color: #e8e4da;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--luxe-gold); }
.nav-links .has-dropdown { position: relative; }
.nav-links .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #14171c;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 18px 10px 10px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.6);
  z-index: 60;
}
.nav-links .has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nav-links .dropdown-menu a {
  padding: 9px 12px;
  border-radius: 6px;
  white-space: nowrap;
}
.nav-links .dropdown-menu a:hover { background: rgba(201,162,75,0.12); }
.nav-right { display: flex; align-items: center; gap: 18px; }
/* mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
}
@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--luxe-black);
    border-bottom: 3px solid var(--luxe-gold);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links > li { padding: 4px 24px; }
  .nav-links .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 4px 0 4px 14px;
  }
  .nav-links .has-dropdown:hover .dropdown-menu,
  .nav-links .has-dropdown.open .dropdown-menu { display: flex; }
}

/* ---------- HOME HERO (centered, Dreamy-style) ---------- */
.home-hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.60) 0%, rgba(10,10,10,0.25) 40%, rgba(10,10,10,0.65) 100%),
    url('../assets/images/hero.jpg') center 52%/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 0 130px;
}
.home-hero .rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,162,75,0.4);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
}
.home-hero .rating-pill .stars { color: var(--luxe-gold); letter-spacing: 2px; }
.home-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 1.0;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.9), 0 0 40px rgba(0,0,0,0.7);
}
.home-hero h1 .accent {
  color: var(--luxe-gold);
  text-shadow: 0 2px 12px rgba(0,0,0,0.95), 0 0 30px rgba(0,0,0,0.9), 2px 2px 0 rgba(0,0,0,0.5);
}
.home-hero .tagline {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--luxe-champagne);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.home-hero p.lede {
  font-size: 18px;
  color: #ded9cf;
  max-width: 620px;
  margin: 0 auto 32px;
}
.home-hero .hero-ctas { justify-content: center; }

/* ---------- PAGE HERO (subpages) ---------- */
.page-hero {
  background:
    linear-gradient(135deg, rgba(10,10,10,0.90), rgba(10,10,10,0.78)),
    url('https://images.unsplash.com/photo-1605559424843-9e4c228bf1c2?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 90px 0;
}
.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 5.5vw, 64px);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.page-hero h1 .accent { color: var(--luxe-gold); }
.page-hero p { color: #ded9cf; font-size: 18px; max-width: 640px; margin: 0 auto; }
.breadcrumb { color: var(--luxe-gold); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.breadcrumb a { color: #c2bcae; text-decoration: none; }

/* ---------- ABOUT SECTION ---------- */
.about { background: var(--luxe-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 36px; } }
.about p.body { font-size: 17px; color: #3a3730; margin-bottom: 16px; }
.testimonial-card {
  background: var(--luxe-cream);
  border-radius: 14px;
  padding: 30px;
  border-top: 4px solid var(--luxe-gold);
  box-shadow: 0 20px 50px -24px rgba(0,0,0,0.25);
}
.testimonial-card .stars-row { color: var(--luxe-gold); letter-spacing: 3px; font-size: 18px; margin-bottom: 12px; }
.testimonial-card .quote { font-size: 16px; font-style: italic; color: #2a2820; line-height: 1.6; margin-bottom: 14px; }
.testimonial-card .author { font-weight: 800; text-transform: uppercase; letter-spacing: 1px; font-size: 13px; color: var(--luxe-gold-dark); }

/* ---------- SERVICE CARDS (3-col) ---------- */
.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 40px;
}
@media (max-width: 900px) { .services-cards { grid-template-columns: 1fr; } }
.service-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px -24px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 30px 60px -24px rgba(0,0,0,0.3); }
.service-card .card-img { height: 420px; background-size: cover; background-position: center; }
.service-card .card-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.service-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.service-card p { color: #5a554b; font-size: 15px; flex: 1; margin-bottom: 18px; }
.service-card .card-link {
  color: var(--luxe-gold-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  text-decoration: none;
}
.service-card .card-link:hover { color: var(--luxe-gold); }

/* ---------- STATS BAND ---------- */
.stats-band {
  background: linear-gradient(160deg, var(--luxe-black) 0%, #11161c 100%);
  color: white;
  text-align: center;
}
.stats-band h2 { color: white; }
.stats-band .section-sub { color: #c2bcae; margin: 0 auto 40px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: 1fr; gap: 24px; } }
.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 34px 24px;
}
.stat-card .big { font-family: 'Oswald', sans-serif; font-size: 56px; color: var(--luxe-gold); line-height: 1; }
.stat-card .label { text-transform: uppercase; letter-spacing: 2px; font-size: 13px; color: #c2bcae; margin-top: 10px; }

/* ---------- VALUES / WHY CHOOSE ---------- */
.values { background: var(--luxe-cream); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 36px; }
@media (max-width: 800px) { .values-grid { grid-template-columns: 1fr; } }
.value-item { text-align: center; padding: 10px; }
.value-item .icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--luxe-black);
  color: var(--luxe-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.value-item h4 { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: 20px; margin-bottom: 8px; }
.value-item p { color: #5a554b; font-size: 15px; }

/* ---------- GALLERY ---------- */
.gallery { background: var(--luxe-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}
@media (max-width: 800px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-grid .tile {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: transform 0.2s ease;
}
.gallery-grid .tile:hover { transform: scale(1.02); }
.gallery-grid .tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.4));
}

/* ---------- SOCIAL BAND ---------- */
.social-band { background: linear-gradient(160deg, var(--luxe-black) 0%, #11161c 100%); color: white; text-align: center; }
.social-band h2 { color: white; }
.social-band .section-sub { color: #c2bcae; margin: 0 auto 36px; }
.social-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.social-item { text-align: center; }
.social-item .platform { font-family: 'Oswald', sans-serif; font-size: 22px; text-transform: uppercase; letter-spacing: 1px; color: var(--luxe-gold); }
.social-item .count { font-size: 14px; color: #c2bcae; margin-top: 4px; }

/* ---------- CONTACT PAGE ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }
.contact-info-list { list-style: none; padding: 0; margin: 24px 0 0; }
.contact-info-list li { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid #e7e2d8; }
.contact-info-list .ci-icon { color: var(--luxe-gold-dark); font-size: 20px; width: 28px; text-align: center; }
.contact-info-list .ci-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: #8b8579; font-weight: 700; }
.contact-info-list .ci-value { font-size: 16px; color: #2a2820; }
.contact-info-list a { color: var(--luxe-gold-dark); text-decoration: none; }
/* light form (on light pages) */
.light-form { background: var(--luxe-cream); border-radius: 16px; padding: 32px; }
.light-form label { color: #3a3730; }
.light-form input, .light-form select, .light-form textarea {
  background: white;
  color: #2a2820;
  border: 1.5px solid #ddd6c8;
}
.light-form input:focus, .light-form select:focus, .light-form textarea:focus {
  outline: none; border-color: var(--luxe-gold);
  box-shadow: 0 0 0 3px rgba(201,162,75,0.18);
}
.light-form textarea { font-family: inherit; min-height: 120px; resize: vertical; }
.light-form .form-field { margin-bottom: 14px; }

/* ---------- PRICING / FEATURE LIST on service page ---------- */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; padding: 30px 0; }
@media (max-width: 900px) { .feature-split { grid-template-columns: 1fr; gap: 30px; } }
.feature-split.reverse > div:first-child { order: 2; }
@media (max-width: 900px) { .feature-split.reverse > div:first-child { order: 0; } }
.feature-split img { width: 100%; border-radius: 14px; box-shadow: 0 30px 60px -24px rgba(0,0,0,0.3); }
.feature-split ul { list-style: none; padding: 0; margin: 18px 0 0; }
.feature-split ul li { padding: 8px 0 8px 28px; position: relative; color: #3a3730; }
.feature-split ul li::before { content: '✓'; position: absolute; left: 0; color: var(--luxe-gold-dark); font-weight: 800; }
