/* =========================================================
   DIBA SERVICES — Feuille de styles principale
   Palette : bleu nuit (structure) + rouge brique (identité)
   ========================================================= */

:root {
  /* couleurs de la charte, relevées sur le logo officiel */
  --navy-900: #16143A;
  --navy-800: #25215D;
  --navy-700: #322D75;
  --navy-600: #443E92;
  --red-600: #CB1F41;
  --red-500: #E03459;
  --red-100: #FBE7EC;
  --sand: #F7F2EC;          /* crème chaude */
  --gray-050: #FBF8F5;      /* blanc cassé chaud */
  --gray-100: #EDE7E1;
  --gray-300: #D6CEC6;
  --gray-500: #6D6E71;
  --gray-700: #3A3B40;
  --white: #FFFFFF;

  --ff-display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --ff-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1200px;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(80, 60, 50, .05), 0 6px 18px rgba(80, 60, 50, .06);
  --shadow-md: 0 14px 38px rgba(80, 60, 50, .11);
  --shadow-lg: 0 30px 70px rgba(60, 45, 40, .16);
  --header-h: 84px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

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

a { color: var(--red-600); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--navy-800); }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  color: var(--navy-800);
  line-height: 1.08;
  letter-spacing: .01em;
  margin: 0 0 .5em;
  font-weight: 700;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.1rem, 10.4vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1.1em; }
ul { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin-bottom: .4em; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy-800); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }

