/* ==========================================================================
   MAYOTTE SCOOT — Location de scooters Peugeot & SYM · Mamoudzou
   Signature : « la ligne médiane » — le marquage routier pointillé,
   souligné d'un trait rouge SYM, qui se dessine au fil du scroll.
   Thème clair « écume » hérité de lagon-location ; le hero, la bande CTA
   et le footer restent bitume — les ancres de l'identité noir & argent.
   ========================================================================== */

:root {
  --ecume: #f5f6f8;
  --ecume-2: #eceef1;
  --blanc: #ffffff;
  --encre: #17191d;
  --encre-2: #5c6170;
  --bitume: #0c0d0f;
  --carbone: #15171b;
  --argent: #c9ccd6;
  --gris-ligne: #9aa0ad;
  --bordure: #e2e4ea;
  --rouge: #d0021b;
  --rouge-clair: #ff3a50;

  --chrome-clair: linear-gradient(180deg, #fafbfd 0%, #7e818c 55%, #e3e6ee 100%);
  --chrome-sombre: linear-gradient(180deg, #565b66 0%, #16181c 55%, #7e828e 100%);

  --font-display: "Fraunces", serif;
  --font-body: "Instrument Sans", sans-serif;
  --font-mono: "Spline Sans Mono", monospace;

  --maxw: 1180px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--encre);
  background: var(--ecume);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, video, svg { display: block; max-width: 100%; }

a { color: inherit; }

::selection { background: var(--rouge); color: var(--blanc); }

:focus-visible {
  outline: 3px solid var(--rouge);
  outline-offset: 3px;
  border-radius: 4px;
}

.chrome {
  background: var(--chrome-sombre);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== Signature « la ligne médiane » ==================================== */

.lane {
  width: 180px;
  height: 12px;
  margin: 0.9rem 0 1.1rem;
  overflow: visible;
}
.lane__axe {
  stroke: var(--gris-ligne);
  stroke-width: 2.5;
  stroke-dasharray: 18 12;
  stroke-dashoffset: 210;
  opacity: 0.9;
}
.lane__bord {
  stroke: var(--rouge);
  stroke-width: 2.5;
  stroke-dasharray: 60 120;
  stroke-dashoffset: 60;
  opacity: 0.9;
}
.is-visible .lane .lane__axe { animation: lane-draw 1s ease forwards; }
.is-visible .lane .lane__bord { animation: lane-draw 0.8s ease 0.35s forwards; }
.lane--center { margin-left: auto; margin-right: auto; }

@keyframes lane-draw {
  to { stroke-dashoffset: 0; }
}

/* ===== Reveal au scroll ================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .lane__axe, .lane__bord { stroke-dashoffset: 0; animation: none !important; }
  .hero__video, .interlude video { display: none; }
}

/* ===== Nav =============================================================== */
/* Par défaut : texte blanc (posé sur le hero sombre de l'accueil).
   .nav--encre : texte encre dès le départ (pages intérieures claires). */

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: #fff;
  transition: background 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
}
.nav--encre { color: var(--encre); }
.nav.is-scrolled {
  background: rgba(245, 246, 248, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(23, 25, 29, 0.08);
  color: var(--encre);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.65rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__logo svg { width: 92px; height: 46px; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav__links > a:not(.nav__tel):not(.btn) {
  text-decoration: none;
  color: inherit;
  padding: 0.2rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}
.nav__links > a:not(.nav__tel):not(.btn):hover { opacity: 0.72; }
.nav__links > a[aria-current="page"] { border-bottom-color: var(--rouge); }
.nav__tel {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}
.nav__tel:hover { color: var(--rouge-clair); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
}
.nav__burger span {
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav__burger[aria-expanded="true"] span { background: var(--encre); }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Boutons =========================================================== */

.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn:hover { transform: translateY(-2px); }
.btn--reserver {
  background: var(--rouge);
  color: #fff;
}
.btn--reserver:hover { background: var(--rouge-clair); }
.btn--ghost {
  border-color: #b9bec9;
  color: var(--encre);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--encre); background: rgba(23, 25, 29, 0.05); }
.btn--clair {
  background: #fff;
  color: var(--encre);
}
.btn--clair:hover { background: var(--ecume); }

/* ===== Hero (reste bitume : l'ancre noir & argent de la marque) ========== */

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--bitume);
}
.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__media video,
.hero__media img.hero__fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(75% 90% at 18% 72%, rgba(12, 13, 15, 0.5), transparent 70%),
    linear-gradient(180deg, rgba(12, 13, 15, 0.58) 0%, rgba(12, 13, 15, 0.18) 40%, rgba(12, 13, 15, 0.8) 100%);
}
.hero__content {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 9rem var(--pad) 3.5rem;
  width: 100%;
  color: #fff;
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--argent);
  margin-bottom: 1rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
}
.hero__title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 130;
  font-size: clamp(2.5rem, 6.5vw, 4.6rem);
  font-weight: 560;
  line-height: 1.06;
  letter-spacing: -0.015em;
  max-width: 14ch;
  /* drop-shadow (et non text-shadow) : seul filtre visible sous le em clippé en dégradé chrome */
  filter: drop-shadow(0 3px 14px rgba(0, 0, 0, 0.55));
}
.hero__title em {
  font-style: italic;
  font-weight: 420;
  background: var(--chrome-clair);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lede {
  margin-top: 1.2rem;
  max-width: 46ch;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

/* Les deux gammes — panneaux verre fumé, ligne médiane en accent de marque */
.hero__gammes {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.gamme {
  flex: 0 1 250px;
  text-decoration: none;
  color: #fff;
  background: rgba(12, 13, 15, 0.52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 204, 214, 0.38);
  border-radius: 14px;
  padding: 0.9rem 1.15rem 1rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.gamme::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--argent) 0 14px, transparent 14px 24px);
  opacity: 0.75;
}
.gamme--sym::before {
  background: repeating-linear-gradient(90deg, var(--rouge-clair) 0 14px, transparent 14px 24px);
  opacity: 0.95;
}
.gamme:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(12, 13, 15, 0.7);
}
.gamme__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--argent);
}
.gamme--sym .gamme__label { color: var(--rouge-clair); }
.gamme__nom {
  display: block;
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 1.45rem;
  line-height: 1.15;
  margin-top: 0.1rem;
}
.gamme__nom::after {
  content: " →";
  font-size: 1rem;
  opacity: 0.7;
}
.gamme__meta {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 0.15rem;
}

