/* =========================================================================
   Visual Impact Valeting Services — dark automotive-luxe design system
   Gloss black showroom aesthetic. Palette + type + components shared by
   every page. Values only — do not rename custom properties.
   ========================================================================= */

:root {
  --black: #101214;
  --black-soft: #16191c;
  --gunmetal: #23272c;
  --gunmetal-light: #2e343b;
  --gunmetal-border: #33393f;
  --white: #f4f6f8;
  --white-dim: #c7ccd1;
  --cyan: #2fb6d9;
  --cyan-bright: #4fd3f3;
  --cyan-dim: #1e8fac;
  --silver: #9aa4ad;
  --success-glow: rgba(47, 182, 217, 0.35);

  --font-head: 'Manrope', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --container: 1220px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; letter-spacing: -0.01em; margin: 0 0 0.5em; line-height: 1.15; }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ===== Accessibility ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--cyan);
  color: var(--black);
  padding: 12px 20px;
  font-weight: 700;
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  left: 0;
}
:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  min-height: 48px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn--primary {
  background: var(--cyan);
  color: var(--black);
}
.btn--primary:hover {
  background: var(--cyan-bright);
  box-shadow: 0 0 28px var(--success-glow);
}
.btn--ghost {
  background: transparent;
  border-color: var(--gunmetal-border);
  color: var(--white);
}
.btn--ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan-bright);
}
.btn--lg { padding: 16px 34px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ===== Top bar ===== */
.topbar {
  background: var(--black-soft);
  border-bottom: 1px solid var(--gunmetal-border);
  font-size: 0.85rem;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 8px 24px;
  flex-wrap: wrap;
}
.topbar__item a {
  color: var(--white-dim);
  font-weight: 600;
}
.topbar__item a:hover { color: var(--cyan-bright); }
.topbar__socials {
  display: flex;
  gap: 14px;
  align-items: center;
}
.topbar__socials a {
  color: var(--silver);
  display: inline-flex;
  width: 28px; height: 28px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  transition: color 180ms var(--ease), background 180ms var(--ease);
}
.topbar__socials a:hover { color: var(--cyan-bright); background: var(--gunmetal); }
.topbar__badge { color: var(--silver); }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16, 18, 20, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gunmetal-border);
  transition: box-shadow 220ms var(--ease);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
}
.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.brand__text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1.1;
}
.brand__text .accent { color: var(--cyan); }
.brand__text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 2px;
}
.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--white-dim);
  padding: 8px 2px;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--cyan);
  transition: right 220ms var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--white); }
.nav a:hover::after, .nav a[aria-current="page"]::after { right: 0; }
.header__cta { flex-shrink: 0; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80vw, 320px);
    height: 100vh;
    background: var(--gunmetal);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform 280ms var(--ease);
    border-left: 1px solid var(--gunmetal-border);
  }
  .nav--mobile-open { transform: translateX(0); }
  .nav a { font-size: 1.05rem; }
  .header__cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ===== Call FAB ===== */
.call-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.4), 0 0 0 0 var(--success-glow);
  transition: box-shadow 220ms var(--ease), transform 180ms var(--ease);
}
.call-fab:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.4), 0 0 30px var(--success-glow); }
.call-fab:active { transform: scale(0.94); }
@media (min-width: 900px) { .call-fab { display: none; } }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(16,18,20,0.97) 0%, rgba(16,18,20,0.55) 45%, rgba(16,18,20,0.35) 100%),
    linear-gradient(90deg, rgba(16,18,20,0.55) 0%, rgba(16,18,20,0.05) 45%);
}
.hero__content {
  position: relative;
  padding: 140px 24px 76px;
  max-width: 720px;
}
.hero__accent-line {
  width: 64px; height: 3px;
  background: var(--cyan);
  margin-bottom: 20px;
}
.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  margin: 0 0 14px;
}
.eyebrow--center { text-align: center; }
.hero h1 {
  font-size: clamp(2.2rem, 5.2vw, 3.6rem);
  color: var(--white);
}
.hero__lede {
  font-size: 1.15rem;
  color: var(--white-dim);
  max-width: 56ch;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 30px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  font-size: 0.9rem;
  color: var(--silver);
}
.hero__trust li { display: flex; align-items: center; gap: 8px; }
.hero__trust svg { flex-shrink: 0; color: var(--cyan); width: 16px; height: 16px; }

