/* ══════════════════════════════════════════════
   NOCTAMBUS — HOME.CSS
   Page d'accueil — palette officielle
══════════════════════════════════════════════ */

/* ════════════════════════════════════
   HERO — NOUVELLE STRUCTURE
   1. Section wrapper (fond page bleu)
   2. Bloc image avec border-radius spécial
   3. Texte présentation
   4. Widget recherche
════════════════════════════════════ */
.hero {
  background: var(--clr-bg);
  padding-top: 90px;
  /* navbar flottante: 12+60+18 */
  padding-bottom: var(--sp-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  overflow: hidden;
}

/* ── BLOC IMAGE ── */
.hero-img-block {
  position: relative;
  width: calc(100% - 48px);
  max-width: 1650px;
  height: clamp(400px, 100vh, 900px);
  overflow: hidden;
  border-radius: 40px 40px 260px 40px;
  /* GSAP animates opacity/transform */
}

.hero-img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay bleu 20% */
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 0, 105, 0.20);
  border-radius: inherit;
}

/* Logo centré sur l'image */
.hero-img-logo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-img-logo img {
  height: clamp(60px, 10vh, 100px);
  width: auto;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.35));
  object-fit: contain;
  padding: 0.6rem;
}

.hero-logo-fallback {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--clr-blanc);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.hero-logo-fallback .orange {
  color: var(--clr-orange);
}

/* ── TEXTE DE PRÉSENTATION ── */
.hero-intro {
  width: calc(100% - 48px);
  max-width: 1650px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  /* GSAP animates opacity/transform */
}

.space {
  padding: var(--sp-xl) 0;
  max-width: 900px;
  width: 100%;
  text-align: left;
}

.hero-intro-text {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 1.8vw, 2rem);
  text-transform: uppercase;
  color: var(--clr-blanc);
  line-height: 1.5;
  margin-bottom: 50px;
}



/* Le mot "week-end" en Estrella — pas uppercase */
.estrella-word {
  font-family: var(--font-display);
  font-style: normal;
  text-transform: none;
  font-size: 3em;
  letter-spacing: 0;
  color: var(--clr-orange);
  line-height: 1;
  vertical-align: baseline;
}

.hero-intro-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--clr-b4);
  line-height: 1.7;
  max-width: 900px;
  font-weight: 400;
}

/* ── WIDGET ITINÉRAIRE (styles dans widget.css) ── */
/* Animation d'entrée gérée par home.js via GSAP */
.hero-widget {
  /* GSAP animates opacity/transform */
}


/* ════════════════════════════════════
   VIDEO SECTION
════════════════════════════════════ */
.video-section {
  background: #000;
  padding: var(--sp-lg) var(--sp-md);
}

.video-wrap {
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

/* Conteneur principal — coin inférieur droit accentué */
.video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--r-xl) var(--r-xl) 80px var(--r-xl);
  background: linear-gradient(135deg, #130050 0%, #000 100%);
  aspect-ratio: 16 / 9;
}

/* ── Thumbnail ── */
.video-thumb {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.55s ease;
}

.video-thumb.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  transition: background var(--t-mid);
}

.video-thumb:hover .video-overlay {
  background: rgba(0, 0, 0, 0.15);
}

/* ── Bouton Play ── */
.play-btn {
  position: relative;
  z-index: 3;
  width: 80px;
  height: 80px;
  border-radius: var(--r-full);
  background: var(--clr-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  animation: playPulse 2.5s ease-in-out infinite;
}

.play-btn:hover {
  transform: scale(1.1);
  animation: none;
  box-shadow: 0 8px 30px rgba(253, 83, 18, 0.5);
}

.play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-svg {
  width: 28px;
  height: 28px;
  margin-left: 3px;
  filter: brightness(0) invert(1);
}

@keyframes playPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(253, 83, 18, 0.45);
  }

  70% {
    box-shadow: 0 0 0 22px rgba(253, 83, 18, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(253, 83, 18, 0);
  }
}

/* ── Élément <video> ── */
.noctambus-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.noctambus-video.playing {
  opacity: 1;
}