.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section--tight { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.section--alt { background: var(--gray-050); }
.section--sand { background: var(--sand); }
.section--dark { background: var(--gray-050); }        /* anciennement bleu nuit plein */
.section--white { background: #fff; }

/* ---------- En-têtes de section ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--ff-body);
  font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--red-600); margin-bottom: .9rem;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--red-600); }


.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 3.6rem); }
.section-head p { font-size: 1.06rem; color: var(--gray-500); margin-bottom: 0; }

/* titre à gauche, chapô à droite : plus éditorial qu'un bloc centré */
.section-head--center {
  max-width: none; display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(1.2rem, 4vw, 3.5rem); align-items: end;
  padding-bottom: 1.6rem; border-bottom: 1px solid var(--gray-100);
}
.section-head--center .eyebrow { grid-column: 1; grid-row: 1; }
.section-head--center h2 { grid-column: 1; grid-row: 2; margin-bottom: 0; }
.section-head--center > p:not(.eyebrow) { grid-column: 2; grid-row: 2; padding-bottom: .35rem; }
@media (max-width: 860px) {
  .section-head--center { grid-template-columns: 1fr; align-items: start; gap: .9rem; }
  .section-head--center .eyebrow,
  .section-head--center h2,
  .section-head--center > p:not(.eyebrow) { grid-column: 1; grid-row: auto; }
}


/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.7rem;
  font-family: var(--ff-body); font-size: .95rem; font-weight: 700;
  letter-spacing: .03em;
  border: 2px solid transparent; border-radius: 999px;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--red-600); color: #fff; box-shadow: 0 10px 24px rgba(203, 31, 65, .3); }
.btn--primary:hover { background: var(--red-500); color: #fff; }
.btn--ghost { border-color: var(--gray-300); color: var(--navy-800); background: #fff; }
.btn--ghost:hover { border-color: var(--navy-800); background: var(--navy-800); color: #fff; }
.btn--outline { border-color: var(--navy-800); color: var(--navy-800); }
.btn--outline:hover { background: var(--navy-800); color: #fff; }
.btn--wa { background: #25D366; color: #06301A; }
.btn--wa:hover { background: #1EBE5B; color: #06301A; }
.btn--block { width: 100%; }

/* ---------- En-tête / navigation ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease), height .3s var(--ease);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.header.is-stuck {
  background: rgba(255, 255, 255, .94); backdrop-filter: blur(12px);
  border-bottom-color: var(--gray-100); box-shadow: var(--shadow-sm); height: 72px;
}

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand__logo { height: 54px; width: auto; transition: height .3s var(--ease); }
.header.is-stuck .brand__logo { height: 46px; }
.brand__logo--fonce { display: none; }
.header.is-stuck .brand__logo--clair { display: none; }
.header.is-stuck .brand__logo--fonce { display: block; }

.nav { display: flex; align-items: center; gap: clamp(1rem, 1.9vw, 1.7rem); }
.nav__link {
  position: relative;
  font-size: .93rem; font-weight: 600; letter-spacing: .02em;
  color: #fff; padding: .35rem 0; text-shadow: 0 1px 10px rgba(22, 20, 58, .4);
}
.header.is-stuck .nav__link { color: var(--navy-800); text-shadow: none; }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--red-600); transition: width .25s var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__link:hover, .nav__link.is-active { color: #fff; }
.header.is-stuck .nav__link:hover, .header.is-stuck .nav__link.is-active { color: var(--red-600); }

.header .btn--header { padding: .7rem 1.3rem; font-size: .88rem; }

.burger {
  display: none; width: 46px; height: 46px; padding: 0;
  border: 0; border-radius: 12px; background: rgba(255, 255, 255, .18); cursor: pointer;
}
.header.is-stuck .burger { background: var(--gray-100); }
.burger span { display: block; width: 22px; height: 2px; margin: 4px auto; background: #fff; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.header.is-stuck .burger span { background: var(--navy-800); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Héros ---------- */
.hero {
  position: relative;
  min-height: min(100svh, 880px);
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 7rem;
  color: #fff;
  overflow: hidden;
  background: var(--navy-900);
}

/* visuels de fond : fondu enchaîné + lent rapproché */
.hero__fond { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.1s var(--ease);
  will-change: opacity, transform;
}
.hero__slide.is-active { opacity: 1; animation: respiration 14s ease-out forwards; }
@keyframes respiration {
  from { transform: scale(1.04); }
  to   { transform: scale(1.13); }
}
/* voile dégradé : le texte reste lisible, l'image reste visible */
.hero__fond::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(22, 20, 58, .90) 0%, rgba(22, 20, 58, .74) 42%, rgba(22, 20, 58, .38) 100%),
    linear-gradient(to top, rgba(22, 20, 58, .55) 0%, transparent 38%);
}

/* halo qui suit le pointeur : la lumière réagit au survol du visuel */
.hero__halo {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0; transition: opacity .4s var(--ease);
  background: radial-gradient(320px circle at var(--hx, 50%) var(--hy, 50%),
              rgba(255, 255, 255, .14), rgba(224, 52, 89, .10) 42%, transparent 68%);
}
.hero.est-survole .hero__halo { opacity: 1; }

.hero__inner { position: relative; z-index: 2; }
.hero__inner > * { max-width: 760px; }

/* les textes se succèdent avec les visuels ; on réserve la hauteur du plus grand */
.hero__textes { display: grid; }
.hero__texte { grid-area: 1 / 1; opacity: 0; transform: translateY(14px); pointer-events: none; }
.hero__texte.is-active {
  opacity: 1; transform: none; pointer-events: auto;
  transition: opacity .6s var(--ease) .12s, transform .6s var(--ease) .12s;
}
.hero__texte > * { max-width: 760px; }

/* même dessin pour le titre principal et ses variantes */
.hero h1, .hero__titre {
  font-family: var(--ff-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(2.1rem, 10.4vw, 4.6rem); line-height: 1.08; letter-spacing: .01em;
  color: #fff; margin: 0 0 1.1rem; text-shadow: 0 2px 24px rgba(22, 20, 58, .35);
}
.hero h1 em, .hero__titre em { font-style: normal; color: var(--red-500); }

.hero__tag {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .5rem 1.1rem; margin-bottom: 1.7rem;
  background: rgba(255, 255, 255, .12); backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .26); border-radius: 999px;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: #fff;
}
.hero__tag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--red-500); }

.hero__slogan {
  font-family: var(--ff-display); font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  text-transform: none; color: rgba(255, 255, 255, .93); margin-bottom: 1.1rem;
}
.hero__lead { font-size: 1.08rem; color: rgba(255, 255, 255, .8); max-width: 610px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

/* pastilles de navigation entre les visuels */
.hero__pagination {
  position: absolute; z-index: 3; left: 50%; bottom: 2.4rem;
  transform: translateX(-50%);
  width: min(100% - 2.5rem, var(--container));
  display: flex; gap: .6rem;
}
.hero__puce {
  width: 52px; height: 4px; padding: 0; border: 0; border-radius: 2px; cursor: pointer;
  background: rgba(255, 255, 255, .32); overflow: hidden;
}
.hero__puce span { display: block; height: 100%; width: 0; background: var(--red-500); }
.hero__puce.is-active span { width: 100%; transition: width 6.2s linear; }
.hero__puce:hover { background: rgba(255, 255, 255, .5); }

/* invitation à faire défiler */
.hero__defiler {
  position: absolute; z-index: 3; right: max(1.25rem, calc((100vw - var(--container)) / 2)); bottom: 3.4rem;
  display: grid; justify-items: center; gap: .5rem;
  color: rgba(255, 255, 255, .75);
}
.hero__defiler span { display: block; width: 1px; height: 38px; background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .6)); }
.hero__defiler svg { animation: descendre 1.9s ease-in-out infinite; }
.hero__defiler:hover { color: #fff; }
@keyframes descendre {
  0%, 100% { transform: translateY(0); opacity: .75; }
  50%      { transform: translateY(5px); opacity: 1; }
}

/* ---------- Chiffres clés ---------- */
.chiffres { background: var(--gray-050); padding: clamp(2.5rem, 5vw, 3.5rem) 0; }
.hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(.8rem, 1.6vw, 1.2rem);
}
.stat {
  background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius);
  padding: 1.5rem 1.4rem; box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat__value { font-family: var(--ff-display); font-size: clamp(2rem, 3.6vw, 2.9rem); color: var(--navy-800); line-height: 1; font-variant-numeric: tabular-nums; }
.stat__value span { color: var(--red-600); }
.stat__label { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-500); margin-top: .55rem; }

/* ---------- Bandeau de confiance ---------- */
.trust { background: var(--red-600); color: #fff; padding: 1.15rem 0; }
.trust__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .8rem 2.6rem; font-size: .92rem; font-weight: 600; }
.trust__item { display: inline-flex; align-items: center; gap: .55rem; }
.trust__item svg { flex-shrink: 0; color: rgba(255, 255, 255, .85); }

/* ---------- Grilles génériques ---------- */
.grid { display: grid; gap: clamp(1.2rem, 2.4vw, 1.8rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }

/* ---------- Cartes ---------- */
.card {
  background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius);
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gray-300); }
.card p:last-child { margin-bottom: 0; }

