/* ==========================================================================
   SARL PRODEB — Feuille de style
   --------------------------------------------------------------------------
   1. Tokens              8. Marquee            15. CTA final
   2. Base                9. Offre & tarifs     16. Footer
   3. Utilitaires        10. Qualité            17. Barre mobile
   4. Boutons            11. Livraison & carte  18. Pages secondaires
   5. Header & menu      12. Commande           19. Animations
   6. Hero               13. Entreprise         20. Responsive
   7. Confiance          14. FAQ                21. Mouvement réduit
   ========================================================================== */

/* Polices hébergées sur le site (fichiers variables, sous-ensemble latin) */
@font-face {
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-tight-latin-wght-normal.woff2") format("woff2");
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url("../fonts/jetbrains-mono-latin-wght-normal.woff2") format("woff2");
}

/* 1. Tokens ---------------------------------------------------------------- */
:root {
  /* Palette : vert forêt, brun bois, blanc cassé */
  --forest-950: #0d1912;
  --forest-900: #13241a;
  --forest-800: #1a3225;
  --forest-700: #234332;
  --forest-600: #2d5a40;
  --forest-500: #3e7556;
  --forest-300: #9db8a5;
  --wood-800: #52331c;
  --wood-700: #663f23;
  --wood-600: #7a4e2d;
  --wood-500: #9a673e;
  --wood-400: #b98553;
  /* Couleurs exactes du logo ETF PRODEB */
  --logo-green: #036a1a;
  --logo-brown: #752600;
  --oak-300: #d9be98;
  --oak-200: #e7d6bc;
  --oak-100: #f2e9da;
  --cream-50: #fbf8f3;
  --cream-100: #f5f0e7;
  --cream-200: #eae3d6;
  --cream-300: #dbd1c0;
  --ink-900: #161916;
  --ink-800: #262a26;
  --ink-600: #545a53;
  --ink-500: #70756e;
  --water: #a9c0c3;
  --white: #fff;

  /* Rôles */
  --c-bg: var(--cream-50);
  --c-surface: var(--white);
  --c-line: var(--cream-200);
  --c-line-strong: var(--cream-300);
  --c-text: var(--ink-900);
  --c-text-soft: var(--ink-600);
  --c-wa: var(--forest-600);
  --c-wa-hover: var(--forest-800);
  --c-call: var(--wood-600);
  --c-call-hover: var(--wood-800);

  /* Typographie */
  --font-sans: "Inter Tight", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --fs-display: clamp(2.6rem, 1.2rem + 4.6vw, 4.6rem);
  --fs-h2: clamp(2.1rem, 1.25rem + 3vw, 3.65rem);
  --fs-h3: clamp(1.25rem, 1.1rem + .5vw, 1.55rem);
  --fs-lead: clamp(1.0625rem, 1rem + .3vw, 1.25rem);
  --fs-sm: .9375rem;
  --fs-xs: .8125rem;
  --fs-2xs: .75rem;

  /* Formes */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 6px -2px rgb(19 36 26 / .10), 0 1px 2px rgb(19 36 26 / .05);
  --shadow-md: 0 22px 44px -24px rgb(19 36 26 / .38), 0 2px 8px -3px rgb(19 36 26 / .08);
  --shadow-lg: 0 48px 90px -42px rgb(19 36 26 / .5);

  /* Mouvement */
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  /* Montée régulière de la vague de survol : on doit voir la couleur monter */
  --ease-wave: cubic-bezier(.62, .04, .3, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);

  /* Mise en page */
  --container: 1240px;
  --gutter: clamp(16px, 4vw, 32px);
  --section-y: clamp(84px, 11vw, 150px);
  --sticky-top: 104px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent; /* pas de carré gris au toucher sur mobile */
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
/* Avec JavaScript, le défilement vers les sections est animé par main.js (plus doux) */
html.js { scroll-behavior: auto; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: -.006em;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 { margin: 0; font-weight: 500; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img, svg, canvas { display: block; max-width: 100%; }
img { height: auto; }
figure { margin: 0; }
button, input { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }
::selection { background: var(--forest-700); color: var(--cream-50); }
:focus-visible { outline: 2px solid var(--wood-500); outline-offset: 3px; border-radius: 6px; }

@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vt-out .32s var(--ease-in-out) both; }
::view-transition-new(root) { animation: vt-in .6s var(--ease-out) both; }
@keyframes vt-out { to { opacity: 0; transform: translateY(-10px); } }
@keyframes vt-in { from { opacity: 0; transform: translateY(18px); } }

/* 3. Utilitaires ----------------------------------------------------------- */
.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed; left: 12px; top: 12px; z-index: 200;
  padding: 10px 16px; border-radius: var(--r-pill);
  background: var(--forest-900); color: var(--cream-50);
  font-weight: 600; font-size: var(--fs-sm);
  translate: 0 -160%;
  transition: translate .3s var(--ease-out);
}
.skip-link:focus { translate: 0 0; }

.section { position: relative; padding-block: var(--section-y); }
main, .footer { overflow-x: clip; }

.icon {
  width: 1.25em; height: 1.25em; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.icon--fill { fill: currentColor; stroke: none; }

.section-head { max-width: 780px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-title {
  font-size: var(--fs-h2);
  line-height: 1.02;
  letter-spacing: -.028em;
}
.section-lead {
  margin-top: 22px;
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--c-text-soft);
}
.hl { color: var(--wood-600); }

.mono { font-family: var(--font-mono); letter-spacing: -.01em; }

.link-line {
  background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat;
  transition: background-size .55s var(--ease-out), color .3s;
  padding-bottom: 2px;
}
.link-line:hover { background-size: 100% 1px; }

.inset-block {
  margin-inline: clamp(8px, 1.4vw, 20px);
  border-radius: clamp(26px, 3vw, 42px);
}

/* Médias (révélation + parallaxe) */
.media { position: relative; overflow: hidden; background: var(--cream-200); isolation: isolate; }
.media__parallax { position: absolute; inset: -9% 0; will-change: transform; }
.media__img { width: 100%; height: 100%; object-fit: cover; }
.media__parallax picture, .cta__bg picture { display: block; width: 100%; height: 100%; }

/* Chiffres animés : chaque chiffre apparaît l’un après l’autre (fondu + montée).
   Aucun masque ni colonne de chiffres : rien ne peut être rogné ou dépasser, quel que soit le navigateur. */
.odo { display: inline-flex; font-variant-numeric: tabular-nums; }
.odo__d {
  display: inline-block;
  transition: opacity .9s ease, translate 1.2s cubic-bezier(.22, 1, .36, 1), filter 1s ease;
  transition-delay: calc(var(--di, 0) * 120ms + 150ms);
}
.js .odo:not(.is-in) .odo__d { opacity: 0; translate: 0 .45em; filter: blur(8px); }

/* 4. Boutons --------------------------------------------------------------- */
.btn {
  --btn-bg: var(--forest-800);
  --btn-fg: var(--cream-50);
  --btn-hover: var(--forest-900);
  --mx: 0px; --my: 0px; --s: 1;
  position: relative; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: .65em;
  min-height: 52px;
  padding: .8em 1.45em;
  border-radius: var(--r-pill);
  font-size: var(--fs-sm); font-weight: 600;
  letter-spacing: -.012em; line-height: 1.1;
  white-space: nowrap;
  color: var(--btn-fg);
  background: var(--btn-bg);
  overflow: hidden;
  transform: translate3d(var(--mx), var(--my), 0) scale(var(--s));
  transition: transform .8s cubic-bezier(.22, 1, .36, 1), box-shadow .8s ease, background-color .4s ease;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
/* Au survol, une vague de couleur monte depuis le bas du bouton */
.btn::after {
  content: "";
  position: absolute; z-index: -1;
  left: -6%; right: -6%; bottom: 0; height: 148%;
  border-radius: 46% 46% 0 0 / 22% 22% 0 0;
  background: var(--btn-hover);
  translate: 0 100%;
  transition: translate .7s var(--ease-wave);
  pointer-events: none;
}
.btn:active { --s: .96; }
.btn .icon { width: 1.2em; height: 1.2em; transition: transform .8s cubic-bezier(.34, 1.4, .64, 1); }

.btn__label { display: inline-block; line-height: 1.15; }

@media (hover: hover) {
  .btn:hover { box-shadow: 0 16px 32px -16px rgb(19 36 26 / .55); }
  .btn:hover::after { translate: 0 0; }
  .btn:hover .icon { transform: translateY(-3px); }
  .btn--arrow:hover .icon { transform: translateX(5px); }
}

.btn--wa { --btn-bg: var(--c-wa); --btn-hover: var(--c-wa-hover); }
.btn--call { --btn-bg: var(--c-call); --btn-hover: var(--c-call-hover); }
.btn--light { --btn-bg: var(--cream-50); --btn-fg: var(--forest-900); --btn-hover: var(--oak-200); }
.btn--outline-light {
  --btn-bg: transparent; --btn-fg: var(--cream-50); --btn-hover: rgb(255 255 255 / .12);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / .28);
}
.btn--sm { min-height: 42px; padding: .6em 1.05em; font-size: var(--fs-xs); gap: .5em; }
.btn--lg { min-height: 58px; padding: .9em 1.7em; font-size: 1rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Même langage de survol pour les pastilles d’icônes : la couleur monte, rien ne pivote */
.trust__icon, .info-list__icon, .fact__icon { position: relative; isolation: isolate; overflow: hidden; }
.trust__icon::before, .info-list__icon::before, .fact__icon::before {
  content: ""; position: absolute; z-index: -1;
  left: -12%; right: -12%; bottom: 0; height: 148%;
  border-radius: 46% 46% 0 0 / 22% 22% 0 0;
  background: var(--hover-fill, var(--forest-800));
  translate: 0 100%;
  transition: translate .62s var(--ease-wave);
}
.info-list__icon .icon, .fact__icon .icon { transition: translate .6s var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .trust__item:hover .trust__icon::before,
  .info-list li:hover .info-list__icon::before,
  .fact:hover .fact__icon::before { translate: 0 0; }
  .trust__item:hover .trust__icon .icon,
  .info-list li:hover .info-list__icon .icon,
  .fact:hover .fact__icon .icon { translate: 0 -2px; }
}

/* 5. Header & menu --------------------------------------------------------- */
.topbar {
  position: relative; z-index: 61;
  background: var(--forest-900);
  color: var(--oak-200);
  font-size: var(--fs-xs); font-weight: 500;
  letter-spacing: -.005em;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  min-height: 38px; text-align: center;
}
.topbar__item { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.topbar__item .icon { width: 16px; height: 16px; color: var(--oak-300); animation: truck 3.2s var(--ease-in-out) infinite; }
.topbar__sep { width: 4px; height: 4px; border-radius: 50%; background: var(--wood-400); flex: none; }
.topbar__short { display: none; }
@keyframes truck { 0%, 100% { translate: 0 0; } 45% { translate: 3px 0; } 55% { translate: 3px -1px; } }

.site-header {
  position: sticky; top: 0; z-index: 60;
  height: 78px; /* 12px + barre de 66px : hauteur constante, la barre peut rétrécir sans décaler la page */
  padding-top: 12px;
  pointer-events: none;
}
.header-bar {
  pointer-events: auto;
  position: relative;
  display: flex; align-items: center; gap: 12px;
  max-width: var(--container);
  height: 66px;
  margin-inline: auto;
  padding: 0 10px;
  border-radius: 22px;
  /* En-tête clair et opaque : le logo garde ses couleurs d’origine, sans voile gris au-dessus des sections foncées */
  background: var(--white);
  color: var(--ink-900);
  box-shadow: 0 0 0 1px rgb(19 36 26 / .07), 0 24px 48px -28px rgb(13 25 18 / .35);
  transition: max-width .7s var(--ease-out), height .5s var(--ease-out), box-shadow .5s, border-radius .5s;
}
.site-header.is-scrolled .header-bar {
  max-width: 1140px;
  height: 60px;
  box-shadow: 0 0 0 1px rgb(19 36 26 / .08), 0 26px 50px -24px rgb(13 25 18 / .45);
}
.js .site-header .header-bar { translate: 0 -24px; opacity: 0; transition: translate 1s var(--ease-out) .05s, opacity .8s var(--ease-out) .05s, max-width .7s var(--ease-out), height .5s var(--ease-out), box-shadow .5s; }
.is-loaded .site-header .header-bar { translate: 0 0; opacity: 1; }

.brand { display: inline-flex; align-items: center; gap: 11px; flex: none; }
/* Logo ETF PRODEB dans ses couleurs d’origine, posé directement sur l’en-tête clair */
.brand--logo {
  height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  transition: transform .9s var(--ease-spring), height .5s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) { .brand--logo:hover { transform: scale(1.035); } }
.site-header.is-scrolled .brand--logo { height: 42px; }
.brand__logo {
  --logo-h: 22px;
  display: block;
  height: var(--logo-h);
  width: calc(var(--logo-h) * 7.54);
  overflow: visible;
}
.brand__mark {
  --mark-bg: var(--oak-300); --mark-fg: var(--forest-900);
  width: 40px; height: 40px;
  transition: transform .8s var(--ease-spring);
}
@media (hover: hover) and (pointer: fine) { .brand:hover .brand__mark { transform: translateY(-4px); } }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-size: 1.2rem; font-weight: 600; letter-spacing: -.035em; }
.brand__tag {
  margin-top: 4px;
  font-family: var(--font-mono); font-size: .625rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--oak-300);
}

.nav { position: relative; margin-inline: auto; }
.nav__list { display: flex; gap: 2px; }
.nav__link {
  position: relative; z-index: 1;
  display: block;
  padding: 9px 14px;
  border-radius: var(--r-pill);
  font-size: var(--fs-sm); font-weight: 500;
  color: var(--ink-600);
  transition: color .35s;
}
.nav__link:hover, .nav__link.is-active { color: var(--ink-900); }
.nav__indicator {
  position: absolute; z-index: 0; left: 0; top: 50%;
  width: var(--iw, 0px); height: 38px;
  border-radius: var(--r-pill);
  background: var(--cream-100);
  box-shadow: inset 0 0 0 1px rgb(19 36 26 / .06);
  transform: translate3d(var(--ix, 0px), -50%, 0);
  opacity: 0;
  transition: transform .55s var(--ease-out), width .55s var(--ease-out), opacity .35s;
  pointer-events: none;
}
.nav__indicator.is-visible { opacity: 1; }
/* Retour vers la section active, plus lent et plus doux que le suivi au survol */
.nav__indicator.is-returning { transition: transform 1.1s cubic-bezier(.65, 0, .35, 1) .12s, width 1.1s cubic-bezier(.65, 0, .35, 1) .12s, opacity .35s; }

.header-bar__cta { display: flex; gap: 8px; flex: none; }

.burger {
  display: none;
  position: relative; flex: none;
  width: 46px; height: 46px; margin-left: auto;
  border-radius: 50%;
  background: var(--cream-100);
  box-shadow: inset 0 0 0 1px rgb(19 36 26 / .07);
  transition: background .3s, box-shadow .3s;
}
.burger:hover { background: var(--cream-200); }
.menu-open .burger { background: var(--forest-900); box-shadow: none; }
.burger span {
  position: absolute; left: 14px; right: 14px; height: 1.7px;
  border-radius: 2px; background: var(--forest-900);
  transition: transform .6s var(--ease-out), top .6s var(--ease-out), background .3s;
}
.menu-open .burger span { background: var(--cream-50); }
.burger span:nth-child(1) { top: 18px; }
.burger span:nth-child(2) { top: 26px; }
.menu-open .burger span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.menu-open .burger span:nth-child(2) { top: 22px; transform: rotate(-45deg); }

.menu-mobile {
  position: fixed; inset: 0; z-index: 55;
  display: flex; flex-direction: column; justify-content: space-between; gap: 40px;
  padding: 130px var(--gutter) calc(32px + env(safe-area-inset-bottom));
  background: var(--forest-900);
  color: var(--cream-50);
  overflow-y: auto;
  clip-path: circle(0 at calc(100% - 50px) 70px);
  visibility: hidden;
  transition: clip-path .85s var(--ease-in-out), visibility 0s linear .85s;
}
.menu-open .menu-mobile {
  clip-path: circle(160% at calc(100% - 50px) 70px);
  visibility: visible;
  transition: clip-path .85s var(--ease-in-out), visibility 0s;
}
.menu-mobile__list li { overflow: hidden; }
.menu-mobile__link {
  display: flex; align-items: baseline; gap: 14px;
  padding: 6px 0;
  font-size: clamp(2.1rem, 9vw, 3.2rem); font-weight: 500;
  letter-spacing: -.04em; line-height: 1.1;
  translate: 0 105%;
  transition: translate .8s var(--ease-out), color .3s;
  transition-delay: 0s;
}
.menu-mobile__link:hover { color: var(--oak-300); }
.menu-open .menu-mobile__link { translate: 0 0; transition-delay: calc(var(--i, 0) * 60ms + 260ms); }
.menu-mobile__foot {
  display: grid; gap: 18px;
  opacity: 0; translate: 0 20px;
  transition: opacity .6s, translate .8s var(--ease-out);
}
.menu-open .menu-mobile__foot { opacity: 1; translate: 0 0; transition-delay: .65s; }
.menu-mobile__foot p { color: rgb(251 248 243 / .7); font-size: var(--fs-sm); }
.menu-mobile__foot .btn-row .btn { flex: 1 1 200px; }
html.menu-open body { overflow: hidden; }

/* 6. Hero ------------------------------------------------------------------ */
.hero { position: relative; padding-top: clamp(36px, 6vw, 76px); padding-bottom: clamp(48px, 6vw, 84px); }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  gap: clamp(36px, 5vw, 84px);
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 18px;
  border-radius: var(--r-pill);
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--c-line), var(--shadow-sm);
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: -.005em;
  color: var(--ink-800);
}
.hero__eyebrow .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--wood-500); }
.hero__title {
  margin-top: 26px;
  font-size: var(--fs-display);
  line-height: .98;
  letter-spacing: -.036em;
}
.hero__title .hl { display: inline; }
.hero__lead {
  margin-top: 26px; max-width: 35em;
  font-size: var(--fs-lead); line-height: 1.55;
  color: var(--c-text-soft);
}
.hero__actions { margin-top: 36px; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  margin-top: 28px;
  font-size: var(--fs-sm); font-weight: 500;
  color: var(--ink-800);
}
.hero__meta li { display: inline-flex; align-items: center; gap: 9px; }
.check {
  display: grid; place-items: center; flex: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--oak-100); color: var(--forest-600);
}
.check .icon { width: 13px; height: 13px; stroke-width: 2.6; }

