/* ============================================
   EVO AUTO DETAILS — Design System & Styles
   Black / Gold / White — Premium Detailing
   ============================================ */

@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&f[]=satoshi@300,400,500,700&display=swap');

/* ── Type Scale ── */
:root {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 7rem);

  /* ── Spacing ── */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* ── Brand Colors ── */
  --black: #0a0a0a;
  --black-soft: #111111;
  --black-card: #141414;
  --black-border: #222222;
  --black-hover: #1a1a1a;

  --gold: #C9A84C;
  --gold-bright: #E8C56E;
  --gold-dark: #9A7A2E;
  --gold-muted: #6B5422;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --gold-glow-strong: rgba(201, 168, 76, 0.3);

  --white: #FFFFFF;
  --white-90: rgba(255,255,255,0.9);
  --white-70: rgba(255,255,255,0.7);
  --white-50: rgba(255,255,255,0.5);
  --white-20: rgba(255,255,255,0.2);
  --white-10: rgba(255,255,255,0.1);
  --white-05: rgba(255,255,255,0.05);

  /* ── Semantic Roles ── */
  --color-bg: var(--black);
  --color-surface: var(--black-soft);
  --color-surface-2: var(--black-card);
  --color-border: var(--black-border);
  --color-text: var(--white);
  --color-text-muted: var(--white-70);
  --color-text-faint: var(--white-50);
  --color-primary: var(--gold);
  --color-primary-hover: var(--gold-bright);

  /* ── Typography ── */
  --font-display: 'Clash Display', 'Helvetica Neue', sans-serif;
  --font-body: 'Satoshi', 'Inter', sans-serif;

  /* ── Radii ── */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-gold-sm: 0 0 12px rgba(201, 168, 76, 0.2);
  --shadow-gold-md: 0 0 24px rgba(201, 168, 76, 0.25);
  --shadow-gold-lg: 0 0 48px rgba(201, 168, 76, 0.2);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.6);

  /* ── Transitions ── */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* ── Layout ── */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --nav-height: 72px;
}

/* ── Base Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select { font: inherit; color: inherit; }
ul[role='list'], ol[role='list'] { list-style: none; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; line-height: 1.15; }
p, li, figcaption { text-wrap: pretty; max-width: 72ch; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }

::selection {
  background: var(--gold-glow-strong);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ══════════════════════════════════
   LAYOUT UTILITIES
══════════════════════════════════ */

.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-16));
}

.container--narrow {
  max-width: var(--content-default);
}

section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}

/* ══════════════════════════════════
   NAVIGATION
══════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.nav--scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--black-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav__logo-text span {
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--white-70);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition-interactive);
}

.nav__links a:hover {
  color: var(--gold);
}

.nav__cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: var(--space-2) var(--space-6);
  border-radius: var(--radius-full);
  font-weight: 700 !important;
  font-size: var(--text-sm) !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--transition-interactive), transform var(--transition-interactive), box-shadow var(--transition-interactive) !important;
}

.nav__cta:hover {
  background: var(--gold-bright) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold-md);
  color: var(--black) !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile a {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--white-70);
  text-decoration: none;
  transition: color var(--transition-interactive);
}

.nav__mobile a:hover {
  color: var(--gold);
}

.nav__mobile .btn-gold {
  margin-top: var(--space-4);
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta-desktop { display: none; }
  .nav__hamburger { display: flex; }
}

/* ══════════════════════════════════
   HERO SECTION
══════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.55;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.3) 0%,
    rgba(10,10,10,0.1) 40%,
    rgba(10,10,10,0.7) 80%,
    rgba(10,10,10,1) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: var(--nav-height);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-6);
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: var(--space-8);
  max-width: 14ch;
}

.hero__headline em {
  font-style: normal;
  color: var(--gold);
  display: block;
}

.hero__sub {
  font-size: var(--text-lg);
  color: var(--white-70);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: var(--space-10);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-10);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--white-50);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.hero__scroll-hint svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    background var(--transition-interactive),
    transform var(--transition-interactive),
    box-shadow var(--transition-interactive);
}

.btn-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
}

.btn-gold:active {
  transform: translateY(0);
  box-shadow: var(--shadow-gold-sm);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: transparent;
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  border: 1px solid var(--white-20);
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color var(--transition-interactive),
    color var(--transition-interactive),
    background var(--transition-interactive),
    transform var(--transition-interactive);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
  transform: translateY(-2px);
}

/* ══════════════════════════════════
   SECTION LABELS
══════════════════════════════════ */

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--space-6);
}

.section-title span {
  color: var(--gold);
}

.section-body {
  font-size: var(--text-base);
  color: var(--white-70);
  line-height: 1.75;
  max-width: 60ch;
}

/* ══════════════════════════════════
   GOLD DIVIDER LINE
══════════════════════════════════ */

.gold-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: var(--space-8);
}

/* ══════════════════════════════════
   STATS BAR
══════════════════════════════════ */

