/* ============================================================
   HEADER
   ============================================================ */
.le-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: border-color .3s ease;
  border-bottom: 0.5px solid transparent;
}

/* Le backdrop-filter est sur ::before et non sur .le-header lui-même.
   Raison : backdrop-filter crée un containing block pour position:fixed,
   ce qui décalerait les sous-menus. Le pseudo-élément isole l'effet. */
.le-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 16, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background .3s ease, backdrop-filter .3s ease;
  z-index: -1;
  pointer-events: none;
}

/* Barre d'admin WP — décaler le header fixe quand connecté */
body.admin-bar .le-header { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .le-header { top: 46px; }
}

.le-header.is-scrolled {
  border-bottom-color: var(--b-subtle);
}

.le-header.is-scrolled::before {
  background: rgba(5, 8, 16, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.le-header__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  height: 68px;
  display: flex;
  align-items: stretch; /* enfants s'étendent sur 68px → top:100% sur sous-menu = bas du header */
  gap: 40px;
  transition: height .3s var(--ease);
}

.le-header.is-scrolled .le-header__inner { height: 54px; }

/* ── Logo mark — pictogramme LE ── */
.le-logo-mark {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  padding: 5px 7px 5px;
  background: rgba(200, 164, 74, 0.08);
  /* Gold gradient border via outline trick */
  outline: 1.5px solid rgba(200, 164, 74, 0.55);
  outline-offset: -1px;
  box-shadow: 0 0 0 0.5px rgba(200, 164, 74, 0.12), inset 0 0 0 1px rgba(255,255,255,0.04);
  transition: outline-color .2s, background .2s, box-shadow .2s;
}

.le-header__logo:hover .le-logo-mark {
  background: rgba(200, 164, 74, 0.14);
  outline-color: rgba(200, 164, 74, 0.85);
  box-shadow: 0 0 12px rgba(200, 164, 74, 0.18), inset 0 0 0 1px rgba(255,255,255,0.06);
}

.le-logo-mark__l {
  font-size: 11px;
  font-weight: 700;
  color: var(--c-gold-light);
  line-height: 1;
  align-self: flex-start;
  letter-spacing: -0.5px;
}

.le-logo-mark__s {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  align-self: flex-end;
  letter-spacing: -0.5px;
}

.le-logo-mark--sm { width: 32px; height: 32px; padding: 4px 5px 4px; }
.le-logo-mark--sm .le-logo-mark__l { font-size: 9px; }
.le-logo-mark--sm .le-logo-mark__s { font-size: 13px; }

/* ── Logo text ── */
.le-logo-name {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.le-logo-name__top {
  font-size: 13px;
  font-weight: 700;
  color: var(--t-primary);
  letter-spacing: 0.2px;
  line-height: 1;
}

.le-logo-name__sub {
  font-size: 9px;
  font-weight: 500;
  color: var(--c-gold);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  line-height: 1;
}

/* Logo image — rendu direct (pas via the_custom_logo pour éviter l'imbrication <a>) */
.le-header__logo--img {
  gap: 0;
  padding: 0;
  background: none;
  border: none;
  margin-left: 0;
  overflow: hidden;
}
.le-header__logo--img:hover { background: none; border-color: transparent; }

/* Image du logo header */
.le-logo-img {
  height: var(--le-logo-h, 60px) !important;
  width: auto !important;
  max-width: none !important;
  display: block;
}

/* Logo footer image */
.le-footer__logo--img { margin-bottom: 16px; display: block; }
.le-footer-logo-img {
  height: var(--le-logo-h, 60px) !important;
  width: auto !important;
  max-width: none !important;
  display: block;
}

/* ── Shrink au scroll — transform via JS inline + CSS fallback ── */
.le-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
  transform-origin: left center;
  /* Capsule backdrop for visual integration */
  padding: 6px 12px 6px 6px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.06);
  margin-left: -6px;
}

.le-header__logo:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(200, 164, 74, 0.2);
}

.le-header.is-scrolled .le-header__logo { transform: scale(0.78); }

/* Navigation */
.le-header__nav { flex: 1; display: flex; justify-content: center; }

.le-nav__list {
  display: flex;
  align-items: stretch; /* les <li> s'étendent sur toute la hauteur du header */
  gap: 4px;
  list-style: none;
}

/* Chaque item de niveau 1 center ses enfants verticalement */
.le-nav__list > li {
  display: flex;
  align-items: center;
}

.le-nav__list li a {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
  padding: 7px 14px;
  border-radius: var(--r-md);
  transition: color .2s, background .2s;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.le-nav__list li a:hover,
.le-nav__list li.current-menu-item a,
.le-nav__list li.current-menu-parent a {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

/* Dropdown — position:relative sur le <li> custom (Walker n'émet pas menu-item-has-children) */
.le-nav__list li.le-nav__item--has-sub { position: relative; }

/* Bouton toggle chevron (séparé du lien de navigation) */
.le-nav__toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.4);
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
  vertical-align: middle;
  margin-left: -2px;
}

.le-nav__toggle:hover { color: #fff; background: rgba(255,255,255,0.06); }

/* Chevron */
.le-nav__chevron {
  flex-shrink: 0;
  transition: transform .2s var(--ease);
  pointer-events: none;
}

/* Rotation chevron quand ouvert */
.le-nav__item--has-sub.is-open > .le-nav__toggle .le-nav__chevron,
.le-nav__toggle[aria-expanded="true"] .le-nav__chevron {
  transform: rotate(180deg);
  color: var(--c-gold);
}

.le-nav__list .sub-menu {
  position: absolute;
  top: calc(100% + 6px); /* juste sous le bas du <li> = bas du header */
  left: 0;
  padding: 8px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 9999;
  pointer-events: none;

  background: #0f1623;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.4),
    0 20px 48px rgba(0, 0, 0, 0.65);
}

/* Pas de ::before arrow — source de bugs visuels */
.le-nav__list .sub-menu::before { display: none; }

/* Éviter que le sous-menu déborde à droite — la classe .is-right est ajoutée par JS */
.le-nav__list > li > .sub-menu.is-right {
  left: auto;
  right: 0;
}

/* Niveau 2+ : si le flyout déborde aussi, JS ajoute .is-right → part vers la gauche */
.le-nav__list .sub-menu .sub-menu.is-right {
  left: auto;
  right: 100%;
  transform: translateX(6px);
}

.le-nav__list .sub-menu li.is-open > .sub-menu.is-right {
  transform: translateX(0) !important;
}

/* Ouverture */
.le-nav__list li.is-open > .sub-menu,
.le-nav__toggle[aria-expanded="true"] + .sub-menu,
.le-nav__list li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Niveau 2+ — flyout absolu à droite du li parent */
.le-nav__list .sub-menu .sub-menu {
  position: absolute;
  top: -8px;
  left: 100%;
  padding: 8px;
  min-width: 220px;
  background: #0f1623;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,.4), 0 20px 48px rgba(0,0,0,.65);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  pointer-events: none;
  z-index: 9999;
}

/* Quand le dropdown parent est aligné à droite, le flyout part vers la gauche */
.le-nav__list > li > .sub-menu.is-right .sub-menu {
  left: auto;
  right: 100%;
  transform: translateX(6px);
}

/* Ouverture niveau 2+ */
.le-nav__list .sub-menu li.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) !important;
  pointer-events: auto;
}

