/* ============================================================
   LOCATION VOITURE — Design System v2
   Luxury editorial · Sections alternées clair/sombre · Gold
   ============================================================ */

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  /* Dark palette */
  --color-bg:          #0C0C0C;
  --color-bg-alt:      #111111;
  --color-bg-card:     #181818;
  --color-text:        #F0EDE8;
  --color-text-muted:  #7A756E;
  --color-text-soft:   #B5B0A8;
  --color-border:      rgba(201,168,76,0.14);
  --color-border-soft: rgba(255,255,255,0.07);

  /* Light palette */
  --color-light-bg:        #F8F5F0;
  --color-light-bg-alt:    #FFFFFF;
  --color-light-card:      #FFFFFF;
  --color-light-text:      #161412;
  --color-light-muted:     #7A7167;
  --color-light-border:    rgba(0,0,0,0.08);
  --color-light-shadow:    0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);

  /* Gold */
  --color-gold:        #C9A84C;
  --color-gold-light:  #E2C47A;
  --color-gold-dark:   #A8882E;
  --color-gold-dim:    rgba(201,168,76,0.08);

  /* Fonts */
  --font-serif: 'Cormorant Garant', 'Cormorant', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --section-pad: clamp(88px, 11vw, 144px);
  --container:   1320px;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;

  /* Shadows */
  --shadow-card: 0 2px 24px rgba(0,0,0,0.5), 0 0 0 1px var(--color-border);
  --shadow-gold: 0 0 40px rgba(201,168,76,0.18);
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Base ───────────────────────────────────────────────────── */
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Skip link ──────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100px; left: 0; z-index: 9999;
  padding: 12px 24px; background: var(--color-gold); color: #000;
  font-weight: 600; transition: top 0.2s;
}
.skip-link:focus { top: 0; }

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

/* ── Utility ────────────────────────────────────────────────── */
.gold { color: var(--color-gold); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ============================================================
   SECTION THEMES — dark / light
   ============================================================ */
.section-dark {
  background: var(--color-bg);
  color: var(--color-text);
}
.section-dark-alt {
  background: var(--color-bg-alt);
  color: var(--color-text);
}
.section-light {
  background: var(--color-light-bg);
  color: var(--color-light-text);
}
.section-light .section-label { color: var(--color-gold-dark); }
.section-light .section-label::before { background: var(--color-gold-dark); }
.section-light .section-title { color: var(--color-light-text); }
.section-light .section-subtitle { color: var(--color-light-muted); }
.section-light .btn-outline {
  border-color: rgba(0,0,0,0.2);
  color: var(--color-light-text);
}
.section-light .btn-outline:hover {
  border-color: var(--color-gold-dark);
  color: var(--color-gold-dark);
  background: rgba(201,168,76,0.06);
}
.section-white {
  background: var(--color-light-bg-alt);
  color: var(--color-light-text);
}
.section-white .section-label { color: var(--color-gold-dark); }
.section-white .section-label::before { background: var(--color-gold-dark); }
.section-white .section-title { color: var(--color-light-text); }
.section-white .section-subtitle { color: var(--color-light-muted); }

/* ── Section label ──────────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-gold);
  margin-bottom: 20px;
}
.section-label::before {
  content: ''; display: block; width: 32px; height: 1px;
  background: var(--color-gold);
}

/* ── Headings ───────────────────────────────────────────────── */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500; line-height: 1.1; letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--color-text-muted);
  max-width: 560px; line-height: 1.7;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: var(--radius-sm);
  font-family: var(--font-sans); font-size: 0.875rem;
  font-weight: 600; letter-spacing: 0.04em;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--color-gold); color: #000; }