/* Guichet de réservation — à cheval sur le hero, comme un comptoir d'agence */
.hero__booking {
  position: relative;
  z-index: 2;
  max-width: calc(var(--maxw) - 2 * var(--pad));
  margin: 0 auto -3.4rem;
  width: calc(100% - 2 * var(--pad));
  background: #fff;
  border: 1px solid var(--bordure);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(23, 25, 29, 0.22);
  padding: 1.2rem 1.4rem 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr auto;
  gap: 1rem;
  align-items: end;
}
.booking__field { display: flex; flex-direction: column; gap: 0.3rem; }
.booking__field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--encre-2);
}
.booking__field input,
.booking__field select {
  background: var(--ecume);
  border: 1px solid #d8dbe2;
  border-radius: 10px;
  color: var(--encre);
  padding: 0.65rem 0.8rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color-scheme: light;
}
.booking__cta { padding: 0.78rem 1.9rem; }
.booking__hint {
  grid-column: 1 / -1;
  font-size: 0.84rem;
  color: var(--encre-2);
}
.booking__hint a { color: var(--encre); }

/* ===== Bandeau réassurance ============================================== */

.strip {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 6.4rem var(--pad) 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.strip__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.strip__item svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: var(--rouge);
  margin-top: 0.2rem;
}
.strip__item strong {
  display: block;
  color: var(--encre);
  font-size: 0.98rem;
}
.strip__item span {
  font-size: 0.86rem;
  color: var(--encre-2);
}