/* Items du dropdown avec sous-menu — flex pour que le toggle soit en ligne */
.le-nav__list .sub-menu li { position: relative; }

.le-nav__list .sub-menu li.le-nav__item--has-sub {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.le-nav__list .sub-menu li.le-nav__item--has-sub > a { flex: 1; }

/* Toggle depth ≥ 1 — chevron pointe vers la droite (›) */
.le-nav__list .sub-menu .le-nav__toggle {
  padding: 2px 6px;
  flex-shrink: 0;
}
.le-nav__list .sub-menu .le-nav__toggle .le-nav__chevron { transform: rotate(-90deg); }
.le-nav__list .sub-menu .le-nav__toggle[aria-expanded="true"] .le-nav__chevron { color: var(--c-gold); transform: rotate(-90deg); }

.le-nav__list .sub-menu li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.le-nav__list .sub-menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color .15s, background .15s;
  line-height: 1.35;
  white-space: nowrap;
}

/* Pastille dorée à gauche au survol */
.le-nav__list .sub-menu li a::before {
  content: '';
  display: block;
  width: 3px;
  height: 3px;
  background: var(--c-gold);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity .15s;
}

.le-nav__list .sub-menu li a:hover,
.le-nav__list .sub-menu li.current-menu-item > a {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.le-nav__list .sub-menu li a:hover::before,
.le-nav__list .sub-menu li.current-menu-item > a::before {
  opacity: 1;
}

/* Header buttons */
.le-header__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.le-header__btn {
  font-size: 12px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: opacity .2s;
  white-space: nowrap;
}

.le-header__btn:hover { opacity: 0.85; }

.le-header__btn--espace {
  color: rgba(255, 255, 255, 0.6);
  border: 0.5px solid var(--b-mid);
}

.le-header__btn--espace:hover { color: #fff; }

.le-header__btn--devis {
  background: var(--c-gold);
  color: #0a0a0a;
}

/* Burger */
.le-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.le-header__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.7);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
  transform-origin: center;
}

/* Animation burger → X quand ouvert */
.le-header__burger.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.le-header__burger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.le-header__burger.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu — conteneur coulissant */
.le-mobile-menu {
  background: var(--c-dark2);
  /* Pas de bordure quand replié : à hauteur 0 elle restait visible
     et traçait un filet sous le header, à travers le logo */
  border-top: none;
  max-height: 0;
  overflow: hidden;
  overflow-y: auto;
  transition: max-height .38s var(--ease);
}

.le-mobile-menu.is-open {
  max-height: 85vh;
  border-top: 0.5px solid var(--b-subtle);
}

/* Liste racine */
.le-mob__list { list-style: none; padding: 0; }

/* Item */
.le-mob__item {
  border-bottom: 0.5px solid rgba(255,255,255,0.05);
}

/* Rangée lien + toggle */
.le-mob__row {
  display: flex;
  align-items: stretch;
}

/* Lien de navigation */
.le-mob__link {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color .2s;
}

.le-mob__link:hover,
.le-mob__link.is-active { color: #fff; }

.le-mob__item--has-sub.is-open > .le-mob__row .le-mob__link { color: #fff; }

/* Bouton toggle chevron */
.le-mob__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  flex-shrink: 0;
  background: none;
  border: none;
  border-left: 0.5px solid rgba(255,255,255,0.05);
  cursor: pointer;
  color: rgba(255,255,255,0.25);
  transition: color .2s, background .2s;
}

.le-mob__toggle:hover {
  background: rgba(255,255,255,0.03);
  color: var(--c-gold);
}

.le-mob__toggle .le-mob__chevron {
  transition: transform .28s var(--ease);
  pointer-events: none;
}

.le-mob__item--has-sub.is-open > .le-mob__row .le-mob__toggle {
  color: var(--c-gold);
}

.le-mob__item--has-sub.is-open > .le-mob__row .le-mob__toggle .le-mob__chevron {
  transform: rotate(180deg);
}

/* Sous-menu accordion */
.le-mob__sub {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.18);
  transition: max-height .32s var(--ease);
}

.le-mob__item--has-sub.is-open > .le-mob__sub { max-height: 800px; }

.le-mob__sub li {
  border-top: 0.5px solid rgba(255,255,255,0.04);
}

.le-mob__sub li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px 12px 30px;
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  transition: color .2s, background .2s;
}

.le-mob__sub li a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

.le-mob__sub li a:hover { color: rgba(255,255,255,0.85); }

.le-mob__sub li.current-menu-item a {
  color: #fff;
}

.le-mob__sub li.current-menu-item a::before { background: var(--c-gold); }

/* Footer du menu mobile */
.le-mobile-menu__footer {
  padding: 20px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 0.5px solid var(--b-subtle);
  background: rgba(255,255,255,0.01);
}

.le-mobile-menu__tel {
  font-size: 18px;
  font-weight: 600;
  color: var(--t-primary);
  text-align: center;
  letter-spacing: 0.3px;
}

/* ============================================================
   HERO
   ============================================================ */
.le-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-dark);
}

.le-hero__canvas,
.le-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.le-hero__video  { z-index: 1; }
.le-hero__canvas { z-index: 0; }

/* Backgrounds per-slide (remplace le fond vidéo global) */
.le-hero__bgs {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.le-hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.le-hero__bg.is-active { opacity: 1; }

.le-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.le-hero__bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

/* Iframe embed Vimeo/YouTube per-slide */
.le-hero__bg-iframe {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.le-hero__bg-iframe iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max(100%, calc(100vh * 16 / 9));
  height: max(100%, calc(100vw * 9 / 16));
  border: 0;
  pointer-events: none;
}


  border: 0;
  pointer-events: none;
}

.le-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* Couche 1 : assombrit toute la vidéo uniformément */
  background: rgba(4, 7, 14, 0.45);
}

/* Couche 2 : dégradé fort côté gauche (zone texte) */
.le-hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(4, 7, 14, 0.82) 0%,
    rgba(4, 7, 14, 0.65) 40%,
    rgba(4, 7, 14, 0.15) 75%,
    transparent 100%
  );
}

.le-hero__overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 280px;
  z-index: 2;
  background: linear-gradient(to top, var(--c-dark) 0%, rgba(4,7,14,0.6) 60%, transparent 100%);
}

.le-hero__content {
  position: relative;
  z-index: 3;
  padding-top: 120px;
  padding-bottom: 80px;
}

/* Halo de lisibilité derrière le bloc texte */
.le-hero__slider-wrap::before {
  content: '';
  position: absolute;
  inset: -40px -60px -20px -80px;
  background: radial-gradient(ellipse at 30% 50%, rgba(4, 7, 14, 0.55) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* Eyebrow hero */
.le-hero__eyebrow { margin-bottom: 24px; }

.le-hero__pulse {
  animation: le-pulse 2.4s ease-in-out infinite;
}

@keyframes le-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.8); }
}

.le-hero__sep {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: rgba(200, 164, 74, 0.3);
  margin-inline: 6px;
}

.le-hero__eyebrow-sub {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.3);
}

/* Titre */
.le-hero__title {
  margin-bottom: 20px;
  max-width: 720px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.8), 0 1px 4px rgba(0, 0, 0, 0.9);
}

/* Sous-titre */
.le-hero__sub {
  margin-bottom: 40px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* Eyebrow */
.le-hero__eyebrow {
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

/* CTAs */
.le-hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 60px;
}

.le-hero__play-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  transition: color .2s;
}