.hero__media { position: relative; }
.hero__figure { aspect-ratio: 4 / 4.55; border-radius: var(--r-xl); --clip-r: var(--r-xl); box-shadow: var(--shadow-lg); }

.chip {
  position: absolute; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 18px 10px 10px;
  border-radius: 20px;
  background: rgb(251 248 243 / .9);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  backdrop-filter: blur(14px) saturate(1.3);
  box-shadow: var(--shadow-md), inset 0 0 0 1px rgb(255 255 255 / .6);
  color: var(--ink-900);
  animation: float 6s var(--ease-in-out) infinite;
}
.chip__icon {
  display: grid; place-items: center; flex: none;
  width: 42px; height: 42px; border-radius: 14px;
  background: var(--forest-800); color: var(--oak-200);
}
.chip__icon .icon { width: 20px; height: 20px; }
.chip__title { display: block; font-size: var(--fs-sm); font-weight: 600; letter-spacing: -.02em; line-height: 1.2; }
.chip__sub { display: block; margin-top: 2px; font-size: var(--fs-2xs); color: var(--ink-600); line-height: 1.3; }
.chip--dry { right: -26px; bottom: 96px; }

.status-dot {
  position: relative; display: inline-block; flex: none;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--ink-500);
}
.status-dot::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: inherit; opacity: 0;
}
.is-open .status-dot { background: #3f9d5d; }
.is-open .status-dot::after { animation: pulse-dot 2s var(--ease-out) infinite; }
@keyframes pulse-dot { 0% { opacity: .55; transform: scale(1); } 100% { opacity: 0; transform: scale(3.2); } }

.badge {
  position: absolute; z-index: 3;
  left: -44px; bottom: 44px;
  display: grid; place-items: center;
  width: 136px; height: 136px;
  border-radius: 50%;
  background: var(--cream-50);
  box-shadow: var(--shadow-md);
  color: var(--forest-800);
}
.badge__ring { position: absolute; inset: 8px; width: calc(100% - 16px); height: calc(100% - 16px); animation: spin 22s linear infinite; }
.badge__ring text { font-family: var(--font-mono); font-size: 9.6px; font-weight: 500; letter-spacing: .1em; fill: currentColor; text-transform: uppercase; }
.badge .brand__mark { width: 48px; height: 48px; --mark-bg: var(--forest-800); --mark-fg: var(--oak-300); }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -9px; } }

/* 7. Confiance ------------------------------------------------------------- */
.trust { position: relative; z-index: 2; }
.trust__grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--c-line), var(--shadow-sm);
}
.trust__item { position: relative; display: flex; gap: 16px; align-items: flex-start; padding: 28px 26px; }
.trust__item + .trust__item::before {
  content: ""; position: absolute; left: 0; top: 26px; bottom: 26px; width: 1px;
  background: var(--c-line);
}
.trust__icon {
  --hover-fill: var(--forest-800);
  display: grid; place-items: center; flex: none;
  width: 50px; height: 50px; border-radius: 15px;
  background: var(--cream-100); color: var(--forest-700);
  transition: color .5s var(--ease-out);
}
.trust__icon .icon { width: 24px; height: 24px; stroke-width: 1.6; }
@media (hover: hover) and (pointer: fine) { .trust__item:hover .trust__icon { color: var(--oak-200); } }
.trust__title { font-size: 1.0625rem; font-weight: 600; letter-spacing: -.02em; line-height: 1.25; }
.trust__text { margin-top: 5px; font-size: var(--fs-sm); color: var(--c-text-soft); line-height: 1.45; }

/* Tracé des icônes à l’apparition */
.js .draw .icon { stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 1.6s var(--ease-out) calc(var(--d, 0ms) + var(--i, 0) * 90ms + 250ms), translate .6s var(--ease-out); }
.js .draw.is-in .icon { stroke-dashoffset: 0; }