.stats {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding-block: var(--space-10);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.stat {
  text-align: center;
  padding: var(--space-6);
  position: relative;
}

.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--black-border);
}

.stat__number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-50);
}

@media (max-width: 640px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat:nth-child(3)::before {
    display: none;
  }
}

/* ══════════════════════════════════
   SERVICES SECTION
══════════════════════════════════ */

.services {
  background: var(--black);
}

.services__header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.services__header .section-body {
  max-width: 60ch;
  margin-inline: auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.service-card {
  position: relative;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    border-color var(--transition-interactive),
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out);
  text-decoration: none;
  display: block;
}

.service-card:hover {
  border-color: var(--gold-muted);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold-md), var(--shadow-lg);
}

.service-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.service-card:hover .service-card__img {
  transform: scale(1.04);
}

.service-card__img-wrap {
  overflow: hidden;
  position: relative;
}

.service-card__img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, var(--black-card), transparent);
}

.service-card__body {
  padding: var(--space-6) var(--space-6) var(--space-8);
}

.service-card__icon {
  width: 40px;
  height: 40px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-muted);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--gold);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}

.service-card__desc {
  font-size: var(--text-sm);
  color: var(--white-50);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: gap var(--transition-interactive);
}

.service-card:hover .service-card__link {
  gap: var(--space-3);
}

@media (max-width: 900px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════
   WHY EVO SECTION
══════════════════════════════════ */

.why {
  background: var(--black-soft);
  overflow: hidden;
}

.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-12), 6vw, var(--space-20));
  align-items: center;
}

.why__visual {
  position: relative;
}

.why__img {
  width: 100%;
  border-radius: var(--radius-xl);
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 1px solid var(--black-border);
}

.why__badge {
  position: absolute;
  bottom: var(--space-8);
  right: calc(-1 * var(--space-8));
  background: var(--gold);
  color: var(--black);
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.why__badge-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.why__badge-text {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: var(--space-1);
}

.why__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.why__item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.why__item-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--gold-glow);
  border: 1px solid var(--gold-muted);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 2px;
}

.why__item-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-1);
}

.why__item-desc {
  font-size: var(--text-sm);
  color: var(--white-50);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .why__inner {
    grid-template-columns: 1fr;
  }
  .why__badge {
    right: var(--space-4);
    bottom: var(--space-4);
  }
}

/* ══════════════════════════════════
   PROCESS SECTION
══════════════════════════════════ */

.process {
  background: var(--black);
}

.process__header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + var(--space-6));
  right: calc(16.66% + var(--space-6));
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-muted), var(--gold));
  opacity: 0.4;
}

.process-step {
  text-align: center;
  padding: var(--space-8);
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  position: relative;
  transition:
    border-color var(--transition-interactive),
    box-shadow var(--transition-interactive);
}

.process-step:hover {
  border-color: var(--gold-muted);
  box-shadow: var(--shadow-gold-sm);
}

.process-step__num {
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--black);
  margin-inline: auto;
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 1;
}

.process-step__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-3);
}

.process-step__desc {
  font-size: var(--text-sm);
  color: var(--white-50);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .process__steps {
    grid-template-columns: 1fr;
  }
  .process__steps::before {
    display: none;
  }
}

/* ══════════════════════════════════
   GALLERY / BEFORE-AFTER
══════════════════════════════════ */

.gallery {
  background: var(--black-soft);
}

.gallery__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.gallery__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-3);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.gallery__item {
  position: relative;
  overflow: hidden;
}

.gallery__item:first-child {
  grid-row: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.5s var(--ease-out);
}

.gallery__item:first-child img {
  aspect-ratio: auto;
  min-height: 480px;
}

.gallery__item:hover img {
  transform: scale(1.04);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-interactive);
  display: flex;
  align-items: flex-end;
  padding: var(--space-5);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 768px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery__item:first-child {
    grid-row: span 1;
    grid-column: span 2;
  }
  .gallery__item:first-child img {
    min-height: 260px;
  }
}

@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: 1fr;
  }
  .gallery__item:first-child {
    grid-column: span 1;
  }
}

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */

.testimonials {
  background: var(--black);
}

.testimonials__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.testimonial-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition:
    border-color var(--transition-interactive),
    box-shadow var(--transition-interactive),
    transform 0.3s var(--ease-out);
}

.testimonial-card:hover {
  border-color: var(--gold-muted);
  box-shadow: var(--shadow-gold-sm);
  transform: translateY(-2px);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-4);
  color: var(--gold);
}

.testimonial-card__quote {
  font-size: var(--text-base);
  color: var(--white-70);
  line-height: 1.75;
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1px solid var(--gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--white);
}

.testimonial-card__location {
  font-size: var(--text-xs);
  color: var(--white-50);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════
   SERVICE AREA
══════════════════════════════════ */

.service-area {
  background: var(--black-soft);
}

.service-area__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-12), 6vw, var(--space-20));
  align-items: center;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.city-tag {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--white-70);
  text-decoration: none;
  transition:
    border-color var(--transition-interactive),
    color var(--transition-interactive),
    background var(--transition-interactive);
}