.le-hero__play-btn:hover { color: #fff; }

.le-hero__play-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .2s, background .2s;
}

.le-hero__play-btn:hover .le-hero__play-circle {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

/* Stats */
.le-hero__stats {
  display: flex;
  gap: 40px;
}

.le-hero__stat {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 20px;
}

.le-hero__stat-num {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.5px;
}

.le-hero__stat-accent { color: var(--c-gold); }

.le-hero__stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 5px;
}

/* Scroll hint — souris animée */
.le-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.le-hero__scroll-txt {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

/* Icône souris SVG inline */
.le-hero__scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 11px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 5px;
  transition: border-color .3s;
}

a.le-hero__scroll:hover .le-hero__scroll-mouse { border-color: var(--c-gold); }

.le-hero__scroll-mouse::before {
  content: '';
  width: 3px;
  height: 7px;
  background: var(--c-gold);
  border-radius: 2px;
  animation: le-mouse-scroll 1.8s ease-in-out infinite;
}

@keyframes le-mouse-scroll {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(9px); opacity: 0.2; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Ligne sous la souris */
.le-hero__scroll-line {
  display: block;
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(200,164,74,0.5), transparent);
  animation: le-scroll-fade 1.8s ease-in-out infinite;
}

@keyframes le-scroll-fade {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

@keyframes le-scrolldown {
  0%   { top: -100%; }
  100% { top: 200%; }
}

/* ============================================================
   TICKER RÉFÉRENCES
   ============================================================ */
.le-ticker {
  background: #0d0d0d;
  border-top: 1px solid rgba(200, 164, 74, 0.12);
  border-bottom: 1px solid rgba(200, 164, 74, 0.12);
  height: 44px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.le-ticker__label {
  flex-shrink: 0;
  background: var(--c-gold);
  color: #0a0a0a;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  height: 44px;
  display: flex;
  align-items: center;
  padding-inline: 20px;
}

.le-ticker__track-wrap { overflow: hidden; flex: 1; }

.le-ticker__track {
  display: flex;
  animation: le-ticker 28s linear infinite;
  white-space: nowrap;
}

.le-ticker__item {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  padding-inline: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  letter-spacing: 0.5px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

/* Logo mode */
.le-ticker__item--logo {
  position: relative;
  padding-block: 2px;
}

.le-ticker__item--logo img {
  height: 26px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  opacity: 0.45;
  filter: grayscale(1) brightness(1.8);
  transition: opacity .25s, filter .25s;
  display: block;
}

.le-ticker__item--logo:hover img {
  opacity: 0.85;
  filter: grayscale(0) brightness(1);
}

/* Nom au survol, caché sinon */
.le-ticker__item-name {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: var(--c-gold);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}

.le-ticker__item--logo:hover .le-ticker__item-name { opacity: 1; }

/* Scroll hint — cliquable */
a.le-hero__scroll { text-decoration: none; cursor: pointer; }
a.le-hero__scroll:hover .le-hero__scroll-txt { color: rgba(255,255,255,0.5); }

/* ============================================================
   HERO SLIDER — crossfade + dots progression
   ============================================================ */

.le-hero__slider-wrap {
  position: relative;
  min-height: clamp(300px, 42vh, 420px);
  margin-bottom: 40px;
}

.le-hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.le-hero__slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Footer hero : stats à gauche, dots à droite */
.le-hero__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

/* Dots indicateurs */
.le-hero__dots {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.le-hero__dot {
  background: transparent;
  border: none;
  padding: 6px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.le-hero__dot-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: width 0.35s ease, background 0.35s ease;
}

.le-hero__dot.is-active .le-hero__dot-bar {
  width: 48px;
  background: rgba(255, 255, 255, 0.1);
}

.le-hero__dot-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 2px;
}

.le-hero__dot.is-active .le-hero__dot-bar::after {
  animation: le-dot-progress 5s linear forwards;
}

@keyframes le-dot-progress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

@media (max-width: 768px) {
  .le-hero__slider-wrap { min-height: clamp(340px, 52vh, 480px); }
  .le-hero__footer { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@keyframes le-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SECTION LAYOUT
   ============================================================ */
.le-section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
}

/* ============================================================
   CARDS PRESTATIONS
   ============================================================ */
.le-prest-card {
  background: var(--c-dark3);
  border: 0.5px solid var(--b-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}

.le-prest-card:hover {
  border-color: var(--b-mid);
  transform: translateY(-3px);
}

.le-prest-card--featured {
  border-color: var(--c-purple);
  background: linear-gradient(160deg, rgba(108, 59, 191, 0.12) 0%, var(--c-dark3) 100%);
}

.le-prest-card--featured:hover { border-color: var(--c-purple2); }

.le-prest-card__thumb {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}

.le-prest-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}

.le-prest-card:hover .le-prest-card__thumb img { transform: scale(1.05); }

.le-prest-card__thumb-icon {
  font-size: 36px;
  line-height: 1;
}

.le-prest-card__body { padding: 20px; }

.le-prest-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--t-primary);
  margin-bottom: 8px;
}

.le-prest-card__desc {
  font-size: 12px;
  color: var(--t-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}

.le-prest-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.le-prest-card__tag {
  font-size: 10px;
  padding: 3px 9px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   CATALOGUE CATEGORIES
   ============================================================ */
.le-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.le-cat-card {
  background: var(--c-dark3);
  border: 0.5px solid var(--b-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .25s, transform .25s var(--ease);
}

.le-cat-card:hover {
  border-color: rgba(200, 164, 74, 0.3);
  transform: translateY(-2px);
}

.le-cat-card__top {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}

.le-cat-card__top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
  opacity: 0.7;
}

.le-cat-card:hover .le-cat-card__top img { transform: scale(1.06); opacity: 0.9; }

.le-cat-card__count {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--c-gold-dim);
  border: 0.5px solid var(--b-gold);
  color: var(--c-gold);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: var(--r-sm);
}

.le-cat-card__body { padding: 16px 18px; }

.le-cat-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--t-primary);
  margin-bottom: 4px;
}

.le-cat-card__sub {
  font-size: 12px;
  color: var(--t-secondary);
}

/* ============================================================
   LOGOS RÉFÉRENCES — carousel
   ============================================================ */
.le-logos-section { padding-block: var(--section-py); }

.le-logos-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.le-logos-section__title {
  font-size: 13px;
  color: var(--t-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

/* Wrapper avec boutons prev/next */
/* Grille de logos : 4 par ligne */
.le-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .le-logos-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .le-logos-grid { grid-template-columns: repeat(2, 1fr); }
}

.le-logos-slide {
  background: #fff;
  border-radius: 8px;
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 28px;
  transition: transform .2s, box-shadow .2s;
}

.le-logos-slide:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.le-logos-slide img {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform .25s;
}

.le-logos-slide:hover img {
  transform: scale(1.05);
}

.le-logos-slide span {
  font-size: 11px;
  font-weight: 700;
  color: #333;
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Flèches de navigation */
.le-logos-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--c-dark2);
  border: 1px solid var(--b-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--t-primary);
  transition: background .2s, border-color .2s;
  z-index: 2;
}

.le-logos-btn:hover { background: var(--c-gold); border-color: var(--c-gold); color: #000; }
.le-logos-btn--prev { left: -20px; }
.le-logos-btn--next { right: -20px; }

@media (max-width: 1024px) {
  .le-logos-slide { flex: 0 0 calc(33.333% - 11px); }
  .le-logos-btn--prev { left: 0; }
  .le-logos-btn--next { right: 0; }
}

@media (max-width: 640px) {
  .le-logos-slide { flex: 0 0 calc(50% - 8px); }
}

/* ============================================================
   RÉALISATION CARDS
   ============================================================ */
.le-realisations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.le-realisation-card {
  display: block;
  text-decoration: none;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-dark2);
  border: 0.5px solid var(--b-subtle);
  transition: transform .25s, box-shadow .25s;
}

.le-realisation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}