/* 8. Marquee --------------------------------------------------------------- */
.marquee { position: relative; overflow: hidden; padding-block: clamp(48px, 7vw, 96px) clamp(8px, 2vw, 24px); }
.marquee__track { display: flex; width: max-content; will-change: transform; }
.marquee__group { display: flex; align-items: center; flex: none; }
.marquee__item {
  padding-inline: clamp(18px, 2.4vw, 38px);
  font-size: clamp(2.6rem, 1.4rem + 4.6vw, 6rem);
  font-weight: 500; letter-spacing: -.035em; line-height: 1.05;
  white-space: nowrap;
  color: var(--forest-800);
}
.marquee__item--outline { color: var(--wood-500); }
.marquee__sep {
  --mark-bg: transparent; --mark-fg: var(--wood-500);
  width: clamp(34px, 3.4vw, 56px); height: clamp(34px, 3.4vw, 56px); flex: none;
  animation: spin 14s linear infinite;
}

/* 9. Offre & tarifs -------------------------------------------------------- */
.offer { padding-top: clamp(56px, 7vw, 100px); }
.price-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
  max-width: 1180px;
  margin: clamp(44px, 6vw, 76px) auto 0;
}
/* Sous 1080px, deux colonnes et la troisième carte centrée */
@media (max-width: 1080px) {
  .price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 780px; }
  .price-col:last-child { grid-column: 1 / -1; width: calc(50% - clamp(16px, 2.4vw, 28px) / 2); margin-inline: auto; }
}
.price-col { display: flex; perspective: 1400px; }
.price-card {
  --rx: 0deg; --ry: 0deg;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; width: 100%;
  padding: clamp(22px, 3vw, 38px);
  border-radius: var(--r-xl);
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--c-line), var(--shadow-sm);
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform .7s var(--ease-out), box-shadow .6s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) { .price-card:hover { box-shadow: inset 0 0 0 1px var(--cream-300), var(--shadow-lg); } }
.price-card__spot {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(520px circle at var(--px, 50%) var(--py, 0%), rgb(185 133 83 / .13), transparent 62%);
  opacity: 0; transition: opacity .5s;
}
@media (hover: hover) and (pointer: fine) { .price-card:hover .price-card__spot { opacity: 1; } }
.price-card > *:not(.price-card__spot) { position: relative; z-index: 1; }

.price-card__visual {
  position: relative;
  border-radius: var(--r-md);
  background: var(--cream-100);
  padding: 22px 18px 14px;
  overflow: hidden;
}
.price-card__visual::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 27px, rgb(122 78 45 / .06) 27px 28px);
  pointer-events: none;
}
.price-card__tag {
  position: absolute; top: 14px; left: 16px; z-index: 1;
  font-family: var(--font-mono); font-size: var(--fs-2xs); font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; color: var(--wood-600);
}
.log { width: 100%; height: auto; margin-top: 12px; overflow: visible; }
.log__piece { transition: translate 1.2s var(--ease-out) .2s, opacity .8s .2s; }
.log__bark { fill: #6b4428; }
.log__body { fill: #d2ae80; }
.log__grain { fill: none; stroke: #b48656; stroke-width: 1.4; stroke-linecap: round; opacity: .7; }
.log__end { fill: #e8cfa6; stroke: #b48656; stroke-width: 1.4; }
.log__ring { fill: none; stroke: #c49a69; stroke-width: 1.2; }
.log__dim-line { fill: none; stroke: var(--forest-700); stroke-width: 1.4; stroke-dasharray: 1; stroke-dashoffset: 0; transition: stroke-dashoffset 1.3s var(--ease-out) .55s; }
.log__dim-tick { fill: none; stroke: var(--forest-700); stroke-width: 1.4; transition: opacity .6s .5s; }
.log__label rect { fill: var(--forest-800); }
.log__label text { font-family: var(--font-mono); font-size: 12px; font-weight: 500; fill: var(--cream-50); letter-spacing: .02em; }
.log__label { transition: opacity .6s 1.1s, translate .8s var(--ease-spring) 1.1s; }
.js .price-col:not(.is-in) .log__piece { translate: -40px 0; opacity: 0; }
.js .price-col:not(.is-in) .log__dim-line { stroke-dashoffset: 1; }
.js .price-col:not(.is-in) .log__dim-tick { opacity: 0; }
.js .price-col:not(.is-in) .log__label { opacity: 0; translate: 0 6px; }
@media (hover: hover) and (pointer: fine) { .price-card:hover .log__piece { translate: 6px 0; transition-delay: 0s; transition-duration: .8s; } }

.price-card__title { margin-top: 28px; font-size: var(--fs-h3); font-weight: 600; letter-spacing: -.03em; line-height: 1.15; }
.price-card__desc { margin-top: 8px; min-height: 3.2em; color: var(--c-text-soft); }
.price {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 10px;
  margin-top: 26px; padding-top: 24px;
  border-top: 1px solid var(--c-line);
}
.price__amount { display: inline-flex; align-items: baseline; gap: .12em; font-size: clamp(2.75rem, 2.1rem + 2.2vw, 3.75rem); font-weight: 500; letter-spacing: -.05em; line-height: 1; }
.price__cur { font-size: .62em; letter-spacing: -.02em; }
.price__unit { font-size: var(--fs-sm); font-weight: 600; color: var(--c-text-soft); }
.price__ttc {
  flex-basis: 100%; margin-top: 10px;
  font-size: var(--fs-xs); font-weight: 500; letter-spacing: -.01em; color: var(--c-text-soft);
}
.price__ttc strong { font-weight: 600; color: var(--ink-900); }
.price-note {
  max-width: 1180px; margin: clamp(22px, 3vw, 32px) auto 0;
  font-size: var(--fs-sm); line-height: 1.55; color: var(--c-text-soft); text-align: center;
}
.checklist { display: grid; gap: 11px; margin: 22px 0 30px; }
.checklist li { display: flex; align-items: center; gap: 11px; font-weight: 500; }
.checklist li.is-deal { color: var(--forest-700); }
.checklist li.is-deal .check { background: var(--forest-700); color: var(--cream-50); box-shadow: none; }
.price-card .btn { margin-top: auto; }
.price-card__alt {
  display: inline-flex; align-self: center; align-items: center; gap: 8px;
  margin-top: 14px; font-size: var(--fs-sm); font-weight: 500; color: var(--c-text-soft);
  transition: color .3s;
}
.price-card__alt:hover { color: var(--wood-600); }
.price-card__alt .icon { width: 16px; height: 16px; }

/* 10. Qualité -------------------------------------------------------------- */
.quality { background: var(--forest-900); color: var(--cream-50); overflow: hidden; }
.quality::before {
  content: ""; position: absolute; right: -180px; top: -160px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgb(62 117 86 / .35), transparent 65%);
  pointer-events: none;
}
.quality__grid {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 100px); align-items: center;
}
.quality__media { position: relative; }
.quality__figure { aspect-ratio: 4 / 5; border-radius: var(--r-lg); --clip-r: var(--r-lg); }
.quality .section-title { color: var(--cream-50); }
.quality .hl { color: var(--oak-300); }
.quality__text { margin-top: 24px; font-size: var(--fs-lead); line-height: 1.6; color: rgb(251 248 243 / .74); max-width: 34em; }

.stamp {
  position: absolute; z-index: 2; right: -34px; top: 38px;
  display: grid; place-items: center; text-align: center;
  width: 148px; height: 148px; border-radius: 50%;
  background: var(--wood-600);
  color: var(--cream-50);
  box-shadow: 0 30px 60px -30px rgb(0 0 0 / .6);
}
.stamp .badge__ring { inset: 7px; width: calc(100% - 14px); height: calc(100% - 14px); animation-duration: 26s; animation-direction: reverse; }
.stamp .badge__ring text { font-size: 9px; }
.stamp__value { display: block; font-size: 2.1rem; font-weight: 600; letter-spacing: -.05em; line-height: .9; }
.stamp__label { display: block; margin-top: 4px; font-family: var(--font-mono); font-size: .625rem; letter-spacing: .08em; text-transform: uppercase; color: var(--oak-200); }

.essences { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-top: 36px; }
.essence {
  padding: 16px 14px 16px;
  border-radius: 18px;
  background: rgb(255 255 255 / .04);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / .08);
  transition: background .45s, translate .6s var(--ease-out), box-shadow .45s;
}
@media (hover: hover) and (pointer: fine) { .essence:hover { background: rgb(255 255 255 / .08); box-shadow: inset 0 0 0 1px rgb(217 190 152 / .35); } }
.essence__swatch {
  display: block;
  width: 40px; height: 40px; border-radius: 50%;
  background:
    radial-gradient(circle, var(--core) 0 9%, var(--wood) 10% 30%, var(--ring) 31% 34%, var(--wood) 35% 55%, var(--ring) 56% 59%, var(--wood) 60% 80%, var(--bark) 81% 100%);
  box-shadow: 0 8px 18px -8px rgb(0 0 0 / .6);
  transition: translate .8s var(--ease-out), box-shadow .6s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) { .essence:hover .essence__swatch { translate: 0 -5px; box-shadow: 0 16px 26px -12px rgb(0 0 0 / .75), 0 0 0 4px rgb(217 190 152 / .22); } }
.essence__name { display: block; margin-top: 14px; font-weight: 600; letter-spacing: -.02em; }
.essence__type { display: block; margin-top: 2px; font-size: var(--fs-2xs); color: rgb(251 248 243 / .55); }

.drying {
  margin-top: 14px; padding: 20px 22px;
  border-radius: 20px;
  background: rgb(255 255 255 / .04);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / .08);
}
.drying__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-weight: 600; letter-spacing: -.015em; }
.drying__head .mono { font-size: var(--fs-xs); font-weight: 500; color: var(--oak-300); white-space: nowrap; }
.drying__bar { position: relative; height: 8px; margin-top: 16px; border-radius: 99px; background: rgb(255 255 255 / .1); overflow: hidden; }
.drying__fill {
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(90deg, var(--forest-500), var(--wood-400) 60%, var(--oak-300));
  transform-origin: left center;
  transition: scale 2.4s var(--ease-in-out) .3s;
}
.js .drying:not(.is-in) .drying__fill { scale: 0 1; }
.drying__fill::after {
  content: ""; position: absolute; right: 0; top: 50%;
  width: 14px; height: 14px; margin-top: -7px; border-radius: 50%;
  background: var(--oak-300); box-shadow: 0 0 0 5px rgb(217 190 152 / .25);
}
.drying__steps { display: flex; justify-content: space-between; margin-top: 10px; font-size: var(--fs-2xs); color: rgb(251 248 243 / .6); }

.quality__facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.pill-fact {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px 10px 10px;
  border-radius: var(--r-pill);
  background: rgb(255 255 255 / .06);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / .08);
  font-size: var(--fs-sm); font-weight: 500;
  transition: background .35s;
}
@media (hover: hover) and (pointer: fine) { .pill-fact:hover { background: rgb(255 255 255 / .1); } }
.pill-fact__icon { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--oak-300); color: var(--forest-900); }
.pill-fact__icon .icon { width: 16px; height: 16px; }

/* 11. Livraison & carte ---------------------------------------------------- */
.delivery__grid {
  display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(40px, 6vw, 96px); align-items: center;
}
.info-list { margin-top: 32px; border-top: 1px solid var(--c-line); }
.info-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--c-line);
  font-weight: 500;
  transition: padding-left .55s var(--ease-wave), color .3s;
}
@media (hover: hover) and (pointer: fine) { .info-list li:hover { padding-left: 8px; } }
.info-list__icon {
  --hover-fill: var(--forest-800);
  display: grid; place-items: center; flex: none;
  width: 40px; height: 40px; border-radius: 13px;
  background: var(--white); color: var(--forest-600);
  box-shadow: inset 0 0 0 1px var(--c-line);
  transition: color .5s var(--ease-out);
}
.info-list__icon .icon { width: 19px; height: 19px; }
@media (hover: hover) and (pointer: fine) { .info-list li:hover .info-list__icon { color: var(--oak-200); } }