/* ── Contrôles (pause + mute) ── */
.video-controls {
  position: absolute;
  bottom: 20px;
  right: 24px;
  z-index: 4;
  display: flex;
  gap: 10px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.video-container:hover .video-controls,
.video-controls.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.ctrl-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ctrl-btn:hover {
  background: rgba(253, 83, 18, 0.7);
  transform: scale(1.1);
}

.ctrl-btn svg {
  width: 15px;
  height: 15px;
}

/* ── Mobile ── */
@media (max-width: 767px) {
  .video-container {
    border-radius: var(--r-xl) var(--r-xl) 48px var(--r-xl);
    aspect-ratio: 9 / 16;
  }

  .play-btn {
    width: 64px;
    height: 64px;
  }

  .play-svg {
    width: 24px;
    height: 24px;
  }

  .video-controls {
    bottom: 14px;
    right: 14px;
  }

  .hero-img-block {
    border-radius: 30px 30px 150px 30px;
  }
}

/* ════════════════════════════════════
   LIGNES SECTION (fond clair)
════════════════════════════════════ */
/* ════════════════════════════════════
   LIGNES SECTION — 3 rangées défilantes
════════════════════════════════════ */
.lignes-section {
  background: var(--clr-cream);
  padding: var(--sp-lg) 0 var(--sp-md);
  position: relative;
  overflow: hidden;
}

/* Titre aligné à droite */
.lignes-header {
  max-width: 1650px;
  margin: 0 auto var(--sp-md);
  padding: 0 var(--sp-md);
  text-align: left;
}

.lignes-title {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.82rem, 1.4vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1a1a1a;
  line-height: 1.5;
}

.lignes-title strong {
  font-weight: 700;
  color: #1a1a1a;
}

/* Zone de défilement — masque les débordements */
.lignes-scroll-wrap {
  display: flex;
  flex-direction: column;
  gap: 0px;
  overflow: hidden;
  margin-bottom: var(--sp-md);
  /* Masque doux sur les bords gauche/droit */
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      black 6%,
      black 94%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      black 6%,
      black 94%,
      transparent 100%);
}

/* Chaque rangée */
.lignes-row {
  width: 100%;
  overflow: hidden;
}

/* Track défilant — contient les badges × 2 (loop) */
.lignes-track {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
  margin-bottom: 100px;
}

/* Badges PNG */
.lignes-track .ligne-pill {
  height: 150px;
  border-radius: 29px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  transition: filter 0.18s, transform 0.18s;
  display: block;
  user-select: none;
}

.lignes-track .ligne-pill img {
  height: 100%;
  width: auto;
  display: block;
  pointer-events: none;
}

.lignes-track .ligne-pill:hover {
  filter: brightness(1.15) saturate(1.2);
  transform: scale(1.08) translateY(-3px);
}

/* Animations — vitesses différentes, sens identique */
@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.lignes-track--fast {
  animation: scrollRight 35s linear infinite;
}

.lignes-track--mid {
  animation: scrollRight 28s linear infinite;
}

.lignes-track--slow {
  animation: scrollRight 36s linear infinite;
}

/* Pause au hover sur toute la section */
.lignes-section:hover .lignes-track {
  animation-play-state: running;
  /* continue — comportement véhicules */
}