.btn-primary:hover {
  background: var(--color-gold-light);
  box-shadow: var(--shadow-gold); transform: translateY(-1px);
}
.btn-outline {
  border: 1px solid var(--color-border); color: var(--color-text); background: transparent;
}
.btn-outline:hover {
  border-color: var(--color-gold); color: var(--color-gold);
  background: var(--color-gold-dim);
}
.btn-ghost { color: var(--color-gold); padding: 14px 0; gap: 8px; }
.btn-ghost:hover { gap: 14px; }
.btn-ghost-dark { color: var(--color-gold-dark); padding: 14px 0; gap: 8px; }
.btn-ghost-dark:hover { gap: 14px; }
.btn svg { flex-shrink: 0; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  transition: background 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 14px 0; border-color: var(--color-border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-serif); font-size: 1.4rem;
  font-weight: 600; letter-spacing: 0.02em; flex-shrink: 0;
}
.nav-logo-icon { width: 36px; height: 36px; }
.nav-logo span { color: var(--color-gold); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: var(--color-text-soft);
  letter-spacing: 0.02em; transition: color var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--color-gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--color-text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-cta { padding: 10px 24px; font-size: 0.8125rem; }
.nav-burger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px; padding: 8px;
}
.nav-burger span {
  display: block; height: 1.5px; background: var(--color-text);
  border-radius: 2px; transition: var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-mobile {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--color-bg); flex-direction: column;
  align-items: center; justify-content: center; gap: 40px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.nav-mobile.open { display: flex; opacity: 1; pointer-events: all; }
.nav-mobile a {
  font-family: var(--font-serif); font-size: 2.5rem; font-weight: 500;
  color: var(--color-text); transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--color-gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  transform: scale(1.05); transition: transform 8s ease-out;
}
@media (max-width: 768px) {
  .hero-bg-img { object-position: 60% 25%; }
}
.hero-bg-img.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.25) 100%);
}
.hero-overlay-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 280px;
  background: linear-gradient(to top, var(--color-bg) 0%, transparent 100%);
}
.hero-bg-placeholder {
  width: 100%; height: 100%;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
    linear-gradient(135deg, #0A0A0A 0%, #121212 50%, #0D0D0D 100%);
}
.hero-content {
  position: relative; z-index: 1;
  padding: 120px 0 80px; max-width: 800px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px; border: 1px solid var(--color-border);
  border-radius: 100px; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-gold);
  margin-bottom: 32px; animation: heroFade 0.8s 0.1s both;
  background: rgba(201,168,76,0.05);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 7.5vw, 6rem);
  font-weight: 500; line-height: 1.0; letter-spacing: -0.02em;
  margin-bottom: 28px; animation: heroUp 0.9s 0.2s both;
}
.hero-title em { font-style: italic; color: var(--color-gold); }
.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.15rem); color: var(--color-text-soft);
  max-width: 520px; line-height: 1.75; margin-bottom: 48px;
  animation: heroUp 0.9s 0.35s both;
}
.hero-actions {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  animation: heroUp 0.9s 0.45s both;
}
.hero-stats {
  position: relative; z-index: 1;
  display: flex; gap: 48px; padding: 32px 0 64px;
  animation: heroFade 1s 0.7s both;
}
.hero-stat-num {
  font-family: var(--font-serif); font-size: 2.5rem; font-weight: 600;
  color: var(--color-gold); line-height: 1; margin-bottom: 4px;
}
.hero-stat-label { font-size: 0.78rem; color: var(--color-text-muted); letter-spacing: 0.06em; }
.hero-divider { width: 1px; background: var(--color-border); align-self: stretch; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--color-text-muted); font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  animation: heroFade 1s 1s both;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}
@keyframes heroUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFade {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   FEATURED STRIP — image pleine largeur
   ============================================================ */
.featured-strip {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  height: 420px; overflow: hidden;
}
.featured-strip-item {
  position: relative; overflow: hidden; cursor: pointer;
}
.featured-strip-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.featured-strip-item:hover img { transform: scale(1.06); }
.featured-strip-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
}
.featured-strip-label {
  position: absolute; bottom: 24px; left: 24px;
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 500;
  color: #fff; letter-spacing: 0.01em;
}
.featured-strip-label span {
  display: block; font-family: var(--font-sans);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--color-gold); margin-bottom: 4px;
}

/* ============================================================
   FLEET SECTION — light background
   ============================================================ */