.zone { margin-top: 32px; }
.zone__label { display: block; margin-bottom: 10px; font-size: var(--fs-sm); font-weight: 600; letter-spacing: -.01em; }
.zone__field {
  display: flex; align-items: center; gap: 8px;
  padding: 7px;
  border-radius: var(--r-pill);
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--c-line-strong), var(--shadow-sm);
  transition: box-shadow .4s;
}
.zone__field:focus-within { box-shadow: inset 0 0 0 2px var(--forest-600), var(--shadow-md); }
.zone__icon { width: 20px; height: 20px; margin-left: 14px; color: var(--wood-500); }
.zone__input {
  flex: 1; min-width: 0; height: 50px;
  border: 0; background: transparent; outline: none;
  font-size: 1rem; letter-spacing: -.01em;
}
.zone__input::placeholder { color: var(--ink-500); }
.zone__result {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 12px; padding: 11px 14px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--c-line);
  font-size: var(--fs-sm); font-weight: 500; line-height: 1.45;
  color: var(--ink-800);
  animation: zone-result .5s var(--ease-out);
}
.zone__result[hidden] { display: none; }
.zone__result::before {
  content: ""; flex: none; width: 9px; height: 9px; margin-top: .45em;
  border-radius: 50%; background: var(--ink-500);
}
.zone__result[data-state="ok"] { background: rgb(45 90 64 / .08); box-shadow: inset 0 0 0 1px rgb(45 90 64 / .22); color: var(--forest-700); }
.zone__result[data-state="ok"]::before { background: var(--forest-600); }
.zone__result[data-state="limit"] { background: rgb(154 103 62 / .09); box-shadow: inset 0 0 0 1px rgb(154 103 62 / .25); color: var(--wood-700); }
.zone__result[data-state="limit"]::before { background: var(--wood-500); }
@keyframes zone-result { from { opacity: 0; translate: 0 -4px; } }

/* Saisie assistée des communes : remplace la liste déroulante du navigateur */
.zone__combo { position: relative; }
.combo {
  position: absolute; z-index: 58; top: calc(100% + 10px); left: 0; right: 0;
  padding: 8px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--c-line), var(--shadow-lg);
  opacity: 0; translate: 0 -10px; visibility: hidden;
  transition: opacity .24s var(--ease-out), translate .36s var(--ease-out), visibility 0s .36s;
}
.combo--up { top: auto; bottom: calc(100% + 10px); translate: 0 10px; }
.combo.is-open {
  opacity: 1; translate: 0 0; visibility: visible;
  transition: opacity .24s var(--ease-out), translate .36s var(--ease-out), visibility 0s;
}
.combo__head {
  padding: 6px 12px 8px;
  font-family: var(--font-mono); font-size: var(--fs-2xs); font-weight: 500;
  letter-spacing: .07em; text-transform: uppercase; color: var(--ink-500);
}
.combo__head[hidden] { display: none; }
.combo__list { max-height: 268px; overflow-y: auto; overscroll-behavior: contain; }
.combo__item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 12px;
  border-radius: 14px;
  cursor: pointer;
  transition: background .25s var(--ease-out);
}
.combo__item.is-active { background: var(--cream-100); }
.combo__pin { flex: none; width: 16px; height: 16px; color: var(--wood-500); }
.combo__name { flex: 1; min-width: 0; font-weight: 500; letter-spacing: -.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.combo__name mark { background: none; color: var(--forest-700); font-weight: 700; }
.combo__tag {
  flex: none; padding: 3px 9px;
  border-radius: var(--r-pill);
  background: rgb(45 90 64 / .1); color: var(--forest-700);
  font-size: var(--fs-2xs); font-weight: 600;
}
.combo__tag--limit { background: rgb(154 103 62 / .12); color: var(--wood-700); }
.combo__empty, .combo__foot { padding: 10px 12px; font-size: var(--fs-xs); line-height: 1.5; color: var(--c-text-soft); }
.combo__empty[hidden], .combo__foot[hidden] { display: none; }
.combo__empty a { font-weight: 600; color: var(--forest-700); text-decoration: underline; text-underline-offset: 3px; }
.zone__hint { margin-top: 12px; font-size: var(--fs-sm); color: var(--c-text-soft); }
.zone__hint a { font-weight: 600; color: var(--ink-900); }

/* Principales communes livrées */
.communes {
  position: relative; overflow: hidden;
  margin-top: clamp(48px, 6vw, 80px);
  padding: clamp(26px, 3.4vw, 46px);
  border-radius: var(--r-xl);
  background: #f1ebdf;
  box-shadow: inset 0 0 0 1px var(--c-line), var(--shadow-sm);
}
.communes__deco { position: absolute; right: -110px; bottom: -120px; width: 320px; height: 320px; color: var(--wood-400); opacity: .16; pointer-events: none; }
.communes__head { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); align-items: end; gap: 12px 48px; }
.communes__title { font-size: clamp(1.55rem, 1.2rem + 1.1vw, 2.15rem); font-weight: 600; letter-spacing: -.035em; line-height: 1.08; }
.communes__note { font-size: var(--fs-sm); line-height: 1.55; color: var(--c-text-soft); }
.communes__tabs { display: none; }
.communes__bands { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: clamp(26px, 3vw, 38px); }
.communes__band { padding: 4px clamp(20px, 2.6vw, 38px); }
.communes__band:first-child { padding-left: 0; }
.communes__band:last-child { padding-right: 0; }
.communes__band + .communes__band { box-shadow: inset 1px 0 0 rgb(19 36 26 / .1); }
.communes__band-head { display: flex; align-items: center; gap: 14px; }
.communes__rings { width: 48px; height: 48px; flex: none; }
.communes__ring { fill: none; stroke: var(--forest-600); stroke-opacity: .28; stroke-width: 1.4; stroke-dasharray: 3 3; }
.communes__ring.is-on { stroke-opacity: 1; stroke-width: 2.4; stroke-dasharray: none; }
.communes__band:nth-child(2) .communes__ring.is-on { stroke: var(--wood-500); }
.communes__band:nth-child(3) .communes__ring.is-on { stroke: var(--wood-700); }
.communes__core { fill: var(--wood-600); }
.communes__range { display: flex; flex-direction: column; font-size: clamp(1.6rem, 1.3rem + .9vw, 2.1rem); font-weight: 600; letter-spacing: -.04em; line-height: 1; color: var(--forest-900); }
.communes__range span { margin-bottom: 4px; font-size: var(--fs-xs); font-weight: 500; letter-spacing: -.005em; color: var(--ink-600); }
.communes__list { position: relative; display: grid; grid-template-columns: minmax(0, 1fr); gap: 10px; margin-top: 22px; padding-top: 20px; border-top: 1px solid rgb(19 36 26 / .1); }
.communes__list li { display: flex; align-items: center; gap: 9px; min-width: 0; font-size: .9375rem; font-weight: 500; letter-spacing: -.01em; line-height: 1.3; color: var(--ink-800); transition: color .35s; }
.communes__list li::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--forest-600); transition: scale .5s var(--ease-spring); }
.communes__band:nth-child(2) .communes__list li::before { background: var(--wood-500); }
.communes__band:nth-child(3) .communes__list li::before { background: var(--wood-700); }
@media (hover: hover) and (pointer: fine) { .communes__list li:hover { color: var(--forest-900); } }
@media (hover: hover) and (pointer: fine) { .communes__list li:hover::before { scale: 1.5; } }