.card--flat:hover { transform: none; box-shadow: none; }

.card__icon {
  display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 1.2rem;
  border-radius: 14px; background: var(--red-100); color: var(--red-600);
}
.card__num {
  font-family: var(--ff-display); font-size: 1rem; letter-spacing: .12em;
  color: var(--red-600); margin-bottom: .6rem; display: block;
}

/* Identité / engagement */
.pillar { border-left: 3px solid var(--red-600); padding-left: 1.5rem; margin-bottom: 2rem; }
.pillar:last-child { margin-bottom: 0; }
.pillar h3 { margin-bottom: .55rem; }

.vm-card {
  position: relative; background: #fff; border: 1px solid var(--gray-100);
  border-top: 3px solid var(--red-600); border-radius: var(--radius);
  padding: clamp(1.8rem, 3vw, 2.6rem); box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.vm-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.vm-card__icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; background: var(--red-100); color: var(--red-600); margin-bottom: 1.3rem; }
.vm-card p:last-child { margin-bottom: 0; }

/* ---------- Organigramme ---------- */
.org { --line: var(--gray-300); }
.org__top { display: flex; justify-content: center; }
.org__node {
  background: #fff; border: 1px solid var(--gray-100); border-top: 4px solid var(--red-600);
  border-radius: var(--radius); padding: 1.5rem; text-align: center; box-shadow: var(--shadow-sm);
}
.org__node--lead { background: var(--navy-800); border-color: var(--navy-800); border-top-color: var(--red-600); color: #fff; max-width: 420px; }
.org__role { font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--red-600); font-weight: 700; }
.org__node--lead .org__role { color: var(--red-500); }
.org__name { font-family: var(--ff-display); font-size: 1.45rem; text-transform: uppercase; color: var(--navy-800); margin-top: .35rem; }
.org__node--lead .org__name { color: #fff; font-size: 1.7rem; }

.org__connector { display: flex; justify-content: center; }
.org__connector span { display: block; width: 2px; height: 40px; background: var(--line); }

.org__branches { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.2vw, 1.6rem); position: relative; }
.org__branches::before {
  content: ""; position: absolute; top: -20px; left: 16.66%; right: 16.66%; height: 2px; background: var(--line);
}
.org__branch { position: relative; padding-top: 20px; }
.org__branch::before { content: ""; position: absolute; top: -20px; left: 50%; width: 2px; height: 20px; background: var(--line); }
.org__dept {
  height: 100%;
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius);
  padding: 1.7rem 1.4rem; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.org__dept:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.org__dept-icon { display: grid; place-items: center; width: 52px; height: 52px; margin: 0 auto 1rem; border-radius: 50%; background: var(--navy-800); color: #fff; }
.org__dept h3 { font-size: 1.1rem; margin-bottom: .2rem; min-height: 2.2em; display: flex; align-items: center; justify-content: center; }
.org__dept .org__sub { font-size: .82rem; color: var(--gray-500); text-transform: none; letter-spacing: 0; }
.org__people { margin-top: 1.2rem; padding-top: 1.1rem; border-top: 1px dashed var(--gray-300); font-size: .93rem; }
.org__people dt { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gray-500); }
.org__people dd { margin: .15rem 0 .8rem; font-weight: 700; color: var(--navy-800); }
.org__people dd:last-child { margin-bottom: 0; }

