*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #DF3C3D;
  --blue: #53A0D8;
  --cream: #E2E1E0;
  --black: #000000;
  --dark: #0d0d0d;
  --dark2: #141414;
  --dark3: #1c1c1c;
  --gray: #333;
}

html { scroll-behavior: smooth; scroll-snap-type: y mandatory; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
}

/* ─── SCROLL OFFSET (nav fixe) ──────────────── */
#stages, #voiture, #coach, #circuits, #temoignages, #contact {
  scroll-margin-top: 95px;
}

.nav-mobile-only { display: none; }

/* ─── NAV ─────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 6px 48px;
  background: linear-gradient(to bottom, rgba(0,0,0,.85), transparent);
  transition: background .3s;
}
nav.scrolled { background: rgba(0,0,0,.95); border-bottom: 1px solid rgba(255,255,255,.07); }
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic; font-weight: 900;
  font-size: 26px; letter-spacing: .04em;
  color: #fff;
}
.nav-logo span { color: var(--red); }
.nav-logo-img {
  height: 77px;
  width: auto;
  display: block;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 17.5px; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(226,225,224,.7);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic; font-weight: 700; font-size: 17px;
  letter-spacing: .08em; text-transform: uppercase;
  background: var(--red); color: #fff;
  border: none; padding: 10px 24px; cursor: pointer;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: background .2s, transform .15s;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.nav-cta-tel {
  font-size: 13px; font-weight: 400; font-style: normal;
  letter-spacing: .04em; opacity: .85; text-transform: none;
}
.nav-cta:hover { background: #c02e2f; transform: scale(1.03); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-insta { display: flex; align-items: center; opacity: .85; transition: opacity .2s; }
.nav-insta:hover { opacity: 1; }
.nav-insta img { display: block; }

/* ─── ABOVE FOLD ─────────────────────────── */
.above-fold {
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  scroll-snap-align: start;
}

/* ─── HERO ────────────────────────────────── */
.hero {
  position: relative; flex: 1; min-height: 0;
  display: flex; align-items: stretch;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../img/hero-bg.jpg');
  background-size: cover; background-position: 72% 30%;
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards, heroUnblur 2s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1.0); } }
@keyframes heroUnblur { from { filter: blur(12px); } to { filter: blur(0); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,.82) 0%,
    rgba(0,0,0,.65) 30%,
    rgba(0,0,0,.25) 55%,
    rgba(0,0,0,.0) 75%
  );
}
.hero-stripe {
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(to right, var(--blue) 0%, var(--blue) 33.33%, #fff 33.33%, #fff 66.67%, var(--red) 66.67%, var(--red) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 80px 48px 52px;
  max-width: 700px;
  display: flex; flex-direction: column; justify-content: flex-end;
  animation: heroFade .9s ease-out both;
}
.hero-content::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--blue);
}
@keyframes heroFade { from { opacity:0; transform: translateX(-28px); } to { opacity:1; transform: translateX(0); } }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 16.5px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 20px;
}
.hero-tag::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--blue); }
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic; font-weight: 900;
  font-size: clamp(56px, 7vw, 88px); line-height: 1.1;
  letter-spacing: -.01em; color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,.55), 0 1px 4px rgba(0,0,0,.4);
  margin-bottom: 8px;
}
.hero-title .red { color: var(--red); }
.hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic; font-weight: 400;
  font-size: clamp(18px, 2.5vw, 26px);
  color: rgba(255,255,255,.9); letter-spacing: .06em;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; align-items: center; }
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic; font-weight: 700; font-size: 15px;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--red); color: #fff; border: none;
  padding: 14px 32px; cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: #c02e2f; transform: scale(1.03); }
.btn-secondary {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic; font-weight: 600; font-size: 14px;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--cream); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  transition: color .2s;
}
.btn-secondary:hover { color: var(--blue); }
.btn-secondary::after { content: '→'; font-style: normal; }

.hero-stats {
  position: absolute; right: 40px; bottom: 48px; z-index: 2;
  display: flex; flex-direction: column; gap: 20px;
  animation: heroFade 1.1s ease-out both;
}
.stat {
  text-align: right;
  border-right: 2px solid var(--red);
  padding-right: 14px;
}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic; font-weight: 900; font-size: 34px;
  color: #fff; line-height: 1;
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(226,225,224,.5);
}