.map-card {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  background: #f1ebdf;
  box-shadow: inset 0 0 0 1px var(--c-line), var(--shadow-md);
}
.map { width: 100%; height: auto; }
.map__grid { fill: url(#map-grid); }
.map__forest path { fill: #dfe5d3; }
.map__forest path:nth-child(2n) { fill: #d8dfcb; }
.river { fill: none; stroke: var(--water); stroke-width: 3.2; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 0; transition: stroke-dashoffset 3s var(--ease-in-out) .2s; }
.river--main { stroke-width: 5.2; }
.river--small { stroke-width: 2; }
.river-label { font-family: var(--font-mono); font-size: 11px; font-style: italic; fill: #7f9da2; letter-spacing: .06em; }
.zone-fill { fill: url(#zone-grad); transform-origin: 300px 300px; transition: scale 1.6s var(--ease-spring) .5s, opacity 1s .5s; }
.zone-ring { fill: none; stroke: var(--forest-600); stroke-width: 1.6; stroke-dasharray: 7 7; transform-origin: 300px 300px; transition: scale 1.6s var(--ease-spring) .5s, opacity 1s .5s; animation: dash 30s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -280; } }
.zone-label rect { fill: var(--forest-800); }
.zone-label text { font-family: var(--font-mono); font-size: 12px; font-weight: 500; fill: var(--cream-50); letter-spacing: .04em; }
.route { fill: none; stroke: var(--wood-500); stroke-width: 2.2; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; opacity: 0; }
.courier-group { opacity: 0; transition: opacity .35s; }
.courier-group.is-moving { opacity: 1; }
.courier { fill: var(--wood-600); stroke: #fff; stroke-width: 2.5; }
.courier-halo { fill: var(--wood-500); opacity: .22; transform-origin: 0 0; animation: halo 1.1s var(--ease-out) infinite; }
@keyframes halo { 0% { scale: .6; opacity: .35; } 100% { scale: 1.5; opacity: 0; } }
.map-legend i { display: inline-block; flex: none; }

.town__inner { transition: scale .8s var(--ease-spring), opacity .5s; transition-delay: calc(var(--i, 0) * 70ms + 900ms); }
.town circle.town__dot { fill: #fff; stroke: var(--forest-700); stroke-width: 2.2; }
.town text { font-size: 14.5px; font-weight: 500; fill: var(--ink-800); stroke: none; }
.town circle.town__dot--small { fill: #fff; stroke: var(--forest-700); stroke-width: 1.8; }
.town__ping { fill: none; stroke: var(--wood-500); stroke-width: 2; opacity: 0; transform-origin: 0 0; }
.town.is-ping .town__ping { animation: ping 1.2s var(--ease-out); }
.town.is-ping .town__dot { fill: var(--wood-400); stroke: var(--wood-700); }
@keyframes ping { 0% { opacity: .9; scale: .6; } 100% { opacity: 0; scale: 3; } }
.town--main .town__dot { fill: var(--forest-800); stroke: #fff; stroke-width: 3; }
.town--main text { font-size: 19px; font-weight: 700; fill: var(--forest-900); }
.town--main .pulse { fill: var(--forest-600); opacity: 0; transform-origin: 0 0; animation: pulse-map 2.8s var(--ease-out) infinite; }
.town--main .pulse--2 { animation-delay: 1.4s; }
@keyframes pulse-map { 0% { opacity: .35; scale: 1; } 100% { opacity: 0; scale: 5; } }
.town--depot .depot-pin { fill: var(--wood-600); stroke: #fff; stroke-width: 2.2; }
.town--depot .depot-core { fill: #fff; }
.town--depot text { font-weight: 700; fill: var(--wood-700); }
.town--depot .depot-sub { font-family: var(--font-mono); font-size: 10.5px; font-weight: 500; fill: var(--wood-600); }
/* Halo lisible : copie du texte en contour seul, dessinée sous le texte (fiable dans Safari) */
.map .town text.halo { fill: none; stroke: #f1ebdf; stroke-width: 6px; stroke-linejoin: round; stroke-linecap: round; }
.map__compass path { fill: var(--forest-800); }
.map__compass circle { fill: none; stroke: var(--cream-300); stroke-width: 1.4; }
.map__compass text, .map__scale text { font-family: var(--font-mono); font-size: 11px; font-weight: 500; fill: var(--ink-600); }
.map__scale path { fill: none; stroke: var(--ink-600); stroke-width: 1.6; }

.js .map-card:not(.is-in) .river { stroke-dashoffset: 1; }
.js .map-card:not(.is-in) .zone-fill,
.js .map-card:not(.is-in) .zone-ring { scale: .25; opacity: 0; }
.js .map-card:not(.is-in) .town__inner { scale: 0; opacity: 0; }

.map-legend {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 8px 16px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgb(251 248 243 / .88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / .7), var(--shadow-sm);
  font-size: var(--fs-xs); font-weight: 500; color: var(--ink-800);
}
.map-legend span { display: inline-flex; align-items: center; gap: 8px; }
.legend-zone { width: 18px; height: 18px; border-radius: 50%; border: 1.6px dashed var(--forest-600); background: rgb(45 90 64 / .1); }
.legend-dot { width: 11px; height: 11px; border-radius: 50%; background: #fff; box-shadow: inset 0 0 0 2.2px var(--forest-700); }
.legend-depot { width: 12px; height: 12px; border-radius: 50% 50% 50% 0; rotate: -45deg; background: var(--wood-600); }

/* 12. Commande ------------------------------------------------------------- */
.order { background: var(--white); }
.order__grid {
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(40px, 6vw, 100px); align-items: start;
}

/* Formulaire de commande : posé sur le fond clair, sans cadre */
.order-form { position: relative; margin-top: clamp(30px, 3.5vw, 48px); }
.order-form__title { font-size: 1.3rem; font-weight: 600; letter-spacing: -.03em; line-height: 1.2; }
.order-form__facts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.order-form__facts li {
  padding: 7px 13px; border-radius: var(--r-pill);
  background: var(--cream-100); box-shadow: inset 0 0 0 1px var(--c-line);
  font-size: var(--fs-2xs); color: var(--c-text-soft);
}
.order-form__facts li.is-deal {
  background: rgb(45 90 64 / .1); box-shadow: inset 0 0 0 1px rgb(45 90 64 / .22);
  color: var(--forest-700); font-weight: 600;
}
.form-block { margin-top: 26px; padding-top: 26px; border-top: 1px solid var(--c-line); }
.form-label { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; margin-bottom: 14px; font-size: 1.0625rem; font-weight: 600; letter-spacing: -.02em; color: var(--ink-900); }
.form-hint { font-size: var(--fs-2xs); font-weight: 400; letter-spacing: 0; color: var(--c-text-soft); }

/* Format des bûches : trois lignes claires, prix HT et TTC */
.seg { display: grid; grid-template-columns: minmax(0, 1fr); gap: 10px; margin: 0; padding: 0; border: 0; }
.seg legend { padding: 0; }
.seg__input { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.seg__option {
  position: relative;
  display: flex; align-items: center; flex-wrap: wrap; gap: 4px 14px;
  padding: 15px 52px 15px 18px;
  border-radius: var(--r-md);
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--c-line);
  cursor: pointer;
  transition: background .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.seg__option::after {
  content: ""; position: absolute; right: 16px; top: 50%;
  width: 20px; height: 20px; translate: 0 -50%;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1.5px var(--c-line-strong);
  transition: background .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.seg__head { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.seg__option strong { font-size: 1.15rem; font-weight: 600; letter-spacing: -.03em; line-height: 1.15; }
.seg__price {
  display: flex; flex-direction: column; align-items: flex-end; gap: 2px;
  margin-left: auto;
  font-size: var(--fs-sm); font-weight: 600; letter-spacing: -.01em; color: var(--ink-800); text-align: right;
}
.seg__price small { font-size: var(--fs-2xs); font-weight: 500; letter-spacing: 0; color: var(--c-text-soft); }
.seg__input:checked + .seg__option { background: var(--cream-100); box-shadow: inset 0 0 0 1.5px var(--forest-700); }
.seg__input:checked + .seg__option::after { background: var(--forest-700); box-shadow: inset 0 0 0 1.5px var(--forest-700), inset 0 0 0 4.5px var(--white); }
.seg__input:focus-visible + .seg__option { outline: 2px solid var(--wood-500); outline-offset: 3px; }
@media (hover: hover) and (pointer: fine) {
  .seg__option:hover { box-shadow: inset 0 0 0 1px var(--c-line-strong); }
  .seg__input:checked + .seg__option:hover { box-shadow: inset 0 0 0 1.5px var(--forest-700); }
}
.seg__tag {
  padding: 3px 10px;
  border-radius: var(--r-pill);
  background: rgb(122 78 45 / .12); color: var(--wood-700);
  font-size: .625rem; font-style: normal; font-weight: 600; letter-spacing: .01em;
  transition: background .4s var(--ease-out), color .4s;
}
.seg__input:checked + .seg__option .seg__tag { background: var(--wood-600); color: var(--cream-50); }

/* Quantité */
.qty { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 8px 8px 18px; border-radius: var(--r-md); background: var(--white); box-shadow: inset 0 0 0 1px var(--c-line); }
.qty__value { display: flex; align-items: baseline; gap: 8px; font-size: var(--fs-sm); color: var(--c-text-soft); }
.qty__value output { display: inline-block; min-width: 2ch; font-size: 1.75rem; font-weight: 600; letter-spacing: -.04em; color: var(--ink-900); font-variant-numeric: tabular-nums; }
.qty__value output.bump { animation: bump .45s var(--ease-spring); }
.qty__controls { display: flex; gap: 6px; }
.qty__btn {
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--cream-100); color: var(--forest-900);
  box-shadow: inset 0 0 0 1px var(--c-line);
  transition: background .3s, transform .4s var(--ease-spring), opacity .3s;
}
.qty__btn .icon { width: 18px; height: 18px; stroke-width: 2.2; }
@media (hover: hover) and (pointer: fine) { .qty__btn:hover { background: var(--cream-200); } }
.qty__btn:active { transform: scale(.88); }
.qty__btn:disabled { opacity: .35; cursor: not-allowed; }
@keyframes bump { 0% { transform: scale(1); } 40% { transform: scale(1.22); } 100% { transform: scale(1); } }

.qty-presets { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.qty-preset {
  flex: 1; min-width: 66px; padding: 11px 6px;
  border-radius: 13px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--c-line);
  color: var(--c-text-soft);
  font-size: var(--fs-xs); font-weight: 600; font-variant-numeric: tabular-nums; letter-spacing: -.01em;
  transition: background .35s var(--ease-out), color .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.qty-preset[aria-pressed="true"] { background: var(--forest-800); color: var(--cream-50); box-shadow: none; }
@media (hover: hover) and (pointer: fine) {
  .qty-preset:hover { box-shadow: inset 0 0 0 1px var(--c-line-strong); color: var(--ink-900); }
  .qty-preset[aria-pressed="true"]:hover { background: var(--forest-700); color: var(--cream-50); }
}

/* Nom et commune */
.fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.field { position: relative; display: block; min-width: 0; }
.field__name { display: block; margin-bottom: 8px; font-size: var(--fs-sm); color: var(--c-text-soft); }
.field__input {
  width: 100%; height: 50px; padding: 0 16px;
  border: 0; border-radius: var(--r-md); outline: none;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--c-line);
  color: var(--ink-900); font-size: 1rem; letter-spacing: -.01em;
  transition: box-shadow .35s var(--ease-out);
}
.field__input::placeholder { color: var(--ink-500); }
.field__input:focus { box-shadow: inset 0 0 0 2px var(--forest-600); }

/* Estimation */
.estimate {
  margin: 26px 0 20px; padding: 20px;
  border-radius: var(--r-md);
  background: var(--cream-100);
}
.estimate__main { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; }
.estimate__deal {
  display: flex; align-items: center; gap: 10px;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px dashed var(--c-line-strong);
  font-size: var(--fs-sm); font-weight: 500; letter-spacing: -.01em; color: var(--forest-700);
  animation: deal-in .5s var(--ease-out);
}
.estimate__deal[hidden] { display: none; }
.estimate__deal-icon {
  display: grid; place-items: center; flex: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--forest-700); color: var(--cream-50);
}
.estimate__deal-icon .icon { width: 13px; height: 13px; stroke-width: 2.6; }
.estimate__deal strong { margin-left: auto; font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; color: var(--forest-800); }
@keyframes deal-in { from { opacity: 0; translate: 0 -6px; } }

/* Rappel de la remise sous les quantités */
.qty-deal { margin-top: 12px; font-size: var(--fs-2xs); line-height: 1.5; color: var(--c-text-soft); }
.estimate__label { font-size: var(--fs-sm); color: var(--c-text-soft); }
.estimate__detail { display: block; margin-top: 3px; font-size: var(--fs-2xs); color: var(--ink-500); }
.estimate__value { font-size: 2rem; font-weight: 600; letter-spacing: -.045em; line-height: 1; text-align: right; white-space: nowrap; color: var(--ink-900); }
.estimate__value small { display: block; margin-top: 6px; font-size: var(--fs-2xs); font-weight: 500; letter-spacing: 0; color: var(--c-text-soft); }
.estimate__value small strong { font-weight: 600; color: var(--ink-800); }
.order-form .btn-stack { display: grid; gap: 10px; margin-top: 4px; }
.order-form__note { display: flex; align-items: center; gap: 10px; margin-top: 16px; font-size: var(--fs-xs); color: var(--c-text-soft); }
.order-form__note .icon { width: 16px; height: 16px; color: var(--wood-500); }

/* Aperçu du message : téléphone et interface de messagerie */
.order__preview {
  position: sticky; top: var(--sticky-top);
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.phone {
  position: relative;
  width: min(322px, 100%);
  padding: 11px;
  border-radius: 46px;
  background: linear-gradient(160deg, #38403a, #131714 62%);
  box-shadow: 0 44px 70px -42px rgb(13 25 18 / .8), inset 0 0 0 1px rgb(255 255 255 / .1);
}
.phone::after {
  content: ""; position: absolute; z-index: 2; top: 11px; left: 50%;
  width: 112px; height: 25px;
  translate: -50% 0;
  border-radius: 0 0 15px 15px;
  background: #131714;
}
.phone__screen {
  display: flex; flex-direction: column;
  height: 536px;
  border-radius: 36px; overflow: hidden;
  background: #efe7dc;
}
.wa-top {
  display: flex; align-items: center; gap: 10px;
  padding: 30px 14px 12px;
  background: var(--forest-900); color: var(--cream-50);
}
.wa-top__back { width: 17px; height: 17px; rotate: 180deg; opacity: .7; }
.wa-top__avatar { display: grid; place-items: center; flex: none; width: 34px; height: 34px; border-radius: 50%; overflow: hidden; background: var(--cream-50); }
.wa-top__avatar svg { --mark-bg: transparent; --mark-fg: var(--forest-900); width: 30px; height: 30px; }
.wa-top__who { display: flex; flex-direction: column; margin-right: auto; line-height: 1.2; }
.wa-top__who strong { font-size: .95rem; font-weight: 600; letter-spacing: -.02em; }
.wa-top__who small { font-size: .7rem; color: rgb(251 248 243 / .6); }
.wa-top__call { width: 17px; height: 17px; opacity: .8; }
.wa-chat {
  flex: 1; display: flex; flex-direction: column; justify-content: flex-end; gap: 10px;
  padding: 16px 13px;
  overflow: hidden;
  background-color: #efe7dc;
  background-image:
    radial-gradient(circle at 18% 22%, rgb(122 78 45 / .06) 0 3px, transparent 3px),
    radial-gradient(circle at 74% 44%, rgb(45 90 64 / .05) 0 4px, transparent 4px),
    radial-gradient(circle at 38% 78%, rgb(122 78 45 / .05) 0 3px, transparent 3px);
  background-size: 120px 120px;
}
.wa-day { align-self: center; padding: 4px 12px; border-radius: var(--r-pill); background: rgb(255 255 255 / .8); color: var(--ink-600); font-size: .68rem; box-shadow: 0 1px 2px rgb(0 0 0 / .06); }
.wa-bubble {
  align-self: flex-end; max-width: 90%;
  padding: 9px 12px 6px;
  border-radius: 15px 5px 15px 15px;
  background: #dcf7c5; color: #10241a;
  box-shadow: 0 1px 1.5px rgb(0 0 0 / .12);
}
.wa-bubble__text { min-height: 1.3em; white-space: pre-line; font-size: .875rem; line-height: 1.45; letter-spacing: -.005em; }
.wa-bubble__text.is-typing::after {
  content: ""; display: inline-block; width: 2px; height: 1em; margin-left: 2px; vertical-align: -.15em;
  background: currentColor; opacity: .55;
  animation: wa-caret .9s steps(1, end) infinite;
}
@keyframes wa-caret { 0%, 50% { opacity: .55; } 50.01%, 100% { opacity: 0; } }
.wa-bubble.is-updated { animation: wa-pop .5s var(--ease-out); }
@keyframes wa-pop { 0% { scale: .985; } 55% { scale: 1.008; } 100% { scale: 1; } }
.wa-bubble__meta { display: flex; align-items: center; justify-content: flex-end; gap: 4px; margin-top: 3px; font-size: .62rem; color: rgb(16 36 26 / .45); }
.wa-tick { width: 15px; height: 10px; fill: none; stroke: #4aa8dc; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.wa-bar { display: flex; align-items: center; gap: 8px; padding: 10px 12px 14px; background: #efe7dc; }
.wa-bar__field { flex: 1; min-width: 0; padding: 11px 14px; border-radius: var(--r-pill); background: var(--white); color: rgb(19 36 26 / .38); font-size: .85rem; box-shadow: 0 1px 2px rgb(0 0 0 / .06); }
.wa-bar__send { display: grid; place-items: center; flex: none; width: 42px; height: 42px; border-radius: 50%; background: var(--c-wa); color: #fff; transition: background .35s var(--ease-out), translate .5s var(--ease-spring); }
.wa-bar__send .icon { width: 18px; height: 18px; margin-left: -1px; }
@media (hover: hover) and (pointer: fine) { .wa-bar__send:hover { background: var(--c-wa-hover); translate: 0 -3px; } }
.order__preview-note { display: flex; align-items: center; gap: 8px; font-size: var(--fs-sm); color: var(--c-text-soft); }
.order__preview-note .icon { width: 16px; height: 16px; color: var(--c-wa); }

/* 13. Entreprise ----------------------------------------------------------- */
.about { overflow: hidden; }
.about__deco {
  --mark-bg: transparent; --mark-fg: rgb(122 78 45 / .07);
  position: absolute; left: -220px; top: 50%;
  width: 640px; height: 640px; margin-top: -320px;
  pointer-events: none;
}
.about__grid {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 100px); align-items: center;
}
.about__media { position: relative; padding: 0 0 20% 0; }
.about__main { aspect-ratio: 4 / 3.1; border-radius: var(--r-lg); --clip-r: var(--r-lg); }
.about__sub {
  position: absolute; right: -3%; bottom: 0;
  width: 40%; aspect-ratio: 1;
  border-radius: var(--r-md); --clip-r: var(--r-md);
  box-shadow: 0 0 0 7px var(--c-bg), var(--shadow-md);
}
.about__year {
  position: absolute; left: 22px; top: 22px; z-index: 2;
  padding: 16px 20px 14px;
  border-radius: 20px;
  background: var(--forest-900); color: var(--cream-50);
  box-shadow: var(--shadow-md);
}
.about__year-num { display: block; font-size: 2.6rem; font-weight: 500; letter-spacing: -.05em; line-height: 1; }
.about__year-label { display: block; margin-top: 6px; font-family: var(--font-mono); font-size: .6875rem; letter-spacing: .08em; text-transform: uppercase; color: var(--oak-300); }
.about__text p { margin-top: 20px; font-size: 1.0625rem; line-height: 1.65; color: var(--c-text-soft); }
.about__text p:first-child { margin-top: 26px; font-size: var(--fs-lead); color: var(--ink-800); }
.facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 34px; }
.fact {
  display: flex; align-items: center; gap: 13px;
  padding: 14px 16px 14px 14px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--c-line);
  font-weight: 600; letter-spacing: -.015em; line-height: 1.25;
  transition: box-shadow .5s var(--ease-out), translate .6s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) { .fact:hover { box-shadow: inset 0 0 0 1px var(--c-line-strong), var(--shadow-md); } }
.fact__icon { --hover-fill: var(--wood-600); display: grid; place-items: center; flex: none; width: 42px; height: 42px; border-radius: 13px; background: var(--oak-100); color: var(--wood-600); transition: color .5s var(--ease-out); }
.fact__icon .icon { width: 20px; height: 20px; }
@media (hover: hover) and (pointer: fine) { .fact:hover .fact__icon { color: var(--cream-50); } }

/* 13 bis. Avis clients (section d’exemple, avis fictifs) ------------------- */
.reviews { background: var(--white); }
.reviews__score {
  display: flex; flex-wrap: wrap; gap: 6px 16px; align-items: center; justify-content: center;
  margin-top: 34px;
}
.reviews__note { font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.5rem); font-weight: 600; letter-spacing: -.04em; line-height: 1; }
.reviews__note-max { font-size: var(--fs-sm); font-weight: 500; letter-spacing: -.01em; color: var(--c-text-soft); }
.reviews__stars { display: inline-flex; gap: 4px; color: var(--wood-600); }
.reviews__stars .icon { width: 20px; height: 20px; }
.reviews__count { font-size: var(--fs-sm); color: var(--c-text-soft); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 38px; }
@media (max-width: 1023px) { .reviews__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.review-card {
  display: flex; flex-direction: column; gap: 16px;
  padding: 28px 26px 24px;
  border-radius: var(--r-lg);
  background: var(--cream-50);
  box-shadow: inset 0 0 0 1px var(--c-line);
  transition: box-shadow .55s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) { .review-card:hover { box-shadow: inset 0 0 0 1px var(--c-line-strong), var(--shadow-md); } }
.review-card__stars { display: flex; gap: 4px; color: var(--wood-600); }
.review-card__stars .icon { width: 17px; height: 17px; }
.review-card__text { margin: 0; font-size: 1.0625rem; line-height: 1.55; letter-spacing: -.012em; }
.review-card__author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-card__avatar {
  display: grid; place-items: center; flex: none;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--forest-800); color: var(--oak-200);
  font-size: 1.0625rem; font-weight: 600; letter-spacing: -.01em;
}
.review-card__who { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.review-card__name { font-weight: 600; letter-spacing: -.02em; }
.review-card__meta { display: flex; align-items: center; gap: 8px; font-size: var(--fs-2xs); color: var(--c-text-soft); }
.review-card__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--wood-500); }

/* 14. FAQ ------------------------------------------------------------------ */
.faq { background: var(--white); }
.faq__grid {
  display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(40px, 6vw, 100px); align-items: start;
}
.faq__aside { position: sticky; top: var(--sticky-top); }
.faq__contact {
  margin-top: 32px; padding: 24px;
  border-radius: var(--r-lg);
  background: var(--cream-100);
  box-shadow: inset 0 0 0 1px var(--c-line);
}
.faq__contact-title { font-size: 1.125rem; font-weight: 600; letter-spacing: -.02em; }
.faq__contact p { margin-top: 6px; font-size: var(--fs-sm); color: var(--c-text-soft); }
.faq__contact .btn-row { margin-top: 18px; }
.faq__contact .btn { flex: 1 1 170px; }

.faq-list { border-top: 1px solid var(--c-line); }
.faq-item { border-bottom: 1px solid var(--c-line); }
.faq-item summary {
  display: flex; align-items: center; gap: 18px;
  padding: 24px 2px;
  list-style: none; cursor: pointer;
  font-size: clamp(1.0625rem, 1rem + .45vw, 1.35rem); font-weight: 500;
  letter-spacing: -.025em; line-height: 1.3;
  transition: color .35s, translate .55s var(--ease-wave);
}
.faq-item summary::-webkit-details-marker { display: none; }
@media (hover: hover) and (pointer: fine) { .faq-item summary:hover { color: var(--forest-600); translate: 10px 0; } }
.faq-item summary:focus-visible { outline-offset: -2px; }
.faq-item__q { flex: 1; }
.faq-item__icon {
  position: relative; flex: none;
  width: 38px; height: 38px; border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--c-line-strong);
  transition: background .45s, color .45s, box-shadow .45s, transform .6s var(--ease-out);
}
.faq-item__icon::before, .faq-item__icon::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 13px; height: 1.7px; margin: -.85px 0 0 -6.5px;
  border-radius: 2px; background: currentColor;
  transition: transform .6s var(--ease-out);
}
.faq-item__icon::after { transform: rotate(90deg); }
@media (hover: hover) and (pointer: fine) { .faq-item summary:hover .faq-item__icon { box-shadow: inset 0 0 0 1px var(--forest-600); } }
.faq-item[open]:not(.is-closing) .faq-item__icon { background: var(--forest-800); color: var(--cream-50); box-shadow: none; transform: rotate(180deg); }
.faq-item[open]:not(.is-closing) .faq-item__icon::after { transform: rotate(0deg); }
.faq-item[open]:not(.is-closing) summary { color: var(--forest-700); }
.faq-item__body { overflow: hidden; }
.faq-item__body p { padding: 0 56px 26px calc(2.2em * .75 + 20px); color: var(--c-text-soft); max-width: 62ch; }

/* 15. CTA final ------------------------------------------------------------ */
.cta-wrap { padding-block: clamp(20px, 3vw, 40px) 0; }
.cta {
  position: relative; overflow: hidden; isolation: isolate;
  display: grid; place-items: center; text-align: center;
  min-height: clamp(540px, 78vh, 760px);
  padding: clamp(84px, 11vw, 150px) var(--gutter);
  color: var(--cream-50);
  background: var(--forest-950);
}
.cta__bg { position: absolute; inset: 0; z-index: -3; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(var(--zoom, 1.18)); will-change: transform; }
.cta__veil {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse at 50% 55%, rgb(13 25 18 / .5), rgb(13 25 18 / .82) 70%),
    linear-gradient(180deg, rgb(13 25 18 / .55), rgb(13 25 18 / .35) 45%, rgb(13 25 18 / .85));
}
.cta__embers { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; pointer-events: none; }
.cta__content { max-width: 880px; }
.cta .hl { color: var(--oak-300); }
.cta__title { font-size: clamp(2.6rem, 1.2rem + 5vw, 5.4rem); line-height: .98; letter-spacing: -.036em; }
.cta__text { max-width: 36em; margin: 26px auto 0; font-size: var(--fs-lead); line-height: 1.55; color: rgb(251 248 243 / .8); }
.cta__actions { justify-content: center; margin-top: 40px; }
.cta__actions .btn { box-shadow: inset 0 0 0 1px rgb(255 255 255 / .14); }
.cta__hours {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 30px; padding: 10px 18px 10px 14px;
  border-radius: var(--r-pill);
  background: rgb(255 255 255 / .08);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / .12);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: var(--fs-sm); color: rgb(251 248 243 / .88);
}
.cta__hours strong { font-weight: 600; color: var(--cream-50); }

/* 16. Footer --------------------------------------------------------------- */
.footer {
  position: relative; overflow: hidden;
  margin-top: clamp(20px, 3vw, 40px);
  padding-top: clamp(64px, 8vw, 110px);
  background: var(--forest-950);
  color: rgb(251 248 243 / .7);
}
.footer__grid { display: grid; grid-template-columns: 1.35fr .75fr 1.1fr; gap: clamp(32px, 5vw, 72px); }
.footer .brand__mark { width: 46px; height: 46px; }
.footer .brand__name { font-size: 1.45rem; color: var(--cream-50); }
.footer__tagline { margin-top: 20px; max-width: 26em; font-size: 1.0625rem; line-height: 1.55; color: rgb(251 248 243 / .78); }
.footer__heading { margin-bottom: 18px; font-family: var(--font-mono); font-size: var(--fs-2xs); font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--oak-300); }
.footer__links { display: grid; gap: 10px; }
.footer__links a { color: rgb(251 248 243 / .78); transition: color .3s; }
.footer__links a:hover { color: var(--cream-50); }
.footer__contact { display: grid; gap: 14px; }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; line-height: 1.45; }
.footer__contact .icon { width: 18px; height: 18px; margin-top: 2px; color: var(--oak-300); }
.footer__contact a { color: var(--cream-50); }
.footer__phone { font-size: 1.25rem; font-weight: 600; letter-spacing: -.02em; }
.placeholder { color: rgb(251 248 243 / .5); font-style: italic; border-bottom: 1px dashed rgb(217 190 152 / .45); }
.footer__social { display: flex; gap: 10px; margin-top: 26px; }
.footer__social .btn { flex: 0 0 auto; }

.footer__wordmark {
  display: flex; justify-content: center;
  margin: clamp(48px, 7vw, 96px) 0 -0.12em;
  font-size: clamp(5.5rem, 24vw, 22rem); font-weight: 600;
  letter-spacing: -.07em; line-height: .8;
  user-select: none; pointer-events: none;
}
.footer__wordmark span {
  display: inline-block;
  background: linear-gradient(180deg, rgb(217 190 152 / .2), rgb(217 190 152 / 0) 88%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  transition: translate 1.2s var(--ease-out), opacity 1s;
  transition-delay: calc(var(--i, 0) * 70ms);
}
.js .footer__wordmark:not(.is-in) span { translate: 0 60%; opacity: 0; }

.footer__bottom {
  position: relative;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 28px;
  padding-block: 22px;
  border-top: 1px solid rgb(255 255 255 / .08);
  font-size: var(--fs-xs); color: rgb(251 248 243 / .55);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer__legal a { color: rgb(251 248 243 / .72); }
.footer__legal a:hover { color: var(--cream-50); }

.to-top {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px 9px 13px;
  border-radius: var(--r-pill);
  background: rgb(255 255 255 / .06);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / .14);
  color: rgb(251 248 243 / .78); font-size: var(--fs-xs); font-weight: 500;
  transition: background .4s var(--ease-out), box-shadow .4s var(--ease-out), color .4s;
}
.to-top .icon { width: 15px; height: 15px; rotate: -90deg; transition: translate .5s var(--ease-wave); }
@media (hover: hover) and (pointer: fine) {
  .to-top:hover { background: rgb(255 255 255 / .12); box-shadow: inset 0 0 0 1px rgb(217 190 152 / .35); color: var(--cream-50); }
  .to-top:hover .icon { translate: 0 -3px; }
}

/* 17. Barre mobile --------------------------------------------------------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: none; gap: 8px;
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  background: rgb(251 248 243 / .88);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: 0 -1px 0 var(--c-line), 0 -18px 40px -24px rgb(19 36 26 / .35);
  translate: 0 110%;
  transition: translate .7s var(--ease-out);
}
.mobile-cta.is-visible, html:not(.js) .mobile-cta { translate: 0 0; }
.mobile-cta .btn { flex: 1 1 50%; min-height: 54px; font-size: 1rem; padding-inline: .8em; }

/* 17 bis. Bandeau cookies -------------------------------------------------- */
.cookie[hidden] { display: none; }
.cookie {
  position: fixed; z-index: 75; left: 20px; bottom: 20px;
  display: flex; align-items: center; gap: 13px;
  max-width: min(430px, calc(100vw - 40px));
  padding: 13px 14px 13px 17px;
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: 0 0 0 1px rgb(19 36 26 / .07), 0 28px 54px -28px rgb(13 25 18 / .55);
  translate: 0 calc(100% + 32px);
  opacity: 0;
  transition: translate .85s var(--ease-out), opacity .5s var(--ease-out);
}
.cookie.is-in { translate: 0 0; opacity: 1; }
.cookie.is-out { translate: 0 calc(100% + 32px); opacity: 0; transition: translate .6s var(--ease-wave), opacity .45s var(--ease-wave); }
.cookie__icon { flex: none; width: 24px; height: 24px; color: var(--wood-600); }
.cookie__text { font-size: var(--fs-xs); line-height: 1.45; color: var(--c-text-soft); }
.cookie__text strong { font-weight: 600; color: var(--c-text); }
.cookie__ok {
  flex: none; padding: 10px 15px;
  border-radius: var(--r-pill);
  background: var(--forest-800); color: var(--cream-50);
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: -.01em;
  transition: background .35s var(--ease-out), translate .45s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) { .cookie__ok:hover { background: var(--forest-700); translate: 0 -2px; } }

/* 18. Pages secondaires ---------------------------------------------------- */
.page-hero { padding: clamp(48px, 8vw, 110px) 0 clamp(28px, 4vw, 56px); }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: var(--fs-sm); color: var(--c-text-soft); }
.breadcrumb a:hover { color: var(--wood-600); }
.breadcrumb .sep { color: var(--ink-500); }
.page-hero__title { margin-top: 22px; font-size: clamp(2.5rem, 1.4rem + 4vw, 4.6rem); line-height: 1; letter-spacing: -.034em; }
.page-hero__lead { margin-top: 20px; max-width: 42em; font-size: var(--fs-lead); color: var(--c-text-soft); }
.page-hero__meta { margin-top: 18px; font-family: var(--font-mono); font-size: var(--fs-2xs); letter-spacing: .06em; text-transform: uppercase; color: var(--wood-600); }

.legal {
  display: grid; grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(32px, 6vw, 100px);
  padding-bottom: var(--section-y);
}
.legal__toc { position: sticky; top: var(--sticky-top); align-self: start; }
.legal__toc-title { margin-bottom: 12px; font-family: var(--font-mono); font-size: var(--fs-2xs); font-weight: 500; letter-spacing: .09em; text-transform: uppercase; color: var(--wood-600); }
.legal__toc ol { display: grid; gap: 2px; counter-reset: toc; }
.legal__toc a {
  display: flex; gap: 10px;
  padding: 8px 12px; border-radius: 12px;
  font-size: var(--fs-sm); color: var(--c-text-soft);
  transition: background .3s, color .3s, box-shadow .3s;
}
.legal__toc a::before { counter-increment: toc; content: counter(toc, decimal-leading-zero); font-family: var(--font-mono); font-size: var(--fs-2xs); padding-top: 3px; color: var(--ink-500); }
.legal__toc a:hover { color: var(--ink-900); }
.legal__toc a.is-active { background: var(--white); color: var(--ink-900); box-shadow: inset 0 0 0 1px var(--c-line); }

.prose { max-width: 74ch; }
.prose section { padding: 34px 0; border-top: 1px solid var(--c-line); scroll-margin-top: var(--sticky-top); }
.prose section:first-child { border-top: 0; padding-top: 0; }
.prose h2 { font-size: clamp(1.45rem, 1.25rem + .7vw, 1.9rem); line-height: 1.15; letter-spacing: -.03em; }
.prose h3 { margin-top: 24px; font-size: 1.125rem; font-weight: 600; letter-spacing: -.02em; }
.prose p, .prose li, .prose dd { color: var(--ink-800); line-height: 1.7; }
.prose p { margin-top: 14px; }
.prose ul { margin-top: 12px; padding-left: 1.2em; list-style: disc; }
.prose li + li { margin-top: 6px; }
.prose li::marker { color: var(--wood-500); }
.prose a { color: var(--forest-600); font-weight: 500; background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1px no-repeat; transition: background-size .4s var(--ease-out), color .3s; }
.prose a:hover { color: var(--wood-600); background-size: 0 1px; }
.prose dl { display: grid; grid-template-columns: minmax(150px, max-content) 1fr; gap: 10px 28px; margin: 18px 0 0; padding: 22px 24px; border-radius: var(--r-md); background: var(--white); box-shadow: inset 0 0 0 1px var(--c-line); }
.prose dt { font-weight: 600; color: var(--ink-900); }
.prose dd { margin: 0; }
.todo {
  padding: .05em .4em; border-radius: 6px;
  background: #fff2d9; color: #6d4b0f;
  box-shadow: inset 0 0 0 1px #efcf8f;
  font-weight: 500; font-size: .95em;
}
.note {
  margin-top: 18px; padding: 16px 18px;
  border-radius: var(--r-md);
  background: var(--oak-100);
  box-shadow: inset 0 0 0 1px var(--oak-200);
  font-size: var(--fs-sm);
}

.error-page { position: relative; overflow: hidden; display: grid; place-items: center; min-height: calc(100vh - 140px); padding: 60px 0 100px; text-align: center; }
.error-page__rings {
  --mark-bg: transparent; --mark-fg: rgb(122 78 45 / .12);
  width: min(78vw, 520px); height: auto; margin: 0 auto -.5em;
  animation: spin 50s linear infinite;
}
.error-page__code { position: absolute; left: 50%; top: 50%; translate: -50% -50%; font-size: clamp(5rem, 16vw, 11rem); font-weight: 500; letter-spacing: -.07em; line-height: 1; color: var(--forest-800); }
.error-page__visual { position: relative; display: grid; place-items: center; }
.error-page h1 { margin-top: 20px; font-size: clamp(2rem, 1.3rem + 2.6vw, 3.2rem); letter-spacing: -.04em; line-height: 1.05; }
.error-page p { max-width: 34em; margin: 18px auto 0; font-size: var(--fs-lead); color: var(--c-text-soft); }
.error-page .btn-row { justify-content: center; margin-top: 34px; }

/* 19. Animations d’apparition --------------------------------------------- */
.js [data-reveal] {
  --reveal-delay: calc(var(--d, 0ms) + var(--i, 0) * 95ms);
  opacity: 0;
  translate: 0 34px;
  transition: opacity 1s var(--ease-out), translate 1.15s var(--ease-out), scale 1.15s var(--ease-out), clip-path 1.4s var(--ease-out);
  transition-delay: var(--reveal-delay);
}
.js [data-reveal="fade"] { translate: none; }
.js [data-reveal="left"] { translate: -48px 0; }
.js [data-reveal="right"] { translate: 48px 0; }
.js [data-reveal="scale"] { translate: none; scale: .92; }
.js [data-reveal="pop"] { translate: 0 18px; scale: .8; transition-timing-function: var(--ease-out), var(--ease-spring), var(--ease-spring), linear; }
.js [data-reveal="clip"] { opacity: 1; translate: none; clip-path: inset(14% 8% 14% 8% round var(--clip-r, 24px)); }
.js [data-reveal="clip"] .media__img { scale: 1.28; transition: scale 1.9s var(--ease-out) var(--d, 0ms); }
.js [data-reveal].is-in { opacity: 1; translate: none; scale: none; }
.js [data-reveal="clip"].is-in { clip-path: inset(0 0 0 0 round var(--clip-r, 24px)); }
.js [data-reveal="clip"].is-in .media__img { scale: 1; }

/* Découpage des titres en mots */
/* Zone de masque élargie de tous les côtés (compensée par des marges négatives) :
   lettres, accents et jambages restent entiers, dans tous les navigateurs */
.sw {
  display: inline-block; vertical-align: top;
  overflow: hidden;
  padding: .2em .14em .26em;
  margin: -.2em -.14em -.26em;
}
.sw__i { display: inline-block; }
.js [data-split] .sw__i {
  translate: 0 150%;
  rotate: 2deg;
  transform-origin: 0 100%;
  transition: translate 1.1s var(--ease-out), rotate 1.1s var(--ease-out);
  transition-delay: calc(var(--d, 0ms) + var(--wi, 0) * 55ms);
}
.js [data-split].is-in .sw__i { translate: none; rotate: none; }

/* Ces éléments portent data-reveal : la règle ci-dessus remplace toute leur transition, y compris
   celle du survol, qui devient alors instantané. On réécrit donc les deux ensemble, en gardant le
   décalage d’apparition (--reveal-delay) et en laissant le survol réagir tout de suite. */
.js .info-list li {
  transition: opacity 1s var(--ease-out), translate 1.15s var(--ease-out), padding-left .55s var(--ease-wave), color .3s;
  transition-delay: var(--reveal-delay), var(--reveal-delay), 0s, 0s;
}
.js .review-card {
  transition: opacity 1s var(--ease-out), translate 1.15s var(--ease-out), box-shadow .55s var(--ease-out);
  transition-delay: var(--reveal-delay), var(--reveal-delay), 0s;
}
/* La photo du hero porte une grande ombre. Tant qu’elle est découpée par l’animation
   d’apparition, cette ombre garde la taille du bloc entier et forme un halo gris au-dessus
   de la photo. On ne l’affiche donc qu’une fois la photo en place. */
.js .hero__figure {
  transition: opacity 1s var(--ease-out), translate 1.15s var(--ease-out), clip-path 1.4s var(--ease-out), box-shadow 1.2s var(--ease-out);
  transition-delay: var(--reveal-delay), var(--reveal-delay), var(--reveal-delay), var(--reveal-delay);
}
.js .hero__figure:not(.is-in) { box-shadow: none; }

.js .essence {
  transition: opacity 1s var(--ease-out), translate 1.15s var(--ease-out), background-color .45s var(--ease-out), box-shadow .45s var(--ease-out);
  transition-delay: var(--reveal-delay), var(--reveal-delay), 0s, 0s;
}

/* Filet de sécurité si le script ne s’exécute pas */
.reveal-all [data-reveal], .reveal-all [data-split] .sw__i { opacity: 1 !important; translate: none !important; scale: none !important; rotate: none !important; clip-path: none !important; }
.reveal-all .site-header .header-bar { opacity: 1; translate: none; }

/* 20. Responsive ----------------------------------------------------------- */
@media (max-width: 1180px) {
  .nav__link { padding-inline: 10px; font-size: .875rem; }
  .brand__logo { --logo-h: 19px; }
  .brand--logo { padding: 0 10px; }
}

@media (max-width: 1099px) {
  .nav { display: none; }
  .header-bar__cta { margin-left: auto; }
  .burger { display: block; margin-left: 0; }
  .trust__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust__item:nth-child(3)::before { display: none; }
  .trust__item:nth-child(n + 3) { border-top: 1px solid var(--c-line); }
  .chip--dry { right: 14px; }
  .badge { left: 14px; }
  .stamp { right: 16px; }
}

@media (min-width: 1100px) {
  .menu-mobile { display: none; }
}

@media (max-width: 959px) {
  .js [data-reveal="left"], .js [data-reveal="right"] { translate: 0 34px; }
  .hero__grid, .quality__grid, .delivery__grid, .order__grid, .about__grid, .faq__grid { grid-template-columns: minmax(0, 1fr); }
  .order__preview { position: static; }
  .hero__figure { aspect-ratio: 4 / 3.4; }
  .quality__media { max-width: 560px; }
  .quality__figure { aspect-ratio: 4 / 3.6; }
  .faq__aside { position: relative; top: 0; }
  .about__media { max-width: 620px; }
  .legal { grid-template-columns: minmax(0, 1fr); }
  .legal__toc { position: relative; top: 0; }
  .legal__toc ol { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
  :root { --sticky-top: 88px; }
  html { scroll-padding-top: 84px; }
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  .site-header { height: 68px; padding-top: 8px; }
  .header-bar { height: 60px; padding-left: 12px; padding-right: 7px; border-radius: 20px; }
  .site-header.is-scrolled .header-bar { height: 58px; }
  .header-bar__cta { display: none; }
  .burger { margin-left: auto; }
  .brand--logo, .site-header.is-scrolled .brand--logo { height: 44px; padding: 0 8px; border-radius: 12px; }
  .brand__logo { --logo-h: 19px; }
  /* Sur mobile, une seule pastille en haut : celle du hero. Le bandeau d’infos disparaît. */
  .topbar { display: none; }
  /* L’aperçu du message dans le téléphone est réservé aux grands écrans */
  .order__preview { display: none; }
  .mobile-cta { display: flex; }
  /* Photos fixes sur mobile : pas d’effet lié au défilement */
  .media__parallax { inset: 0; transform: none !important; }
  .cta__bg img { transform: none; }
  /* Communes : un onglet par tranche de distance */
  .js .communes__tabs {
    position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px; padding: 5px; border-radius: var(--r-pill);
    background: rgb(19 36 26 / .06); box-shadow: inset 0 0 0 1px rgb(19 36 26 / .06);
  }
  .communes__tab {
    position: relative; z-index: 1; min-height: 42px; padding: 0 6px;
    border-radius: var(--r-pill);
    font-size: .8125rem; font-weight: 600; letter-spacing: -.01em; color: var(--ink-600);
    transition: color .4s;
  }
  .communes__tab[aria-pressed="true"] { color: var(--forest-900); }
  .communes__thumb {
    position: absolute; z-index: 0; top: 5px; bottom: 5px; left: 5px;
    width: calc((100% - 10px) / 3); border-radius: var(--r-pill);
    background: var(--white); box-shadow: 0 6px 16px -10px rgb(19 36 26 / .45), inset 0 0 0 1px rgb(19 36 26 / .05);
    transform: translateX(calc(var(--tab, 0) * 100%));
    transition: transform .6s var(--ease-out);
  }
  .js .communes__bands { margin-top: 18px; }
  .js .communes__band:not(.is-active) { display: none; }
  .js .communes__band.is-active { animation: communes-in .5s var(--ease-out); }
  .js .communes__band-head { display: none; }
  .js .communes__list { margin-top: 0; padding-top: 4px; border-top: 0; }
  .communes__deco { right: -120px; bottom: -110px; width: 260px; height: 260px; }
  .menu-mobile { padding-bottom: calc(96px + env(safe-area-inset-bottom)); }

  .hero__actions .btn { flex: 1 1 100%; }
  .hero__meta { gap: 10px 16px; font-size: var(--fs-xs); }
  .hero__figure { aspect-ratio: 4 / 4.1; border-radius: var(--r-lg); --clip-r: var(--r-lg); }
  .chip { padding: 8px 14px 8px 8px; border-radius: 16px; }
  .chip__icon { width: 36px; height: 36px; border-radius: 12px; }
  .chip--dry { right: 14px; bottom: 14px; }
  .badge { width: 104px; height: 104px; left: auto; right: 14px; bottom: auto; top: 14px; display: none; }

  .trust__grid { grid-template-columns: minmax(0, 1fr); }
  .reviews__grid { grid-template-columns: minmax(0, 1fr); }
  .fields { grid-template-columns: minmax(0, 1fr); }
  .cookie { left: 12px; right: 12px; bottom: calc(env(safe-area-inset-bottom, 0px) + 88px); max-width: none; flex-wrap: wrap; }
  .cookie__text { flex: 1 1 180px; }
  .reviews__score { gap: 4px 12px; }
  .review-card { padding: 22px 20px 20px; }
  .trust__item { padding: 20px; }
  .trust__item + .trust__item::before { display: none; }
  .trust__item + .trust__item { border-top: 1px solid var(--c-line); }

  .price-grid { grid-template-columns: minmax(0, 1fr); max-width: none; }
  .price-col:last-child { grid-column: auto; width: auto; }
  .essences { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stamp { width: 118px; height: 118px; top: 16px; right: 16px; }
  .stamp__value { font-size: 1.7rem; }
  .map-legend { position: static; margin: 0 12px 12px; }
  .zone__field { flex-wrap: wrap; border-radius: 22px; }
  .communes__head { grid-template-columns: minmax(0, 1fr); }
  .communes__bands { grid-template-columns: minmax(0, 1fr); gap: 26px; }
  .communes__band, .communes__band:first-child, .communes__band:last-child { padding: 0; }
  .communes__band + .communes__band { box-shadow: none; }
  .zone__input { flex: 1 1 60%; }
  .zone__field .btn { flex: 1 1 100%; }
  .map .town--minor text { display: none; }
  .map .town text { font-size: 19px; }
  .map .town--main text { font-size: 24px; }
  .map .town--depot .depot-sub { font-size: 14px; }
  .map .river-label { display: none; }

  .facts { grid-template-columns: minmax(0, 1fr); }
  .about__media { padding: 0 0 24% 0; }
  .about__sub { width: 46%; right: 0; }
  .about__year { left: 12px; top: 12px; padding: 12px 16px; }
  .about__year-num { font-size: 2rem; }

  .faq-item__body p { padding-right: 8px; padding-left: 0; }
  
  .footer__grid { grid-template-columns: minmax(0, 1fr); }
  .footer__bottom { justify-content: flex-start; }
  .prose dl { grid-template-columns: minmax(0, 1fr); gap: 2px; }
  .prose dd + dt { margin-top: 12px; }
}

@media (max-width: 420px) {
  .topbar__inner { gap: 10px; font-size: .75rem; }
  .hero__title { letter-spacing: -.04em; }
  .seg__option strong { font-size: 1.1rem; }
  .estimate__value { font-size: 1.6rem; }
}

@media (hover: none) {
  .price-card { transform: none; }
}

/* 21. Mouvement réduit ----------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
  .js [data-reveal], .js [data-split] .sw__i { opacity: 1; translate: none; scale: none; rotate: none; clip-path: none; }
  .js [data-reveal="clip"] .media__img { scale: 1; }
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
}
@keyframes communes-in { from { opacity: 0; translate: 0 8px; } }