/* missions dépliables de chaque département */
.org__bascule {
  display: inline-flex; align-items: center; gap: .45rem; margin-top: 1.1rem;
  padding: .5rem 1rem; cursor: pointer;
  background: transparent; border: 1px solid var(--gray-300); border-radius: 999px;
  font-family: inherit; font-size: .82rem; font-weight: 700; color: var(--navy-800);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.org__bascule:hover { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.org__bascule svg { transition: transform .25s var(--ease); }
.org__bascule[aria-expanded="true"] svg { transform: rotate(180deg); }
.org__missions { overflow: hidden; }
.org__missions ul {
  list-style: none; padding: 1rem 0 0; margin: 0;
  text-align: left; font-size: .88rem; color: var(--gray-500);
}
.org__missions li { position: relative; padding-left: 1.2rem; margin-bottom: .45rem; }
.org__missions li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px; border-radius: 2px; background: var(--red-600);
}
.js .org__missions { transition: height .32s var(--ease); }

/* ---------- Services ---------- */
.service h3 { display: flex; align-items: baseline; gap: .6rem; }
.service ul { list-style: none; padding: 0; margin: 1rem 0 0; }
.service li { position: relative; padding-left: 1.4rem; font-size: .95rem; color: var(--gray-500); }
.service li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 7px; height: 7px; border-radius: 2px; background: var(--red-600);
}

/* carte vedette : rompt la régularité de la grille */
.grid--3 .service:first-child {
  grid-column: span 2;
  background: var(--navy-800); border-color: var(--navy-800); color: rgba(255, 255, 255, .76);
}
.grid--3 .service:first-child .card__icon { background: rgba(255, 255, 255, .12); color: #fff; width: 62px; height: 62px; }
.grid--3 .service:first-child .card__num { color: var(--red-500); }
.grid--3 .service:first-child h3 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2.05rem); }
.grid--3 .service:first-child > p { font-size: 1.05rem; max-width: 46ch; }
.grid--3 .service:first-child ul { columns: 2; column-gap: 2rem; }
.grid--3 .service:first-child li { color: rgba(255, 255, 255, .72); break-inside: avoid; }
.grid--3 .service:first-child li::before { background: var(--red-500); }
.grid--3 .service:first-child:hover { border-color: var(--navy-700); }
@media (max-width: 720px) {
  .grid--3 .service:first-child { grid-column: span 1; }
  .grid--3 .service:first-child ul { columns: 1; }
}

.prestations { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1rem; margin-top: 2.5rem; }
.prestation {
  background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem; font-weight: 600; color: var(--navy-800); font-size: .95rem;
  display: flex; align-items: center; gap: .7rem;
}
.prestation svg { color: var(--red-600); flex-shrink: 0; }

/* Bandeau catalogue WhatsApp */
.catalogue {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.6rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.6rem, 3.2vw, 2.4rem);
  background: var(--navy-800); color: rgba(255, 255, 255, .78);
  border-radius: var(--radius);
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 44px 44px;
}
.catalogue__text { max-width: 640px; }
.catalogue .eyebrow { color: var(--red-500); margin-bottom: .6rem; }
.catalogue h3 { color: #fff; margin-bottom: .5rem; }
.catalogue p { margin-bottom: 0; }
.catalogue .btn { flex-shrink: 0; }

/* ---------- Galerie de plans ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.plans {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
  gap: clamp(1.1rem, 2.2vw, 1.7rem);
  margin-bottom: clamp(2.5rem, 5vw, 3.6rem);
}
.plans:last-of-type { margin-bottom: 0; }
.plan { margin: 0; }

/* barre de filtres de la galerie */
.filtres { display: none; }   /* sans JavaScript, les boutons seraient inertes */
.js .filtres { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: clamp(2rem, 4vw, 2.8rem); }
.filtre {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem 1.2rem; cursor: pointer;
  background: #fff; border: 1px solid var(--gray-100); border-radius: 999px;
  font-family: inherit; font-size: .9rem; font-weight: 700; color: var(--navy-800);
  transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease);
}
.filtre span {
  font-size: .74rem; font-weight: 700; padding: .1rem .45rem; border-radius: 999px;
  background: var(--gray-100); color: var(--gray-500);
}
.filtre:hover { border-color: var(--red-600); transform: translateY(-2px); }
.filtre.is-active { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.filtre.is-active span { background: rgba(255, 255, 255, .18); color: #fff; }

/* un visuel écarté par le filtre se retire en douceur */
.plan.est-filtre { display: none; }
.groupe.est-filtre, .plans.est-filtre { display: none; }
.plans__vide { color: var(--red-600); font-weight: 600; }

/* intitulé de groupe */
.groupe { margin-bottom: 1.6rem; }
.groupe__titre {
  display: flex; align-items: center; gap: .9rem;
  font-size: clamp(1.15rem, 2vw, 1.5rem); margin-bottom: .4rem;
}
.groupe__titre::before { content: ""; width: 26px; height: 3px; background: var(--red-600); flex-shrink: 0; }
.groupe__chapo { margin: 0; font-size: .96rem; color: var(--gray-500); max-width: 760px; }

.plan__view {
  display: block; width: 100%; padding: 0; position: relative;
  background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius);
  overflow: hidden; cursor: zoom-in;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.plan__view:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--red-600); }