/* Hero staggered fade-up on load (JS adds .is-ready to trigger) */
.hero__accent-line, .hero .eyebrow, .hero h1, .hero__lede, .hero__actions, .hero__trust {
  opacity: 0;
  transform: translateY(18px);
}
html.js .hero__accent-line { transition: opacity 620ms var(--ease) 80ms, transform 620ms var(--ease) 80ms; }
html.js .hero .eyebrow { transition: opacity 620ms var(--ease) 180ms, transform 620ms var(--ease) 180ms; }
html.js .hero h1 { transition: opacity 620ms var(--ease) 280ms, transform 620ms var(--ease) 280ms; }
html.js .hero__lede { transition: opacity 620ms var(--ease) 380ms, transform 620ms var(--ease) 380ms; }
html.js .hero__actions { transition: opacity 620ms var(--ease) 480ms, transform 620ms var(--ease) 480ms; }
html.js .hero__trust { transition: opacity 620ms var(--ease) 560ms, transform 620ms var(--ease) 560ms; }
html.js.hero-ready .hero__accent-line,
html.js.hero-ready .hero .eyebrow,
html.js.hero-ready .hero h1,
html.js.hero-ready .hero__lede,
html.js.hero-ready .hero__actions,
html.js.hero-ready .hero__trust {
  opacity: 1;
  transform: translateY(0);
}
html:not(.js) .hero__accent-line, html:not(.js) .hero .eyebrow, html:not(.js) .hero h1,
html:not(.js) .hero__lede, html:not(.js) .hero__actions, html:not(.js) .hero__trust {
  opacity: 1; transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .hero__accent-line, .hero .eyebrow, .hero h1, .hero__lede, .hero__actions, .hero__trust {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}

/* ===== Page hero (inner pages) ===== */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16,18,20,0.96) 5%, rgba(16,18,20,0.45) 80%);
}
.page-hero__content {
  position: relative;
  padding: 100px 24px 48px;
  max-width: 760px;
}
.page-hero h1 { font-size: clamp(1.9rem, 4.4vw, 2.9rem); }
.page-hero__lede { color: var(--white-dim); font-size: 1.05rem; max-width: 60ch; }
.breadcrumb {
  font-size: 0.82rem;
  color: var(--silver);
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--silver); }
.breadcrumb a:hover { color: var(--cyan-bright); }

/* ===== Sections ===== */
.section { padding: 88px 0; }
.section--tight { padding: 64px 0; }
.section--alt { background: var(--black-soft); }
.section--panel { background: var(--gunmetal); }
.section--light { background: var(--white); color: var(--black); }
.section--light .silver-text { color: #566068; }
.section__title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  text-align: center;
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
}
.section__title--left { text-align: left; margin: 0 0 0.5em; }
.section__lede {
  text-align: center;
  color: var(--white-dim);
  max-width: 60ch;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}
.section--light .section__lede { color: #566068; }

/* ===== Reveal-on-scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== Services grid ===== */
.grid--services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  background: var(--gunmetal);
  border: 1px solid var(--gunmetal-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 260ms var(--ease), border-color 260ms var(--ease), box-shadow 260ms var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan-dim);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35), 0 0 0 1px rgba(47,182,217,0.15);
}
.card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--black-soft);
  border: 1px solid var(--gunmetal-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--cyan);
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.15rem; color: var(--white); }
.card p { color: var(--silver); font-size: 0.95rem; margin: 0; }
.card__note {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cyan-bright);
}

/* ===== Cars / Yachts split band ===== */
.split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
@media (max-width: 780px) {
  .split-band { grid-template-columns: 1fr; }
}
.split-band__panel {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 48px;
  min-height: 360px;
  overflow: hidden;
}
.split-band__panel img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}
.split-band__panel:hover img { transform: scale(1.05); }
.split-band__panel::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(16,18,20,0.92) 10%, rgba(16,18,20,0.25) 75%);
}
.split-band__content { position: relative; z-index: 1; }
.split-band__content .eyebrow { margin-bottom: 8px; }
.split-band__content h3 { font-size: 1.6rem; color: var(--white); margin-bottom: 10px; }
.split-band__content p { color: var(--white-dim); max-width: 42ch; margin-bottom: 18px; }
.split-band__panel--cyan .eyebrow { color: var(--cyan-bright); }

/* ===== Stats band ===== */
.stats-band {
  background: var(--gunmetal);
  border-top: 1px solid var(--gunmetal-border);
  border-bottom: 1px solid var(--gunmetal-border);
  padding: 52px 0;
}
.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
}
.stats-band__item strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  color: var(--cyan-bright);
}
.stats-band__item span {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--silver);
}