.le-realisation-card__img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.le-realisation-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.le-realisation-card:hover .le-realisation-card__img img { transform: scale(1.04); }

.le-realisation-card__placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--c-dark2) 0%, #1a1a2e 100%);
}

.le-realisation-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 60%);
}

.le-realisation-card__body {
  padding: 18px 20px 20px;
}

.le-realisation-card__cat {
  font-size: 10px;
  font-weight: 700;
  color: var(--c-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 8px;
}

.le-realisation-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--t-primary);
  margin: 0 0 12px;
  line-height: 1.4;
}

.le-realisation-card__cta {
  font-size: 12px;
  color: var(--t-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}

.le-realisation-card:hover .le-realisation-card__cta { color: var(--c-gold); }

@media (max-width: 768px) {
  .le-realisations-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA BAND
   ============================================================ */
.le-cta-band {
  background: var(--c-dark2);
  border-top: 0.5px solid var(--b-subtle);
  padding-block: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.le-cta-band__title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.le-cta-band__sub {
  font-size: 16px;
  color: var(--t-secondary);
  margin-bottom: 36px;
  max-width: 480px;
  margin-inline: auto;
}

.le-cta-band__btns {
  display: flex;
  justify-content: center;
  gap: 14px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.le-footer {
  background: #060c18;
  padding-top: 64px;
  padding-bottom: 28px;
  border-top: 0.5px solid var(--b-subtle);
}

.le-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 48px;
  margin-bottom: 48px;
}

.le-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
}

.le-footer__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 20px;
}

.le-footer__socials { display: flex; gap: 8px; margin-bottom: 16px; }

.le-footer__social {
  width: 32px;
  height: 32px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  transition: background .2s, color .2s;
}

.le-footer__social:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }

.le-footer__label-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  color: rgba(200, 164, 74, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(200, 164, 74, 0.06);
  border: 0.5px solid rgba(200, 164, 74, 0.15);
  padding: 5px 12px;
  border-radius: var(--r-sm);
}

.le-footer__col-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.22);
  margin-bottom: 18px;
}

.le-footer__links { list-style: none; }

.le-footer__links li { margin-bottom: 10px; }

.le-footer__links li a,
.le-footer__links li span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  transition: color .2s;
}

.le-footer__links li a:hover { color: rgba(255, 255, 255, 0.8); }

.le-footer__contact-block { margin-bottom: 14px; }

.le-footer__contact-title {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.le-footer__contact-block p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  white-space: pre-line;
}

.le-footer__tel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
  transition: color .2s;
}

.le-footer__tel:hover { color: #fff; }

.le-footer__tel-tag {
  font-size: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.35);
  padding: 1px 7px;
  border-radius: 3px;
}

.le-footer__bottom {
  border-top: 0.5px solid var(--b-subtle);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.le-footer__legal {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
}

.le-footer__legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.le-footer__legal-links a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  transition: color .2s;
}

.le-footer__legal-links a:hover { color: rgba(255, 255, 255, 0.5); }

/* ============================================================
   PRICE LOGIN (WooCommerce)
   ============================================================ */
.le-price-login {
  font-size: 12px;
  color: var(--c-purple2);
  text-decoration: underline;
  text-decoration-color: rgba(139, 84, 224, 0.3);
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.le-breadcrumb {
  font-size: 12px;
  color: var(--t-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  margin-bottom: 24px;
}

.bc-sep { color: var(--b-mid); }

.le-breadcrumb a { color: var(--t-secondary); transition: color .2s; }
.le-breadcrumb a:hover { color: var(--t-primary); }

/* ============================================================
   PAGE BANNER (intérieure)
   ============================================================ */
.le-page-banner {
  background: var(--c-dark2);
  border-bottom: 0.5px solid var(--b-subtle);
  padding-top: 100px;
  padding-bottom: 48px;
  min-height: 280px;
}

.le-page-banner__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  margin-top: 8px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .le-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .le-logos-slide { flex: 0 0 calc(33.333% - 11px); }
  .le-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Grilles génériques — tablet */
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Variables réduites sur mobile pour éviter tout débordement */
  :root {
    --gutter:     20px;
    --section-py: 56px;
  }

  html, body { overflow-x: hidden; }

  /* Header légèrement plus haut sur mobile */
  .le-header__inner { height: 74px; }
  .le-header.is-scrolled .le-header__inner { height: 60px; }

  /* Quand le menu mobile est ouvert : bloque le scroll de page */
  body.le-menu-open { overflow: hidden; }

  .le-header__nav  { display: none; }
  .le-header__btn--espace { display: none; }
  .le-header__burger { display: flex; }

  /* Grilles génériques — mobile 1 colonne */
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; gap: 16px; }

  .le-hero__stats { flex-direction: column; gap: 20px; }
  .le-hero__ctas  { flex-direction: column; align-items: flex-start; }

  .le-section__header { flex-direction: column; align-items: flex-start; }

  .le-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .le-logos-slide { flex: 0 0 calc(50% - 8px); }
  .le-footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .le-footer__brand { grid-column: 1 / -1; }
  .le-footer__col:last-child { grid-column: 1 / -1; }
  .le-footer__bottom { flex-direction: column; align-items: flex-start; }
  .le-cta-band__btns { flex-direction: column; align-items: center; }

  /* Single article sidebar sous le contenu */
  .le-single-layout { grid-template-columns: 1fr; }
  .le-single__sidebar { position: static; }
}

@media (max-width: 480px) {
  :root {
    --gutter:     16px;
    --section-py: 44px;
  }

  .le-cat-grid { grid-template-columns: 1fr; }
  .le-logos-slide { flex: 0 0 calc(100% - 8px); }

  /* Hero stats inline sur très petit écran */
  .le-hero__stat-num { font-size: 28px; }
}

/* ============================================================
   PORTFOLIO (avada_portfolio + taxonomies portfolio_category)
   ============================================================ */
.le-portfolio-item__thumb {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.le-portfolio-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}

.le-portfolio-item:hover .le-portfolio-item__img { transform: scale(1.04); }

.le-portfolio-item__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.le-portfolio-item__cats { display: flex; gap: 6px; flex-wrap: wrap; }

.le-portfolio-item__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.le-portfolio-item__title a { color: var(--t-primary); }
.le-portfolio-item__title a:hover { color: var(--c-gold); }

.le-portfolio-item__excerpt {
  font-size: 13px;
  color: var(--t-secondary);
  line-height: 1.6;
}

/* Single portfolio */
.le-portfolio-single__hero {
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 48px;
  aspect-ratio: 16/6;
}

.le-portfolio-single__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.le-portfolio-single__layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

.le-portfolio-single__body { color: var(--t-secondary); line-height: 1.8; }
.le-portfolio-single__body p { margin-bottom: 1em; }
.le-portfolio-single__body h2,
.le-portfolio-single__body h3 { color: var(--t-primary); margin-bottom: .5em; }

