/* ──────────────── tokens · pure minimal */
:root {
  --bg:        #ffffff;
  --bg-2:      #FAFAFA;
  --ink:       #0A0A0A;
  --ink-soft:  #4A4A4A;
  --ink-mute:  #8A8A8A;
  --line:      #E8E8E8;
  --line-soft: #F0F0F0;
  --accent:    #FFD200;    /* DHL yellow */

  --sans: "Geist", -apple-system, system-ui, "Helvetica Neue", Arial, sans-serif;

  --ease:  cubic-bezier(.22,.61,.36,1);
  --easeo: cubic-bezier(.16,1,.3,1);

  --gutter: clamp(20px, 5vw, 64px);
  --maxw:   1240px;
  --pad-y:  clamp(140px, 18vh, 220px);

  /* élévation Apple (4 niveaux) */
  --shadow-1: 0 1px 2px rgba(10,10,10,0.04), 0 1px 1px rgba(10,10,10,0.02);
  --shadow-2: 0 4px 12px rgba(10,10,10,0.06), 0 1px 3px rgba(10,10,10,0.04);
  --shadow-3: 0 20px 40px rgba(10,10,10,0.08), 0 6px 12px rgba(10,10,10,0.04);
  --shadow-4: 0 40px 80px rgba(10,10,10,0.12), 0 14px 28px rgba(10,10,10,0.06);

  /* radius Apple */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 36px;
}

/* ──────────────── reset */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
/* décalage d'ancre : empêche la barre de navigation fixe de masquer le titre de la section */
section[id] { scroll-margin-top: 92px; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* overflow-x: clip (pas hidden) pour préserver position:fixed sur la nav.
     hidden crée un context de scroll qui casse les fixed sur Safari/Chrome+transform. */
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--ink); color: var(--bg); }

em { font-style: italic; font-weight: inherit; }
strong { font-weight: 600; }

.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; padding: 8px 14px; background: var(--ink); color: var(--bg); z-index: 200; border-radius: 999px; }

