/* ============================================================================
 * SECTIONS — CIRCUITS PARIS OUEST B2B
 * ========================================================================= */

/* En-tête de section réutilisable */
.shead {
  margin-bottom: var(--s-6);
}
.shead__label {
  display: block;
  margin-bottom: var(--s-2);
}
.shead__title {
  font-size: var(--t-h2);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  max-width: 18ch;
}

/* ----------------------------------------------------------------------------
 * 3. POURQUOI — intro + liste numérotée (2 col) + photo paysage large
 * ------------------------------------------------------------------------- */
.why__intro .shead__title {
  font-size: var(--t-h1);
  max-width: 16ch;
}

/* Intro en 2 colonnes : texte à gauche, vidéo d'ambiance à droite */
.why__intro--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: center;
}
/* Slideshow d'images : fondu enchaîné + léger zoom (Ken Burns) */
.why__slideshow {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}
.why__slideshow .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 1200ms ease,
    transform 6000ms ease;
}
.why__slideshow .slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.why__slideshow::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90px;
  height: 4px;
  background: var(--accent);
  z-index: 2;
}
@media (max-width: 860px) {
  .why__intro--split {
    grid-template-columns: 1fr;
    gap: var(--s-4);
  }
}
.why__lead {
  margin-top: var(--s-3);
  max-width: 56ch;
  color: var(--ink-2);
  font-size: var(--t-lead);
  line-height: 1.5;
}

/* Liste numérotée — 2 colonnes desktop */
.why__list {
  margin-top: var(--s-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 var(--s-6);
  border-top: 1px solid var(--line-strong);
}
.why__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--s-3);
  padding-block: var(--s-4);
  border-bottom: 1px solid var(--line);
}
.why__num {
  font-family: var(--font-mono);
  font-size: var(--t-label);
  font-weight: 500;
  color: var(--accent);
  padding-top: 0.35em;
}
.why__h {
  font-size: var(--t-h3);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.why__p {
  margin-top: 6px;
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Grande photo paysage */
.why__photo {
  position: relative;
  margin-top: var(--s-6);
  aspect-ratio: 21 / 7;
  overflow: hidden;
  isolation: isolate;
}
.why__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.why__photo::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;
  height: 4px;
  background: var(--accent);
}

@media (max-width: 760px) {
  .why__list {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .why__photo {
    aspect-ratio: 16 / 10;
  }
}
@media (max-width: 480px) {
  .why__item {
    grid-template-columns: 40px 1fr;
    gap: var(--s-2);
  }
}

/* ----------------------------------------------------------------------------
 * 4. VOS ÉVÉNEMENTS — cards (5 formats)
 * ------------------------------------------------------------------------- */
.events__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-3);
}
/* 1ère card large (2x), les 4 autres en 1 colonne chacune sur 2 rangées */
.event {
  position: relative;
  display: block;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  color: var(--paper);
  min-height: 280px;
  grid-column: span 2;
}
.event--feature {
  grid-column: span 6;
  min-height: 360px;
}
.event__img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.event__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1));
}
.event::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(17, 19, 22, 0.1) 0%,
    rgba(17, 19, 22, 0.35) 55%,
    rgba(17, 19, 22, 0.9) 100%
  );
}
.event__body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--s-4);
}
.event__tag {
  font-family: var(--font-mono);
  font-size: var(--t-label);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--s-1);
}
.event__h {
  font-size: var(--t-h3);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.event--feature .event__h {
  font-size: var(--t-h2);
  max-width: 18ch;
}
.event__p {
  margin-top: var(--s-1);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 46ch;
}
.event__cta {
  margin-top: var(--s-3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}
.event__cta .arrow {
  transition: transform 220ms var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1));
}
/* hover : zoom image + flèche */
.event:hover .event__img img {
  transform: scale(1.06);
}
.event:hover .event__cta .arrow {
  transform: translateX(5px);
}
.event:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Bloc décoratif motif piste — comble les 4 dernières colonnes (large) */
.event-motif {
  position: relative;
  grid-column: span 4;
  min-height: 280px;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--s-4);
}
/* chevrons de course en une rangée centrée qui défile horizontalement */
.event-motif__track {
  position: absolute;
  top: 50%;
  left: -8%;
  width: 120%;
  z-index: 0;
  display: flex;
  align-items: center;
  gap: 34px;
  transform: translateY(-50%);
  opacity: 0.55;
}
.event-motif .chev {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-right: 11px solid var(--accent);
  border-bottom: 11px solid var(--accent);
  transform: rotate(-45deg);
}
@media (prefers-reduced-motion: no-preference) {
  .event-motif__track {
    animation: motifSlide 2.6s linear infinite;
  }
  @keyframes motifSlide {
    from {
      transform: translateY(-50%) translateX(0);
    }
    to {
      /* défile d'un pas (chevron + gap) pour une boucle continue */
      transform: translateY(-50%) translateX(-86px);
    }
  }
}
.event-motif__body {
  position: relative;
  z-index: 1;
}
.event-motif__mono {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--t-label);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--s-1);
}
.event-motif__big {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--t-h2);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}
.event-motif__big .arrow {
  color: var(--accent);
  transition: transform 220ms var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1));
}
.event-motif:hover .event-motif__big .arrow {
  transform: translateX(6px);
}
.event-motif:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .events__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .event,
  .event--feature {
    grid-column: span 1;
  }
  .event--feature {
    grid-column: span 2;
  }
  .event-motif {
    grid-column: span 2;
    min-height: 180px;
  }
}
@media (max-width: 560px) {
  .events__grid {
    grid-template-columns: 1fr;
  }
  .event,
  .event--feature,
  .event-motif {
    grid-column: span 1;
  }
}