.le-portfolio-single__meta {
  background: var(--c-dark2);
  border: 0.5px solid var(--b-subtle);
  border-radius: var(--r-lg);
  padding: 24px;
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.le-portfolio-single__meta-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--t-muted);
  margin-bottom: 8px;
}

.le-portfolio-single__meta-tags { display: flex; gap: 6px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .le-portfolio-single__layout { grid-template-columns: 1fr; }
  .le-portfolio-single__meta { position: static; }
}

@media (max-width: 768px) {
  .le-portfolio-grid.grid-3 { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE CONTENT (page.php)
   ============================================================ */
.le-page-content {
  max-width: 820px;
  margin-inline: auto;
  color: var(--t-secondary);
  line-height: 1.85;
  font-size: 16px;
}

.le-page-content h1,
.le-page-content h2,
.le-page-content h3,
.le-page-content h4 {
  color: var(--t-primary);
  margin-top: 2em;
  margin-bottom: .6em;
  line-height: 1.2;
}

.le-page-content h2 { font-size: clamp(20px, 2.2vw, 26px); }
.le-page-content h3 { font-size: clamp(17px, 1.8vw, 21px); }

.le-page-content p  { margin-bottom: 1.2em; }
.le-page-content ul,
.le-page-content ol { padding-left: 1.4em; margin-bottom: 1.2em; }
.le-page-content ul { list-style: disc; }
.le-page-content ol { list-style: decimal; }
.le-page-content li { margin-bottom: .4em; }

.le-page-content a  { color: var(--c-gold); text-decoration: underline; text-underline-offset: 3px; }
.le-page-content a:hover { color: var(--c-gold-light); }

.le-page-content img     { border-radius: var(--r-md); margin-block: 1.5em; }
.le-page-content blockquote {
  border-left: 3px solid var(--c-gold);
  margin: 1.5em 0;
  padding: 12px 20px;
  background: var(--c-dark2);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  color: var(--t-secondary);
  font-style: italic;
}

.le-page-links {
  margin-top: 40px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ============================================================
   SINGLE ARTICLE (single.php)
   ============================================================ */
.le-single__meta {
  font-size: 13px;
  color: var(--t-muted);
  margin-top: 12px;
}

.le-single-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 48px;
  align-items: start;
}

.le-single__thumbnail {
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 40px;
  aspect-ratio: 16/7;
}

.le-single__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.le-single__body {
  color: var(--t-secondary);
  line-height: 1.85;
  font-size: 16px;
}

.le-single__body h2,
.le-single__body h3,
.le-single__body h4 { color: var(--t-primary); margin-top: 2em; margin-bottom: .5em; }
.le-single__body p  { margin-bottom: 1.2em; }
.le-single__body ul,
.le-single__body ol { padding-left: 1.4em; margin-bottom: 1.2em; }
.le-single__body ul { list-style: disc; }
.le-single__body ol { list-style: decimal; }
.le-single__body a  { color: var(--c-gold); }

.le-single__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 0.5px solid var(--b-subtle);
}

.le-single__sidebar {
  position: sticky;
  top: 90px;
}

.le-single__sidebar-inner {
  background: var(--c-dark2);
  border: 0.5px solid var(--b-subtle);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.le-single__sidebar-block { display: flex; flex-direction: column; gap: 6px; }

/* ============================================================
   ARCHIVE GÉNÉRIQUE (archive.php)
   ============================================================ */
.le-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.le-archive-item__thumb {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.le-archive-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}

.le-archive-item:hover .le-archive-item__thumb img { transform: scale(1.04); }

.le-archive-item__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.le-archive-item__title { font-size: 16px; font-weight: 600; line-height: 1.3; }
.le-archive-item__title a { color: var(--t-primary); }
.le-archive-item__title a:hover { color: var(--c-gold); }

.le-archive-item__excerpt { font-size: 13px; color: var(--t-secondary); line-height: 1.6; }

.le-archive-item__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
  .le-archive-grid { grid-template-columns: repeat(2, 1fr); }
  .le-single-layout { grid-template-columns: 1fr; }
  .le-single__sidebar { position: static; }
}

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

/* ============================================================
   FILTRES — archive prestation / réalisation / portfolio
   ============================================================ */
.le-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.le-filter-btn {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 7px 16px;
  border-radius: var(--r-md);
  color: var(--t-secondary);
  background: var(--c-dark3);
  border: 0.5px solid var(--b-subtle);
  transition: color .2s, border-color .2s, background .2s;
  white-space: nowrap;
}

.le-filter-btn:hover {
  color: #fff;
  border-color: var(--b-mid);
}

.le-filter-btn.is-active {
  color: var(--c-gold);
  border-color: rgba(200, 164, 74, 0.4);
  background: rgba(200, 164, 74, 0.06);
}

/* ── Single prestation — barre de navigation (même style que l'archive) ── */
.le-prest-nav-bar {
  background: var(--c-dark2);
  border-bottom: 0.5px solid var(--b-subtle);
  padding: 16px 0;
}

/* Variante onglets (taxonomy term + single) */
.le-prest-nav-bar--tabs {
  background: none;
  border-bottom: 1px solid var(--b-subtle);
  padding: 0;
}
.le-prest-nav-bar--tabs .le-filters {
  gap: 0;
}
.le-prest-nav-bar--tabs .le-filter-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 16px 28px;
  margin-bottom: -1px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--t-secondary);
  transition: color .2s, border-color .2s;
}
.le-prest-nav-bar--tabs .le-filter-btn:hover {
  background: none;
  color: #fff;
  border-color: rgba(200,164,74,.35);
}
.le-prest-nav-bar--tabs .le-filter-btn.is-active {
  color: var(--c-gold);
  background: none;
  border-color: var(--c-gold);
}

/* ── Player vidéo — habillage ── */
.le-video-player {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #000;
  margin-bottom: 48px;
  box-shadow: 0 24px 80px rgba(0,0,0,.75), 0 0 0 1px rgba(200,164,74,.1);
}
.le-video-player iframe,
.le-video-player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   SINGLE PRESTATION — layout
   ============================================================ */
.le-prest-single {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.le-prest-content {
  font-size: 15px;
  line-height: 1.85;
  color: var(--t-secondary);
}

.le-prest-content h2,
.le-prest-content h3 {
  color: var(--t-primary);
  margin-top: 2em;
  margin-bottom: .5em;
}

.le-prest-content p  { margin-bottom: 1.2em; }
.le-prest-content ul,
.le-prest-content ol { padding-left: 1.4em; margin-bottom: 1.2em; }
.le-prest-content ul { list-style: disc; }

/* Bloc ps_prestation — shortcode remplacé par contenu réel */
.le-related-prestation {
  margin-top: 36px;
  padding: 28px;
  background: var(--c-dark3);
  border: 0.5px solid var(--b-subtle);
  border-radius: var(--r-lg);
}

.le-related-prestation__title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.le-related-prestation__title a { color: inherit; }
.le-related-prestation__title a:hover { color: var(--c-gold); }

.le-related-prestation__img {
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 20px;
  border: 0.5px solid var(--b-subtle);
}

.le-related-prestation__img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.le-related-prestation__content {
  font-size: 14px;
  line-height: 1.75;
  color: var(--t-secondary);
  margin-bottom: 16px;
}

.le-related-prestation__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-gold);
  text-decoration: none;
  transition: opacity .15s;
}