/* ===== Sections ========================================================== */

.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 5rem var(--pad);
}
.section--full { max-width: none; padding-left: 0; padding-right: 0; }
.section__head { max-width: 640px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--encre-2);
}
.section__eyebrow--rouge { color: var(--rouge); }
.section__title {
  font-family: var(--font-display);
  /* opsz figé : sans lui, Fraunces s'épaissit aux petites tailles et les
     titres h2 ne ressemblent plus aux grands titres */
  font-variation-settings: "opsz" 130;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 560;
  line-height: 1.12;
  color: var(--encre);
  letter-spacing: -0.01em;
  margin-top: 0.4rem;
}
.section__title em {
  font-style: italic;
  font-weight: 420;
  background: var(--chrome-sombre);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section__lede { font-size: 1.04rem; max-width: 56ch; color: var(--encre-2); }
.section__note {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--encre-2);
}
/* Indication de balayage — n'existe que sur mobile, cf. media query */
.swipe-hint { display: none; }

/* ===== Cartes flotte ===================================================== */

.fleet {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.fleet__card {
  background: #fff;
  border: 1px solid var(--bordure);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.fleet__card:hover {
  transform: translateY(-5px);
  border-color: #cdd1da;
  box-shadow: 0 22px 44px rgba(23, 25, 29, 0.13);
}
.fleet__img {
  padding: 1.6rem 1.6rem 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  background: linear-gradient(170deg, var(--ecume-2) 0%, #fff 80%);
}
.fleet__img img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(23, 25, 29, 0.22));
  transition: transform 0.35s ease;
}
.fleet__card:hover .fleet__img img { transform: scale(1.045); }
.fleet__body {
  padding: 0.6rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.fleet__marque {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--encre-2);
}
.fleet__card--sym .fleet__marque { color: var(--rouge); }
.fleet__body h3 {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 1.35rem;
  color: var(--encre);
  margin: 0.15rem 0 0.2rem;
}
.fleet__tag {
  font-size: 0.92rem;
  color: var(--encre-2);
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 420;
}
.fleet__specs {
  list-style: none;
  margin: 0.9rem 0 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.fleet__specs li {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  padding: 0.28rem 0.65rem;
  border: 1px solid #d8dbe2;
  border-radius: 999px;
  color: var(--encre-2);
  white-space: nowrap;
}
.fleet__foot {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.8rem;
}
.fleet__price {
  font-size: 0.85rem;
  color: var(--encre-2);
  line-height: 1.3;
}
.fleet__price b {
  display: block;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.5rem;
  background: var(--chrome-sombre);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fleet__price i {
  display: block;
  font-style: normal;
  font-size: 0.7rem;
  color: var(--encre-2);
}
.fleet__foot .btn { padding: 0.55rem 1.15rem; font-size: 0.88rem; }

/* Section SYM : voile rouge très léger */
.section--sym {
  border-top: 1px solid rgba(208, 2, 27, 0.25);
  background:
    radial-gradient(60% 40% at 50% 0%, rgba(208, 2, 27, 0.05), transparent 70%),
    var(--ecume-2);
}

/* ===== Interlude vidéo =================================================== */

.interlude {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.interlude video, .interlude > img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--bordure);
  box-shadow: 0 18px 40px rgba(23, 25, 29, 0.12);
}
.interlude figcaption {
  position: absolute;
  left: calc(var(--pad) + 1.4rem);
  bottom: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* ===== Duo image + texte (à propos, conditions résumé) =================== */

.duo {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 5rem var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.duo--flip .duo__img { order: 2; }
.duo__img img {
  border-radius: var(--radius);
  border: 1px solid var(--bordure);
  box-shadow: 0 18px 40px rgba(23, 25, 29, 0.12);
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3.4;
}

/* Parallax : le cadre porte la bordure, l'image surdimensionnée coulisse dedans */
.duo__img[data-parallax] {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--bordure);
  box-shadow: 0 18px 40px rgba(23, 25, 29, 0.12);
  aspect-ratio: 4 / 3.4;
}
.duo__img[data-parallax] img {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  aspect-ratio: auto;
  transform: scale(1.18);
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .duo__img[data-parallax] img { transform: none !important; }
}
.duo__body > p { margin-top: 0.9rem; color: var(--encre-2); }
.duo__body > p b { color: var(--encre); }
.duo__body .btn { margin-top: 1.6rem; }
.duo__points {
  list-style: none;
  margin-top: 1.2rem;
  display: grid;
  gap: 0.75rem;
  color: var(--encre-2);
}
.duo__points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: baseline;
}
.duo__points li::before {
  content: "";
  width: 18px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gris-ligne) 0 6px, transparent 6px 10px);
  align-self: center;
}
.duo__points b { color: var(--encre); font-weight: 600; }