/* ----------------------------------------------------------------------------
 * 5. LES 5 ESPACES — bandes horizontales (respecte les images panoramiques)
 * ------------------------------------------------------------------------- */
.spaces__list {
  border-top: 1px solid var(--line-strong);
}
.space {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.space__text {
  padding: var(--s-5) var(--s-4) var(--s-5) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.space__idx {
  font-family: var(--font-mono);
  font-size: var(--t-label);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: var(--s-2);
}
.space__name {
  font-size: var(--t-h2);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.space__desc {
  margin-top: var(--s-2);
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 44ch;
}
.space__stats {
  margin-top: var(--s-3);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
}
.space__stat {
  display: flex;
  flex-direction: column;
}
.space__stat b {
  font-size: var(--t-h3);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
}
.space__stat span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 4px;
}
.space__media {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  isolation: isolate;
}
.space__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1));
}
.space:hover .space__media img {
  transform: scale(1.05);
}

@media (max-width: 760px) {
  .space {
    grid-template-columns: 1fr;
  }
  .space__text {
    padding: var(--s-4) 0;
    order: 2;
  }
  .space__media {
    order: 1;
    min-height: 200px;
    aspect-ratio: 16 / 9;
  }
}

/* ----------------------------------------------------------------------------
 * 6. CLÉ EN MAIN — services en grille
 * ------------------------------------------------------------------------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}
.service {
  padding: var(--s-5) var(--s-4);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service__icon {
  width: 28px;
  height: 28px;
  margin-bottom: var(--s-3);
  color: var(--accent);
}
.service__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}
.service__h {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.service__p {
  margin-top: 6px;
  color: var(--ink-2);
  font-size: 0.9rem;
  line-height: 1.5;
}
@media (max-width: 760px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 420px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------------------------
 * 7. RÉASSURANCE — bandeau sombre + chiffres techniques
 * ------------------------------------------------------------------------- */
.trust {
  background: var(--ink);
  color: var(--paper);
}
.trust__head {
  max-width: 30ch;
  margin-bottom: var(--s-6);
}
.trust__head .label {
  color: rgba(255, 255, 255, 0.6);
}
.trust__title {
  font-size: var(--t-h2);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: var(--s-2);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.trust__item {
  padding: var(--s-4) var(--s-3) var(--s-4) 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: var(--s-3);
}
.trust__item:first-child {
  padding-left: 0;
}
.trust__num {
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}
.trust__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: var(--s-2);
}
@media (max-width: 720px) {
  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: var(--s-3);
  }
}

/* ----------------------------------------------------------------------------
 * 8. CTA FINAL — bloc de conversion
 * ------------------------------------------------------------------------- */
.final {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}
.final__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.final__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.final__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 19, 22, 0.78), rgba(17, 19, 22, 0.78)),
    linear-gradient(180deg, var(--accent), transparent 60%);
  opacity: 0.92;
  mix-blend-mode: normal;
}
.final__inner {
  position: relative;
  z-index: 1;
  padding-block: var(--s-9);
  max-width: 640px;
  margin-inline: auto;
}
.final__title {
  font-size: var(--t-h1);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.final__sub {
  margin-top: var(--s-3);
  font-size: var(--t-lead);
  color: rgba(255, 255, 255, 0.85);
}
.final__actions {
  margin-top: var(--s-5);
  display: flex;
  gap: var(--s-2);
  justify-content: center;
  flex-wrap: wrap;
}
.final .btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(11, 92, 171, 0.6);
}
.final .btn--primary:hover {
  background: #003d78;
  border-color: #003d78;
  transform: translateY(-2px);
}
.final .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.final .btn--ghost:hover {
  background: #fff;
  color: var(--ink);
}
.final__contact {
  margin-top: var(--s-5);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
}

