/* ==========================================================================
   Velocity Car Spa — velocitycarspa.com
   Design system + components
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --bg:            #0C0A07;
  --bg-soft:       #12100B;
  --surface:       #18140D;
  --surface-2:     #211B12;
  --line:          rgba(255,255,255,.08);
  --line-strong:   rgba(255,255,255,.16);

  --text:          #E9EEF4;
  --text-dim:      #A7B2C0;
  --text-faint:    #6E7A88;

  /* ---- THEME (see the preset list at the bottom of this file) ---- */
  /* ACTIVE PRESET: Molten Gold */
  --brand:         #F6C445;   /* primary accent            */
  --brand-2:       #E07B18;   /* gradient end              */
  --brand-ink:     #1F1400;   /* text ON the accent        */
  --gold:          #CFD8E3;   /* premium / 3rd-tier accent */
  --brand-rgb:     246,196,69;
  --brand-2-rgb:   224,123,24;
  --gold-rgb:      207,216,227;
  --danger:        #FF5D5D;
  --ok:            #34D399;

  --gold-lt:       #E8EEF6;
  --gold-dk:       #93A2B5;
  --gold-ink:      #111820;
  --glass:         rgba(28,23,15,.9);    /* floating cards            */
  --scrim:         rgba(10,8,4,.92);     /* caption gradient over art */
  --header-bg:     rgba(12,10,7,.72);
  --header-bg-2:   rgba(12,10,7,.94);

  --grad-brand:    linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  --grad-gold:     linear-gradient(135deg, var(--gold-lt) 0%, var(--gold-dk) 100%);
  --grad-surface:  linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.01));

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 10px rgba(0,0,0,.35);
  --shadow:    0 18px 50px -18px rgba(0,0,0,.75);
  --shadow-brand: 0 18px 44px -16px rgba(var(--brand-rgb),.45);

  --font-head: 'Sora', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --container: 1200px;
  --nav-h: 76px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 20px); -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--brand); color: var(--brand-ink); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.12; letter-spacing: -.02em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p  { color: var(--text-dim); }
h1 + .lead, h2 + .lead { margin-top: 16px; }
.lead { font-size: clamp(1.02rem, 1.6vw, 1.15rem); color: var(--text-dim); max-width: 60ch; }
.text-grad {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.text-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Layout ---------- */
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--alt { background: var(--bg-soft); }
.grid { display: grid; gap: 24px; }
.grid > *, .split > *, .hero__inner > *, .form-grid > * { min-width: 0; }
.center { text-align: center; }

/* Section heading block */
.sec-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.sec-head.center { margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-size: .74rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--brand);
  padding: 7px 14px; border-radius: 999px;
  background: rgba(var(--brand-rgb),.08); border: 1px solid rgba(var(--brand-rgb),.22);
  margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 10px var(--brand); }
.sec-head p { margin-top: 14px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--grad-brand);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: 14px 26px; border-radius: 999px; border: 0; cursor: pointer;
  background: var(--btn-bg); color: var(--brand-ink);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-brand); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; }