.le-related-prestation__link:hover { opacity: 0.75; }

@media (max-width: 1024px) {
  .le-prest-single { grid-template-columns: 1fr; }
}

/* ============================================================
   WOOCOMMERCE — LOGIN BANNER
   ============================================================ */
.le-login-banner {
  padding: 14px 0;
  background: rgba(108, 59, 191, 0.07);
  border-top: 0.5px solid rgba(108, 59, 191, 0.2);
  border-bottom: 0.5px solid rgba(108, 59, 191, 0.2);
  margin-bottom: 0;
}

.le-login-banner__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--t-secondary);
}

.le-login-banner__inner svg { flex-shrink: 0; color: var(--c-purple); }
.le-login-banner__inner a   { color: var(--c-purple); font-weight: 600; }
.le-login-banner__inner a:hover { text-decoration: underline; }

/* ============================================================
   WOOCOMMERCE — CATALOGUE LAYOUT (sidebar + content)
   ============================================================ */
.le-catalogue-layout {
  display: grid;
  grid-template-columns: 256px 1fr;
  gap: 40px;
  align-items: start;
}

.le-catalogue-sidebar { position: sticky; top: 90px; }

.le-sidebar-block {
  background: var(--c-dark3);
  border: 0.5px solid var(--b-subtle);
  border-radius: var(--r-lg);
  padding: 20px;
  margin-bottom: 12px;
}

.le-sidebar-block__title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--t-muted);
  margin-bottom: 14px;
}

.le-sidebar-cats {
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
}

.le-sidebar-cats li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--r-md);
  font-size: 13px;
  color: var(--t-secondary);
  transition: color .15s, background .15s;
}

.le-sidebar-cats li > a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.le-sidebar-cats li.is-active > a { color: var(--c-gold); }

.le-sidebar-cats__count {
  font-size: 11px;
  color: var(--t-muted);
  flex-shrink: 0;
}

.le-sidebar-cats--sub { padding-left: 16px; margin-top: 2px; }

.le-sidebar-cta {
  background: var(--c-dark3);
  border: 0.5px solid var(--b-subtle);
  border-radius: var(--r-lg);
  padding: 20px;
}

.le-sidebar-cta__title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.le-sidebar-cta__sub {
  font-size: 12px;
  color: var(--t-secondary);
  line-height: 1.5;
}

/* ── Toolbar ── */
.le-catalogue-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 0.5px solid var(--b-subtle);
}

.le-catalogue-toolbar__count {
  font-size: 13px;
  color: var(--t-muted);
}

.le-catalogue-toolbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── Products grid ── */
.le-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Subcategory cards ── */
.le-sub-cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 36px;
}

.le-sub-cat-card {
  display: flex;
  flex-direction: column;
  background: var(--c-dark3);
  border: 0.5px solid var(--b-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  transition: border-color .2s, transform .2s;
  cursor: pointer;
}

.le-sub-cat-card:hover { border-color: var(--b-mid); transform: translateY(-2px); }

.le-sub-cat-card__img {
  position: relative;
  height: 100px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

.le-sub-cat-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.le-sub-cat-card:hover .le-sub-cat-card__img img { transform: scale(1.05); }

.le-sub-cat-card__count {
  position: absolute;
  top: 7px;
  right: 7px;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: var(--r-sm);
  background: rgba(0,0,0,0.6);
  color: var(--c-gold);
}

.le-sub-cat-card__name {
  display: block;
  padding: 9px 11px;
  font-size: 12px;
  font-weight: 600;
  color: var(--t-secondary);
}

/* ── Pagination ── */
.le-pagination { margin-top: 40px; }
.le-pagination .woocommerce-pagination ul { display: flex; gap: 8px; list-style: none; }
.le-pagination .woocommerce-pagination a,
.le-pagination .woocommerce-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 600;
  background: var(--c-dark3);
  border: 0.5px solid var(--b-subtle);
  color: var(--t-secondary);
  transition: color .15s, border-color .15s;
}
.le-pagination .woocommerce-pagination a:hover { color: #fff; border-color: var(--b-mid); }
.le-pagination .woocommerce-pagination .current { color: var(--c-gold); border-color: rgba(200,164,74,0.4); }

/* ── Empty state ── */
.le-empty-state {
  text-align: center;
  padding: 64px 24px;
  color: var(--t-secondary);
}

/* ── Responsive catalogue ── */
@media (max-width: 1100px) {
  .le-catalogue-layout { grid-template-columns: 220px 1fr; gap: 28px; }
  .le-products-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .le-catalogue-layout  { grid-template-columns: 1fr; }
  .le-catalogue-sidebar { position: static; }
  .le-products-grid     { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 480px) {
  .le-products-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WOOCOMMERCE — PRODUCT CARD
   ============================================================ */
.le-product-card {
  background: var(--c-dark3);
  border: 0.5px solid var(--b-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s;
}

.le-product-card:hover { border-color: var(--b-mid); transform: translateY(-3px); }
.le-product-card--new  { border-color: rgba(200, 164, 74, 0.3); }

.le-product-card__img-wrap {
  display: block;
  height: 200px;
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,0.03);
}

.le-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform .35s;
}

.le-product-card:hover .le-product-card__img { transform: scale(1.04); }

.le-product-card__img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.le-product-card__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.le-product-card__body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.le-product-card__cat {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--t-muted);
}

.le-product-card__title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--t-primary);
}

.le-product-card__title a        { color: inherit; }
.le-product-card__title a:hover  { color: var(--c-gold); }

.le-product-card__price {
  font-size: 14px;
  color: var(--t-primary);
  margin-top: auto;
  padding-top: 8px;
}

.le-product-card__price .woocommerce-Price-amount { color: var(--c-gold); font-weight: 700; }

.le-product-card__actions {
  display: flex;
  gap: 7px;
  padding: 10px 14px 14px;
  border-top: 0.5px solid var(--b-subtle);
}

.le-product-card__btn-detail,
.le-product-card__btn-cart {
  font-size: 12px !important;
  padding: 7px 12px !important;
  flex: 1;
  justify-content: center;
}

.le-price-login       { font-size: 12px; color: var(--t-muted); font-style: italic; }
.le-price-login:hover { color: var(--c-purple); }

/* ============================================================
   LANDING PAGE — NOS PRESTATIONS (catégories portfolio)
   ============================================================ */
.le-prest-cats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.le-prest-cat-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-xl, 20px);
  overflow: hidden;
  background: var(--c-dark3);
  border: 0.5px solid var(--b-subtle);
  text-decoration: none;
  transition: border-color .25s, transform .25s;
}

.le-prest-cat-card:hover { border-color: var(--b-mid); transform: translateY(-4px); }

.le-prest-cat-card__img {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: var(--c-dark2);
}

.le-prest-cat-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.le-prest-cat-card:hover .le-prest-cat-card__img img { transform: scale(1.06); }

.le-prest-cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,8,16,0.92) 0%, rgba(5,8,16,0.3) 55%, transparent 100%);
  z-index: 1;
}

.le-prest-cat-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px 24px;
  z-index: 2;
}

.le-prest-cat-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--c-dark3) 0%, rgba(108,59,191,0.15) 100%);
}

.le-prest-cat-card__title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}

.le-prest-cat-card__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  margin-bottom: 14px;
}