/* ===== Carrousel bons plans ============================================== */

.carousel { position: relative; }
.carousel__track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.4rem 0.2rem 0.8rem;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.deal {
  flex: 0 0 min(78vw, 330px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid var(--bordure);
  background: #fff;
  padding: 1.6rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.deal:hover {
  transform: translateY(-5px);
  border-color: #cdd1da;
  box-shadow: 0 18px 36px rgba(23, 25, 29, 0.12);
}
.deal__tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rouge);
}
.deal h3 {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 1.35rem;
  color: var(--encre);
  margin: 0.5rem 0 0.4rem;
}
.deal p { font-size: 0.94rem; color: var(--encre-2); }
.deal__go {
  display: inline-block;
  margin-top: auto;
  padding-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--encre);
  transition: color 0.2s ease, transform 0.2s ease;
}
.deal:hover .deal__go { color: var(--rouge); transform: translateX(4px); }

/* Carte parrainage : l'ancre bitume de la marque au milieu de l'écume */
.deal--nuit {
  background: var(--carbone);
  border-color: var(--carbone);
}
.deal--nuit .deal__tag { color: var(--rouge-clair); }
.deal--nuit h3 { color: #fff; }
.deal--nuit p { color: rgba(201, 204, 214, 0.85); }
.deal--nuit .deal__go { color: var(--argent); }
.deal--nuit:hover { border-color: var(--rouge); box-shadow: 0 18px 36px rgba(12, 13, 15, 0.35); }
.deal--nuit:hover .deal__go { color: var(--rouge-clair); }

.carousel__nav {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  margin-top: 0.6rem;
}
.carousel__btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1.5px solid #b9bec9;
  background: #fff;
  color: var(--encre);
  font-size: 1.05rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.carousel__btn:hover {
  border-color: var(--rouge);
  background: var(--rouge);
  color: #fff;
}

/* ===== Parrainage ======================================================== */
/* Panneau carbone — même ancre sombre que le hero et le footer */

.parrain {
  background: var(--carbone);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 3.2rem);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.6rem, 4vw, 3.5rem);
  color: var(--argent);
  box-shadow: 0 24px 60px rgba(12, 13, 15, 0.28);
}
.parrain .section__eyebrow { color: var(--rouge-clair); }
.parrain .section__title { color: #fff; }
.parrain .section__title em {
  background: var(--chrome-clair);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.parrain__steps {
  list-style: none;
  counter-reset: etape;
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
}
.parrain__steps li {
  counter-increment: etape;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  color: rgba(201, 204, 214, 0.82);
  font-size: 0.95rem;
}
.parrain__steps li::before {
  content: counter(etape);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(201, 204, 214, 0.4);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  margin-top: 0.1rem;
}
.parrain__steps b { color: #fff; font-weight: 600; }

.parrain__widget {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(201, 204, 214, 0.18);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-self: start;
}
.parrain__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201, 204, 214, 0.7);
}
.parrain__label + .parrain__label,
.parrain__input + .parrain__label { margin-top: 1rem; }
.parrain__input {
  background: rgba(12, 13, 15, 0.6);
  border: 1px solid rgba(201, 204, 214, 0.3);
  border-radius: 10px;
  color: #fff;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color-scheme: dark;
}
.parrain__input:focus { border-color: var(--argent); outline: none; }
.parrain__code {
  display: flex;
  align-items: stretch;
  gap: 0.6rem;
}
.parrain__code output {
  flex: 1;
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.55rem 0.9rem;
  border: 1.5px dashed rgba(201, 204, 214, 0.45);
  border-radius: 10px;
  background: rgba(12, 13, 15, 0.6);
  background-image: var(--chrome-clair);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}
.parrain__code.is-ready output { border-color: var(--rouge); border-style: solid; }
.parrain__copy {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0 1.1rem;
  border-radius: 10px;
  border: 1.5px solid rgba(201, 204, 214, 0.4);
  background: transparent;
  color: var(--argent);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.parrain__copy:not(:disabled):hover { border-color: #fff; color: #fff; }
.parrain__copy:disabled { opacity: 0.4; cursor: not-allowed; }
.parrain__share {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.btn--wa {
  background: #25d366;
  color: #0b2b16;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  justify-content: center;
}
.btn--wa svg { width: 19px; height: 19px; }
.btn--wa:hover { background: #30e273; }
.btn--sms {
  border-color: rgba(201, 204, 214, 0.45);
  color: var(--argent);
  background: transparent;
}
.btn--sms:hover { border-color: #fff; color: #fff; }
.btn--wa[aria-disabled="true"], .btn--sms[aria-disabled="true"] {
  opacity: 0.4;
  pointer-events: none;
}
.parrain__note {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: rgba(201, 204, 214, 0.6);
}

/* ===== FAQ =============================================================== */

.faq {
  margin-top: 2.4rem;
  max-width: 780px;
}
.faq details {
  border-bottom: 1px solid var(--bordure);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 2.2rem 1.15rem 0;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--encre);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: var(--rouge);
  transition: transform 0.25s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 0 1.3rem; max-width: 64ch; color: var(--encre-2); }
.faq details p strong { color: var(--encre); }

/* ===== Avis ============================================================== */

.avis {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.avis__card {
  background: #fff;
  border: 1px solid var(--bordure);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.avis__stars {
  color: var(--rouge);
  letter-spacing: 0.2em;
  font-size: 0.95rem;
}
.avis__card blockquote {
  font-family: var(--font-display);
  font-weight: 420;
  font-style: italic;
  font-size: 1.04rem;
  line-height: 1.5;
  color: var(--encre);
}
.avis__who { font-size: 0.85rem; color: var(--encre-2); }
.avis__who b {
  display: block;
  color: var(--encre);
  font-weight: 600;
}

/* ===== Bande CTA nuit (reste bitume) ===================================== */

.cta-band {
  position: relative;
  margin: 5rem 0 0;
  overflow: hidden;
  background: var(--bitume);
}
.cta-band__bg {
  position: absolute;
  inset: 0;
}
.cta-band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-band__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 13, 15, 0.92) 20%, rgba(12, 13, 15, 0.45) 100%);
}
.cta-band__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 6rem var(--pad);
  color: rgba(255, 255, 255, 0.85);
}
.cta-band__inner .section__eyebrow { color: var(--argent); }
.cta-band__inner h2 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 130;
  font-weight: 560;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  color: #fff;
  max-width: 18ch;
  line-height: 1.15;
}
.cta-band__inner p { margin-top: 0.9rem; max-width: 44ch; }
.cta-band__btns {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* ===== Contact =========================================================== */

.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}
.contact address { font-style: normal; margin-top: 1.2rem; color: var(--encre-2); }
.contact address strong { color: var(--encre); }
.contact__list {
  list-style: none;
  margin-top: 1.3rem;
  display: grid;
  gap: 0.55rem;
}
.contact__list li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 0.8rem;
  font-size: 0.95rem;
}
.contact__list span {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--encre-2);
  align-self: center;
}
.contact__list a { color: var(--encre); text-decoration-color: var(--argent); }
.contact__list a:hover { color: var(--rouge); }
.contact__hours { margin-top: 1.3rem; font-size: 0.92rem; color: var(--encre-2); }
.contact__hours b { color: var(--encre); }
.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--bordure);
  box-shadow: 0 18px 40px rgba(23, 25, 29, 0.1);
  position: relative;
}
.contact__map iframe {
  width: 100%;
  height: 420px;
  border: 0;
}
.contact__map-link {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  background: var(--encre);
  color: #fff;
  font-size: 0.82rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
}
.contact__map-link:hover { background: var(--rouge); }