/* ----------------------------------------------------------------------------
 * FOOTER
 * ------------------------------------------------------------------------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding-block: var(--s-7) var(--s-4);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-5);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.footer__brand-name {
  font-size: var(--t-h3);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.footer__tagline {
  margin-top: var(--s-2);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 32ch;
}
.footer__cta {
  margin-top: var(--s-3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #fff;
}
.footer__cta .arrow {
  color: var(--accent);
  transition: transform 220ms var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1));
}
.footer__cta:hover .arrow {
  transform: translateX(5px);
}
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: var(--t-label);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--s-3);
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a,
.footer__col p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.4;
  transition: color 160ms ease;
}
.footer__col a:hover {
  color: var(--accent);
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
  padding-top: var(--s-4);
}
.footer__legal {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
}
.footer__made {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 860px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-5) var(--s-4);
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 480px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ----------------------------------------------------------------------------
 * 6b. ENGAGEMENT RESPONSABLE (RSE) — chiffres forts, DA marque (pas de "vert")
 * ------------------------------------------------------------------------- */
.rse__lead {
  margin-top: var(--s-3);
  max-width: 56ch;
  color: var(--ink-2);
  font-size: 1.05rem;
  line-height: 1.55;
}
.rse__grid {
  margin-top: var(--s-6);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}
.rse__item {
  padding: var(--s-5) var(--s-4);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.rse__stat {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--accent);
  min-height: 34px;
  display: flex;
  align-items: center;
}
.rse__stat svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linejoin: round;
}
.rse__h {
  margin-top: var(--s-3);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.rse__p {
  margin-top: 6px;
  color: var(--ink-2);
  font-size: 0.9rem;
  line-height: 1.5;
}
.rse__foot {
  margin-top: var(--s-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  flex-wrap: wrap;
}
.rse__report {
  max-width: 48ch;
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.55;
}
@media (max-width: 760px) {
  .rse__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 420px) {
  .rse__grid {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------------------------
 * 4b. AFTERWORK KARTING — split image / texte (cohésion d'équipe nocturne)
 * ------------------------------------------------------------------------- */
.afterwork__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--s-6);
  align-items: center;
}
.afterwork__media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.afterwork__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.afterwork__badge {
  position: absolute;
  top: var(--s-3);
  left: var(--s-3);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--accent);
  padding: 6px 12px;
}
.afterwork__title {
  margin-top: var(--s-3);
  font-size: var(--t-h2);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.afterwork__p {
  margin-top: var(--s-3);
  max-width: 46ch;
  color: var(--ink-2);
  font-size: 1.02rem;
  line-height: 1.55;
}
.afterwork__list {
  list-style: none;
  margin: var(--s-4) 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.afterwork__list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--s-3);
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--line);
}
.afterwork__li-k {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding-top: 2px;
}
.afterwork__li-v {
  font-size: 0.95rem;
  line-height: 1.45;
}
@media (max-width: 860px) {
  .afterwork__inner {
    grid-template-columns: 1fr;
    gap: var(--s-4);
  }
  .afterwork__list li {
    grid-template-columns: 100px 1fr;
  }
}

/* ========================================================================
 * SECTION ÉCO-CONDUITE VE — offre B2B cœur (COMEX / CODIR / séminaire)
 * Texte à gauche, média à droite (rythme inversé vs afterwork).
 * ===================================================================== */
.ecoconduite__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: var(--s-6);
  align-items: center;
}
.ecoconduite__media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.ecoconduite__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}
.ecoconduite__badge {
  position: absolute;
  bottom: var(--s-3);
  left: var(--s-3);
  right: var(--s-3);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--accent-deep);
  border-left: 3px solid var(--accent-gold);
  padding: 8px 12px;
}
.ecoconduite__title {
  margin-top: var(--s-3);
  font-size: var(--t-h2);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.ecoconduite__p {
  margin-top: var(--s-3);
  max-width: 52ch;
  color: var(--ink-2);
  font-size: 1.02rem;
  line-height: 1.6;
}
.ecoconduite__p strong {
  color: var(--ink);
  font-weight: 600;
}
.ecoconduite__list {
  list-style: none;
  margin: var(--s-4) 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.ecoconduite__list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--s-3);
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--line);
}
.ecoconduite__li-k {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 2px;
}
.ecoconduite__li-v {
  font-size: 0.95rem;
  line-height: 1.45;
}
@media (max-width: 860px) {
  .ecoconduite__inner {
    grid-template-columns: 1fr;
    gap: var(--s-4);
  }
  /* média sous le texte sur mobile */
  .ecoconduite__media {
    order: 2;
  }
  .ecoconduite__list li {
    grid-template-columns: 100px 1fr;
  }
}

/* Galerie flotte électrique (homepage, sous la section éco-conduite) */
.ecoconduite__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  margin-top: var(--s-5);
}
.ecoconduite__shot {
  margin: 0;
  border: 1px solid var(--line);
  overflow: hidden;
}
.ecoconduite__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
}
.ecoconduite__shot figcaption {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 10px 12px;
  background: var(--paper);
}
@media (max-width: 760px) {
  .ecoconduite__gallery {
    grid-template-columns: 1fr;
  }
}