/* cadre carré : les légendes s'alignent quelles que soient les proportions */
.plan__view img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: contain; background: #fff; padding: .5rem; display: block; }
/* un plan doit rester entier ; un rendu photo remplit son cadre */
.plan--photo .plan__view img { object-fit: cover; padding: 0; }

.plan__zoom {
  position: absolute; right: .9rem; bottom: .9rem;
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: var(--red-600); color: #fff; box-shadow: var(--shadow-sm);
  opacity: 0; transform: translateY(6px); transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.plan__view:hover .plan__zoom, .plan__view:focus-visible .plan__zoom { opacity: 1; transform: none; }

.plan figcaption { padding: 1rem .2rem 0; }
.plan__niveau {
  display: block; font-family: var(--ff-display); font-size: 1.25rem; text-transform: uppercase;
  color: var(--navy-800); line-height: 1.15;
}
.plan__desc { display: block; font-size: .92rem; color: var(--gray-500); margin-top: .2rem; }

.plans__note { margin: 2rem 0 0; text-align: center; font-size: .9rem; color: var(--gray-500); }

/* ---------- Visionneuse ---------- */
.lightbox { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; }
.lightbox[hidden] { display: none; }  /* sinon display:grid l'emporte sur l'attribut hidden */
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(22, 20, 58, .92); }
.lightbox__inner {
  position: relative; z-index: 1;
  width: min(100% - 2rem, 1100px); max-height: 92vh;
  display: flex; align-items: center; gap: .5rem;
}
.lightbox__figure {
  margin: 0; flex: 1; min-width: 0;
  display: flex; flex-direction: column; align-items: center; gap: .9rem;
}
/* le cadre borne l'agrandissement : l'image ne déborde plus sur les commandes */
.lightbox__cadre {
  max-width: 100%; max-height: 76vh; overflow: hidden;
  background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
  display: flex;
}
.lightbox__figure img { max-width: 100%; max-height: 76vh; width: auto; height: auto; display: block; }
.lightbox__figure figcaption { text-align: center; color: #fff; }
.lightbox__titre {
  display: block; font-family: var(--ff-display); font-size: 1.4rem; text-transform: uppercase; letter-spacing: .04em;
}
.lightbox__legende { display: block; font-size: .93rem; color: rgba(255, 255, 255, .72); margin-top: .15rem; }

/* agrandissement au clic dans la visionneuse */
.lightbox__figure img { cursor: zoom-in; transition: transform .35s var(--ease); }
.lightbox__figure img.est-agrandie { cursor: grab; transform: scale(2.1); }
.lightbox__figure img.est-agrandie:active { cursor: grabbing; }
.lightbox__loupe {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .82rem; color: rgba(255, 255, 255, .7); margin-top: .1rem;
}
.lightbox__loupe svg { flex-shrink: 0; }

.lightbox__nav, .lightbox__close {
  position: relative; z-index: 2;
  flex-shrink: 0; display: grid; place-items: center;
  width: 46px; height: 46px; padding: 0; cursor: pointer;
  color: #fff; background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%; transition: background .2s var(--ease);
}
.lightbox__nav:hover, .lightbox__close:hover { background: var(--red-600); border-color: var(--red-600); }
.lightbox__close {
  position: absolute; top: -8px; right: -8px; z-index: 2;
  background: rgba(22, 20, 58, .88); border-color: rgba(255, 255, 255, .38);  /* lisible aussi par-dessus un plan clair */
}

@media (max-width: 900px) {
  .lightbox__inner { flex-direction: column-reverse; justify-content: center; }
  .lightbox__nav { position: absolute; bottom: 0; }
  .lightbox__nav--prev { left: 22%; }
  .lightbox__nav--next { right: 22%; }
  .lightbox__figure { padding-bottom: 3.6rem; }
  .lightbox__close { top: 0; right: 0; }
}

/* ---------- Bandeau défilant des savoir-faire ---------- */
.defilant {
  background: var(--navy-800); color: rgba(255, 255, 255, .82);
  padding: 1.4rem 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.defilant__piste { display: flex; width: max-content; animation: defiler 46s linear infinite; }
.defilant:hover .defilant__piste { animation-play-state: paused; }
.defilant__serie {
  display: flex; align-items: center; gap: 2.6rem;
  list-style: none; margin: 0; padding: 0 1.3rem;
  font-family: var(--ff-display); font-size: 1.18rem; letter-spacing: .04em; text-transform: uppercase;
  white-space: nowrap;
}
.defilant__serie li { margin: 0; display: flex; align-items: center; gap: 2.6rem; }
.defilant__serie li::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--red-500); }
@keyframes defiler { to { transform: translateX(-50%); } }