.fleet-section { padding: var(--section-pad) 0; }
.fleet-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 56px; flex-wrap: wrap;
}
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

/* Car card — version light */
.car-card {
  background: var(--color-light-card);
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--color-light-shadow);
}
.car-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.14); }
.car-card-img-wrap {
  position: relative; height: 240px; overflow: hidden;
  background: var(--color-light-bg);
}
.car-card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.car-card:hover .car-card-img-wrap img { transform: scale(1.05); }
.car-card-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 4px 12px; background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px); border-radius: 100px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--color-gold);
}
.car-img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center;
  justify-content: center; background: linear-gradient(135deg, #f0ede8, #e8e4de);
}
.car-img-placeholder svg { opacity: 0.2; }
.car-card-body { padding: 24px; }
.car-card-category {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--color-gold-dark); margin-bottom: 6px;
}
.car-card-name {
  font-family: var(--font-serif); font-size: 1.45rem; font-weight: 500;
  margin-bottom: 16px; line-height: 1.2; color: var(--color-light-text);
}
.car-card-specs {
  display: flex; gap: 16px; padding: 14px 0;
  border-top: 1px solid var(--color-light-border);
  border-bottom: 1px solid var(--color-light-border);
  margin-bottom: 20px;
}
.car-spec { display: flex; align-items: center; gap: 5px; font-size: 0.78rem; color: var(--color-light-muted); }
.car-spec svg { color: var(--color-gold-dark); flex-shrink: 0; }
.car-card-footer { display: flex; align-items: center; justify-content: space-between; }
.car-price { display: flex; align-items: baseline; gap: 3px; }
.car-price-num {
  font-family: var(--font-serif); font-size: 1.85rem;
  font-weight: 600; color: var(--color-gold-dark);
}
.car-price-unit { font-size: 0.78rem; color: var(--color-light-muted); }
.car-card-cta {
  padding: 10px 20px; font-size: 0.8rem;
  border-color: rgba(0,0,0,0.15); color: var(--color-light-text);
}
.car-card-cta:hover { border-color: var(--color-gold-dark); color: var(--color-gold-dark); }

/* ============================================================
   EXPERIENCE SECTION — image + texte côte à côte
   ============================================================ */
.experience-section { padding: var(--section-pad) 0; }
.experience-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.experience-img-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  height: 580px;
}
.experience-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.experience-img-badge {
  position: absolute; bottom: 28px; left: 28px;
  padding: 16px 24px;
  background: rgba(8,8,8,0.85); backdrop-filter: blur(12px);
  border: 1px solid var(--color-border); border-radius: var(--radius-md);
}
.experience-img-badge-num {
  font-family: var(--font-serif); font-size: 2rem;
  font-weight: 600; color: var(--color-gold); line-height: 1;
}
.experience-img-badge-text {
  font-size: 0.78rem; color: var(--color-text-soft); margin-top: 4px;
}
.experience-features { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.experience-feature {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-border-soft); border-radius: var(--radius-md);
  transition: border-color var(--transition);
}
.experience-feature:hover { border-color: var(--color-border); }
.experience-feature-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-gold-dim); border-radius: var(--radius-sm);
  color: var(--color-gold);
}
.experience-feature-title { font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
.experience-feature-desc { font-size: 0.83rem; color: var(--color-text-muted); line-height: 1.6; }

/* ============================================================
   USP SECTION — dark
   ============================================================ */
.usp-section { padding: var(--section-pad) 0; }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 72px; }
.usp-card {
  padding: 32px 24px; background: var(--color-bg-card);
  border: 1px solid var(--color-border-soft); border-radius: var(--radius-md);
  transition: border-color var(--transition), transform var(--transition);
}
.usp-card:hover { border-color: var(--color-border); transform: translateY(-3px); }
.usp-icon {
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  background: var(--color-gold-dim); border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); margin-bottom: 24px; color: var(--color-gold);
}
.usp-title { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 500; margin-bottom: 10px; }
.usp-desc { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.7; }

/* ============================================================
   PROCESS — light background
   ============================================================ */