.le-prest-cat-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-gold);
  letter-spacing: 0.3px;
  transition: gap .2s;
}

.le-prest-cat-card:hover .le-prest-cat-card__cta { gap: 10px; }

/* Mini-thumbnails supplémentaires */
.le-prest-cat-card__thumbs {
  display: flex;
  gap: 2px;
  height: 72px;
}

.le-prest-cat-card__sub-img {
  flex: 1;
  overflow: hidden;
}

.le-prest-cat-card__sub-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}

.le-prest-cat-card:hover .le-prest-cat-card__sub-img img { transform: scale(1.08); }

@media (max-width: 768px) {
  .le-prest-cats-grid { grid-template-columns: 1fr; }
  .le-prest-cat-card__img { height: 240px; }
}

/* ============================================================
   PAGE SOCIÉTÉ — intro, timeline, équipe, références
   ============================================================ */

/* Subtitle du banner */
.le-page-banner__sub {
  color: var(--t-secondary);
  font-size: 16px;
  max-width: 560px;
  margin-top: 12px;
  line-height: 1.7;
}

/* Intro 1/3 - 2/3 */
.le-societe-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.le-societe-intro__img {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: sticky;
  top: 90px;
}

.le-societe-intro__img img { width: 100%; height: auto; display: block; }

.le-societe-intro__text p { color: var(--t-secondary); line-height: 1.8; font-size: 15px; }
.le-societe-intro__text p + p { margin-top: 1em; }

/* Timeline */
.le-timeline { display: flex; flex-direction: column; }

.le-timeline__item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0 48px;
  padding: 40px 0;
}

.le-timeline__item + .le-timeline__item {
  border-top: 0.5px solid var(--b-subtle);
}

.le-timeline__year {
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 800;
  color: var(--c-gold);
  line-height: 1;
  letter-spacing: -2px;
  padding-top: 6px;
  opacity: 0.9;
}

.le-timeline__content {
  padding-left: 28px;
  border-left: 2px solid rgba(200, 164, 74, 0.2);
  position: relative;
}

.le-timeline__content::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--c-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--c-dark2);
}

.le-timeline__date {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--c-gold);
  margin-bottom: 10px;
}

.le-timeline__text {
  color: var(--t-secondary);
  line-height: 1.75;
  font-size: 15px;
}

.le-timeline__img {
  margin-top: 20px;
  border-radius: var(--r-md);
  max-height: 220px;
  width: auto;
  object-fit: contain;
  display: block;
}

.le-timeline__img--small { max-height: 120px; }

.le-timeline__imgs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.le-timeline__imgs .le-timeline__img { margin-top: 0; max-height: 160px; flex: 1; min-width: 0; }

/* Dirigeant */
.le-dirigeant {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
}

.le-dirigeant__photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: sticky;
  top: 90px;
}

.le-dirigeant__photo img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }

.le-dirigeant__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--t-primary);
  line-height: 1.2;
}

.le-dirigeant__title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--c-gold);
  margin-top: 6px;
  margin-bottom: 20px;
}

.le-dirigeant__bio {
  color: var(--t-secondary);
  line-height: 1.75;
  font-size: 15px;
}

.le-dirigeant__bio + .le-dirigeant__bio { margin-top: 12px; }

.le-dirigeant__quote {
  margin-top: 24px;
  padding: 16px 20px;
  border-left: 3px solid var(--c-gold);
  background: var(--c-dark2);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-style: italic;
  color: var(--t-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.le-dirigeant__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity .2s;
}

.le-dirigeant__linkedin:hover { opacity: 0.75; }

/* Équipes techniques */
.le-equipes-tech {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 0.5px solid var(--b-subtle);
}

.le-equipes-tech__intro {
  color: var(--t-secondary);
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 40px;
  font-size: 16px;
}

/* Grille équipe ACF */
.le-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.le-team-card {
  background: var(--c-dark3);
  border: 0.5px solid var(--b-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .25s, transform .25s var(--ease);
}

.le-team-card:hover {
  border-color: rgba(200, 164, 74, 0.25);
  transform: translateY(-2px);
}

.le-team-card__photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--c-dark2);
}

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

.le-team-card__body {
  padding: 14px 16px;
}

.le-team-card__name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.le-team-card__role {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--c-gold);
  margin-bottom: 8px;
}

.le-team-card__bio {
  font-size: 12px;
  color: var(--t-secondary);
  line-height: 1.5;
  margin-bottom: 10px;
}

.le-team-card__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--t-muted);
  transition: color .15s;
  text-decoration: none;
}

.le-team-card__linkedin:hover { color: var(--c-gold); }

/* Logos références */
.le-refs-intro {
  color: var(--t-secondary);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.7;
  font-size: 15px;
}

.le-refs-logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}

.le-refs-logo-item {
  background: rgba(255, 255, 255, 0.03);
  border: 0.5px solid var(--b-subtle);
  border-radius: var(--r-md);
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
  text-decoration: none;
}

a.le-refs-logo-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--b-mid);
}

.le-refs-logo-item img {
  max-height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(1) brightness(1.8) opacity(0.7);
  transition: filter .25s;
}

a.le-refs-logo-item:hover img { filter: grayscale(0) brightness(1) opacity(1); }

/* Responsive société */
@media (max-width: 1024px) {
  .le-societe-intro { gap: 40px; }
  .le-dirigeant { grid-template-columns: 200px 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .le-societe-intro { grid-template-columns: 1fr; }
  .le-societe-intro__img { position: static; max-height: 340px; }
  .le-societe-intro__img img { max-height: 340px; object-fit: cover; width: 100%; }

  .le-timeline__item { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
  .le-timeline__year { font-size: 36px; }
  .le-timeline__content { border-left: none; padding-left: 0; }
  .le-timeline__content::before { display: none; }

  .le-dirigeant { grid-template-columns: 1fr; }
  .le-dirigeant__photo { position: static; max-width: 200px; }

  .le-refs-logos { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   PAGES LÉGALES (CGU, Politique, etc.)
   ============================================================ */
.le-legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}

.le-legal-toc {
  position: sticky;
  top: calc(var(--header-h, 68px) + 24px);
}

.le-legal-content {
  max-width: none;
  margin: 0;
}

.le-legal-content h2 {
  scroll-margin-top: calc(var(--header-h, 68px) + 24px);
}

@media (max-width: 900px) {
  .le-legal-layout {
    grid-template-columns: 1fr;
  }
  .le-legal-toc {
    position: static;
  }
}

/* ============================================================
   RÉFÉRENCES — grille élargie (page-nos-references)
   ============================================================ */
.le-refs-logos--large {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .le-refs-logos--large { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .le-refs-logos--large { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   HUB PAGES — grille de navigation (qui-sommes-nous, informations…)
   ============================================================ */
.le-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.le-hub-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.le-hub-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, transform .2s;
}

a.le-hub-card:hover {
  border-color: var(--c-gold);
  transform: translateY(-2px);
}

.le-hub-card--static {
  cursor: default;
}

.le-hub-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,164,74,.1);
  border-radius: 10px;
  color: var(--c-gold);
}

.le-hub-card__body {
  flex: 1;
  min-width: 0;
}

.le-hub-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--t-primary);
  margin-bottom: 8px;
}

.le-hub-card__desc {
  font-size: 14px;
  color: var(--t-secondary);
  line-height: 1.6;
  margin: 0;
}

.le-hub-card__arrow {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--c-gold);
  align-self: center;
  opacity: 0;
  transition: opacity .2s, transform .2s;
}