.btn--ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover { background: rgba(255,255,255,.06); box-shadow: none; border-color: var(--brand); color: var(--brand); }
.btn--gold { background: var(--grad-gold); color: var(--gold-ink, #2A1D00); }
.btn--gold:hover { box-shadow: 0 18px 44px -16px rgba(var(--gold-rgb),.5); }
.btn--wa { background: #25D366; color: #06301A; }
.btn--wa:hover { box-shadow: 0 18px 44px -16px rgba(37,211,102,.5); }
.btn--lg { padding: 17px 34px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar {
  background: linear-gradient(90deg, rgba(var(--brand-rgb),.10), rgba(var(--brand-2-rgb),.10));
  border-bottom: 1px solid var(--line);
  font-size: .82rem;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 9px 0; }
.topbar__list { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; color: var(--text-dim); }
.topbar__list li { display: inline-flex; align-items: center; gap: 8px; }
.topbar__list svg { width: 15px; height: 15px; color: var(--brand); flex: none; }
.topbar__list a:hover { color: var(--brand); }
.topbar__social { display: flex; gap: 8px; }
.topbar__social a {
  width: 28px; height: 28px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--line); color: var(--text-dim);
  transition: .2s var(--ease);
}
.topbar__social a:hover { background: var(--brand); color: var(--brand-ink); border-color: var(--brand); }
.topbar__social svg { width: 14px; height: 14px; }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 10px 30px -20px rgba(0,0,0,.9); background: var(--header-bg-2); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 20px; }

.logo { display: inline-flex; align-items: center; gap: 12px; flex: none; }
.logo__mark { width: 48px; height: 48px; flex: none; display: block; }
.logo__mark svg { width: 100%; height: 100%; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: var(--font-head); font-weight: 800; font-style: italic;
  font-size: 1.32rem; letter-spacing: .015em;
  background: linear-gradient(135deg, #FFF3C4 0%, #E8B94A 45%, #B47B18 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.logo__sub {
  font-family: var(--font-head); font-weight: 700; font-size: .64rem;
  letter-spacing: .34em; text-transform: uppercase; color: #C9A227; margin-top: 4px;
}
.footer__tagline {
  font-family: var(--font-head); font-size: .78rem; font-weight: 600;
  letter-spacing: .06em; color: var(--brand); margin-bottom: 12px;
}
.footer .logo__mark { width: 56px; height: 56px; }
.footer .logo__name { font-size: 1.5rem; }

.nav__panel { display: contents; }
.nav__panel-top, .nav__extra, .nav__close, .nav__chev { display: none; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  padding: 10px 15px; border-radius: 999px; font-size: .93rem; font-weight: 500;
  color: var(--text-dim); transition: .2s var(--ease); position: relative;
}
.nav__links a:hover { color: var(--text); background: rgba(255,255,255,.05); }
.nav__links a.is-active { color: var(--brand); }
.nav__links a.is-active::after {
  content: ''; position: absolute; left: 50%; bottom: 2px; transform: translateX(-50%);
  width: 18px; height: 2px; border-radius: 2px; background: var(--brand);
}
.nav__cta { display: flex; align-items: center; gap: 12px; flex: none; }

.nav__toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--line); cursor: pointer;
  place-items: center; flex: none;
}
.nav__toggle span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; position: relative; transition: .25s var(--ease); }
.nav__toggle span::before, .nav__toggle span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s var(--ease);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after  { top: 6px; }
body.nav-open .nav__toggle span { background: transparent; }
body.nav-open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav__toggle span::after  { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(60px, 8vw, 110px) 0 clamp(60px, 8vw, 100px); }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__bg::before, .hero__bg::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5;
}
.hero__bg::before { width: 620px; height: 620px; background: radial-gradient(circle, rgba(var(--brand-rgb),.35), transparent 70%); top: -220px; right: -140px; }
.hero__bg::after  { width: 520px; height: 520px; background: radial-gradient(circle, rgba(var(--brand-2-rgb),.32), transparent 70%); bottom: -240px; left: -160px; }
.hero__grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
  opacity: .5;
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
.hero h1 { margin: 18px 0 20px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__trust { display: flex; align-items: center; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero__avatars { display: flex; }
.hero__avatars span {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-head); font-size: .8rem; font-weight: 700; color: var(--brand-ink);
  border: 2px solid var(--bg); margin-left: -12px; background: var(--grad-brand);
}
.hero__avatars span:first-child { margin-left: 0; }
.hero__avatars span:nth-child(2) { background: var(--grad-gold); color: var(--gold-ink, #2A1D00); }
.hero__avatars span:nth-child(3) { background: linear-gradient(135deg,#8B5CF6,#EC4899); color: #fff; }
.hero__avatars span:nth-child(4) { background: var(--surface-2); color: var(--text); border-color: var(--bg); }
.hero__trust-txt { font-size: .88rem; color: var(--text-dim); }
.hero__trust-txt strong { color: var(--text); display: block; font-family: var(--font-head); }
.stars { color: var(--gold); letter-spacing: 2px; font-size: .85rem; }

/* Hero visual card */
.hero__visual { position: relative; }
.showcase {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--line); background: var(--grad-surface);
  box-shadow: var(--shadow); aspect-ratio: 4/3.4;
  display: grid; place-items: center; padding: 30px;
}
.showcase::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(var(--brand-rgb),.22), transparent 60%);
}
.showcase__car { width: 100%; position: relative; z-index: 1; filter: drop-shadow(0 30px 40px rgba(0,0,0,.6)); }
.showcase { padding: 0; }
.showcase__img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.showcase__shine {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.14) 48%, transparent 60%);
  transform: translateX(-100%);
  animation: shine 5s var(--ease) infinite;
}
@keyframes shine { 0%,55% { transform: translateX(-100%);} 85%,100% { transform: translateX(100%);} }

.float-card {
  position: absolute; z-index: 3;
  background: var(--glass); backdrop-filter: blur(12px);
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 14px 18px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px;
}
.float-card__icon { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(var(--brand-rgb),.12); color: var(--brand); flex: none; }
.float-card__icon svg { width: 20px; height: 20px; }
.float-card b { font-family: var(--font-head); font-size: .92rem; display: block; }
.float-card small { color: var(--text-faint); font-size: .74rem; }
.float-card--a { top: 8%; left: -26px; animation: float 6s ease-in-out infinite; }
.float-card--b { bottom: 10%; right: -20px; animation: float 6s ease-in-out infinite 1.6s; }
@keyframes float { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-12px);} }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.stat { background: var(--bg-soft); padding: 30px 22px; text-align: center; }
.stat__num { font-family: var(--font-head); font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 700; line-height: 1; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { margin-top: 8px; font-size: .84rem; color: var(--text-dim); letter-spacing: .04em; }

/* ---------- Marquee ---------- */
.marquee { border-block: 1px solid var(--line); background: var(--bg-soft); overflow: hidden; padding: 16px 0; }
.marquee__track { display: flex; gap: 44px; width: max-content; animation: slide 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-head); font-size: .95rem; font-weight: 600; color: var(--text-faint); letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; }
.marquee__item svg { width: 16px; height: 16px; color: var(--brand); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Service cards ---------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(288px, 1fr)); gap: 22px; }
.svc {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px 26px 28px;
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
  display: flex; flex-direction: column;
}
.svc::before {
  content: ''; position: absolute; inset: 0; z-index: -1; opacity: 0;
  background: radial-gradient(600px circle at var(--mx,50%) var(--my,0%), rgba(var(--brand-rgb),.14), transparent 45%);
  transition: opacity .35s;
}
.svc:hover { transform: translateY(-6px); border-color: rgba(var(--brand-rgb),.4); box-shadow: var(--shadow); }
.svc:hover::before { opacity: 1; }
.svc__num {
  position: absolute; top: 20px; right: 24px;
  font-family: var(--font-head); font-size: 2.6rem; font-weight: 700;
  color: rgba(255,255,255,.05); line-height: 1;
}
.svc__icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(var(--brand-rgb),.18), rgba(var(--brand-2-rgb),.1));
  border: 1px solid rgba(var(--brand-rgb),.24); color: var(--brand);
  margin-bottom: 20px; transition: .35s var(--ease);
}
.svc:hover .svc__icon { background: var(--grad-brand); color: var(--brand-ink); border-color: transparent; transform: rotate(-6deg) scale(1.05); }
.svc__icon svg { width: 28px; height: 28px; }
.svc h3 { margin-bottom: 10px; }
.svc p { font-size: .92rem; flex: 1; }
.svc__meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.svc__price { font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--text); }
.svc__price span { color: var(--text-faint); font-weight: 400; font-size: .78rem; display: block; }
.svc__link { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 600; color: var(--brand); }
.svc__link svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.svc__link::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.svc:hover .svc__link svg { transform: translateX(4px); }