/* ─── PILLARS ─────────────────────────────── */
.pillars {
  background: var(--dark);
  border-top: 1px solid #222;
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.pillar {
  padding: 8px 44px;
  border-right: 1px solid #222;
  position: relative; overflow: hidden;
  transition: background .4s ease;
  display: grid;
  grid-template-columns: 26px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: linear-gradient(160deg, rgba(200,45,46,.09) 0%, transparent 55%); }
.pillar::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--red) 0%, #ff5252 60%, transparent 100%);
  box-shadow: 0 0 10px rgba(200,45,46,.7), 0 0 22px rgba(200,45,46,.3);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s cubic-bezier(0.22, 1, 0.36, 1);
}
.pillar::after {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0; width: 2px;
  background: var(--red);
  opacity: 0;
  transition: opacity .3s ease .1s;
}
.pillar:hover::before { transform: scaleX(1); }
.pillar:hover::after { opacity: 1; }
.pillar-icon {
  grid-column: 1; grid-row: 1;
  width: 26px; height: 26px; margin-bottom: 0;
  display: flex; align-items: center; justify-content: center;
}
.pillar-icon svg { width: 20px; height: 20px; stroke: var(--red); fill: none; stroke-width: 1.5; transition: transform .35s ease, filter .35s ease; }
.pillar:hover .pillar-icon svg { transform: scale(1.2); filter: drop-shadow(0 0 5px rgba(200,45,46,.7)); }
.pillar-title {
  grid-column: 2; grid-row: 1;
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic; font-weight: 700; font-size: 18px;
  letter-spacing: .06em; text-transform: uppercase;
  color: #fff; margin-bottom: 0;
}
.pillar-text {
  grid-column: 1 / -1; grid-row: 2;
  font-size: 12px; line-height: 1.4;
  color: rgba(226,225,224,.55);
  text-align: justify;
  margin-top: 4px;
}

#stages {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
}
#stages .section-header {
  padding: 40px 48px 0;
}
#stages .section-title { font-size: clamp(22px, 2.8vw, 36px); }
.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 14px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--red); margin-bottom: 8px;
}
.section-tag::before, .section-tag::after { content: ''; display: block; width: 20px; height: 1.5px; background: var(--red); }
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic; font-weight: 900;
  font-size: clamp(36px, 5vw, 58px); line-height: .95;
  color: #fff; letter-spacing: -.01em;
}
.section-title span { color: var(--red); }
.section-desc {
  max-width: 560px; margin: 16px auto 0;
  font-size: 15px; line-height: 1.7;
  color: rgba(226,225,224,.5);
  text-align: justify;
}

/* ─── STAGES ─────────────────────────────── */
.stages {
  padding: 8px 48px 12px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px;
  max-width: 1280px; margin: 0 auto; width: 100%;
  flex: 1;
  align-content: start;
}
.stage-card {
  background: var(--dark2);
  border: 1px solid #222;
  padding: 8px 14px;
  position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s;
  cursor: pointer;
}
.stage-card:hover { border-color: var(--red); transform: translateY(-4px); }
.stage-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--red), transparent);
  opacity: 0; transition: opacity .3s;
}
.stage-card:hover::after { opacity: 1; }
.stage-card.featured { border-color: var(--red); }
.stage-badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 9px; letter-spacing: .16em;
  text-transform: uppercase; padding: 2px 7px;
  background: var(--red); color: #fff; margin-bottom: 4px;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}
.stage-badge.blue { background: var(--blue); }
.stage-badge.grey { background: #333; color: rgba(255,255,255,.45); }
.stage-num {
  position: absolute; top: 10px; right: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic; font-weight: 900; font-size: 36px;
  color: rgba(255,255,255,.04); line-height: 1;
  user-select: none;
}
.stage-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic; font-weight: 700; font-size: 17px;
  color: #fff; margin-bottom: 3px; letter-spacing: .02em;
}
.stage-desc {
  font-size: 12px; line-height: 1.3;
  color: rgba(226,225,224,.5); margin-bottom: 0;
  text-align: justify;
}
.stage-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic; font-weight: 900; font-size: 24px;
  color: var(--red); line-height: 1;
  margin-top: 7px;
}
.stage-price span {
  font-size: 13px; font-weight: 400; font-style: normal;
  color: rgba(226,225,224,.4);
}
.stage-details {
  margin-top: 6px; border-top: 1px solid #2a2a2a; padding-top: 6px;
  display: flex; flex-direction: column; gap: 4px;
}
.stage-detail {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: rgba(226,225,224,.5);
}
.stage-detail::before {
  content: ''; display: block; width: 5px; height: 5px;
  background: var(--red); flex-shrink: 0;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}