.process-section { padding: var(--section-pad) 0; }
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; margin-top: 80px; position: relative;
}
.process-grid::before {
  content: ''; position: absolute;
  top: 36px; left: calc(16.66% + 36px); right: calc(16.66% + 36px);
  height: 1px;
  background: linear-gradient(to right, var(--color-gold-dark), rgba(168,136,46,0.3), var(--color-gold-dark));
}
.process-step { padding: 0 16px; text-align: center; }
.process-num {
  width: 72px; height: 72px; display: flex; align-items: center; justify-content: center;
  background: var(--color-light-bg-alt); border: 2px solid var(--color-gold);
  border-radius: 50%; font-family: var(--font-serif);
  font-size: 1.5rem; font-weight: 600; color: var(--color-gold-dark);
  margin: 0 auto 28px; position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(201,168,76,0.15);
}
.process-title {
  font-family: var(--font-serif); font-size: 1.35rem; font-weight: 500;
  margin-bottom: 12px; color: var(--color-light-text);
}
.process-desc { font-size: 0.875rem; color: var(--color-light-muted); line-height: 1.7; }

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-section { padding: var(--section-pad) 0; }
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 20px;
  margin-top: 56px;
}
.gallery-item {
  border-radius: var(--radius-md); overflow: hidden;
  position: relative; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ============================================================
   TESTIMONIALS — dark
   ============================================================ */
.testimonials-section { padding: var(--section-pad) 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 72px; }
.testimonial-card {
  padding: 36px; background: var(--color-bg-card);
  border: 1px solid var(--color-border-soft); border-radius: var(--radius-lg);
  transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: var(--color-border); }
.testimonial-stars { display: flex; gap: 4px; color: var(--color-gold); margin-bottom: 20px; }
.testimonial-text {
  font-family: var(--font-serif); font-size: 1.1rem;
  font-style: italic; line-height: 1.7;
  color: var(--color-text-soft); margin-bottom: 28px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--color-gold-dim); border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.1rem;
  color: var(--color-gold); font-weight: 600;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; }
.testimonial-role { font-size: 0.78rem; color: var(--color-text-muted); }

/* ============================================================
   CTA — light avec accent gold
   ============================================================ */
.cta-section { padding: var(--section-pad) 0; text-align: center; position: relative; overflow: hidden; }
.cta-section.cta-light { background: var(--color-light-bg); }
.cta-section.cta-light .cta-title { color: var(--color-light-text); }
.cta-section.cta-light .cta-desc { color: var(--color-light-muted); }
.cta-section::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-family: var(--font-serif); font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 500; margin-bottom: 20px; line-height: 1.08;
}
.cta-desc { font-size: 1.05rem; color: var(--color-text-muted); max-width: 480px; margin: 0 auto 40px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 96px 0 48px; border-top: 1px solid var(--color-border-soft); }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-logo { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; margin-bottom: 16px; }
.footer-logo span { color: var(--color-gold); }
.footer-about { font-size: 0.875rem; color: var(--color-text-muted); line-height: 1.75; max-width: 280px; }
.footer-heading {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--color-gold); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.875rem; color: var(--color-text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--color-text); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--color-text-muted); }
.footer-contact-item svg { color: var(--color-gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid var(--color-border-soft);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 0.8rem; color: var(--color-text-muted); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.8rem; color: var(--color-text-muted); transition: color var(--transition); }
.footer-legal a:hover { color: var(--color-gold); }

/* ============================================================
   PAGE HERO (flotte, contact)
   ============================================================ */
.page-hero { padding: 148px 0 80px; background: var(--color-bg-alt); border-bottom: 1px solid var(--color-border-soft); overflow: hidden; position: relative; }

/* ── Orbes flottants (bokeh luxe) ──────────────────────────── */
.hero-orbs {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none; z-index: 1;
}
.orb {
  position: absolute; border-radius: 50%;
  will-change: transform;
}
/* Orbe 1 — grand halo doré gauche-centre */
.orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle at 50% 50%, rgba(201,168,76,0.55) 0%, rgba(201,168,76,0.18) 45%, transparent 72%);
  filter: blur(72px);
  top: -120px; left: 5%;
  animation: orbDrift1 16s ease-in-out infinite;
}
/* Orbe 2 — médium ambre droite */
.orb-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle at 50% 50%, rgba(226,196,122,0.45) 0%, rgba(201,168,76,0.12) 50%, transparent 72%);
  filter: blur(55px);
  bottom: -60px; right: 18%;
  animation: orbDrift2 21s ease-in-out infinite;
}
/* Orbe 3 — petit accent chaud centre */
.orb-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle at 50% 50%, rgba(255,210,100,0.5) 0%, rgba(201,168,76,0.08) 60%, transparent 80%);
  filter: blur(38px);
  top: 30%; left: 38%;
  animation: orbDrift3 12s ease-in-out infinite;
}
/* Orbe 4 — halo froid (bleu-nuit) pour profondeur */
.orb-4 {
  width: 300px; height: 300px;
  background: radial-gradient(circle at 50% 50%, rgba(30,50,120,0.35) 0%, rgba(20,30,80,0.08) 55%, transparent 75%);
  filter: blur(65px);
  top: 10%; right: 5%;
  animation: orbDrift4 19s ease-in-out infinite;
}