/* ---------- Feature / why-us ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.split > * { min-width: 0; }
.feature-list { display: grid; gap: 18px; margin-top: 30px; }
.feature {
  display: flex; gap: 16px; padding: 20px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
  transition: .3s var(--ease);
}
.feature:hover { border-color: rgba(var(--brand-rgb),.35); transform: translateX(4px); }
.feature__icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(var(--brand-rgb),.12); color: var(--brand); flex: none; }
.feature__icon svg { width: 22px; height: 22px; }
.feature h4 { font-family: var(--font-head); font-size: 1.02rem; margin-bottom: 4px; }
.feature p { font-size: .89rem; }

.frame {
  border-radius: var(--radius-xl); border: 1px solid var(--line);
  background: var(--grad-surface); padding: 26px; position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.frame::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(var(--brand-rgb),.16), transparent 55%);
  pointer-events: none;
}

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: s; }
.step { position: relative; padding: 32px 24px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); transition: .3s var(--ease); }
.step:hover { border-color: rgba(var(--brand-rgb),.4); transform: translateY(-5px); }
.step__n {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  background: var(--grad-brand); color: var(--brand-ink); margin-bottom: 18px;
  box-shadow: var(--shadow-brand);
}
.step h4 { font-family: var(--font-head); font-size: 1.06rem; margin-bottom: 8px; }
.step p { font-size: .89rem; }
.step:not(:last-child)::after {
  content: ''; position: absolute; top: 55px; right: -14px; width: 22px; height: 1px;
  background: linear-gradient(90deg, var(--brand), transparent);
}

/* ---------- Pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.plan {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: 34px 30px; position: relative; transition: .35s var(--ease); overflow: hidden;
}
.plan:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.plan--featured {
  border-color: rgba(var(--brand-rgb),.45);
  background: linear-gradient(180deg, rgba(var(--brand-rgb),.09), var(--surface) 45%);
  box-shadow: var(--shadow-brand);
}
.plan__tag {
  position: absolute; top: 18px; right: 18px; font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
  background: var(--grad-brand); color: var(--brand-ink); font-family: var(--font-head);
}
.plan__name { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; }
.plan__desc { font-size: .87rem; margin-top: 6px; }
.plan__price { display: flex; align-items: flex-end; gap: 6px; margin: 22px 0 6px; }
.plan__price b { font-family: var(--font-head); font-size: 2.5rem; font-weight: 700; line-height: 1; }
.plan__price small { color: var(--text-faint); font-size: .8rem; padding-bottom: 5px; }
.plan__note { font-size: .78rem; color: var(--text-faint); }
.plan ul { display: grid; gap: 11px; margin: 24px 0 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.plan li { display: flex; gap: 10px; font-size: .9rem; color: var(--text-dim); align-items: flex-start; }
.plan li svg { width: 17px; height: 17px; color: var(--brand); flex: none; margin-top: 3px; }
.plan li.is-off { color: var(--text-faint); text-decoration: line-through; }
.plan li.is-off svg { color: var(--text-faint); }

/* ---------- Gallery ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 34px; }
.filter {
  padding: 10px 20px; border-radius: 999px; font-size: .87rem; font-weight: 500;
  background: var(--surface); border: 1px solid var(--line); color: var(--text-dim); cursor: pointer;
  transition: .25s var(--ease);
}
.filter:hover { color: var(--text); border-color: var(--line-strong); }
.filter.is-active { background: var(--grad-brand); color: var(--brand-ink); border-color: transparent; font-weight: 600; }

.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.shot {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3;
  border: 1px solid var(--line); display: grid; place-items: center; padding: 26px;
  transition: .35s var(--ease);
}
.shot:hover { transform: translateY(-5px); border-color: rgba(var(--brand-rgb),.4); box-shadow: var(--shadow); }
.shot img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.shot:hover img { transform: scale(1.06); }
.shot svg { width: 78%; opacity: .92; position: relative; z-index: 1; filter: drop-shadow(0 16px 22px rgba(0,0,0,.5)); }
.shot__cap {
  position: absolute; inset: auto 0 0 0; z-index: 2; padding: 48px 20px 18px;
  background: linear-gradient(0deg, var(--scrim) 10%, rgba(0,0,0,.55) 55%, transparent 100%);
  font-family: var(--font-head); font-size: .92rem; font-weight: 600;
  color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,.75);
}
.shot__cap small { display: block; font-family: var(--font-body); font-weight: 400; font-size: .76rem; color: rgba(255,255,255,.78); }
.shot--1 { background: linear-gradient(140deg, rgba(var(--brand-rgb),.20), #0A1220); }
.shot--2 { background: linear-gradient(140deg,#1A1330,#0A1220); }
.shot--3 { background: linear-gradient(140deg,#0B2B22,#0A1220); }
.shot--4 { background: linear-gradient(140deg,#2B1A12,#0A1220); }
.shot--5 { background: linear-gradient(140deg,#101C33,#0A1220); }
.shot--6 { background: linear-gradient(140deg,#2A1024,#0A1220); }
.shot--7 { background: linear-gradient(140deg, rgba(var(--brand-2-rgb),.20), #0A1220); }
.shot--8 { background: linear-gradient(140deg, rgba(var(--gold-rgb),.18), #0A1220); }
.shot[hidden] { display: none; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px; position: relative; transition: .3s var(--ease);
  display: flex; flex-direction: column;
}
.quote:hover { transform: translateY(-5px); border-color: rgba(var(--brand-rgb),.35); }
.quote__mark { font-family: var(--font-head); font-size: 3.4rem; line-height: .8; color: rgba(var(--brand-rgb),.22); }
.quote p { font-size: .95rem; color: var(--text); margin: 6px 0 22px; }
.quote__who { margin-top: auto; display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.quote__av { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; background: var(--grad-brand); color: var(--brand-ink); flex: none; }
.quote__who b { font-family: var(--font-head); font-size: .93rem; display: block; }
.quote__who small { color: var(--text-faint); font-size: .78rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .3s; }
.faq__item.is-open { border-color: rgba(var(--brand-rgb),.4); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-head); font-weight: 600; font-size: .99rem;
}
.faq__q:hover { color: var(--brand); }
.faq__ic { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; background: rgba(var(--brand-rgb),.12); color: var(--brand); flex: none; transition: .3s var(--ease); }
.faq__ic svg { width: 15px; height: 15px; }
.faq__item.is-open .faq__ic { background: var(--grad-brand); color: var(--brand-ink); transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .38s var(--ease); }
.faq__a p { padding: 0 22px 22px; font-size: .92rem; }

/* ---------- CTA banner ---------- */
.cta {
  border-radius: var(--radius-xl); padding: clamp(38px, 6vw, 68px);
  background: linear-gradient(135deg, rgba(var(--brand-rgb),.14), rgba(var(--brand-2-rgb),.12));
  border: 1px solid rgba(var(--brand-rgb),.28); position: relative; overflow: hidden; text-align: center;
}
.cta::before {
  content: ''; position: absolute; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--brand-rgb),.28), transparent 70%);
  filter: blur(60px); top: -220px; left: 50%; transform: translateX(-50%);
}
.cta > * { position: relative; z-index: 1; }
.cta p { margin: 14px auto 0; max-width: 58ch; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid > * { min-width: 0; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .84rem; font-weight: 600; font-family: var(--font-head); color: var(--text-dim); }
.field label span { color: var(--brand); }
.field input, .field select, .field textarea {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 15px; font-size: .93rem; transition: .2s var(--ease); width: 100%;
}
.field textarea { resize: vertical; min-height: 118px; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A7B2C0' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 42px;
}
.field select option { background: var(--bg-soft); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(var(--brand-rgb),.14); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--danger); }
.field__err { font-size: .77rem; color: var(--danger); display: none; }
.field__hint { font-size: .79rem; color: var(--brand); font-weight: 600; font-family: var(--font-head); }
.field__hint span { color: var(--text-faint); font-weight: 400; font-family: var(--font-body); }
.field__hint[hidden] { display: none; }
.field.has-error .field__err { display: block; }
.form-note { font-size: .8rem; color: var(--text-faint); margin-top: 14px; text-align: center; }
.form-ok {
  display: none; align-items: flex-start; gap: 12px; margin-top: 18px; padding: 16px 18px;
  border-radius: var(--radius); background: rgba(52,211,153,.1); border: 1px solid rgba(52,211,153,.3);
  font-size: .9rem; color: #B7F3DD;
}
.form-ok.is-visible { display: flex; }
.form-ok svg { width: 20px; height: 20px; color: var(--ok); flex: none; margin-top: 2px; }