/* ─── STAGE EXPANDABLE ───────────────────── */
.stage-expandable { display: contents; }

/* ─── LA VOITURE ─────────────────────────── */
.voiture-section {
  padding: 60px 48px 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.voiture {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  margin-top: 26px;
}
.voiture-visual {
  position: relative;
}
.voiture-img-wrap {
  position: relative;
  overflow: hidden;
}
.voiture-img-wrap::before {
  content: 'ALPINE A110 S';
  position: absolute; bottom: -12px; right: -8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic; font-weight: 900; font-size: 80px;
  color: rgba(255,255,255,.03); letter-spacing: .04em;
  white-space: nowrap; user-select: none; z-index: 0;
  line-height: 1;
}
.voiture-img {
  width: 100%; height: 320px; object-fit: cover; object-position: center 40%;
  position: relative; z-index: 1;
  display: block;
  transform: scale(1.08);
  transform-origin: center 40%;
}
.voiture-specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px;
}
.spec {
  background: var(--dark3); border: 1px solid #222;
  padding: 12px 14px;
}
.spec-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic; font-weight: 900; font-size: 28px;
  color: var(--red); line-height: 1;
}
.spec-label {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(226,225,224,.4); margin-top: 4px;
}
.voiture-content { padding: 20px 0; }
.voiture-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic; font-weight: 900; font-size: 48px;
  color: #fff; line-height: .95; margin-bottom: 24px;
}
.voiture-title span { color: var(--red); }
.voiture-text {
  font-size: 15px; line-height: 1.75;
  color: rgba(226,225,224,.55); margin-bottom: 32px;
  text-align: justify;
}
.voiture-points { display: flex; flex-direction: column; gap: 12px; }
.voiture-point {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 14px; color: rgba(226,225,224,.7);
}
.voiture-point-dot {
  width: 20px; height: 20px; border: 1.5px solid var(--red);
  flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
}
.voiture-point-dot::after { content: ''; width: 6px; height: 6px; background: var(--red); }

/* ─── CIRCUITS ───────────────────────────── */
.circuits-section { padding: 60px 48px 40px; max-width: 1280px; margin: 0 auto; }
.circuits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 24px; }
.circuit-card {
  background: var(--dark2); border: 1px solid #222;
  display: flex; flex-direction: column; overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.circuit-card:hover {
  border-color: rgba(200,45,46,.5);
  box-shadow: 0 0 0 1px rgba(200,45,46,.2);
}
.circuit-layout {
  background: #0c0c0c;
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid #1a1a1a;
  position: relative;
}
.circuit-svg { width: 100%; height: 80px; overflow: visible; }
.circuit-svg path {
  stroke: rgba(255,255,255,.28); stroke-width: 2.5;
  fill: rgba(255,255,255,.03); stroke-linecap: round; stroke-linejoin: round;
  transition: stroke .3s, fill .3s;
}
.circuit-card:hover .circuit-svg path {
  stroke: var(--red);
  fill: rgba(200,45,46,.06);
}
.circuit-info { padding: 12px 18px 10px; }

.circuit-toggle {
  display: flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer;
  color: rgba(226,225,224,.38); padding: 0; margin-top: 10px;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  transition: color .25s;
}
.circuit-toggle:hover,
.circuit-card.is-open .circuit-toggle { color: var(--red); }
.circuit-chevron { width: 14px; height: 14px; flex-shrink: 0; transition: transform .35s; }
.circuit-card.is-open .circuit-chevron { transform: rotate(180deg); }

.circuit-detail {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.circuit-card.is-open .circuit-detail { grid-template-rows: 1fr; }
.circuit-detail-inner { overflow: hidden; }
.circuit-desc {
  margin: 0; padding: 14px 18px 18px;
  font-size: 13px; line-height: 1.75; color: rgba(226,225,224,.58);
  font-style: italic; border-top: 1px solid #1e1e1e;
}
.circuit-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic; font-weight: 700; font-size: 18px; color: #fff;
  margin-bottom: 4px;
}
.circuit-location { display: flex; align-items: center; gap: 8px; }
.circuit-city {
  font-size: 11px; letter-spacing: .08em; color: rgba(226,225,224,.45);
  text-transform: uppercase;
}
.circuit-dept {
  font-size: 10px; font-weight: 700; letter-spacing: .05em;
  color: rgba(226,225,224,.35); border: 1px solid #2a2a2a;
  padding: 1px 5px; font-family: 'Barlow Condensed', sans-serif;
}
.circuit-len {
  position: absolute; bottom: 10px; right: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 20px; color: var(--red);
  line-height: 1;
}

/* ─── CIRCUIT STATS ──────────────────────── */
.circuit-stats {
  margin: 0 18px 14px;
  border-top: 1px solid #1e1e1e;
  padding-top: 12px;
}
.circuit-stat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px 20px;
}
.circuit-stat-row {
  display: flex; align-items: baseline; justify-content: space-between;
  font-size: 11px; gap: 4px;
  border-bottom: 1px solid #1e1e1e; padding-bottom: 3px;
}
.circuit-stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(226,225,224,.38); white-space: nowrap;
}
.circuit-stat-value { color: rgba(226,225,224,.8); font-weight: 500; }