@keyframes orbDrift1 {
  0%   { transform: translate(0px,   0px)  scale(1);    opacity: .9; }
  25%  { transform: translate(30px,  25px) scale(1.08); opacity: 1;  }
  55%  { transform: translate(-15px, 45px) scale(0.94); opacity: .85;}
  80%  { transform: translate(20px, -15px) scale(1.04); opacity: .95;}
  100% { transform: translate(0px,   0px)  scale(1);    opacity: .9; }
}
@keyframes orbDrift2 {
  0%   { transform: translate(0px,   0px)  scale(1);    opacity: .8; }
  30%  { transform: translate(-40px,-30px) scale(1.1);  opacity: .95;}
  60%  { transform: translate(25px,  20px) scale(0.92); opacity: .75;}
  85%  { transform: translate(-10px, 35px) scale(1.05); opacity: .9; }
  100% { transform: translate(0px,   0px)  scale(1);    opacity: .8; }
}
@keyframes orbDrift3 {
  0%   { transform: translate(0px,  0px) scale(1);    opacity: .7; }
  35%  { transform: translate(20px,-25px) scale(1.15); opacity: .9; }
  70%  { transform: translate(-18px,15px) scale(0.88); opacity: .6; }
  100% { transform: translate(0px,  0px) scale(1);    opacity: .7; }
}
@keyframes orbDrift4 {
  0%   { transform: translate(0px,   0px)  scale(1);    opacity: .6; }
  40%  { transform: translate(-25px, 35px) scale(1.12); opacity: .8; }
  75%  { transform: translate(30px, -20px) scale(0.95); opacity: .55;}
  100% { transform: translate(0px,   0px)  scale(1);    opacity: .6; }
}
/* Réduit opacité orbes sur mobile */
@media (max-width: 768px) {
  .orb-1 { width: 300px; height: 300px; filter: blur(50px); }
  .orb-2 { width: 220px; height: 220px; filter: blur(40px); }
  .orb-3 { width: 140px; height: 140px; filter: blur(28px); }
  .orb-4 { width: 180px; height: 180px; filter: blur(45px); }
}
/* Container texte au-dessus des orbes */
.page-hero--flotte .container,
.page-hero--contact .container { position: relative; z-index: 2; }

/* Page heroes avec 3D — fond sombre pur, modèle = visuel */
.page-hero--flotte,
.page-hero--contact {
  background: #0A0A0A;
  border-bottom: 1px solid var(--color-border-soft);
}


/* ============================================================
   FLEET PAGE
   ============================================================ */