/* ---------- Date picker ---------- */
.dp { position: relative; }
.dp__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 15px; font-size: .93rem; cursor: pointer; text-align: left;
  transition: .2s var(--ease);
}
.dp__trigger:hover { border-color: var(--line-strong); }
.dp.is-open .dp__trigger { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(var(--brand-rgb),.14); }
.dp__trigger svg { width: 18px; height: 18px; color: var(--brand); flex: none; }
.dp__value.is-empty { color: var(--text-faint); }
.dp__pop {
  position: absolute; z-index: 95; top: calc(100% + 8px); left: 0;
  width: 306px; max-width: min(100%, calc(100vw - 40px));
  background: var(--surface-2); border: 1px solid var(--line-strong);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 14px;
}
.dp__pop[hidden] { display: none; }
.dp__head { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 12px; }
.dp__nav {
  width: 32px; height: 32px; border-radius: 9px; flex: none; cursor: pointer;
  background: var(--surface); border: 1px solid var(--line); color: var(--text);
  display: grid; place-items: center; transition: .2s var(--ease);
}
.dp__nav:hover:not(:disabled) { background: var(--grad-brand); color: var(--brand-ink); border-color: transparent; }
.dp__nav:disabled { opacity: .3; cursor: not-allowed; }
.dp__nav svg { width: 14px; height: 14px; }
.dp__title { font-family: var(--font-head); font-weight: 600; font-size: .95rem; }
.dp__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.dp__dow { font-size: .68rem; text-align: center; color: var(--text-faint); letter-spacing: .06em; padding-bottom: 6px; }
.dp__day {
  aspect-ratio: 1; border: 0; background: transparent; border-radius: 9px;
  color: var(--text); font-size: .86rem; cursor: pointer; font-family: var(--font-body);
  transition: .15s var(--ease);
}
.dp__day:hover:not(:disabled) { background: rgba(var(--brand-rgb),.16); color: var(--brand); }
.dp__day:disabled { color: var(--text-faint); opacity: .35; cursor: not-allowed; }
.dp__day.is-today { box-shadow: inset 0 0 0 1px var(--line-strong); }
.dp__day.is-sel { background: var(--grad-brand); color: var(--brand-ink); font-weight: 600; }
.dp__day.is-blank { visibility: hidden; }
.dp__quick { display: flex; gap: 8px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.dp__chip {
  flex: 1; padding: 8px 6px; border-radius: 999px; cursor: pointer; font-size: .79rem;
  background: var(--surface); border: 1px solid var(--line); color: var(--text-dim);
  transition: .2s var(--ease);
}
.dp__chip:hover { border-color: var(--brand); color: var(--brand); }
@media (max-width: 640px) { .dp__pop { width: 100%; } }

/* ---------- Contact info ---------- */
.info-list { display: grid; gap: 16px; }
.info {
  display: flex; gap: 16px; padding: 22px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line); transition: .3s var(--ease);
}
.info:hover { border-color: rgba(var(--brand-rgb),.35); transform: translateY(-3px); }
.info__ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: rgba(var(--brand-rgb),.12); color: var(--brand); flex: none; }
.info__ic svg { width: 22px; height: 22px; }
.info h4 { font-family: var(--font-head); font-size: 1rem; margin-bottom: 4px; }
.info { min-width: 0; }
.info > div { min-width: 0; }
.info p, .info a { font-size: .9rem; color: var(--text-dim); overflow-wrap: anywhere; }
.info a:hover { color: var(--brand); }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
.map-frame iframe { width: 100%; height: 380px; border: 0; display: block; filter: grayscale(.25) contrast(.92) brightness(.82); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; overflow: hidden; padding: clamp(56px, 7vw, 92px) 0 clamp(46px, 6vw, 72px); border-bottom: 1px solid var(--line); }
.page-hero::before {
  content: ''; position: absolute; width: 700px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--brand-rgb),.2), transparent 68%); filter: blur(80px);
  top: -230px; right: -120px;
}
.page-hero__inner { position: relative; z-index: 1; max-width: 760px; }
.crumbs { display: flex; gap: 8px; align-items: center; font-size: .82rem; color: var(--text-faint); margin-bottom: 16px; }
.crumbs a:hover { color: var(--brand); }
.crumbs svg { width: 13px; height: 13px; }
.page-hero p { margin-top: 16px; }