/* ─── TESTIMONIALS ───────────────────────── */
.testi-section { background: var(--dark); padding: 60px 48px 40px; min-height: 100vh; scroll-snap-align: start; }

/* Carousel */
.testi-carousel {
  max-width: 1280px; margin: 24px auto 0;
  position: relative; overflow: hidden;
}
.testi-track {
  display: flex; gap: 20px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.testi-card {
  background: var(--dark2); border: 1px solid #222; padding: 32px 28px;
  position: relative;
  flex-shrink: 0; min-width: 0;
}
.testi-quote {
  position: absolute; top: 20px; right: 24px;
  font-size: 64px; line-height: 1; color: rgba(223,60,61,.12);
  font-family: Georgia, serif; user-select: none;
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.star { width: 12px; height: 12px; background: var(--red); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.testi-text {
  font-size: 14px; line-height: 1.7;
  color: rgba(226,225,224,.6); font-style: italic; margin-bottom: 20px;
  text-align: justify;
}
.testi-author {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 14px; color: #fff; letter-spacing: .05em;
}
.testi-role { font-size: 12px; color: rgba(226,225,224,.35); margin-top: 2px; }

/* Carousel nav */
.testi-nav {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-top: 32px;
}
.testi-arrow {
  width: 40px; height: 40px;
  background: var(--dark3); border: 1px solid #2a2a2a; color: rgba(226,225,224,.55);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s, color .2s, border-color .2s; flex-shrink: 0;
}
.testi-arrow svg { width: 18px; height: 18px; }
.testi-arrow:hover { background: var(--red); border-color: var(--red); color: #fff; }
.testi-arrow:disabled { opacity: .25; pointer-events: none; }
.testi-dots { display: flex; gap: 8px; align-items: center; }
.testi-dot {
  width: 6px; height: 6px; background: #333; cursor: pointer;
  transition: background .2s, transform .2s; border: none; padding: 0; flex-shrink: 0;
}
.testi-dot.is-active { background: var(--red); transform: scale(1.4); }

.cta-section {
  padding: 60px 48px 50px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(223,60,61,.08) 0%, transparent 70%);
}
.cta-section::after {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 60px; background: linear-gradient(to bottom, transparent, var(--red));
}
.cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic; font-weight: 900;
  font-size: clamp(44px, 6vw, 72px); line-height: .95;
  color: #fff; margin-bottom: 20px;
  position: relative; z-index: 1;
}
.cta-title span { color: var(--red); }
.cta-sub {
  font-size: 15px; color: rgba(226,225,224,.45); margin-bottom: 40px;
  position: relative; z-index: 1;
}
.cta-btns {
  display: flex; gap: 16px; justify-content: center; align-items: center;
  position: relative; z-index: 1;
}
.cta-contact {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 13px; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(226,225,224,.5);
  margin-top: 20px; position: relative; z-index: 1;
}
.cta-contact a { color: inherit; text-decoration: none; transition: color .2s; }
.cta-contact a:hover { color: var(--blue); }

/* ─── FOOTER ─────────────────────────────── */
footer {
  background: var(--dark);
  border-top: 1px solid #1e1e1e;
  padding: 20px 48px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic; font-weight: 900;
  font-size: 20px; color: #fff;
}
.footer-logo span { color: var(--red); }
.footer-slogan {
  font-size: 12px; color: rgba(226,225,224,.3); margin-top: 4px;
  letter-spacing: .08em;
}
.footer-contact { text-align: right; }
.footer-contact a {
  display: block; font-size: 13px; color: rgba(226,225,224,.4);
  text-decoration: none; margin-bottom: 4px; transition: color .2s;
}
.footer-contact a:hover { color: var(--blue); }
.footer-copy {
  font-size: 11px; color: rgba(226,225,224,.2); margin-top: 8px;
}
.footer-copy a { display: inline; font-size: 11px; color: rgba(226,225,224,.3); margin-bottom: 0; }
.footer-copy a:hover { color: var(--blue); }
.footer-insta {
  display: flex; align-items: center; gap: 6px;
}
.footer-ml {
  display: inline-block; margin-top: 10px;
  font-size: 12px; letter-spacing: .06em;
  color: rgba(226,225,224,.55); text-decoration: none;
  transition: color .2s;
}
.footer-ml:hover { color: var(--blue); }
.footer-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue);
  border: 1px solid var(--blue); padding: 6px 14px;
  opacity: .6;
  position: absolute; left: 50%; transform: translateX(-50%);
}

