/* =========================================
   FULL OPTION — Charte Graphique Officielle
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,900;1,700&family=Barlow:wght@300;400;500;600&display=swap');

/* === VARIABLES === */
:root {
  --rouge: #FF3131;
  --blanc: #FFFFFF;
  --noir: #000000;
  --gris: #737373;
  --gris-light: #1a1a1a;
  --gris-card: #111111;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--noir);
  color: var(--blanc);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--noir); }
::-webkit-scrollbar-thumb { background: var(--rouge); border-radius: 3px; }

/* === HEADER / NAV === */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,49,49,0.2);
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(0,0,0,0.98);
  border-bottom-color: var(--rouge);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo img {
  height: 42px;
  width: auto;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blanc);
  line-height: 1.2;
}
.logo-text span { color: var(--rouge); }

.nav { display: flex; align-items: center; gap: 0; }
.nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gris);
  padding: 0.5rem 1.1rem;
  position: relative;
  transition: color var(--transition);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--rouge);
  transition: var(--transition);
}
.nav a:hover, .nav a.active {
  color: var(--blanc);
}
.nav a:hover::after, .nav a.active::after {
  left: 1.1rem; right: 1.1rem;
}
.nav-cta {
  margin-left: 1rem;
  background: var(--rouge) !important;
  color: var(--blanc) !important;
  padding: 0.5rem 1.4rem !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem !important;
  transition: background var(--transition), transform var(--transition) !important;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.nav-cta:hover { background: #cc2020 !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--blanc);
  transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(0,0,0,0.98);
  padding: 1.5rem 2rem;
  border-bottom: 2px solid var(--rouge);
  z-index: 999;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gris);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--transition);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--rouge); }

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(255,49,49,0.1) 100%),
    url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1920&q=90') center/cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--noir) 0%, transparent 40%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 70px;
}
.hero-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rouge);
  border: 1px solid var(--rouge);
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  animation: fadeInUp 0.6s ease both;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.hero h1 span { color: var(--rouge); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 1.5rem 0 2.5rem;
  font-weight: 300;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s both;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  animation: bounce 2s ease infinite;
}
.hero-scroll span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--rouge), transparent);
}

/* === BOUTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.btn-primary {
  background: var(--rouge);
  color: var(--blanc);
}
.btn-primary:hover { background: #cc2020; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,49,49,0.4); }
.btn-outline {
  background: transparent;
  color: var(--blanc);
  border: 2px solid rgba(255,255,255,0.4) !important;
  clip-path: none;
  padding: 0.75rem 2rem;
}
.btn-outline:hover { border-color: var(--blanc) !important; background: rgba(255,255,255,0.05); }

/* === SECTIONS GÉNÉRIQUES === */
section { padding: 6rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.section-title span { color: var(--rouge); }
.section-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  font-weight: 300;
  max-width: 550px;
  line-height: 1.7;
}

/* === STATS HERO === */
.stats-bar {
  background: var(--gris-light);
  border-top: 3px solid var(--rouge);
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--rouge);
  line-height: 1;
  display: block;
}
.stat-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gris);
  margin-top: 0.25rem;
  display: block;
}

/* === SECTION VÉHICULES ACCUEIL === */
.vehicles-preview { background: var(--noir); }
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

/* === CARD VÉHICULE === */
.vehicle-card {
  background: var(--gris-card);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px var(--rouge);
  border-color: var(--rouge);
}
.vehicle-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.vehicle-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.vehicle-card:hover .vehicle-card-img img { transform: scale(1.07); }
.vehicle-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.badge-vendre { background: var(--rouge); color: var(--blanc); }
.badge-vendu { background: rgba(0,0,0,0.85); color: var(--gris); border: 1px solid var(--gris); }
.vehicle-card-body { padding: 1.25rem 1.5rem; }
.vehicle-marque {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 0.25rem;
}
.vehicle-modele {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.vehicle-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.vehicle-meta span {
  font-size: 0.8rem;
  color: var(--gris);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.vehicle-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1rem;
}
.vehicle-prix {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--blanc);
}
.vehicle-prix-vendu {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gris);
  text-decoration: line-through;
}
.vehicle-arrow {
  width: 36px;
  height: 36px;
  background: var(--rouge);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: background var(--transition), transform var(--transition);
}
.vehicle-card:hover .vehicle-arrow { background: #cc2020; transform: translateX(3px); }
.vehicle-arrow svg { width: 16px; height: 16px; stroke: white; fill: none; }

/* Vendu overlay */
.vehicle-card.vendu .vehicle-card-img::after {
  content: 'VENDU';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  color: var(--gris);
  border: 3px solid var(--gris);
}

/* === MODAL VÉHICULE === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(8px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--gris-card);
  border: 1px solid rgba(255,49,49,0.3);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 36px;
  height: 36px;
  background: rgba(255,49,49,0.2);
  border: 1px solid var(--rouge);
  color: var(--blanc);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background var(--transition);
}
.modal-close:hover { background: var(--rouge); }
.modal-img {
  height: 350px;
  overflow: hidden;
  position: relative;
}
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-body { padding: 2rem; }
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.modal-marque {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 0.25rem;
}
.modal-modele {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 1;
}
.modal-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--rouge);
  white-space: nowrap;
}
.modal-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
  background: rgba(255,255,255,0.03);
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.modal-spec {
  text-align: center;
}
.modal-spec-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gris);
  display: block;
  margin-bottom: 0.25rem;
}
.modal-spec-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}
.modal-description {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.modal-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* === SERVICES === */
.services { background: var(--gris-light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  padding: 2rem;
  background: var(--noir);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--rouge);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}
.service-card:hover { border-color: rgba(255,49,49,0.3); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,49,49,0.1);
  border: 1px solid rgba(255,49,49,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--rouge); fill: none; }