/* ──────────────── shared */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
}
.title {
  margin: 0;
  font-size: clamp(40px, 6.2vw, 96px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.title em { font-style: italic; font-weight: 400; color: var(--ink-mute); }

.btn {
  display: inline-flex; align-items: center;
  height: 48px;
  padding: 0 26px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(10,10,10,0.12);
}
.btn--dark   { background: var(--ink); color: var(--bg); }
.btn--dark:hover  { transform: translateY(-1px); background: #000; }
.btn--ghost  { color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--bg); }

/* Lien CTA secondaire style Apple (text-link avec flèche, pas de bordure) */
.btn--link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 48px;
  padding: 0 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: gap .25s var(--ease), color .25s var(--ease);
}
.btn--link:hover { gap: 12px; }
.btn--link svg { transition: transform .25s var(--ease); }

/* ──────────────── nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px var(--gutter);
  z-index: 50;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: padding .35s var(--ease), background .35s var(--ease),
              border-color .35s var(--ease), transform .45s var(--ease),
              opacity .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-shrunk {
  padding: 12px var(--gutter);
  background: rgba(255,255,255,0.84);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--line);
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  /* Logo large (wordmark détouré) : hauteur directe, plus de canvas surdimensionné */
  height: 34px;
}
.nav__brand img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav__links {
  display: flex; gap: 36px;
  justify-self: center;
  font-size: 14px;
  color: var(--ink-soft);
}
.nav__links a { padding: 4px 0; position: relative; }
.nav__links a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: currentColor;
  transition: right .4s var(--ease);
}
.nav__links a:hover::after { right: 0; }
.nav__phone {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  padding: 8px 14px 8px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.nav__phone:hover { transform: translateY(-1px); background: #000; }
.nav__phone-icon {
  flex-shrink: 0;
  color: var(--accent);
}
/* Groupe d'actions à droite de l'en-tête : [Itinéraire] [Appeler] */
.nav__actions { justify-self: end; display: flex; align-items: center; gap: 10px; }
.nav__itin {
  display: none;            /* affiché uniquement sur mobile (voir bloc ≤600) */
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}
.nav__itin svg { flex-shrink: 0; color: var(--ink-soft); }
@media (max-width: 880px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav__links { display: none; }
}

/* ──────────────── HERO (text-only Apple/Stripe style — pas de photo carrousel) */
.hero {
  position: relative;
  min-height: 92vh;
  padding: clamp(112px, 15vh, 170px) var(--gutter) clamp(56px, 9vh, 96px);
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  align-items: center;
  gap: clamp(36px, 5vw, 80px);
}
.hero__text {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  text-align: left;
  gap: clamp(16px, 2.4vh, 28px);
}

/* Logo de marque — sur PC il est centré dans la galerie (.hero__media-badge),
   donc masqué dans la colonne texte ; réaffiché au-dessus du titre sur mobile. */
.hero__logo {
  display: none;
  height: clamp(34px, 4vw, 50px);
  width: auto;
  margin: 0 0 clamp(10px, 1.6vh, 18px);
  opacity: 0;
  transform: translateY(-8px);
}

/* Logo AVN&Co incrusté dans la galerie : logo blanc net posé directement sur
   les images, sur un voile doux horizontal (aucune carte, aucune ombre portée)
   → propre et intégré, façon hero Apple / Silicon Valley. */
.hero__media-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
  background: rgba(10,10,10,0.42);
  /* logo + halo remontés ensemble (translateY) pour rester alignés */
  transform: translateY(-11%);
  /* flou + voile contenus en ellipse JUSTE derrière le logo (pas une bande pleine largeur) */
  -webkit-backdrop-filter: blur(40px) saturate(115%);
          backdrop-filter: blur(40px) saturate(115%);
  -webkit-mask-image: radial-gradient(ellipse 62% 26% at 50% 50%, #000 0%, rgba(0,0,0,0.85) 35%, rgba(0,0,0,0.4) 65%, transparent 100%);
          mask-image: radial-gradient(ellipse 62% 26% at 50% 50%, #000 0%, rgba(0,0,0,0.85) 35%, rgba(0,0,0,0.4) 65%, transparent 100%);
}
.hero__media-badge img {
  width: min(90%, 330px);
  height: auto;
  filter: brightness(0) invert(1);
}
.hero__illus { display: none; }   /* illustration légère — mobile uniquement (PC garde ses photos) */
.hero__title {
  margin: 0;
  font-family: "Bricolage Grotesque", var(--sans);
  font-size: clamp(46px, 5.4vw, 90px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.hero__title .line {
  display: block;
  overflow: hidden;
  white-space: nowrap;
}
.hero__title [data-r] {
  display: inline-block;
  transform: translateY(110%);
  will-change: transform;
}
.hero__title em { font-style: normal; font-weight: inherit; color: inherit; }
/* Accent jaune DHL sous « métier » — signature de marque */
.hero__title .hl {
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-size: 100% 0.1em;
  background-position: 0 90%;
  padding-bottom: 0;
}
/* Sous-titre : ligne épurée et lisible (Apple subhead) */
.hero__lede {
  margin: 0;
  font-size: clamp(15px, 1.3vw, 19px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--ink-mute);
  max-width: 36ch;
  opacity: 0; transform: translateY(20px);
}
.hero__cta {
  margin-top: clamp(24px, 3.4vh, 44px);
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
  opacity: 0; transform: translateY(20px);
}
.hero__cta .btn { gap: 8px; }
.hero__cta .btn svg { transition: transform .35s var(--ease); }
.hero__cta .btn--dark:hover svg { transform: translateX(4px); }

/* Galerie d'images (droite) : deux colonnes qui défilent en sens inverse — premium (Apple/Uber) */
.hero__media {
  position: relative;
  height: min(78vh, 680px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  overflow: hidden;
  opacity: 0;
  animation: heroMediaIn 1s var(--easeo) 0.5s both;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.hero__media-col {
  display: flex;
  flex-direction: column;
  will-change: transform;
}
.hero__media-col--up   { animation: heroScrollUp 38s linear infinite; }
.hero__media-col--down { transform: translateY(-50%); animation: heroScrollDown 38s linear infinite; }
.hero__media:hover .hero__media-col { animation-play-state: paused; }
.hero__media-col img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-2);
  margin-bottom: 16px;
}
@keyframes heroScrollUp   { to { transform: translateY(-50%); } }
@keyframes heroScrollDown { to { transform: translateY(0); } }
@keyframes heroMediaIn { to { opacity: 1; } }
@keyframes heroStripX  { to { transform: translateX(-50%); } }

/* Hero mobile/tablette : sous le texte, un bandeau d'images qui défile
   à l'horizontale — compact et léger (pattern Apple/Uber mobile). */
@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; }
  .hero__logo { display: block; }       /* logo au-dessus du titre sur mobile */
  .hero__media-badge { display: none; } /* pas de carte logo sur mobile */
  .hero__media {
    display: block;
    height: auto;
    opacity: 1;
    animation: none;
    margin-top: clamp(22px, 4vh, 34px);
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
            mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  }
  .hero__media-col--down { display: none; }
  .hero__media-col--up {
    flex-direction: row;
    height: auto;
    animation: heroStripX 28s linear infinite;
    will-change: transform;
  }
  .hero__media:active .hero__media-col--up { animation-play-state: paused; }
  .hero__media-col--up img {
    flex: none;
    width: clamp(124px, 36vw, 156px);
    height: clamp(150px, 44vw, 188px);
    aspect-ratio: auto;
    margin: 0 12px 0 0;
    border-radius: var(--r-md);
    background: var(--line);   /* placeholder visible si l'image charge lentement */
  }
}

/* ──────────────── TRAJET CINÉMATIQUE (Apple keynote pattern) */
.cine { position: relative; background: var(--bg); color: var(--ink); display: flex; flex-direction: column; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cine__head {
  background: var(--bg);
  color: var(--ink);
  padding: var(--pad-y) var(--gutter) clamp(60px, 9vh, 100px);
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
}
.cine__lede {
  margin: 24px 0 0;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-soft);
  max-width: 48ch;
}
.cine__stage {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  /* Gradient atmosphérique : ciel doux en haut, sol clair en bas, halo jaune DHL central */
  background:
    radial-gradient(900px 500px at 50% 38%, rgba(255,204,0,0.06), transparent 65%),
    linear-gradient(180deg,
      #f4f3ee 0%,
      #fafaf6 38%,
      #fbfbfd 62%,
      #ededea 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cine__progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--line);
  z-index: 30;
}
.cine__progress span {
  display: block; height: 100%; width: 0%;
  background: var(--ink);
}

/* ATMOSPHÈRE : halo doux qui glisse derrière le camion */
.cine__atmos {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cine__atmos-glow {
  position: absolute;
  left: 50%; top: 60%;
  width: 800px; height: 500px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,204,0,0.12) 0%, transparent 60%);
  filter: blur(40px);
  will-change: transform, opacity;
}

/* TYPO XXL centrée (Apple-style crossfade) */
.cine__copy {
  position: absolute;
  left: 0; right: 0;
  top: clamp(80px, 14vh, 140px);
  z-index: 20;
  text-align: center;
  pointer-events: none;
  padding: 0 clamp(20px, 5vw, 64px);
}
.cine__step {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: clamp(16px, 2.5vh, 28px);
  font-variant-numeric: tabular-nums;
  will-change: opacity, transform;
}
.cine__city {
  display: block;
  font-size: clamp(56px, 10vw, 148px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.048em;
  color: var(--ink);
  will-change: opacity, transform;
}
.cine__caption {
  display: block;
  margin: clamp(14px, 2vh, 22px) auto 0;
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 42ch;
  will-change: opacity, transform;
}

/* CANVAS 3D : Three.js scene, plein cadre, derrière le texte */
.cine__webgl {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 12;
  pointer-events: none;
}

/* Logo AVN&Co flou en fond — derrière le camion (le canvas est transparent au-dessus) */
/* PLATE caption : étiquette typographique qui suit le camion */
.cine__plate {
  position: absolute;
  left: 50%; bottom: clamp(8px, 1.5vh, 18px);
  transform: translateX(-50%);
  z-index: 14;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  pointer-events: none;
  opacity: 0;
  will-change: opacity;
  white-space: nowrap;
}

/* ──────────────── EDITO (sections photo) */
.edito { position: relative; }
.edito__media {
  margin: 0;
  overflow: hidden;
  background: var(--bg-2);
}
.edito__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform;
}
.edito__title {
  margin: 0 0 24px;
  font-size: clamp(40px, 5.5vw, 88px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.edito__title em { font-style: italic; color: var(--ink-mute); }
.edito__lede {
  margin: 0;
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 48ch;
}

/* full-bleed variant : photo en arrière-plan, texte centré */
.edito--full {
  position: relative;
  height: clamp(620px, 88vh, 840px);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.edito--full .edito__media {
  position: absolute; inset: 0; z-index: -2;
}
.edito--full .edito__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}
.edito--full .edito__media img { transform: scale(1.08); filter: blur(4px); }
.edito--full .edito__copy {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(80px, 16vh, 180px) var(--gutter);
  display: grid;
  gap: 18px;
  height: 100%;
  align-content: end;
}
.edito--full .edito__title { color: #fff; }
.edito--full .edito__title em { color: rgba(255,255,255,0.55); }
.edito--full .edito__lede { color: rgba(255,255,255,0.78); }
.edito--full .eyebrow { color: rgba(255,255,255,0.7); }
.edito--full .eyebrow::before { background: var(--accent); }
.eyebrow--light { color: rgba(255,255,255,0.7); }

/* split variant : photo gauche, texte droite */
.edito--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: clamp(560px, 80vh, 760px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.edito--split .edito__media {
  aspect-ratio: auto;
  height: 100%;
}
.edito--split .edito__copy {
  padding: var(--pad-y) var(--gutter);
  display: grid;
  align-content: center;
  gap: 18px;
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
}
.edito__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 36px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.edito__stats > div {
  padding: 24px 14px 0 0;
  border-right: 1px solid var(--line);
}
.edito__stats > div:last-child { border-right: 0; }
.edito__stats dt {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.edito__stats dd {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  max-width: 18ch;
}
@media (max-width: 880px) {
  .edito--split { grid-template-columns: 1fr; }
  .edito--split .edito__media { aspect-ratio: 4 / 3; }
  .edito--split .edito__copy { padding: clamp(60px, 10vh, 100px) var(--gutter); }
  .edito__stats { grid-template-columns: 1fr 1fr 1fr; }
}

/* ──────────────── SERVICES (bento Apple/Uber landing) */
.svc {
  position: relative;
  isolation: isolate;
  padding: clamp(50px, 7vh, 86px) var(--gutter) clamp(48px, 7vh, 84px);
  max-width: var(--maxw);
  margin: 0 auto;
}
/* Bande de fond gris clair pleine largeur + filets — sépare nettement la section */
.svc::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0; bottom: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* HEADER : titre en surimpression sur l'image, ancré en haut (Apple banner) */
.svc__head {
  position: absolute;
  z-index: 2;
  top: 0; left: 0; right: 0;
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
  padding: clamp(18px, 3vw, 36px) clamp(24px, 4vw, 48px) 0;
  color: #fff;
}
.svc__title {
  margin: 0;
  font-size: clamp(28px, 4.4vw, 56px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.038em;
  max-width: none;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.38);
}
.svc__title em { font-style: italic; font-weight: 400; color: rgba(255,255,255,0.82); }

/* GRID : trois colonnes minimalistes, hairline divider — sans cards (Apple feature row) */
.svc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

/* ITEM : icône → titre → description, centré, aucune boîte ni fond */
.svc__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: clamp(8px, 1.4vw, 18px) clamp(20px, 2.6vw, 40px);
}
.svc__item + .svc__item { border-left: 1px solid var(--line); }

.svc__item-icon {
  width: 38px;
  height: 38px;
  color: var(--ink);
}
.svc__item-icon svg { width: 100%; height: 100%; display: block; }

.svc__item-title {
  margin: 0;
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 600;
  letter-spacing: -0.026em;
  line-height: 1.1;
}
.svc__item-desc {
  margin: 0;
  font-size: clamp(14px, 1vw, 15px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 26ch;
}

/* MEDIA : bandeau pleine largeur (full-bleed) — titre en haut, stats en bas */
.svc__media {
  position: relative;
  width: 100vw;
  margin: 0 0 clamp(26px, 4vw, 46px);
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: var(--bg-2);
  aspect-ratio: 16 / 5;
  max-height: clamp(240px, 32vh, 360px);
  isolation: isolate;
}
.svc__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* Dégradé sombre en haut — lisibilité du titre en surimpression */
.svc__media::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 60%;
  background: linear-gradient(to bottom,
    rgba(10,10,10,0.72) 0%,
    rgba(10,10,10,0.34) 42%,
    transparent 100%);
  pointer-events: none;
  z-index: 1;
}
/* Dégradé sombre en bas de l'image — fait pop les stats sans cacher le sujet */
.svc__media::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 62%;
  background: linear-gradient(to top,
    rgba(10,10,10,0.85) 0%,
    rgba(10,10,10,0.55) 35%,
    rgba(10,10,10,0.10) 75%,
    transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Stats incrustées style Apple key-stats — backdrop blur subtil pour effet iOS glass */
.svc__stats {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: clamp(15px, 2vw, 24px) clamp(24px, 3.2vw, 40px);
  color: #fff;
  /* Subtil glass blur du contenu derrière les stats — effet iOS */
  -webkit-backdrop-filter: blur(2px) saturate(120%);
  backdrop-filter: blur(2px) saturate(120%);
}
.svc__stats > div {
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,0.20);
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.svc__stats > div:first-child { padding-left: 0; }
.svc__stats > div:last-child { border-right: 0; padding-right: 0; }
.svc__stats dt {
  margin: 0;
  font-size: clamp(30px, 2.8vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: #fff;
  /* Très subtile ombre pour lisibilité sur images variées */
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.svc__stats dd {
  margin: 0;
  font-size: 10.5px;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 880px) {
  .svc__grid { grid-template-columns: 1fr; }
  .svc__item { padding: clamp(26px, 5vw, 34px) 0; gap: 12px; }
  .svc__item + .svc__item { border-left: 0; border-top: 1px solid var(--line); }
  .svc__title { max-width: none; font-size: clamp(36px, 7vw, 52px); }
  .svc__media { aspect-ratio: 16 / 9; max-height: 400px; }
}

/* ──────────────── TRUST (social proof) */
.trust {
  padding: var(--pad-y) var(--gutter);
  background:
    radial-gradient(800px 400px at 80% 20%, rgba(255,210,0,0.10), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.trust__left {
  display: grid;
  gap: clamp(16px, 2.4vh, 26px);
  align-content: center;
  justify-items: start;
}
.trust__stars { color: var(--ink); }
.trust__stars svg { width: clamp(150px, 16vw, 188px); height: auto; }
.trust__score {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.trust__num {
  font-size: clamp(104px, 13vw, 168px);
  font-weight: 700;
  letter-spacing: -0.05em;
  padding-right: 0.08em;   /* évite que le 0 soit rogné par le clip du dégradé */
  line-height: 0.85;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, #0a0a0a 0%, #4a4a4a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.trust__over {
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 500;
  color: var(--ink-mute);
  font-style: italic;
}
.trust__meta {
  margin: 0;
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 500;
  color: var(--ink-soft);
}
.trust__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin-top: 6px;
}

.link--arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: gap .25s var(--ease);
}
.link--arrow:hover { gap: 12px; color: var(--ink); text-decoration: none; }

.trust__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  white-space: nowrap;
}
.trust__badge svg { flex-shrink: 0; }

/* ── Mur d'avis Google qui défile en continu (fluide, fondu haut/bas) ── */
.trust__reviews {
  position: relative;
  height: min(56vh, 500px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 9%, #000 91%, transparent);
          mask-image: linear-gradient(to bottom, transparent, #000 9%, #000 91%, transparent);
}
.trust__reviews-track {
  display: flex;
  flex-direction: column;
  animation: trustScroll 46s linear infinite;
  will-change: transform;
}
.trust__reviews:hover .trust__reviews-track { animation-play-state: paused; }
@keyframes trustScroll { to { transform: translateY(-50%); } }
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: clamp(18px, 1.6vw, 22px);
  margin-bottom: 16px;
  box-shadow: var(--shadow-2);
}
.review__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review__avatar {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: 16px; color: #fff;
}
.review__id { display: grid; gap: 1px; min-width: 0; }
.review__name { font-weight: 600; font-size: 14px; letter-spacing: -0.01em; }
.review__meta { font-size: 11.5px; color: var(--ink-mute); }
.review__stars { color: #fbbc05; font-size: 13px; letter-spacing: 2px; margin-bottom: 8px; }
.review__text { margin: 0; font-size: 14px; line-height: 1.5; color: var(--ink-soft); }

@media (max-width: 880px) {
  .trust__inner {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 36px;
  }
  .trust__badge { justify-self: start; }
  .trust__reviews { height: min(64vh, 440px); }
}

/* ──────────────── HORAIRES */
.hrs {
  padding: var(--pad-y) var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.hrs__head { margin-bottom: clamp(40px, 6vh, 70px); }
.hrs__list {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--line);
}
.hrs__row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding .3s var(--ease);
}
.hrs__row:hover { padding-left: 10px; }
.hrs__row.is-today::before {
  content: "";
  position: absolute;
  left: -16px; top: 50%;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(255,210,0,0.18);
}
.hrs__day {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.022em;
  text-transform: capitalize;
}
.hrs__row.is-today .hrs__day { font-style: italic; }
.hrs__value {
  font-size: 14px;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}
.hrs__row.is-closed .hrs__value {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--ink-mute);
}
/* ── Grid 2 colonnes : table d'horaires + rectangle "À noter" ── */
.hrs__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}
.hrs__card {
  position: sticky;
  top: clamp(96px, 12vh, 140px);
  background: var(--bg-2);
  border-radius: var(--r-lg);
  padding: clamp(32px, 3.4vw, 44px);
  display: grid;
  gap: clamp(14px, 1.6vw, 20px);
  border: 1px solid var(--line);
}
.hrs__card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hrs__note {
  margin: 0;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
  max-width: none;
}
.hrs__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  width: max-content;
  transition: gap .25s var(--ease);
}
.hrs__card-link:hover { gap: 12px; }

@media (max-width: 880px) {
  .hrs__grid { grid-template-columns: 1fr; }
  .hrs__card { position: static; }
}

/* ──────────────── ZONE DE COUVERTURE (texte + carte départements) */
.cov {
  padding: var(--pad-y) var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.cov__text { display: grid; gap: 18px; align-content: center; }
.cov__lede { margin: 0; font-size: clamp(16px, 1.35vw, 20px); line-height: 1.5; color: var(--ink-mute); max-width: 40ch; }
.cov__map { margin: 0; }
.cov__map img { width: 100%; height: auto; display: block; }
.cov__legend {
  margin-top: 18px;
  font-size: 12.5px;
  letter-spacing: 0.01em;
  color: var(--ink-mute);
}
@media (max-width: 880px) {
  .cov { grid-template-columns: 1fr; gap: clamp(28px, 5vh, 44px); }
  .cov__map { max-width: 380px; margin-inline: auto; }
}

/* ──────────────── PARTENAIRES (noms ; logos à intégrer en images) */
.partners {
  padding: clamp(48px, 7vh, 84px) var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid var(--line);
}
.partners__label {
  margin: 0 0 clamp(22px, 3vh, 36px);
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-mute);
}
.partners__row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(14px, 1.6vw, 22px);
}
/* Chaque logo dans une carte blanche uniforme (homogénéise les fonds variés) */
.partners__item {
  display: inline-flex; align-items: center; justify-content: center;
  height: clamp(60px, 7vw, 82px);
  padding: 0 clamp(20px, 2.2vw, 30px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-1);
}
.partners__logo {
  max-height: clamp(30px, 3.6vw, 42px);
  width: auto;
  object-fit: contain;
}
.partners__name {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 700; letter-spacing: -0.02em;
  color: var(--ink-soft);
}
/* Le 2e jeu de logos ne sert qu'au défilement continu sur mobile : masqué sur ordinateur. */
.partners__item[aria-hidden="true"] { display: none; }
@keyframes partnersScroll { to { transform: translateX(-50%); } }
/* Numéros de département dans la phrase couverture */
.cov__lede b { font-weight: 600; color: var(--ink-soft); }
/* Logos partenaires plus petits + resserrés sur mobile */
@media (max-width: 600px) {
  .partners { padding: clamp(36px, 6vh, 56px) var(--gutter); overflow: hidden; }
  .partners__label { margin-bottom: 20px; }
  /* Carrousel : les logos défilent en continu (boucle fluide grâce au duplicata) */
  .partners__row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: max-content;
    gap: 12px;
    animation: partnersScroll 20s linear infinite;
  }
  .partners__item { flex: none; height: 48px; padding: 0 16px; border-radius: var(--r-sm); }
  .partners__item[aria-hidden="true"] { display: inline-flex; }  /* réactivé pour la boucle du carrousel */
  .partners__logo { max-height: 24px; }
}

/* ──────────────── CONTACT */
.ct {
  position: relative;
  isolation: isolate;
  padding: var(--pad-y) var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
/* Bande gris clair pleine largeur + filet haut */
.ct::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0; bottom: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.ct__head { margin-bottom: clamp(50px, 8vh, 90px); }
.ct__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;     /* 2×2 : moins large, plus lisible */
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ct__big--mail { word-break: break-word; }
.ct__mail { font-size: clamp(17px, 1.5vw, 22px); font-weight: 600; letter-spacing: -0.01em; }
.ct__mail:hover { text-decoration: underline; }
.ct__block {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(16px, 2vw, 22px);
  padding: clamp(30px, 3.4vw, 46px) clamp(28px, 3vw, 44px);
  border-right: 1px solid var(--line);
  min-height: 220px;
}
.ct__block:nth-child(2n+1) { padding-left: 0; }                       /* colonne gauche, alignée au bord */
.ct__block:nth-child(2n)   { border-right: 0; padding-right: 0; }     /* colonne droite, pas de bord droit */
.ct__block:nth-child(-n+2) { border-bottom: 1px solid var(--line); }  /* 1re ligne : séparateur bas */
.ct__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.ct__big {
  margin: 0;
  align-self: center;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.3;
  text-wrap: balance;
}
.ct__big a:hover { text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--accent); text-decoration-thickness: 2px; }
.ct__big--phone {
  font-variant-numeric: tabular-nums;
  font-size: clamp(20px, 1.9vw, 26px);
  letter-spacing: -0.02em;
}
.ct__phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
}
.ct__phone-icon {
  flex-shrink: 0;
  color: var(--ink-mute);
  transition: color .25s var(--ease);
}
.ct__phone:hover .ct__phone-icon { color: var(--ink); }
.ct__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  align-self: end;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  width: max-content;
  transition: gap .25s var(--ease);
}
.ct__link:hover { gap: 12px; }

/* ── Bloc horaires ── */
.ct__block--hours {
  grid-template-rows: auto 1fr;
}
.ct__mini-hours {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  font-variant-numeric: tabular-nums;
  align-self: center;
}
.ct__mini-hours li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--ink-soft);
  align-items: baseline;
  position: relative;
}
.ct__mini-hours li > span:first-child {
  text-transform: capitalize;
  color: var(--ink);
  font-weight: 500;
}
.ct__mini-hours li.is-closed { color: var(--ink-mute); }
.ct__mini-hours li.is-closed > span:first-child { color: var(--ink-mute); font-weight: 400; }
.ct__mini-hours li.is-closed > span:last-child { color: var(--ink-mute); text-transform: capitalize; }
.ct__mini-hours li.is-today > span:first-child {
  color: var(--ink);
  font-weight: 600;
}
.ct__mini-hours li.is-today::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

@media (max-width: 880px) {
  .ct__grid { grid-template-columns: 1fr; }
  .ct__block { border-right: 0; border-bottom: 1px solid var(--line); padding: 28px 0; min-height: auto; }
  .ct__block:last-child { border-bottom: 0; }
}

/* ── Contact : intro + formulaire + coordonnées ── */
.ct__intro {
  margin: 22px 0 0;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 520px;
}
.ct__layout {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.ct__info {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.ct__info-block {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 2.6vw, 32px) 0;
  border-bottom: 1px solid var(--line);
}
.ct__info-block:last-child { border-bottom: 0; }

/* Formulaire */
.cform { display: grid; gap: clamp(20px, 2.6vw, 30px); }

/* Sélecteur segmenté Client / Partenaire (style iOS) */
.cform__seg {
  justify-self: center;
  display: inline-flex;
  gap: clamp(22px, 3vw, 36px);
  margin-bottom: 8px;
}
.cform__seg-btn {
  padding: 0 1px 9px;
  border-bottom: 2px solid transparent;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-mute);
  transition: color .2s var(--ease), border-color .25s var(--ease);
}
.cform__seg-btn:hover { color: var(--ink-soft); }
.cform__seg-btn.is-active {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.cform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2vw, 20px);
}
.cform__field { display: grid; gap: 6px; }
/* l'attribut [hidden] doit l'emporter sur display:grid (champ secteur, bloc téléphone) */
.cform__field[hidden], .ct__info-block[hidden] { display: none; }
.cform__field label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink-mute);
}
.cform__opt { font-weight: 400; color: var(--ink-mute); }
/* Champs « filet fin » (underline) — épuré et éditorial, façon Apple/Stripe */
.cform__field input,
.cform__field textarea,
.cform__select select {
  width: 100%;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 9px 1px;
  transition: border-color .25s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.cform__field textarea { resize: vertical; min-height: 70px; line-height: 1.55; }
.cform__field input:focus,
.cform__field textarea:focus,
.cform__select select:focus {
  outline: 0;
  border-bottom-color: var(--ink);
}
.cform__field input::placeholder,
.cform__field textarea::placeholder { color: var(--ink-mute); }
.cform__select { position: relative; }
.cform__select select { padding-right: 26px; cursor: pointer; }
.cform__select svg {
  position: absolute;
  right: 2px; bottom: 13px;
  color: var(--ink-mute);
  pointer-events: none;
}
.cform__honey { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.cform__foot {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.cform__submit { gap: 8px; }
.cform__submit svg { transition: transform .25s var(--ease); }
.cform__submit:hover svg { transform: translateX(3px); }
.cform__submit[disabled] { opacity: .55; cursor: default; }
.cform__submit[disabled]:hover { transform: none; }
.cform__status { margin: 0; font-size: 14px; font-weight: 500; letter-spacing: -0.01em; }
.cform__status.is-ok  { color: #1d8a4e; }
.cform__status.is-err { color: #b00020; }
.cform__field.is-invalid input,
.cform__field.is-invalid textarea { border-bottom-color: #b00020; }
.cform__legal {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-mute);
}
.cform__legal a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 2px; }
.cform__legal a:hover { color: var(--ink); }

/* ── Écran de résultat (succès / échec) animé, façon Apple ── */
.cresult { display: grid; place-items: center; min-height: 300px; text-align: center; }
/* l'attribut [hidden] doit l'emporter sur display:grid */
.cresult[hidden], .cresult__view[hidden] { display: none; }
.cresult__view { max-width: 380px; }
.cresult__mark { display: inline-block; width: 66px; height: 66px; margin: 0 0 24px; }
.cresult__mark svg { width: 100%; height: 100%; display: block; }
.cresult__circle { fill: none; stroke-width: 2.6; stroke-linecap: round;
  stroke-dasharray: 152; stroke-dashoffset: 152; }
.cresult__check, .cresult__cross { fill: none; stroke-width: 3.4; stroke-linecap: round; stroke-linejoin: round; }
.cresult__check { stroke-dasharray: 40; stroke-dashoffset: 40; }
.cresult__cross { stroke-dasharray: 48; stroke-dashoffset: 48; }
.cresult--ok  .cresult__circle, .cresult--ok  .cresult__check { stroke: #34c759; }
.cresult--err .cresult__circle, .cresult--err .cresult__cross { stroke: #ff3b30; }
.cresult__title { margin: 0 0 10px; font-size: clamp(20px, 2.4vw, 26px); font-weight: 700; letter-spacing: -0.02em; }
.cresult__text { margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink-mute); }
.cresult__text a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 2px; }
.cresult__text a:hover { color: var(--ink); }
.cresult__retry { margin-top: 24px; }

/* déclenchées quand l'écran devient visible (.is-in) */
.cresult__view.is-in .cresult__mark   { animation: cpop .55s var(--ease) both; }
.cresult__view.is-in .cresult__circle { animation: cdraw .55s var(--easeo) forwards; }
.cresult__view.is-in .cresult__check  { animation: cdraw .4s var(--easeo) .45s forwards; }
.cresult__view.is-in .cresult__cross  { animation: cdraw .4s var(--easeo) .45s forwards; }
.cresult__view.is-in .cresult__title,
.cresult__view.is-in .cresult__text,
.cresult__view.is-in .cresult__retry  { animation: cfade .55s var(--easeo) .5s both; }
@keyframes cdraw { to { stroke-dashoffset: 0; } }
@keyframes cpop { 0% { transform: scale(.5); opacity: 0; } 60% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }
@keyframes cfade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .cresult__view.is-in .cresult__mark,
  .cresult__view.is-in .cresult__circle,
  .cresult__view.is-in .cresult__check,
  .cresult__view.is-in .cresult__cross,
  .cresult__view.is-in .cresult__title,
  .cresult__view.is-in .cresult__text,
  .cresult__view.is-in .cresult__retry { animation: none; }
  .cresult__circle, .cresult__check, .cresult__cross { stroke-dashoffset: 0; }
}

@media (max-width: 880px) {
  .ct__layout { grid-template-columns: 1fr; gap: 44px; }
  .cform__row { grid-template-columns: 1fr; }
  .ct__info { border-top: 0; }
}

/* ──────────────── PARTENAIRES (compact, image-only) */
.prt {
  position: relative;
  padding: clamp(44px, 6vh, 76px) var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.prt__head { max-width: 720px; margin: 0 auto clamp(20px, 3vh, 32px); text-align: center; }
.prt__head .eyebrow { margin-bottom: 14px; }
.prt__head .eyebrow::before { display: none; }
.prt__head .title { font-size: clamp(28px, 4vw, 46px); margin-bottom: 12px; }
.prt__lede {
  margin: 0 auto;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 500px;
}

/* Bande d'images défilante, compacte — bords fondus */
.prt__strip {
  position: relative;
  overflow: hidden;
  margin-bottom: clamp(22px, 3vh, 34px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.prt__track {
  display: flex;
  gap: clamp(12px, 1.3vw, 18px);
  width: max-content;
  animation: prtScroll 60s linear infinite;
}
.prt__strip:hover .prt__track { animation-play-state: paused; }
.prt__shot {
  flex: none;
  width: clamp(170px, 18vw, 230px);
  aspect-ratio: 3 / 2;
  border-radius: var(--r-md);
  overflow: hidden;
  background: linear-gradient(135deg, #ededed, #f7f7f7);
  box-shadow: var(--shadow-2);
}
.prt__shot img { width: 100%; height: 100%; object-fit: cover; }
@keyframes prtScroll { to { transform: translateX(-50%); } }

.prt__cta { display: flex; justify-content: center; }

@media (prefers-reduced-motion: reduce) {
  .prt__track { animation: none; }
}

/* ── Section formulaire compacte (Apple-like, centrée) ── */
.fcta {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: clamp(44px, 6vh, 72px) var(--gutter);
}
.fcta__inner { max-width: 560px; margin: 0 auto; }
.fcta__head { text-align: center; margin-bottom: clamp(20px, 3vh, 30px); }
.fcta__title {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

/* ── Section coordonnées (séparée du formulaire) ── */
.locate {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 8vh, 96px) var(--gutter);
}
.locate__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.locate__block {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: clamp(28px, 3vw, 40px) clamp(24px, 3vw, 40px);
  border-right: 1px solid var(--line);
}
.locate__block[hidden] { display: none; }
.locate__block:first-child { padding-left: 0; }
.locate__block:last-child { border-right: 0; padding-right: 0; }
@media (max-width: 760px) {
  .locate__grid { grid-template-columns: 1fr; }
  .locate__block { border-right: 0; border-bottom: 1px solid var(--line); padding: 24px 0; }
  .locate__block:last-child { border-bottom: 0; padding-bottom: 0; }
  .locate__block:first-child { padding-top: 0; }
}

/* ──────────────── FOOTER · minimal */
.foot {
  padding: clamp(48px, 7vh, 80px) var(--gutter) clamp(28px, 4vh, 40px);
  border-top: 1px solid var(--line);
  background: var(--bg);
}
/* ── Page Mentions légales (page dédiée) ── */
.legal__nav { padding: 20px var(--gutter); border-bottom: 1px solid var(--line); }
.legal__back { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: var(--ink); }
.legal__back svg { transition: transform .2s var(--ease); }
.legal__back:hover svg { transform: translateX(-3px); }
.legal { max-width: 760px; margin: 0 auto; padding: clamp(44px, 8vh, 88px) var(--gutter) clamp(72px, 12vh, 130px); }
.legal h1 { font-family: "Bricolage Grotesque", var(--sans); font-size: clamp(34px, 6vw, 58px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; margin: 0 0 clamp(30px, 5vh, 52px); }
.legal__block { margin-bottom: clamp(26px, 4vh, 42px); }
.legal__block h2 { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); margin: 0 0 10px; }
.legal__block p { margin: 0 0 10px; font-size: 16px; line-height: 1.65; color: var(--ink-soft); }
.legal__block a, .legal__back-link a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.legal__back-link { margin-top: clamp(30px, 5vh, 48px); font-size: 15px; }

.foot__bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: -0.005em;
}
.foot__bottom > span:first-child { justify-self: start; }
.foot__bottom > .foot__legal { justify-self: end; text-align: right; }
.foot__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  justify-self: center;
}
.foot__brand img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}
.foot__legal { color: var(--ink-mute); transition: color .2s var(--ease); }
.foot__legal:hover { color: var(--ink); }

@media (max-width: 600px) {
  .foot__bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 12px;
  }
  .foot__bottom > span:first-child,
  .foot__bottom > .foot__legal { justify-self: center; text-align: center; }
}


/* ──────────────── TABLET refinements (601-880px) */
@media (max-width: 880px) and (min-width: 601px) {
  .nav__brand { height: 80px; margin: -24px 0; }
  .hero { padding: 110px var(--gutter) 80px; }
  .hero__title { font-size: clamp(56px, 9vw, 88px); }
}





/* ════════════════════════════════════════════════════════════════
   MOBILE (≤600px) — SYSTÈME UNIFIÉ · design Apple / minimaliste
   (remplace tous les anciens blocs mobiles épars)
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  :root { --gutter: 22px; }

  /* ── EN-TÊTE persistant : logo · [Itinéraire] · [Appel] ── */
  .nav {
    transform: none; opacity: 1; pointer-events: auto;
    grid-template-columns: 1fr auto;
    padding: 12px var(--gutter);
    background: rgba(255,255,255,0.8);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
            backdrop-filter: saturate(180%) blur(18px);
    border-bottom: 1px solid var(--line);
  }
  .nav__links { display: none; }
  .nav__brand { height: 28px; margin: 0; }
  .nav__brand img { filter: none; }
  .nav__actions { gap: 8px; }
  .nav__itin { display: inline-flex; height: 38px; padding: 0 14px; font-size: 13px; background: #fff; }
  .nav__phone { width: 38px; height: 38px; padding: 0; justify-content: center; background: var(--ink); }
  .nav__phone span { display: none; }
  .nav__phone-icon { width: 16px; height: 16px; }

  /* ── HERO : plein écran, centré, typographie dominante, profondeur subtile ── */
  .hero {
    min-height: calc(100svh - 116px);   /* laisse voir le carrousel de logos en bas du 1er écran */
    min-height: calc(100vh - 116px);
    max-width: none;
    padding: 96px var(--gutter) 36px;
    display: grid; grid-template-columns: 1fr;
    align-content: center; justify-items: start;
    text-align: left;
    background: radial-gradient(130% 58% at 12% 2%, #f3f3f6 0%, #ffffff 60%);
    overflow: hidden;
  }
  .hero__logo, .hero__media, .hero__illus, .hero__scene { display: none; }
  .hero__text { justify-items: start; text-align: left; gap: 22px; width: 100%; }
  /* STATEMENT GÉANT : titre énorme qui remplit l'écran, aligné à gauche */
  .hero__title {
    color: var(--ink);
    font-size: clamp(62px, 19.5vw, 104px);
    line-height: 0.88; letter-spacing: -0.05em;
    text-align: left; width: 100%;
  }
  .hero__title .line { white-space: normal; }
  .hero__lede { color: var(--ink-mute); font-size: 16px; max-width: 24ch; text-align: left; }
  .hero__cta { display: flex; flex-direction: column; align-items: stretch; width: 100%; gap: 12px; margin-top: 20px; }
  .hero__cta .btn { width: 100%; max-width: 320px; justify-content: center; height: 54px; font-size: 15px; }
  .hero__cta .btn--dark { background: var(--ink); color: #fff; }
  .hero__cta .btn--ghost, .hero__cta .btn--link { display: none; }  /* seulement « Suivre un colis » */

  /* ── PARTENAIRES : carrousel de logos en défilement continu ── */
  .partners { padding: 26px var(--gutter); overflow: hidden; border-top: 1px solid var(--line); background: var(--bg); }
  .partners__label { margin-bottom: 14px; font-size: 11px; }
  .partners__row {
    flex-wrap: nowrap; justify-content: flex-start; width: max-content; gap: 12px;
    animation: partnersScroll 22s linear infinite;
  }
  .partners__item { flex: none; height: 46px; padding: 0 16px; border-radius: var(--r-sm); }
  .partners__logo { max-height: 22px; }

  /* ── RYTHME DES SECTIONS : air généreux + filet net + fonds alternés ── */
  .svc, .trust, .cov, .ct {
    max-width: none;
    padding-top: 80px; padding-bottom: 80px;
    border-top: 1px solid var(--line);
  }
  .svc   { background: var(--bg-2); }
  .trust { background: var(--bg); }
  .cov   { background: var(--bg-2); grid-template-columns: 1fr; gap: 26px; }
  .ct    { background: var(--bg); }
  .title { font-size: clamp(24px, 6.6vw, 32px); line-height: 1.08; letter-spacing: -0.03em; }

  /* SERVICES */
  .svc__media { aspect-ratio: 16 / 10; max-height: 186px; margin-bottom: 28px; }
  .svc__head { gap: 8px; padding-top: clamp(20px, 6vw, 28px); }
  .svc__title { font-size: clamp(22px, 6vw, 30px); max-width: none; }
  .svc__stats { padding: 16px 16px 18px; }
  .svc__stats dt { font-size: 17px; }
  .svc__stats dd { font-size: 9px; margin-top: 4px; line-height: 1.3; }
  .svc__stats > div { padding: 0 8px; }
  .svc__stats > div:first-child { padding-left: 0; }
  .svc__grid { grid-template-columns: 1fr; margin-bottom: 0; }
  .svc__item { padding: 18px 0; gap: 10px; }
  .svc__item-icon { width: 30px; height: 30px; }
  .svc__item-title { font-size: 17px; letter-spacing: -0.02em; }
  .svc__item-desc { font-size: 13px; line-height: 1.45; max-width: 34ch; }

  /* PHOTO EDITO */
  .edito--full { height: clamp(330px, 46vh, 420px); }
  .edito__title { font-size: clamp(30px, 8vw, 42px); }
  .edito__lede { font-size: 14px; max-width: 34ch; }
  .edito--full .edito__copy { padding: 44px var(--gutter); gap: 12px; }

  /* AVIS */
  .trust__inner { grid-template-columns: 1fr; gap: 22px; }
  .trust__stars svg { width: 116px; height: auto; }
  .trust__num { font-size: clamp(54px, 15vw, 70px); line-height: 0.9; }
  .trust__over { font-size: 24px; }
  .trust__meta { font-size: 15px; }
  .trust__reviews { height: 260px; }

  /* CONTACT */
  .ct__head { margin-bottom: 28px; }
  .ct__grid { grid-template-columns: 1fr; }
  .ct__block {
    grid-template-rows: auto auto auto;
    border-right: 0; border-bottom: 1px solid var(--line);
    padding: 22px 0; min-height: auto; gap: 12px;
  }
  .ct__block:first-child { padding-top: 0; }
  .ct__block:last-child { border-bottom: 0; padding-bottom: 0; }
  .ct__big { font-size: 19px; align-self: start; }
  .ct__big--phone { font-size: 22px; }
  .ct__mini-hours li { grid-template-columns: 92px 1fr; gap: 12px; font-size: 13px; }

  /* HORAIRES (page dédiée éventuelle) */
  .hrs__day { font-size: clamp(20px, 5.5vw, 26px); }
  .hrs__row { padding: 18px 0; }

  /* FOOTER */
  .foot { padding: 44px var(--gutter) 26px; }
  .foot__brand { height: 30px; }
  .foot__bottom { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 14px; font-size: 11px; }
  .foot__bottom > span:first-child,
  .foot__bottom > .foot__legal { justify-self: center; text-align: center; }

  /* BOUTONS */
  .btn { height: 50px; padding: 0 22px; font-size: 14.5px; }

  /* Anciennes animations 3D désactivées sur mobile */
  #trajet { display: none; }
}

/* ──────────────── motion safety */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition: none !important;
  }
  .hero__title [data-r] { transform: none !important; }
  .hero__logo, .hero__lede, .hero__cta { opacity: 1 !important; transform: none !important; }
}