/* ─── COACH ──────────────────────────────── */
.coach-section {
  padding: 60px 48px 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.coach-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-top: 26px;
}
.coach-carousel {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  height: 460px;
}
.coach-carousel-track {
  display: flex;
  height: 100%;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.coach-carousel-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.coach-carousel-slide img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  transition: transform .5s ease;
}
.coach-carousel-slide:hover img { transform: scale(1.03); }
.coach-carousel-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 55%);
  z-index: 1; pointer-events: none;
}
.coach-carousel-slide::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--red), transparent);
  z-index: 2;
}
.coach-carousel-slide .coach-photo-caption { z-index: 3; }
.coach-carousel-slide .photo-zoom-icon { z-index: 3; }
.coach-carousel-slide .coach-article-badge { z-index: 3; }
.coach-carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.coach-carousel-btn:hover { background: var(--red); border-color: var(--red); }
.coach-carousel-btn:disabled { opacity: .25; cursor: default; pointer-events: none; }
.coach-carousel-prev { left: 12px; }
.coach-carousel-next { right: 12px; }
.coach-carousel-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 5;
}
.coach-carousel-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none; cursor: pointer; padding: 0;
  transition: background .2s, transform .2s;
}
.coach-carousel-dot.is-active { background: var(--red); transform: scale(1.35); }
.coach-photo-caption {
  position: absolute; bottom: 28px; left: 14px; right: 14px;
  z-index: 2;
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic; font-weight: 600; font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(226,225,224,.6);
}
.photo-zoom-icon {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  width: 32px; height: 32px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s;
  color: #fff;
}
.lightbox-trigger:hover .photo-zoom-icon { opacity: 1; }