/* ===== Formulaire ======================================================== */

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-top: 2rem;
}
.form__field { display: flex; flex-direction: column; gap: 0.35rem; }
.form__field--full { grid-column: 1 / -1; }
.form__field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--encre-2);
}
.form__field input,
.form__field select,
.form__field textarea {
  background: #fff;
  border: 1px solid #d8dbe2;
  border-radius: 10px;
  color: var(--encre);
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color-scheme: light;
}
.form__field textarea { min-height: 130px; resize: vertical; }
.form__actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}
.form__note { font-size: 0.84rem; color: var(--encre-2); }

/* ===== Tableau tarifs (conditions / gammes) ============================== */

.tarifs {
  margin-top: 2.4rem;
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: #fff;
  border: 1px solid var(--bordure);
  border-radius: var(--radius);
  overflow: hidden;
}
.tarifs th, .tarifs td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--bordure);
}
.tarifs tr:last-child td { border-bottom: 0; }
.tarifs th {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--encre-2);
  font-weight: 500;
  background: var(--ecume);
}
.tarifs td { color: var(--encre-2); }
.tarifs td:first-child { color: var(--encre); font-weight: 600; }
.tarifs td .mono, .mono {
  font-family: var(--font-mono);
}

/* ===== Page header (pages intérieures) =================================== */