.filters-wrap {
  padding: 28px 0; position: sticky; top: 64px; z-index: 10;
  background: rgba(248,245,240,0.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-light-border);
}
.filters-bar { display: flex; align-items: center; gap: 10px; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
.filters-bar::-webkit-scrollbar { display: none; }
.filter-btn {
  padding: 9px 22px; border-radius: 100px;
  border: 1px solid var(--color-light-border); font-size: 0.8125rem;
  font-weight: 500; color: var(--color-light-muted);
  background: transparent; white-space: nowrap; transition: var(--transition);
}
.filter-btn:hover { border-color: rgba(0,0,0,0.2); color: var(--color-light-text); }
.filter-btn.active { background: var(--color-gold-dark); border-color: var(--color-gold-dark); color: #000; }
.fleet-full-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; padding: 56px 0 var(--section-pad);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: var(--section-pad) 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-info { position: sticky; top: 100px; }
.contact-info-items { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(168,136,46,0.2);
  border-radius: var(--radius-sm); color: var(--color-gold-dark); flex-shrink: 0;
}
.contact-info-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-light-muted); margin-bottom: 4px; }
.contact-info-value { font-size: 0.95rem; color: var(--color-light-text); }
.contact-form {
  background: var(--color-light-bg-alt); border: 1px solid var(--color-light-border);
  border-radius: var(--radius-lg); padding: 48px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-light-muted); }
.form-input, .form-select, .form-textarea {
  padding: 14px 16px; background: var(--color-light-bg);
  border: 1px solid var(--color-light-border); border-radius: var(--radius-sm);
  color: var(--color-light-text); font-family: var(--font-sans);
  font-size: 0.9375rem; transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--color-gold-dark);
  box-shadow: 0 0 0 3px rgba(168,136,46,0.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--color-light-muted); opacity: 0.7; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%237A7167' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 16px; font-size: 0.9375rem; margin-top: 8px; background: var(--color-gold-dark); }
.form-submit:hover { background: var(--color-gold); box-shadow: 0 0 32px rgba(168,136,46,0.2); }
.form-success {
  display: none; padding: 20px;
  background: rgba(168,136,46,0.08); border: 1px solid rgba(168,136,46,0.2);
  border-radius: var(--radius-sm); text-align: center;
  color: var(--color-gold-dark); font-size: 0.9rem; margin-top: 20px;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; }
.reveal.visible { animation: fadeInUp 0.65s ease both; }

/* ============================================================
   SHOWROOM 3D
   ============================================================ */
.showroom-section { padding: var(--section-pad) 0; overflow: hidden; position: relative; }
.showroom-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.showroom-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}
.showroom-text { position: relative; z-index: 1; }
.showroom-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 10px 18px;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: .75rem;
  color: var(--color-gold);
  letter-spacing: .07em;
  text-transform: uppercase;
}
.showroom-viewer {
  position: relative;
  height: 580px;
}
.showroom-glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(ellipse 65% 55% at 50% 55%, rgba(201,168,76,0.13) 0%, transparent 65%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: .7; }
  50%       { opacity: 1; }
}
.car-3d-model {
  width: 100%;
  height: 100%;
  --poster-color: transparent;
  background: transparent;
  border-radius: 0;
}
/* car free — no mask clip */
.car-3d-model::part(default-progress-bar) {
  background-color: var(--color-gold);
  height: 2px;
}
.car-3d-model::part(default-progress-mask) {
  background-color: rgba(201,168,76,0.15);
  height: 2px;
}

/* ============================================================
   ANIMATIONS SUPPLÉMENTAIRES
   ============================================================ */
@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 120%; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleUp {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

/* Reveal variants */
.reveal.slide-left.visible  { animation: slideLeft  0.65s ease both; }
.reveal.slide-right.visible { animation: slideRight 0.65s ease both; }
.reveal.scale-up.visible    { animation: scaleUp    0.55s ease both; }

/* Button shimmer on hover */
.btn-primary { overflow: hidden; }
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transition: none;
}
.btn-primary:hover::after {
  animation: shimmer 0.55s ease forwards;
}
.btn-primary { position: relative; }