/* ---------- Detailed service rows ---------- */
.svc-row {
  display: grid; grid-template-columns: 84px 1fr auto; gap: 26px; align-items: start;
  padding: 30px; border-radius: var(--radius-lg); background: var(--surface);
  border: 1px solid var(--line); transition: .35s var(--ease);
}
.svc-row:hover { border-color: rgba(var(--brand-rgb),.4); transform: translateY(-4px); box-shadow: var(--shadow); }
.svc-row__ic {
  width: 84px; height: 84px; border-radius: 22px; display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(var(--brand-rgb),.18), rgba(var(--brand-2-rgb),.08));
  border: 1px solid rgba(var(--brand-rgb),.22); color: var(--brand);
}
.svc-row__ic svg { width: 40px; height: 40px; }
.svc-row__body h3 { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.pill {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px; font-family: var(--font-head);
  background: rgba(var(--gold-rgb),.14); color: var(--gold); border: 1px solid rgba(var(--gold-rgb),.3);
}
.pill--brand { background: rgba(var(--brand-rgb),.12); color: var(--brand); border-color: rgba(var(--brand-rgb),.3); }
.svc-row__body p { margin: 10px 0 16px; font-size: .93rem; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-size: .78rem; padding: 6px 12px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--line); color: var(--text-dim); }
.svc-row__side { text-align: right; display: grid; gap: 12px; justify-items: end; min-width: 168px; }
.svc-row__price { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; }
.svc-row__price small { display: block; font-family: var(--font-body); font-weight: 400; font-size: .74rem; color: var(--text-faint); }