/* ===== Gallery ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 520px) {
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 260px; }
}
.gallery__item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--gunmetal-border);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 480ms var(--ease), filter 480ms var(--ease);
}
.gallery__item:hover img { transform: scale(1.03); filter: brightness(1.05); }
.gallery__item:hover { box-shadow: 0 0 0 1px var(--cyan-dim), 0 12px 30px rgba(47,182,217,0.18); }
.gallery__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(16,18,20,0.92), transparent);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 260ms var(--ease), transform 260ms var(--ease);
}
.gallery__item:hover figcaption, .gallery__item:focus-within figcaption { opacity: 1; transform: translateY(0); }
.stock-tag {
  display: block;
  font-size: 0.68rem;
  color: var(--silver);
  font-weight: 400;
}

/* ===== Reviews ===== */
.ratings-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin-bottom: 44px;
}
.ratings-bar__item { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; }
.ratings-bar__stars { color: var(--cyan-bright); letter-spacing: 2px; }
.ratings-bar__divider { width: 1px; height: 22px; background: var(--gunmetal-border); }
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--black-soft);
  border: 1px solid var(--gunmetal-border);
  border-radius: var(--radius);
  padding: 28px;
}
.review-card__stars { color: var(--cyan-bright); letter-spacing: 3px; margin-bottom: 12px; }
.review-card p { color: var(--white-dim); font-style: italic; }
.review-card__author { font-weight: 700; font-size: 0.9rem; color: var(--white); }
.review-card__author span { font-weight: 400; color: var(--silver); }
.reviews__cta { text-align: center; margin-top: 36px; }

/* ===== About ===== */
.about__grid, .why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) {
  .about__grid, .why__grid { grid-template-columns: 1fr; }
}
.about__media img, .why__media img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--gunmetal-border);
}
.about__content p { color: var(--white-dim); }
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.about__stats div strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--cyan-bright);
}
.about__stats div span { font-size: 0.8rem; color: var(--silver); }
.why__list li { color: var(--white-dim); padding: 10px 0; border-bottom: 1px solid var(--gunmetal-border); }
.why__list li:last-child { border-bottom: none; }
.why__list strong { color: var(--white); }

/* ===== CTA band ===== */
.cta-band {
  background: linear-gradient(120deg, var(--gunmetal) 0%, var(--black-soft) 100%);
  border-top: 1px solid var(--gunmetal-border);
  border-bottom: 1px solid var(--gunmetal-border);
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); }
.cta-band p { color: var(--white-dim); max-width: 54ch; margin: 0 auto 28px; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== Contact ===== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
@media (max-width: 860px) {
  .contact__grid { grid-template-columns: 1fr; }
}
.contact__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gunmetal-border);
  color: var(--white-dim);
  min-width: 0;
}
.contact__list li:last-child { border-bottom: none; }
.contact__list-text { min-width: 0; flex: 1 1 auto; overflow-wrap: break-word; }
.contact__list a { color: var(--white); font-weight: 600; min-width: 0; flex: 1 1 auto; overflow-wrap: break-word; }
.contact__list a:hover { color: var(--cyan-bright); }
.contact__list span { color: var(--cyan); flex-shrink: 0; width: 20px; text-align: center; }
.contact__socials { display: flex; gap: 14px; margin-top: 22px; }
.contact__socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--gunmetal-border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white-dim);
  transition: border-color 200ms var(--ease), color 200ms var(--ease);
}
.contact__socials a:hover { border-color: var(--cyan); color: var(--cyan-bright); }
.contact__form {
  background: var(--gunmetal);
  border: 1px solid var(--gunmetal-border);
  border-radius: var(--radius);
  padding: 32px;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white-dim);
  margin-bottom: 6px;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 13px 14px;
  min-height: 48px;
  background: var(--black-soft);
  border: 1.5px solid var(--gunmetal-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  transition: border-color 180ms var(--ease);
}
.form-row textarea { min-height: 110px; resize: vertical; }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  border-color: var(--cyan);
  outline: none;
}
.form-note { margin-top: 14px; font-size: 0.9rem; color: var(--cyan-bright); min-height: 1.4em; }

/* ===== Footer ===== */
.footer {
  background: var(--black-soft);
  border-top: 1px solid var(--gunmetal-border);
  padding: 40px 0;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--silver);
}
.footer__brand { display: flex; align-items: center; gap: 10px; }
.footer nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer nav a { color: var(--silver); }
.footer nav a:hover { color: var(--cyan-bright); }
.footer a.footer__phone { color: var(--white); font-weight: 600; }

/* ===== Utility ===== */
.eyebrow--dim { color: var(--silver); }
.text-cyan { color: var(--cyan-bright); }