a.le-hub-card:hover .le-hub-card__arrow {
  opacity: 1;
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .le-hub-grid,
  .le-hub-grid--3 { grid-template-columns: 1fr; }
}

/* ============================================================
   PLAN DU SITE
   ============================================================ */
.le-sitemap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

.le-sitemap__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--t-primary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.le-sitemap__title a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}

.le-sitemap__title a:hover { color: var(--c-gold); }

.le-sitemap__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.le-sitemap__list li::before {
  content: '→ ';
  color: var(--c-gold);
  font-size: 12px;
}

.le-sitemap__list a {
  font-size: 14px;
  color: var(--t-secondary);
  text-decoration: none;
  transition: color .2s;
}

.le-sitemap__list a:hover { color: var(--c-gold); }

@media (max-width: 900px) {
  .le-sitemap { grid-template-columns: repeat(2, 1fr); }
}

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

/* ============================================================
   HERO TERM — modificateur du héro home pour les pages catégorie
   Réutilise .le-hero, .le-hero__bgs, .le-hero__bg-iframe (déjà définis)
   Seuls la hauteur, l'alignement et le dégradé diffèrent
   ============================================================ */

/* Hauteur réduite vs héro home (100vh) */
.le-hero--term {
  min-height: 72vh;
  height: 72vh;
  max-height: 760px;
  align-items: flex-end; /* texte ancré en bas */
}

/* Breadcrumb ancré en haut à gauche — sous le header fixe (68px + marge),
   sinon il passait sous le logo */
.le-hero--term__top {
  position: absolute;
  top: 96px;
  left: 0;
  right: 0;
  z-index: 3;
  opacity: .75;
}

/* Contenu texte en bas */
.le-hero--term .le-hero__content {
  padding-top: 0;
  padding-bottom: 56px;
  width: 100%;
}

/* Dégradé bas→haut au lieu de gauche→droite */
.le-hero--term .le-hero__overlay::after {
  background: linear-gradient(
    to bottom,
    transparent        0%,
    rgba(4,7,14,.04)  35%,
    rgba(4,7,14,.60)  70%,
    rgba(4,7,14,.95) 100%
  );
}

/* Titre et description overlay */
.le-term-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.5px;
  margin: 10px 0 14px;
}
.le-term-hero__sub {
  font-size: 15px;
  color: rgba(255,255,255,.72);
  max-width: 560px;
  line-height: 1.75;
  margin: 0;
}

/* Points de navigation */
.le-term-hero__dots {
  position: absolute;
  bottom: 28px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 4;
}
.le-term-hero__dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 4px;
  background: rgba(255,255,255,.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .3s ease, width .35s ease;
}
.le-term-hero__dot.is-active {
  width: 24px;
  background: var(--c-gold);
}

@media (max-width: 768px) {
  .le-hero--term { min-height: 60vh; height: 60vh; }
  .le-hero--term__top { top: 90px; } /* sous le header mobile (74px) */
  .le-hero--term .le-hero__content { padding-bottom: 36px; }
  .le-term-hero__dots { right: 20px; bottom: 16px; }
}

/* ============================================================
   PORTFOLIO MASONRY — grille photo avec première image en vedette
   Utilisée sur les pages catégorie de métier et fiches prestation
   ============================================================ */
/* Portfolio masonry — 2 grands (50 % chacun, 16:9) + n×3 petits (33 %, 4:3) */
.le-portfolio-masonry {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.le-portfolio-masonry__item {
  display: block;
  grid-column: span 2;
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 0.5px solid var(--b-subtle);
  background: var(--c-dark3);
}

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

.le-portfolio-masonry__item:hover img { transform: scale(1.04); }

/* Les 2 premières images : largeur 50 %, format 16:9 */
.le-portfolio-masonry__item:nth-child(1),
.le-portfolio-masonry__item:nth-child(2),
.le-portfolio-masonry__item--featured {
  grid-column: span 3;
  aspect-ratio: 16/9;
}

@media (max-width: 900px) {
  .le-portfolio-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
  .le-portfolio-masonry__item,
  .le-portfolio-masonry__item:nth-child(1),
  .le-portfolio-masonry__item:nth-child(2),
  .le-portfolio-masonry__item--featured {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }
}

@media (max-width: 480px) {
  .le-portfolio-masonry {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PAGE ÉQUIPES TECHNIQUES — layout deux colonnes (texte + featured image)
   ============================================================ */
.le-equipes-tech--with-photo {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

.le-equipes-tech__photo {
  position: sticky;
  top: 90px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 0.5px solid var(--b-subtle);
  max-height: 520px;
}

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

@media (max-width: 900px) {
  .le-equipes-tech--with-photo {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .le-equipes-tech__photo {
    position: static;
    max-height: 340px;
  }
}

/* ============================================================
   PAGE RECRUTEMENT — layout deux colonnes (texte + photo)
   ============================================================ */
.le-recruit-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

.le-recruit-layout__photo {
  position: sticky;
  top: 90px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 0.5px solid var(--b-subtle);
}

@media (max-width: 900px) {
  .le-recruit-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .le-recruit-layout__photo {
    position: static;
    max-width: 480px;
  }
}

/* ============================================================
   TAXONOMY TERM — mode classique (texte + portfolio en colonnes)
   ============================================================ */
.le-term-classic {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: start;
}

.le-term-classic__portfolio {
  position: sticky;
  top: 90px;
}

@media (max-width: 960px) {
  .le-term-classic {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .le-term-classic__portfolio {
    position: static;
  }
}

/* ============================================================
   RETOURS CLIENT 07/2026 — header, logo, références
   ============================================================ */

/* Logo image : pas de capsule/cadre autour du logo uploadé
   (la règle capsule .le-header__logo plus haut encadrait aussi l'image) */
.le-header__logo--img,
.le-header__logo--img:hover {
  /* Respiration autour du logo, sans fond ni cadre */
  padding: 8px 0;
  background: none;
  border-color: transparent;
  box-shadow: none;
  margin-left: 0;
  /* Le logo peut dépasser de la barre de nav au lieu d'être rogné,
     et passe au-dessus des filets/bordures du header */
  overflow: visible;
  position: relative;
  z-index: 20;
}

/* Au scroll : réduction plus marquée pour se caler dans la barre (54px).
   !important nécessaire : le JS pose un scale(0.78) en style inline. */
.le-header.is-scrolled .le-header__logo--img {
  transform: scale(0.58) !important;
}

/* Logo un peu plus grand avant le scroll (le JS le ramène à scale(.78) après) */
.le-header:not(.is-scrolled) .le-header__logo--img {
  transform: scale(1.12);
}

/* Voile dégradé derrière le header transparent : nav lisible sur la vidéo */
.le-header:not(.is-scrolled)::before {
  background: linear-gradient(to bottom, rgba(5, 8, 16, 0.72), rgba(5, 8, 16, 0));
}

/* Logos références : cartes claires — les logos sombres ou sur fond blanc
   étaient illisibles avec l'ancien filtre grayscale/brightness sur fond sombre */
.le-refs-logo-item {
  background: #fff;
  border-radius: var(--r-md);
  padding: 32px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logos en couleurs, pleine opacité et agrandis sur les cartes blanches */
.le-refs-logo-item img {
  filter: none;
  opacity: 1;
  max-height: 140px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}