/* ---------- Footer ---------- */
.footer { background: var(--bg-soft); border-top: 1px solid var(--line); padding: clamp(48px, 6vw, 76px) 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 44px; }
.footer p { font-size: .9rem; }
.footer h5 { font-family: var(--font-head); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text); margin-bottom: 18px; }
.footer__links { display: grid; gap: 11px; }
.footer__links a { overflow-wrap: anywhere; font-size: .9rem; color: var(--text-dim); transition: .2s; display: inline-flex; align-items: flex-start; gap: 8px; }
.footer__links a svg { flex: none; margin-top: 4px; }
.footer__links a:hover { color: var(--brand); transform: translateX(3px); }
.footer .logo { margin-bottom: 18px; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--line); color: var(--text-dim); transition: .25s var(--ease);
}
.footer__social a:hover { background: var(--grad-brand); color: var(--brand-ink); border-color: transparent; transform: translateY(-3px); }
.footer__social svg { width: 17px; height: 17px; }
.footer__hours { display: grid; gap: 9px; font-size: .88rem; }
.footer__hours div { display: flex; justify-content: space-between; gap: 14px; color: var(--text-dim); }
.footer__hours b { color: var(--text); font-weight: 500; }
.footer__bottom {
  margin-top: 46px; padding: 22px 0; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .84rem; color: var(--text-faint);
}
.footer__bottom a:hover { color: var(--brand); }

/* ---------- Floating actions ---------- */
.fab { position: fixed; right: 20px; bottom: 20px; z-index: 90; display: grid; gap: 10px; }
.fab a, .fab button {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  border: 0; cursor: pointer; box-shadow: var(--shadow); transition: .25s var(--ease);
}
.fab a:hover, .fab button:hover { transform: translateY(-3px) scale(1.05); }
.fab__wa { background: #25D366; color: #06301A; position: relative; }
.fab__wa::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid #25D366;
  animation: ping 2.2s ease-out infinite; opacity: 0;
}
@keyframes ping { 0% { transform: scale(.9); opacity: .8; } 100% { transform: scale(1.35); opacity: 0; } }
.fab__call { background: var(--grad-brand); color: var(--brand-ink); }
.fab__top { background: var(--surface); border: 1px solid var(--line-strong) !important; color: var(--text); opacity: 0; pointer-events: none; }
.fab__top.is-visible { opacity: 1; pointer-events: auto; }
.fab svg { width: 22px; height: 22px; }

/* ---------- Small phones (<=420px) ---------- */
@media (max-width: 420px) {
  .container { width: min(100% - 24px, var(--container)); }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.7rem; }
  .nav__toggle { width: 40px; height: 40px; }
  .logo__mark { width: 36px; height: 36px; }
  .logo__name { font-size: 1rem; }
  .logo__sub { font-size: .5rem; letter-spacing: .22em; }
  /* long button labels wrap instead of forcing the page wider */
  .btn { white-space: normal; text-align: center; }
  .btn--lg { padding: 15px 20px; font-size: .95rem; }
  .cta { padding: 30px 20px; }
  .svc, .plan, .quote, .step, .svc-row, .info, .form-card { padding-left: 20px; padding-right: 20px; }
}

/* Tiny phones: the Book CTA collapses to an icon so logo + burger always fit */
@media (max-width: 344px) {
  .topbar__list li:nth-child(n+2) { display: none; }   /* phone number only */
  .nav__book { width: 44px; height: 44px; padding: 0; border-radius: 50%; }
  .nav__book .btn__label { display: none; }
  .nav__book svg { width: 19px; height: 19px; }
}