.page-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 9.5rem var(--pad) 1rem;
}
.page-head .section__lede a { color: var(--encre) !important; }

/* ===== Footer (reste carbone : l'écrin du logo) ========================== */

.footer {
  margin-top: 5rem;
  background: var(--carbone);
  color: var(--argent);
}
.footer__lane {
  width: 100%;
  height: 12px;
  margin-top: -7px;
}
.footer__lane line {
  stroke: var(--gris-ligne);
  stroke-width: 2;
  stroke-dasharray: 20 14;
  opacity: 0.55;
}
.footer__lane line:last-child {
  stroke: var(--rouge);
  stroke-dasharray: 60 340;
  opacity: 0.9;
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 3rem var(--pad) 2.2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: start;
}
.footer__brand svg { width: 120px; height: 60px; }
.footer__brand p {
  margin-top: 0.8rem;
  font-size: 0.88rem;
  color: rgba(201, 204, 214, 0.72);
  max-width: 30ch;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.6rem;
  justify-content: flex-end;
  font-size: 0.92rem;
  padding-top: 0.6rem;
}
.footer__nav a {
  text-decoration: none;
  color: var(--argent);
}
.footer__nav a:hover { color: #fff; }
.footer__legal {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: rgba(201, 204, 214, 0.6);
  border-top: 1px solid rgba(201, 204, 214, 0.16);
  padding-top: 1.4rem;
}

/* ===== Responsive ======================================================== */

@media (max-width: 960px) {
  .strip { grid-template-columns: repeat(2, 1fr); padding-top: 6.8rem; }
  .avis, .parrain { grid-template-columns: 1fr; }
  .duo, .contact { grid-template-columns: 1fr; }
  .duo--flip .duo__img { order: 0; }
  .hero__booking { grid-template-columns: 1fr 1fr; }
  .booking__cta { grid-column: 1 / -1; }
  .interlude video, .interlude > img { aspect-ratio: 16 / 9; }
}

@media (max-width: 720px) {
  .nav__links {
    position: fixed;
    /* 100vw/100vh explicites : le backdrop-filter de .nav.is-scrolled fait de la
       barre le bloc conteneur du menu — inset:0 le réduirait à sa hauteur */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(245, 246, 248, 0.97);
    color: var(--encre);
    flex-direction: column;
    justify-content: center;
    gap: 1.8rem;
    font-size: 1.2rem;
    transform: translateY(-105%);
    visibility: hidden;
    transition: transform 0.35s ease, visibility 0s 0.35s;
  }
  .nav__links.is-open {
    transform: none;
    visibility: visible;
    transition: transform 0.35s ease;
  }
  .nav__burger { display: flex; position: relative; z-index: 60; }
  .strip { grid-template-columns: 1fr; gap: 1.1rem; }
  .hero__booking { grid-template-columns: 1fr; margin-bottom: -6rem; }
  .strip { padding-top: 9.5rem; }
  /* Hero mobile : voile plus dense, eyebrow compacte, gammes côte à côte */
  .hero__veil {
    background:
      linear-gradient(180deg, rgba(12, 13, 15, 0.68) 0%, rgba(12, 13, 15, 0.42) 42%, rgba(12, 13, 15, 0.88) 100%);
  }
  .hero__content { padding-top: 7.5rem; }
  .hero__eyebrow { font-size: 0.68rem; letter-spacing: 0.11em; }
  .hero__lede { font-size: 1rem; }
  .hero__gammes { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
  .gamme { flex: none; padding: 0.75rem 0.9rem 0.85rem; }
  .gamme__nom { font-size: 1.2rem; }
  .gamme__meta { font-size: 0.72rem; }
  .deal { flex-basis: 82vw; }

  /* Rythme vertical resserré : les 5 rem de respiration desktop
     deviennent des tunnels vides sur un écran de 390 px */
  .section { padding-top: 3.4rem; padding-bottom: 3.4rem; }
  .duo { padding-top: 3.4rem; padding-bottom: 3.4rem; }
  .page-head { padding-top: 7.5rem; }
  .cta-band { margin-top: 3.4rem; }
  .cta-band__inner { padding-top: 4rem; padding-bottom: 4rem; }
  .footer { margin-top: 3rem; }

  /* Accueil : les gammes deviennent des carrousels — 10 cartes empilées
     faisaient une page interminable */
  #peugeot .fleet,
  #sym .fleet {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0.4rem 0.2rem 0.8rem;
    scrollbar-width: none;
  }
  #peugeot .fleet::-webkit-scrollbar,
  #sym .fleet::-webkit-scrollbar { display: none; }
  #peugeot .fleet__card,
  #sym .fleet__card {
    flex: 0 0 80vw;
    scroll-snap-align: start;
  }
  .swipe-hint {
    display: block;
    margin-top: 1.4rem;
    font-family: var(--font-mono);
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--encre-2);
  }

  /* Cartes flotte compactes (accueil et pages gammes) */
  .fleet { margin-top: 1.6rem; }
  .fleet__img { min-height: 150px; padding: 1.1rem 1.1rem 0.3rem; }
  .fleet__img img { height: 148px; }
  .fleet__body { padding: 0.5rem 1.2rem 1.2rem; }

  /* Tableau tarifs : prix sur une ligne, la catégorie se replie */
  .tarifs { display: block; overflow-x: auto; }
  .tarifs th, .tarifs td { white-space: nowrap; }
  .tarifs th:first-child, .tarifs td:first-child {
    white-space: normal;
    min-width: 128px;
  }
  .form { grid-template-columns: 1fr; }
  .contact__list li { grid-template-columns: 1fr; gap: 0.1rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 1.6rem; }
  .footer__nav { justify-content: flex-start; }
  .tarifs { font-size: 0.85rem; }
  .tarifs th, .tarifs td { padding: 0.7rem 0.5rem; }
}