/* CTA */
.lignes-cta {
  max-width: 1650px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

/* Map preview */
.map-preview {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

.map-preview-inner {
  background: var(--clr-bg);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 2px solid rgba(175, 175, 230, 0.12);
}

.map-label {
  padding: 16px 24px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-b4);
  border-bottom: 1px solid rgba(175, 175, 230, 0.08);
}

.map-label strong {
  color: var(--clr-orange);
}

.map-img-wrap {
  width: 100%;
  height: 340px;
  overflow: hidden;
  position: relative;
  background: var(--clr-bg);
}

.map-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

/* Placeholder si pas d'image */
.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(175, 175, 230, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(175, 175, 230, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  width: 65%;
  height: 3px;
  background: linear-gradient(90deg, #FD5312, #6262CF, #3636AA);
  top: 40%;
  left: 17%;
  border-radius: 2px;
}

.map-placeholder::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 55%;
  background: linear-gradient(180deg, #AFAFE6, #FD5312);
  left: 47%;
  top: 22%;
  border-radius: 2px;
}

.map-text {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(175, 175, 230, 0.3);
  font-size: 0.88rem;
}

.map-footer {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(175, 175, 230, 0.08);
}

.map-footer span {
  font-size: 0.82rem;
  color: var(--clr-b4);
  font-family: var(--font-body);
}

.map-btn {
  background: var(--clr-orange);
  color: var(--clr-blanc);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 20px;
  border-radius: var(--r-full);
  transition: all var(--t-fast);
}

.map-btn:hover {
  background: var(--clr-orange-dark);
  transform: translateY(-2px);
}

/* ════════════════════════════════════
   ACTIVITÉS SECTION
════════════════════════════════════ */
.activites-section {
  padding: var(--sp-lg) 0;
  background: var(--clr-bg);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: var(--sp-md);
}

/* Event card */
/* ════════════════════════════════════
   EVENT CARDS — Capsules activités
   Blanc, 3 colonnes, image haut + info bas
════════════════════════════════════ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: var(--sp-md);
}

.event-card {
  background: var(--clr-cream);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(27, 0, 105, 0.08);
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(27, 0, 105, 0.18);
}

/* Icône catégorie — cercle blanc haut-gauche sur image */
.event-cat-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(238, 232, 226, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border: #130050 1px solid;
}

.event-cat-picto {
  width: 22px;
  height: 22px;
  display: block;
  filter: invert(40%) sepia(90%) saturate(600%) hue-rotate(355deg) brightness(1);
}

/* Image */
.event-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  background: var(--clr-b2);
  flex-shrink: 0;
}

.event-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.event-card:hover .event-img-wrap img {
  transform: scale(1.05);
}

/* Zone info */
.event-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  background: var(--clr-cream);
}

/* Badge statut — haut droite */
.event-status-row {
  display: flex;
  justify-content: flex-end;
  min-height: 16px;
}

.event-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.event-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-encours {
  color: var(--clr-orange);
}

.status-encours .event-status-dot {
  background: var(--clr-orange);
  animation: pulse-orange 1.8s ease-out infinite;
}

@keyframes pulse-orange {
  0% {
    box-shadow: 0 0 0 0 rgba(253, 83, 18, 0.55);
  }

  70% {
    box-shadow: 0 0 0 7px rgba(253, 83, 18, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(253, 83, 18, 0);
  }
}

.status-soir {
  color: var(--clr-b3);
}

.status-soir .event-status-dot {
  background: var(--clr-b3);
}

.status-weekend {
  color: rgba(27, 0, 105, 0.5);
}

.status-weekend .event-status-dot {
  background: rgba(27, 0, 105, 0.35);
}

/* Titre */
.event-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #1a1a1a;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Meta : picto + texte */
.event-meta {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.76rem;
  color: rgba(27, 0, 105, 0.6);
  line-height: 1.4;
}

.event-meta-picto {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  filter: invert(40%) sepia(90%) saturate(600%) hue-rotate(355deg) brightness(1);
}

/* Boutons — même ligne en bas */
.event-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 4px;
}

.btn-plan {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--clr-orange);
  color: var(--clr-blanc) !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 9px 16px;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--t-fast);
  white-space: nowrap;
}

.btn-plan:hover {
  background: var(--clr-orange-dark);
}

.btn-ext {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1a1a1a;
  border: 1.5px solid rgba(27, 0, 105, 0.3);
  border-radius: var(--r-full);
  padding: 8px 14px;
  background: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t-fast);
  white-space: nowrap;
}

.btn-ext:hover {
  border-color: var(--clr-orange);
  color: var(--clr-orange);
}

/* Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: var(--sp-md);
}

.events-cta {
  text-align: center;
  margin-top: var(--sp-sm);
}

@media (max-width: 960px) {
  .events-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

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


/* ════════════════════════════════════
   NOC-BANNER — Bannières déclinables
   Image bg + overlay bleu 10% + texte
════════════════════════════════════ */
.noc-banner {
  padding: 0 0 var(--sp-md);
  display: flex;
  justify-content: center;
}