/* ─── LIGHTBOX ───────────────────────────── */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 1000;
  align-items: center; justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.92);
  cursor: pointer;
  animation: lbFade .25s ease;
}
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox-content {
  position: relative; z-index: 1;
  max-width: 90vw; max-height: 90vh;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  animation: lbScale .25s ease;
}
@keyframes lbScale { from { transform: scale(.94); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox-img {
  max-width: 90vw; max-height: 82vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 24px 80px rgba(0,0,0,.8);
}
.lightbox-caption {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic; font-weight: 600; font-size: 13px;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(226,225,224,.45);
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px; z-index: 2;
  background: none; border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.7); font-size: 24px; line-height: 1;
  width: 40px; height: 40px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color .2s, border-color .2s;
}
.lightbox-close:hover { color: #fff; border-color: var(--red); }
.coach-article-badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; padding: 4px 10px;
  background: rgba(223,60,61,.85); color: #fff;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; padding: 4px 10px;
  background: rgba(223,60,61,.85); color: #fff;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}
.coach-content { padding-top: 8px; }
.coach-name-row {
  display: flex; align-items: flex-end; gap: 16px;
  margin-bottom: 6px;
}
.coach-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic; font-weight: 900; font-size: 52px;
  color: #fff; line-height: .92; margin-bottom: 6px;
}
.coach-name span { color: var(--red); }
.coach-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 13px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 28px;
}
.coach-bio {
  font-size: 15px; line-height: 1.75;
  color: rgba(226,225,224,.6); margin-bottom: 28px;
  text-align: justify;
}
.coach-bio strong { color: rgba(226,225,224,.85); font-weight: 500; }
.coach-milestones {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 32px;
}
.milestone {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px; align-items: start;
}
.milestone-year {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic; font-weight: 700; font-size: 15px;
  color: var(--red); padding-top: 2px;
}
.milestone-text {
  font-size: 13px; line-height: 1.6;
  color: rgba(226,225,224,.5);
  border-left: 1px solid #2a2a2a;
  padding-left: 16px;
  text-align: justify;
}
.milestone-text strong { color: rgba(226,225,224,.75); font-weight: 500; }
.coach-values {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding-top: 20px; border-top: 1px solid #1e1e1e;
}
.coach-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(226,225,224,.5);
  border: 1px solid #2e2e2e; padding: 5px 12px;
}
.insta-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase; text-decoration: none;
  color: rgba(226,225,224,.5);
  border: 1px solid #2e2e2e; padding: 10px 18px;
  transition: color .2s, border-color .2s;
  position: relative; z-index: 1;
}
.insta-link:hover { color: #fff; border-color: #E1306C; }
.insta-link:hover svg { stroke: #E1306C; }
.insta-link svg { transition: stroke .2s; flex-shrink: 0; }
.insta-link--cta {
  display: inline-flex;
  margin-top: 0;
  border: none; padding: 0;
  color: inherit;
  font-family: inherit; font-size: inherit; font-weight: inherit;
  letter-spacing: inherit; text-transform: inherit;
}
.insta-link--name {
  border-color: #2e2e2e;
  color: rgba(226,225,224,.4);
  padding: 7px 14px;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 12px;
}
.insta-link--name {
  border: none; padding: 0; margin-top: 0;
  color: rgba(226,225,224,.35);
  margin-bottom: 10px;
}
.insta-link--name:hover { border: none; }

/* ─── BURGER MENU ────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
  z-index: 110; flex-shrink: 0;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: rgba(226,225,224,.85);
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  nav { padding: 6px 24px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 13px; letter-spacing: .08em; white-space: nowrap; }
  .nav-cta { font-size: 14px; }
  .nav-cta-tel { font-size: 11px; }
  .pillars,
  .stages,
  .circuits-grid { grid-template-columns: repeat(2, 1fr); }
  /* testi-card width is set dynamically by JS */
  .voiture,
  .coach-layout { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { right: 32px; bottom: 32px; }
  .hero-content { padding: 0 40px 64px; }
}

@media (max-width: 720px) {
  nav { padding: 10px 20px; }
  .nav-burger { display: flex; }
  .nav-right { display: none; }
  .nav-mobile-only { display: flex; }
  .nav-logo-img { height: 46px; }
  .nav-links {
    position: fixed; inset: 0;
    background: #000;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 28px; list-style: none; padding: 0; margin: 0;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    z-index: 105;
    display: flex !important;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-size: 20px; color: rgba(226,225,224,.85); }
  .nav-links a:hover { color: #fff; }
  .pillars,
  .stages,
  .circuits-grid { grid-template-columns: 1fr; }
  /* testi-card width is set dynamically by JS */
  .voiture-section,
  .coach-section,
  .testi-section,
  .circuits-section { padding-left: 20px; padding-right: 20px; }
  .hero-content { padding: 0 20px 48px; }
  .hero-stats { display: none; }
  .hero-tag { display: none; }
  .voiture-specs { grid-template-columns: 1fr 1fr; }
  .coach-name { font-size: 40px; }
  footer {
    flex-direction: column; align-items: flex-start;
    padding: 20px; gap: 8px;
  }
  .footer-badge {
    position: static; transform: none;
    align-self: flex-start; margin: 2px 0;
  }
  .footer-contact { text-align: left; }
}