.city-tag:hover {
  border-color: var(--gold-muted);
  color: var(--gold);
  background: var(--gold-glow);
}

.city-tag svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--gold);
}

.service-area__map {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--black-border);
  aspect-ratio: 4/3;
  background: var(--black-card);
}

.service-area__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) saturate(0.3) brightness(0.8);
}

@media (max-width: 768px) {
  .service-area__inner {
    grid-template-columns: 1fr;
  }
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ══════════════════════════════════
   CTA SECTION
══════════════════════════════════ */

.cta-section {
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__content {
  position: relative;
  z-index: 1;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: var(--space-6);
}

.cta-section__title span {
  color: var(--gold);
}

.cta-section__sub {
  font-size: var(--text-lg);
  color: var(--white-70);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: var(--space-10);
  line-height: 1.7;
}

.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.cta-section__tel {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition-interactive);
}

.cta-section__tel:hover {
  color: var(--gold-bright);
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */

.footer {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
  padding-block: var(--space-16);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
}

.footer__brand-name span {
  color: var(--gold);
}

.footer__tagline {
  font-size: var(--text-sm);
  color: var(--white-50);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--white-70);
  text-decoration: none;
  margin-bottom: var(--space-2);
  transition: color var(--transition-interactive);
}

.footer__contact-item:hover {
  color: var(--gold);
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.footer__heading {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-5);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__links a {
  font-size: var(--text-sm);
  color: var(--white-50);
  text-decoration: none;
  transition: color var(--transition-interactive);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-8);
  border-top: 1px solid var(--black-border);
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer__copy {
  font-size: var(--text-xs);
  color: var(--white-50);
}

.footer__socials {
  display: flex;
  gap: var(--space-3);
}

.footer__social {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-full);
  color: var(--white-50);
  text-decoration: none;
  transition:
    border-color var(--transition-interactive),
    color var(--transition-interactive),
    background var(--transition-interactive);
}

.footer__social:hover {
  border-color: var(--gold-muted);
  color: var(--gold);
  background: var(--gold-glow);
}

@media (max-width: 900px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════ */

.fade-in {
  opacity: 1;
}

@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: fade-reveal linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 60%;
  }
}

@keyframes fade-reveal {
  to { opacity: 1; }
}

/* ══════════════════════════════════
   INNER PAGE HERO (Services / Locations)
══════════════════════════════════ */

.page-hero {
  padding-top: calc(var(--nav-height) + var(--space-16));
  padding-bottom: var(--space-16);
  background: var(--black-soft);
  border-bottom: 1px solid var(--black-border);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at right center, var(--gold-glow) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: var(--space-5);
}

.page-hero__title span {
  color: var(--gold);
}

.page-hero__sub {
  font-size: var(--text-lg);
  color: var(--white-70);
  max-width: 56ch;
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

/* ══════════════════════════════════
   BREADCRUMB
══════════════════════════════════ */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--white-50);
  margin-bottom: var(--space-6);
}

.breadcrumb a {
  color: var(--white-50);
  text-decoration: none;
  transition: color var(--transition-interactive);
}

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ══════════════════════════════════
   SERVICE PAGE CONTENT
══════════════════════════════════ */

.service-content {
  background: var(--black);
}

.service-content__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-12), 6vw, var(--space-20));
  align-items: start;
}

.service-content__img {
  width: 100%;
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--black-border);
  position: sticky;
  top: calc(var(--nav-height) + var(--space-8));
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-block: var(--space-8);
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--white-70);
  line-height: 1.6;
}

.service-features li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1px solid var(--gold-muted);
  flex-shrink: 0;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 768px) {
  .service-content__grid {
    grid-template-columns: 1fr;
  }
  .service-content__img {
    position: static;
  }
}

/* ══════════════════════════════════
   FAQ SECTION
══════════════════════════════════ */

.faq {
  background: var(--black-soft);
}

.faq__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.faq__list {
  max-width: 760px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--black-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--black-border);
}

.faq-item__q {
  width: 100%;
  text-align: left;
  padding: var(--space-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition-interactive);
}

.faq-item__q:hover {
  color: var(--gold);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s var(--ease-out);
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.faq-item.open .faq-item__a {
  max-height: 400px;
  padding-bottom: var(--space-6);
}

.faq-item__a p {
  font-size: var(--text-base);
  color: var(--white-50);
  line-height: 1.75;
}

/* ══════════════════════════════════
   MOBILE DETAILING FEATURE STRIP
══════════════════════════════════ */

.feature-strip {
  background: var(--gold);
  padding-block: var(--space-5);
  overflow: hidden;
}

.feature-strip__track {
  display: flex;
  gap: var(--space-12);
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.feature-strip__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  flex-shrink: 0;
}

.feature-strip__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--black);
  opacity: 0.4;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ══════════════════════════════════
   ACTIVE NAV STATES
══════════════════════════════════ */

.nav__links a.active {
  color: var(--gold);
}