.noc-banner-inner {
  position: relative;
  width: calc(100% - 48px);
  max-width: 1650px;
  border-radius: 20px 20px 150px 20px;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: center;
  height: 350px;
}

/* Image de fond */
.noc-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay bleu 10% */
.noc-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 0, 105, 0.222);
}

/* Contenu */
.noc-banner-content {
  position: relative;
  z-index: 2;
  padding: 44px 56px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 700px;
}

.noc-banner-cat {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--clr-orange);
}

.noc-banner-title {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--clr-blanc);
  line-height: 1.25;
}

.noc-banner-title strong {
  font-weight: 700;
}

.noc-banner-desc {
  font-size: 0.86rem;
  color: rgba(238, 232, 226, 0.75);
  line-height: 1.65;
  max-width: 360px;
}

.noc-banner-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* Boutons stores App Store / Google Play */
.noc-store-btns {
  display: flex;
  gap: 10px;
}

.noc-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: #fff;
  border-radius: 10px;
  padding: 9px 16px;
  text-decoration: none;
  transition: background var(--t-fast);
  white-space: nowrap;
}

.noc-store-btn:hover {
  background: #222;
}

.noc-store-btn i {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.noc-store-btn span {
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
}

.noc-store-btn span small {
  font-size: 0.6rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.8;
}

@media (max-width: 700px) {
  .noc-banner-content {
    padding: 32px 28px;
  }

  .noc-banner-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .noc-store-btns {
    flex-direction: column;
  }

  .noc-banner-inner {
    border-radius: 16px 16px 80px 16px;
    min-height: 280px;
    height: auto;
  }

  .noc-banner-overlay {
    background: rgba(26, 0, 105, 0.527);
  }
}

/* ── Picto SVG dans les cards événements ── */
.event-cat-picto {
  width: 22px;
  height: 22px;
  display: block;
  filter: invert(40%) sepia(90%) saturate(600%) hue-rotate(355deg) brightness(1);
}


.suggestion-section {
  /* Pleine largeur — fond crème du site, l'image PNG est transparente */
  width: 100%;
  background: var(--clr-cream);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-lg) 0;
  margin-bottom: 6rem;
  height: 720px;
}

/* Image PNG pleine largeur (fond transparent = fond crème du site) */
.suggestion-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Bloc texte centré — fond bleu-lavande, coins spéciaux */
.suggestion-inner {
  position: relative;
  z-index: 2;
  background: #AFAFE6;
  border-radius: 30px 30px 110px 30px;
  /* top-left top-right bottom-right bottom-left */
  padding: 48px 52px;
  max-width: 520px;
  width: calc(100% - 96px);
  text-align: left;
}

.suggestion-inner h2 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0a0a1a;
  line-height: 1.25;
  margin-bottom: var(--sp-sm);
}

.suggestion-inner h2 strong {
  font-weight: 700;
  display: block;
}

.suggestion-inner p {
  color: rgba(10, 10, 26, 0.7);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: var(--sp-md);
}

/* ════ MAP PREVIEW — section plan réseau accueil ════ */
.map-preview-section {
  padding: var(--sp-md) 0 var(--sp-lg);
  display: flex;
  justify-content: center;
  background: var(--clr-cream);
  /* même fond que lignes-section */
}

.map-preview-section .map-preview-inner {
  width: calc(100% - 48px);
  max-width: 1650px;
  background: var(--clr-bg2);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.map-preview-section .map-img-wrap {
  width: 100%;
  position: relative;
  background: var(--clr-b2);
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.map-preview-section .map-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.map-preview-section .map-footer {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.map-preview-section .map-footer span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--clr-muted);
}

.map-preview-section .map-btn {
  background: var(--clr-orange);
  color: var(--clr-blanc);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 10px 20px;
  border-radius: var(--r-full);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.map-preview-section .map-btn:hover {
  background: var(--clr-orange-dark);
}