/* ---------- Retour en haut ---------- */
.retour-haut {
  position: fixed; right: 20px; bottom: 88px; z-index: 90;
  display: grid; place-items: center; width: 46px; height: 46px; padding: 0; cursor: pointer;
  border: 1px solid var(--gray-300); border-radius: 50%;
  background: rgba(255, 255, 255, .94); color: var(--navy-800);
  box-shadow: var(--shadow-sm);
  opacity: 0; transform: translateY(8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.retour-haut.est-visible { opacity: 1; transform: none; }
.retour-haut:hover { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
body.is-locked .retour-haut { opacity: 0; pointer-events: none; }

/* ---------- Réalisations ---------- */
.projets {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: clamp(1.2rem, 2.4vw, 1.8rem);
}
.projet {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius);
  overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.projet:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gray-300); }

.projet__media { position: relative; overflow: hidden; background: var(--navy-800); }
.projet__img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.projet:hover .projet__img { transform: scale(1.05); }

/* motif de remplacement tant qu'aucune photo n'est disponible */
.projet__img--vide {
  display: block; width: 100%; aspect-ratio: 16 / 10;
  background-color: var(--navy-800);
  background-image:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 34px 34px;
}
.projet:nth-child(6) .projet__img--vide { background-color: #2B2668; }
.projet:nth-child(7) .projet__img--vide { background-color: #332E78; }
.projet:nth-child(8) .projet__img--vide { background-color: #211D52; }

.projet__corps { display: flex; flex-direction: column; flex: 1; padding: clamp(1.3rem, 2.4vw, 1.7rem); }
.projet__badges { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: .85rem; }
.projet__badge, .projet__statut {
  padding: .3rem .8rem; border-radius: 999px;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.projet__badge { background: var(--red-100); color: var(--red-600); }
.projet__statut { background: var(--navy-800); color: #fff; }
.projet h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.projet p { font-size: .95rem; color: var(--gray-500); margin-bottom: 1.1rem; }

.projet__metas {
  list-style: none; padding: 1rem 0 0; margin: auto 0 0;
  border-top: 1px dashed var(--gray-300);
  display: flex; flex-wrap: wrap; gap: .4rem .9rem;
  font-size: .85rem; color: var(--navy-800); font-weight: 600;
}
.projet__metas li { position: relative; margin: 0; padding-left: .9rem; }
.projet__metas li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 5px; height: 5px; border-radius: 1px; background: var(--red-600);
}

/* ---------- Partenaires ---------- */
.partenaires {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.partenaire {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius);
  padding: clamp(1.3rem, 2.4vw, 1.7rem);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.partenaire:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--red-600); }
.partenaire__sigle {
  flex-shrink: 0; display: grid; place-items: center;
  width: 54px; height: 54px; border-radius: 12px;
  background: var(--navy-800); color: #fff;
  font-family: var(--ff-display); font-size: 1.1rem; letter-spacing: .06em;
}
.partenaire h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.partenaire__role { font-size: .92rem; color: var(--gray-500); margin-bottom: .5rem; }
.partenaire__lieu {
  display: flex; align-items: center; gap: .4rem;
  font-size: .85rem; color: var(--navy-800); font-weight: 600; margin-bottom: .5rem;
}
.partenaire__lieu svg { color: var(--red-600); flex-shrink: 0; }
.partenaire__site { font-size: .85rem; font-weight: 600; }
.partenaire p:last-child { margin-bottom: 0; }

/* ---------- Bande d'appel à l'action ---------- */
.cta {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--red-600), #8E1030);
  color: #fff; border-radius: var(--radius); padding: clamp(2.2rem, 5vw, 3.6rem);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.8rem;
}
.cta::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px;
  border: 2px solid rgba(255, 255, 255, .22); border-radius: 50%;
}
.cta h2 { color: #fff; margin-bottom: .4rem; }
.cta p { color: rgba(255, 255, 255, .88); margin-bottom: 0; max-width: 560px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .9rem; position: relative; z-index: 1; }
.cta .btn--primary { background: #fff; color: var(--red-600); box-shadow: none; }
.cta .btn--primary:hover { background: var(--navy-800); color: #fff; }

/* ---------- Contact ---------- */
.contact-panneau {
  background: linear-gradient(150deg, var(--red-600) 0%, #9B1636 100%);
  color: rgba(255, 255, 255, .9);
  border-radius: var(--radius); padding: clamp(1.8rem, 3.4vw, 2.6rem);
  box-shadow: var(--shadow-md);
}
.contact-panneau .eyebrow { color: rgba(255, 255, 255, .82); }
.contact-panneau .eyebrow::before { background: rgba(255, 255, 255, .82); }
.contact-panneau h2 { color: #fff; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-item { display: flex; gap: 1rem; padding: 1.05rem 0; border-bottom: 1px solid rgba(255, 255, 255, .18); }
.contact-item:last-child { border-bottom: 0; }
.contact-item__icon { display: grid; place-items: center; width: 44px; height: 44px; flex-shrink: 0; border-radius: 13px; background: rgba(255, 255, 255, .16); color: #fff; }
.contact-item__label { display: block; font-size: .74rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255, 255, 255, .68); }
.contact-item__value { color: #fff; font-weight: 600; }
.contact-item__value a { color: #fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,.4); text-underline-offset: 3px; }
.contact-item__value a:hover { color: #fff; text-decoration-color: #fff; }
.contact-item__value span { display: block; }

.form {
  background: #fff; border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-lg); color: var(--gray-700);
}
.form h3 { margin-bottom: 1.4rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .82rem; font-weight: 700; color: var(--navy-800); margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem;
  font-family: inherit; font-size: .97rem; color: var(--navy-800);
  background: var(--gray-050); border: 1px solid var(--gray-100); border-radius: var(--radius-sm);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { background: #fff; border-color: var(--red-600); outline: none; }
/* retour immédiat sur la saisie */
.field { position: relative; }
.field input:focus, .field select:focus, .field textarea:focus { background: #fff; border-color: var(--red-600); outline: none; }
.field.est-valide input, .field.est-valide select, .field.est-valide textarea { border-color: #1E9E5A; background: #fff; }
.field.est-fautif input, .field.est-fautif select, .field.est-fautif textarea { border-color: var(--red-600); background: #fff; }
.field__message {
  display: block; font-size: .78rem; font-weight: 600; margin-top: .35rem; min-height: 1.1em;
  color: var(--red-600);
}
.field.est-valide .field__message { color: #1E9E5A; }
.field__compteur { float: right; font-size: .74rem; font-weight: 600; color: var(--gray-500); }

.form__note { font-size: .82rem; color: var(--gray-500); margin: .9rem 0 0; }

.map { border: 0; width: 100%; height: 340px; border-radius: var(--radius); filter: grayscale(.25); }

/* ---------- Pied de page ---------- */
.footer { background: var(--navy-900); color: rgba(255, 255, 255, .62); padding: clamp(3rem, 6vw, 4.5rem) 0 0; font-size: .95rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer h4 { color: #fff; font-size: .95rem; letter-spacing: .14em; margin-bottom: 1.1rem; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: .55rem; }
.footer a { color: rgba(255, 255, 255, .72); }
.footer a:hover { color: var(--red-500); }
.footer__logo { height: 58px; width: auto; margin-bottom: 1.3rem; }
.footer__bottom {
  margin-top: 3rem; padding: 1.4rem 0; border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
  font-size: .86rem; color: rgba(255, 255, 255, .5);
}

/* ---------- Bouton WhatsApp flottant ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  transition: opacity .2s var(--ease);
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #06301A; box-shadow: 0 12px 28px rgba(37, 211, 102, .38);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); color: #06301A; }
/* s'efface quand le menu ou la visionneuse est ouvert */
body.is-locked .wa-float { opacity: 0; pointer-events: none; }

/* ---------- Animations d'apparition ---------- */
/* sans JavaScript, rien n'est masqué : le contenu reste lisible en toutes circonstances */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* les visuels arrivent avec un léger rapproché plutôt qu'un glissement */
.js .plan.reveal, .js .projet.reveal { transform: translateY(26px) scale(.975); }
.js .plan.reveal.is-visible, .js .projet.reveal.is-visible { transform: none; }

/* fondu à l'arrivée de chaque image ; sans JavaScript elles restent visibles */
.js img[loading="lazy"] { opacity: 0; transition: opacity .55s var(--ease); }
.js img[loading="lazy"].est-chargee { opacity: 1; }

/* barre de progression de lecture, sous l'en-tête */
.progression {
  position: fixed; top: 0; left: 0; z-index: 101;
  height: 3px; width: 100%; transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--red-600), var(--red-500));
  will-change: transform;
}

/* chiffres clés : le compteur réserve sa largeur pour éviter les sauts */
.stat__value { font-variant-numeric: tabular-nums; }

/* flèche des boutons principaux */
.btn--primary svg.fleche, .btn--outline svg.fleche { transition: transform .25s var(--ease); }
.btn--primary:hover svg.fleche, .btn--outline:hover svg.fleche { transform: translateX(4px); }

/* ouverture de la visionneuse */
.lightbox { animation: lb-fond .25s var(--ease); }
.lightbox .lightbox__inner { animation: lb-entree .32s var(--ease); }
@keyframes lb-fond { from { opacity: 0; } }
@keyframes lb-entree { from { opacity: 0; transform: translateY(12px) scale(.98); } }

/* ---------- Adaptatif ---------- */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__inner { max-width: none; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(340px, 84vw);
    flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: .4rem;
    padding: calc(var(--header-h) + 1.5rem) 1.8rem 2rem;
    background: var(--navy-800);
    transform: translateX(100%); transition: transform .32s var(--ease);
    box-shadow: -20px 0 50px rgba(22, 20, 58, .3);
    overflow-y: auto;
  }
  .nav.is-open { transform: none; }
  .nav__link, .header.is-stuck .nav__link { color: #fff; width: 100%; padding: .85rem 0; border-bottom: 1px solid rgba(255, 255, 255, .08); font-size: 1rem; }
  .nav .btn--header { margin-top: 1.2rem; width: 100%; }
  .burger { display: block; }
  .nav-backdrop {
    position: fixed; inset: 0; z-index: 99; background: rgba(22, 20, 58, .55);
    opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s;
  }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }
}

@media (max-width: 900px) {
  .hero__defiler { display: none; }        /* la place manque à côté du bouton WhatsApp */
  .hero__fond::after {
    background:
      linear-gradient(160deg, rgba(22, 20, 58, .92) 0%, rgba(22, 20, 58, .78) 55%, rgba(22, 20, 58, .62) 100%),
      linear-gradient(to top, rgba(22, 20, 58, .6) 0%, transparent 40%);
  }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .hero { min-height: min(94svh, 720px); padding-bottom: 6rem; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero__puce { width: 40px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .org__branches { grid-template-columns: 1fr; }
  .org__branches::before { display: none; }
  .org__branch { padding-top: 0; }
  .org__branch::before { display: none; }
  .org__branch + .org__branch { margin-top: 1rem; }
  .org__connector span { height: 28px; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero__visuel { display: none; }  /* le rendu reste visible dans la galerie */
  .cta, .catalogue { flex-direction: column; align-items: flex-start; }
  .catalogue .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .js .reveal, .js .plan.reveal, .js .projet.reveal { opacity: 1; transform: none; }
  .js img[loading="lazy"] { opacity: 1; }
  .progression { display: none; }
  .lightbox, .lightbox .lightbox__inner { animation: none; }
  .hero__slide.is-active { animation: none; }
  .hero__defiler svg { animation: none; }
  .hero__puce.is-active span { transition: none; }
  .hero__texte.is-active { transition: none; }
  .defilant__piste { animation: none; }
  .retour-haut { transition: none; }
  .hero__halo { display: none; }
  .lightbox__figure img { transition: none; }
}

@media print {
  .header, .burger, .wa-float, .nav, .hero__actions, .form { display: none !important; }
  body { color: #000; }
}