/* ---------- Touch ergonomics ---------- */
@media (max-width: 960px) {
  /* 16px inputs stop iOS Safari zooming in on focus */
  .field input, .field select, .field textarea, .dp__trigger { font-size: 16px; }
  /* comfortable tap targets in dense link lists */
  .footer__links { gap: 3px; }
  .footer__links a { padding: 8px 0; }
  .topbar__list { gap: 16px; }
  .topbar__list a { padding: 8px 0; }
  .topbar__list li { padding: 3px 0; }
  .info a { display: inline-block; padding: 6px 0; }
  .crumbs a { padding: 4px 0; }
  .map-frame iframe { height: 300px; }
  .fab { right: 12px; bottom: 12px; gap: 8px; }
  .fab a, .fab button { width: 48px; height: 48px; }
  .fab svg { width: 20px; height: 20px; }
  a, button { -webkit-tap-highlight-color: rgba(var(--brand-rgb), .18); }
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
/* laptops / tablets in landscape: the phone button no longer fits beside the nav */
@media (max-width: 1150px) {
  .nav__cta .btn--ghost { display: none; }
  .nav__links a { padding: 10px 12px; font-size: .9rem; }
}

@media (max-width: 1080px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
  .quotes { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .plan--featured { order: -1; }
}
@media (max-width: 960px) {
  :root { --nav-h: 68px; }
  .nav__toggle { display: grid; }
  /* backdrop-filter on the header would become the containing block for the
     fixed menu panel below and clip it to the header's height - drop it here */
  .header {
    backdrop-filter: none; -webkit-backdrop-filter: none;
    background: var(--header-bg-2);
  }

  /* full-screen slide-in menu */
  .nav__panel {
    display: flex; flex-direction: column;
    position: fixed; inset: 0; z-index: 105;
    background: var(--bg);
    transform: translateX(100%); transition: transform .38s var(--ease);
    overflow-y: auto; overscroll-behavior: contain;
    padding-bottom: 30px;
  }
  .nav__panel::before {
    content: ''; position: absolute; top: -230px; right: -150px; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(var(--brand-rgb),.22), transparent 70%);
    filter: blur(55px); pointer-events: none;
  }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav__panel { transform: none; }

  .nav__panel-top {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    height: var(--nav-h); padding-inline: 20px; flex: none;
    border-bottom: 1px solid var(--line);
    position: sticky; top: 0; z-index: 2; background: var(--bg);
  }
  .nav__close {
    width: 44px; height: 44px; border-radius: 13px; flex: none; cursor: pointer;
    background: var(--surface); border: 1px solid var(--line-strong); color: var(--text);
    display: grid; place-items: center; transition: .2s var(--ease);
  }
  .nav__close:hover { background: var(--grad-brand); color: var(--brand-ink); border-color: transparent; }
  .nav__close svg { width: 19px; height: 19px; }

  .nav__links {
    position: static; flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 20px 0; background: none;
  }
  .nav__links li { border-bottom: 1px solid var(--line); }
  .nav__links a {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 17px 2px; border-radius: 0; background: none;
    font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; color: var(--text);
  }
  .nav__links a:hover { background: none; color: var(--brand); }
  .nav__links a.is-active { color: var(--brand); background: none; }
  .nav__links a.is-active::after { display: none; }
  .nav__links a > span { display: flex; align-items: center; gap: 12px; }
  .nav__links a.is-active > span::before {
    content: ''; width: 3px; height: 19px; border-radius: 2px;
    background: var(--grad-brand); box-shadow: 0 0 10px rgba(var(--brand-rgb),.6);
  }
  .nav__chev { display: block; width: 16px; height: 16px; color: var(--text-faint); flex: none; }
  .nav__links a.is-active .nav__chev { color: var(--brand); }

  /* staggered entrance */
  body.nav-open .nav__links li,
  body.nav-open .nav__extra > * {
    animation: navIn .42s var(--ease) backwards;
  }
  body.nav-open .nav__links li:nth-child(1) { animation-delay: .06s; }
  body.nav-open .nav__links li:nth-child(2) { animation-delay: .10s; }
  body.nav-open .nav__links li:nth-child(3) { animation-delay: .14s; }
  body.nav-open .nav__links li:nth-child(4) { animation-delay: .18s; }
  body.nav-open .nav__links li:nth-child(5) { animation-delay: .22s; }
  body.nav-open .nav__links li:nth-child(6) { animation-delay: .26s; }
  body.nav-open .nav__extra > *:nth-child(1) { animation-delay: .30s; }
  body.nav-open .nav__extra > *:nth-child(2) { animation-delay: .34s; }
  body.nav-open .nav__extra > *:nth-child(3) { animation-delay: .38s; }
  body.nav-open .nav__extra > *:nth-child(4) { animation-delay: .42s; }
  @keyframes navIn { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: none; } }

  .nav__extra { display: grid; gap: 14px; padding: 24px 20px 0; position: relative; }
  .nav__quick { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .nav__quick-btn {
    display: flex; align-items: center; justify-content: center; gap: 9px;
    padding: 14px 10px; border-radius: 14px; font-size: .92rem;
    font-family: var(--font-head); font-weight: 600;
    background: var(--surface); border: 1px solid var(--line); color: var(--text);
  }
  .nav__quick-btn svg { width: 18px; height: 18px; color: var(--brand); }
  .nav__quick-btn--wa { background: rgba(37,211,102,.12); border-color: rgba(37,211,102,.35); color: #6EE7A0; }
  .nav__quick-btn--wa svg { color: #25D366; }
  .nav__meta {
    display: grid; gap: 10px; padding: 16px; border-radius: 16px;
    background: var(--surface); border: 1px solid var(--line);
    font-size: .85rem; color: var(--text-dim);
  }
  .nav__meta p { display: flex; gap: 10px; align-items: flex-start; }
  .nav__meta svg { width: 16px; height: 16px; color: var(--brand); flex: none; margin-top: 3px; }
  .nav__social { display: flex; gap: 10px; justify-content: center; padding-top: 6px; }
  .nav__social a {
    width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
    background: var(--surface); border: 1px solid var(--line); color: var(--text-dim);
    transition: .2s var(--ease);
  }
  .nav__social a:hover { background: var(--grad-brand); color: var(--brand-ink); border-color: transparent; }
  .nav__social svg { width: 18px; height: 18px; }
  .nav__cta .btn--ghost { display: none; }
  .hero__inner, .split { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 520px; margin-inline: auto; width: 100%; }
  .float-card--a { left: 0; }
  .float-card--b { right: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .svc-row { grid-template-columns: 62px 1fr; }
  .svc-row__ic { width: 62px; height: 62px; border-radius: 18px; }
  .svc-row__ic svg { width: 30px; height: 30px; }
  .svc-row__side { grid-column: 1 / -1; justify-items: start; text-align: left; }
  .topbar__list li:nth-child(n+3) { display: none; }
  .header { z-index: 102; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 32px, var(--container)); }
  /* keep logo + CTA + burger on one line */
  .logo__mark { width: 40px; height: 40px; }
  .logo__name { font-size: 1.08rem; }
  .logo__sub { font-size: .55rem; letter-spacing: .26em; }
  .nav { gap: 10px; }
  .nav__cta { gap: 8px; }
  .nav__cta .btn { padding: 11px 16px; font-size: .85rem; }
  .nav__toggle { width: 42px; height: 42px; }
  .topbar__social { display: none; }
  .topbar__list { font-size: .78rem; gap: 14px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1 1 100%; }
  .float-card { padding: 10px 13px; }
  .float-card small { display: none; }
  .cta__actions .btn { flex: 1 1 100%; }
  .fab { right: 14px; bottom: 14px; }
}


/* ==========================================================================
   THEME PRESETS
   To switch the whole site, copy a block below over the matching lines in the
   :root{} block at the top of this file. Nothing else needs to change.
   ========================================================================== */

/* --- ELECTRIC CYAN — modern, tech-forward, high contrast --- */
/*
   --brand:#12D6F5; --brand-2:#1B6BFF; --brand-ink:#04141A; --brand-rgb:18,214,245; --brand-2-rgb:27,107,255;
   --gold:#E7B84B; --gold-rgb:231,184,75; --gold-lt:#F3D07A; --gold-dk:#C9922E;
   --bg:#0A0D11; --bg-soft:#0F141A; --surface:#131920; --surface-2:#18202A;
   --glass:rgba(19,25,32,.9); --scrim:rgba(6,9,12,.92); --header-bg:rgba(10,13,17,.72); --header-bg-2:rgba(10,13,17,.92);
*/

/* --- MOLTEN GOLD  (active) — black + gold, premium detailing-studio feel (secondary accent = platinum) --- */
/*
   --brand:#F6C445; --brand-2:#E07B18; --brand-ink:#1F1400; --brand-rgb:246,196,69; --brand-2-rgb:224,123,24;
   --gold:#CFD8E3; --gold-rgb:207,216,227; --gold-lt:#E8EEF6; --gold-dk:#93A2B5; --gold-ink:#111820;
   --bg:#0C0A07; --bg-soft:#12100B; --surface:#18140D; --surface-2:#211B12;
   --glass:rgba(28,23,15,.9); --scrim:rgba(10,8,4,.92); --header-bg:rgba(12,10,7,.72); --header-bg-2:rgba(12,10,7,.94);
*/

/* --- RACING RED — performance / body-shop energy on neutral graphite --- */
/*
   --brand:#FF4436; --brand-2:#B4122F; --brand-ink:#FFFFFF; --brand-rgb:255,68,54; --brand-2-rgb:180,18,47;
   --gold:#E7B84B; --gold-rgb:231,184,75; --gold-lt:#F3D07A; --gold-dk:#C9922E;
   --bg:#0A0A0C; --bg-soft:#0F0F12; --surface:#15151A; --surface-2:#1D1D23;
   --glass:rgba(21,21,26,.9); --scrim:rgba(6,6,8,.92); --header-bg:rgba(10,10,12,.72); --header-bg-2:rgba(10,10,12,.94);
*/

/* --- EMERALD SPA — fresh and clean, leans on the word 'spa' --- */
/*
   --brand:#1FE39B; --brand-2:#0B9E86; --brand-ink:#00251A; --brand-rgb:31,227,155; --brand-2-rgb:11,158,134;
   --gold:#E7B84B; --gold-rgb:231,184,75; --gold-lt:#F3D07A; --gold-dk:#C9922E;
   --bg:#070F0C; --bg-soft:#0B1613; --surface:#0F1D19; --surface-2:#152722;
   --glass:rgba(15,29,25,.9); --scrim:rgba(4,10,8,.92); --header-bg:rgba(7,15,12,.72); --header-bg-2:rgba(7,15,12,.94);
*/

/* --- VIOLET CHROME — modern premium, stands out from other car sites --- */
/*
   --brand:#A98BFF; --brand-2:#6D28D9; --brand-ink:#FFFFFF; --brand-rgb:169,139,255; --brand-2-rgb:109,40,217;
   --gold:#E7B84B; --gold-rgb:231,184,75; --gold-lt:#F3D07A; --gold-dk:#C9922E;
   --bg:#0A0912; --bg-soft:#0F0D1A; --surface:#151222; --surface-2:#1D1930;
   --glass:rgba(21,18,34,.9); --scrim:rgba(7,6,14,.92); --header-bg:rgba(10,9,18,.72); --header-bg-2:rgba(10,9,18,.94);
*/

/* --- SHOWROOM LIGHT — bright daylight theme; best for paid-ad landing traffic --- */
/*
   --brand:#0B72F0; --brand-2:#053C8C; --brand-ink:#FFFFFF; --brand-rgb:11,114,240; --brand-2-rgb:5,60,140;
   --gold:#B8860B; --gold-rgb:184,134,11; --gold-lt:#E3B341; --gold-dk:#9A6E06; --gold-ink:#FFFFFF;
   --bg:#FFFFFF; --bg-soft:#F2F5F9; --surface:#FFFFFF; --surface-2:#EEF2F7;
   --text:#0C1622; --text-dim:#4A5A6C; --text-faint:#8794A4;
   --line:rgba(12,22,34,.10); --line-strong:rgba(12,22,34,.20);
   --glass:rgba(255,255,255,.92); --scrim:rgba(6,9,12,.85); --header-bg:rgba(255,255,255,.78); --header-bg-2:rgba(255,255,255,.95);
   --shadow:0 18px 50px -22px rgba(12,22,34,.28); --shadow-brand:0 18px 44px -18px rgba(11,114,240,.45);
*/