.service-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.service-desc { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.6; }

/* === HISTOIRE === */
.histoire { background: var(--noir); overflow: hidden; }
.histoire-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.histoire-img-wrapper {
  position: relative;
}
.histoire-img {
  height: 550px;
  overflow: hidden;
  border: 1px solid rgba(255,49,49,0.2);
}
.histoire-img img { width: 100%; height: 100%; object-fit: cover; }
.histoire-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: var(--rouge);
  z-index: -1;
  opacity: 0.2;
}
.histoire-year {
  position: absolute;
  top: 1.5rem;
  left: -1rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 5rem;
  color: rgba(255,49,49,0.1);
  line-height: 1;
  pointer-events: none;
}
.histoire-text p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.histoire-text p strong { color: var(--blanc); font-weight: 600; }
.histoire-signature {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.histoire-signature-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
.histoire-signature-title {
  font-size: 0.85rem;
  color: var(--rouge);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

/* === CTA BANDE === */
.cta-band {
  background: var(--rouge);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: 'FULL OPTION';
  position: absolute;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12rem;
  color: rgba(0,0,0,0.1);
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  letter-spacing: -0.02em;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
  line-height: 1.1;
}
.btn-black {
  background: var(--noir);
  color: var(--blanc);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.btn-black:hover { background: #1a1a1a; transform: translateY(-2px); }

/* === CONTACT === */
.contact { background: var(--gris-light); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(255,49,49,0.1);
  border: 1px solid rgba(255,49,49,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.contact-item-icon svg { width: 20px; height: 20px; stroke: var(--rouge); fill: none; }
.contact-item-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rouge);
  display: block;
  margin-bottom: 0.2rem;
}
.contact-item-value { font-size: 0.95rem; color: rgba(255,255,255,0.8); }

/* Formulaire */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gris);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--blanc);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  width: 100%;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select,
.form-group textarea:focus { border-color: var(--rouge); }
.form-group select { background-color: #111; }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-msg {
  padding: 0.75rem 1rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  display: none;
}
.form-msg.success { background: rgba(0,200,100,0.1); border: 1px solid rgba(0,200,100,0.3); color: #00c864; display: block; }
.form-msg.error { background: rgba(255,49,49,0.1); border: 1px solid rgba(255,49,49,0.3); color: var(--rouge); display: block; }

/* === FOOTER === */
footer {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}
.footer-brand-desc {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1rem;
}
.footer-col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--blanc); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.3); font-size: 0.8rem; transition: color var(--transition); }
.footer-legal a:hover { color: var(--blanc); }

/* === PAGE VÉHICULES (liste complète) === */
.vehicles-page { background: var(--noir); }
.vehicles-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--gris);
  cursor: pointer;
  transition: all var(--transition);
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--rouge);
  border-color: var(--rouge);
  color: var(--blanc);
}

/* === PAGES LÉGALES === */
.legal-page { background: var(--noir); padding-top: 120px; }
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
}
.legal-content h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.legal-content h1 span { color: var(--rouge); }
.legal-date { color: var(--gris); font-size: 0.85rem; margin-bottom: 3rem; }
.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rouge);
  margin: 2.5rem 0 0.75rem;
}
.legal-content p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.legal-content a { color: var(--rouge); }
.legal-content a:hover { text-decoration: underline; }

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .histoire-inner { grid-template-columns: 1fr; gap: 3rem; }
  .histoire-img { height: 350px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .contact-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .burger { display: flex; }
  .hero h1 { font-size: clamp(2.5rem, 10vw, 4.5rem); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .modal-specs { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-band-inner { text-align: center; justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border: none; padding: 1rem; }
}