/* Enhanced car card hover */
.car-card {
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease;
}
.section-dark .car-card:hover,
.section-dark-alt .car-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 28px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(201,168,76,.25), var(--shadow-gold);
}
.section-light .car-card:hover,
.section-white .car-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 28px 60px rgba(0,0,0,.12), 0 0 0 1px rgba(201,168,76,.2);
}

/* Hero stat counter — golden pulse on animate */
.hero-stat-num.counting { color: var(--color-gold); }

/* Strip items — subtle entrance */
.featured-strip-item { animation: fadeInUp .8s ease both; }
.featured-strip-item:nth-child(1) { animation-delay: .1s; }
.featured-strip-item:nth-child(2) { animation-delay: .25s; }
.featured-strip-item:nth-child(3) { animation-delay: .4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1280px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 1024px) {
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .showroom-grid  { grid-template-columns: 1fr; gap: 24px; }
  .showroom-viewer { height: 320px; }
  .showroom-section { padding: clamp(48px,7vw,80px) 0; }
}
@media (max-width: 1024px) {
  .fleet-grid, .fleet-full-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-grid { grid-template-columns: 1fr; gap: 48px; }
  .experience-img-wrap { height: 400px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-info { position: static; }
  .process-grid::before { display: none; }
  .featured-strip { height: 300px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  /* Hero title — réduit sur mobile */
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-desc { font-size: 0.92rem; margin-bottom: 32px; }
  /* Stats — centrés, grille 2×2 */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    text-align: center;
    justify-items: center;
    padding: 24px 0 48px;
  }
  .hero-divider { display: none; }
  .hero-stats > [role="listitem"] {
    padding: 16px 12px;
    border: 1px solid rgba(201,168,76,0.12);
  }
  /* Supprime doubles bordures intérieures (gap:0 + border all-sides = 2px) */
  .hero-stats > [role="listitem"]:nth-child(2n)   { border-left: none; }
  .hero-stats > [role="listitem"]:nth-child(n+3)  { border-top: none; }
  .hero-stat-num { font-size: 1.8rem; }
  .hero-stat-label { font-size: 0.7rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .featured-strip { grid-template-columns: 1fr; height: auto; }
  .featured-strip-item { height: 200px; }
  .gallery-mosaic { gap: 8px; }
}
@media (max-width: 480px) {
  .fleet-grid, .fleet-full-grid, .usp-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(1.75rem, 9vw, 2.4rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; }
  .gallery-mosaic { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .showroom-viewer { height: 280px; }
  .hero-stat-num { font-size: 1.55rem; }
}
/* ============================================================
   PREMIUM FX LAYER (v17) — wow demo
   ============================================================ */

/* ── Scroll progress bar ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light));
  box-shadow: 0 0 14px rgba(201,168,76,0.55);
  z-index: 250; pointer-events: none; will-change: transform;
}

/* ── Custom cursor (desktop fine pointer only) ── */
@media (hover: hover) and (pointer: fine) {
  html.has-custom-cursor, html.has-custom-cursor * { cursor: none !important; }
  .cursor-dot, .cursor-ring {
    position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
    border-radius: 50%; transform: translate(-100px, -100px);
    will-change: transform; mix-blend-mode: normal;
  }
  .cursor-dot {
    width: 7px; height: 7px; margin: -3.5px 0 0 -3.5px;
    background: var(--color-gold);
    transition: width .25s, height .25s, margin .25s, opacity .25s;
  }
  .cursor-ring {
    width: 38px; height: 38px; margin: -19px 0 0 -19px;
    border: 1px solid rgba(201,168,76,0.55);
    transition: width .3s ease, height .3s ease, margin .3s ease,
                border-color .3s, background .3s;
  }
  .cursor-ring.is-hover {
    width: 66px; height: 66px; margin: -33px 0 0 -33px;
    border-color: rgba(201,168,76,0.9); background: rgba(201,168,76,0.07);
  }
  .cursor-dot.is-hover { width: 0; height: 0; margin: 0; opacity: 0; }
  .cursor-ring.is-down { width: 30px; height: 30px; margin: -15px 0 0 -15px; }
}

/* ── Cinematic grain overlay ── */
.grain {
  position: fixed; inset: -50%; z-index: 240; pointer-events: none;
  opacity: 0.045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 0.6s steps(2) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0,0); }
  100% { transform: translate(-6%, 4%); }
}

/* ── Page transition curtain ── */
.page-curtain {
  position: fixed; inset: 0; z-index: 300; pointer-events: none;
  background: linear-gradient(120deg, #0A0A0A 0%, #15130c 50%, #0A0A0A 100%);
  transform: translateY(100%);
  display: flex; align-items: center; justify-content: center;
}
.page-curtain.cover { transform: translateY(0); }
.page-curtain.curtain-in  { animation: curtainIn  .5s cubic-bezier(.76,0,.24,1) forwards; }
.page-curtain.curtain-out { animation: curtainOut .65s cubic-bezier(.76,0,.24,1) forwards; }
.page-curtain-logo {
  font-family: var(--font-serif); font-size: 2rem; font-weight: 500;
  letter-spacing: 0.04em; color: var(--color-text); opacity: 0;
}
.page-curtain-logo span { color: var(--color-gold); }
.page-curtain.cover .page-curtain-logo,
.page-curtain.curtain-in .page-curtain-logo { animation: curtainLogo .6s ease forwards; }
@keyframes curtainIn  { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes curtainOut { from { transform: translateY(0); }    to { transform: translateY(-100%); } }
@keyframes curtainLogo {
  0% { opacity: 0; transform: translateY(12px); letter-spacing: 0.2em; }
  100% { opacity: 1; transform: translateY(0); letter-spacing: 0.04em; }
}

/* ── Hero title — word split reveal ── */
.hero-title.split-ready { animation: none; }
.hero-title .word {
  display: inline-block; opacity: 0;
  transform: translateY(48px); filter: blur(10px);
  animation: wordIn 0.8s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: var(--wd, 0s);
}
.hero-title em .word { color: var(--color-gold); }
@keyframes wordIn {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* ── 3D tilt cards ── */
.car-card.tilt-on {
  transition: transform .1s ease-out, box-shadow .3s ease;
  transform-style: preserve-3d; will-change: transform;
}
.car-card.tilt-on .car-card-img-wrap,
.car-card.tilt-on .car-card-badge { transform: translateZ(40px); }
.car-card.tilt-on .car-card-name { transform: translateZ(22px); }

/* ── Magnetic buttons ── */
.btn.magnetic { will-change: transform; }

/* ── Brand marquee ── */
.brand-marquee {
  background: #0A0A0A; padding: 28px 0; overflow: hidden; position: relative;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.brand-marquee::before, .brand-marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 160px; z-index: 2; pointer-events: none;
}
.brand-marquee::before { left: 0;  background: linear-gradient(90deg, #0A0A0A, transparent); }
.brand-marquee::after  { right: 0; background: linear-gradient(270deg, #0A0A0A, transparent); }
.brand-track {
  display: flex; gap: 72px; width: max-content;
  animation: marquee 36s linear infinite;
}
.brand-marquee:hover .brand-track { animation-play-state: paused; }
.brand-item {
  font-family: var(--font-serif); font-size: 1.6rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-text-muted); white-space: nowrap; transition: color .3s;
}
.brand-item:hover { color: var(--color-gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Extra reveal flavors ── */
.reveal.blur-in { opacity: 0; }
.reveal.blur-in.visible { animation: blurIn 0.8s ease both; }
@keyframes blurIn {
  from { opacity: 0; filter: blur(14px); transform: scale(0.98); }
  to   { opacity: 1; filter: blur(0); transform: scale(1); }
}

@media (max-width: 768px) {
  .brand-item { font-size: 1.25rem; }
  .brand-track { gap: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html.has-custom-cursor, html.has-custom-cursor * { cursor: auto !important; }
  .cursor-dot, .cursor-ring, .grain, .scroll-progress { display: none !important; }
  .hero-title .word { opacity: 1; transform: none; filter: none; }
}
