/* ==========================================================================
   INDUCIVIL SA — feuille de style
   Palette tirée des teintes RAL de l'industrie : anthracite 7016, gris 7035,
   blanc 9016, et l'orange INDUCIVIL (#e04511), réservé aux interventions
   (dans les dessins) et aux actions (dans l'interface).
   ========================================================================== */

@font-face {
  font-family: "Cal Sans";
  src: url("../fonts/cal-sans.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/raleway-light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --orange: #e04511;          /* orange du logo : graphismes, grands aplats */
  --orange-action: #d13f0e;   /* boutons et bandeau : contraste AA avec le blanc */
  --orange-texte: #b5360b;    /* liens et petits textes orange sur fond clair */
  --anthracite: #293133;      /* RAL 7016 */
  --anthracite-2: #3b4548;
  --gris: #545d61;
  --gris-clair-texte: #c9d0cd;
  --trait: #cfd4d1;           /* RAL 7035 */
  --trait-fort: #7c8588;
  --beton: #e8eae7;
  --blanc: #f6f6f4;           /* RAL 9016 */
  --blanc-pur: #ffffff;

  --f-titre: "Cal Sans", "Trebuchet MS", system-ui, sans-serif;
  --f-texte: "Raleway", "Segoe UI", system-ui, sans-serif;

  --wrap: 82.5rem;
  --gout: clamp(1.25rem, 4vw, 3rem);
  --section: clamp(4.25rem, 2.5rem + 6vw, 8rem);
  --entete: 4.75rem;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(var(--entete) + 1.5rem);
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  margin: 0;
  background: var(--blanc);
  color: var(--anthracite);
  font-family: var(--f-texte);
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.65;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.sans-defilement { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--f-titre);
  font-weight: 400;
  text-wrap: balance;
}
p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; }
a { color: var(--orange-texte); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { text-decoration-thickness: 2px; }
strong { font-family: var(--f-titre); font-weight: 400; letter-spacing: .005em; }
address { font-style: normal; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
main:focus { outline: none; }

.insecable { white-space: nowrap; }
a[href^="tel:"] { white-space: nowrap; }

.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;
}
.evitement {
  position: absolute; left: 1rem; top: -5rem; z-index: 100;
  background: var(--anthracite); color: #fff; padding: .75rem 1rem;
  font-family: var(--f-titre); text-decoration: none;
}
.evitement:focus { top: 1rem; }

/* ---------- Mise en page ---------- */
.wrap {
  width: 100%;
  max-width: calc(var(--wrap) + 2 * var(--gout));
  margin-inline: auto;
  padding-inline: var(--gout);
}
.section { padding-block: var(--section); }
.section--haut-reduit { padding-top: clamp(1rem, 2vw, 2rem); }
.section--beton { background: var(--beton); }
.section--sombre { background: var(--anthracite); color: #dfe4e2; }
.section--sombre .titre-m, .section--sombre .titre-s { color: #fff; }

/* ---------- Typographie ---------- */
.titre-xl {
  font-size: clamp(2.7rem, 1.1rem + 5.7vw, 6.25rem);
  line-height: .94;
  letter-spacing: -.032em;
}
.titre-l {
  font-size: clamp(2.3rem, 1.45rem + 3.2vw, 4.3rem);
  line-height: 1;
  letter-spacing: -.026em;
}
.titre-m {
  font-size: clamp(1.8rem, 1.3rem + 1.9vw, 3rem);
  line-height: 1.04;
  letter-spacing: -.02em;
}
.titre-s {
  font-size: clamp(1.3rem, 1.16rem + .5vw, 1.6rem);
  line-height: 1.15;
  letter-spacing: -.012em;
}
.chapo {
  font-size: clamp(1.18rem, 1.07rem + .45vw, 1.4rem);
  line-height: 1.5;
  max-width: 36em;
}
.chapo p { margin-bottom: .75em; }
.texte { max-width: 38em; }
.bloc-titre { max-width: 22ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }

.surtitre {
  display: flex; align-items: center; flex-wrap: wrap; gap: .6rem;
  font-family: var(--f-titre); font-size: 1.05rem; letter-spacing: .01em;
  margin-bottom: 1.1rem;
}
.lien-suite { margin-top: 1.75rem; font-family: var(--f-titre); font-size: 1.1rem; letter-spacing: .005em; }
.lien-suite a { color: var(--anthracite); text-decoration: underline; text-decoration-color: var(--orange); text-decoration-thickness: 2px; text-underline-offset: .3em; }
.lien-suite a:hover { color: var(--orange-texte); }
.section--sombre .lien-suite a { color: #fff; }

/* ---------- Éléments d'interface ---------- */
.icone { width: 1.15em; height: 1.15em; flex: none; }

.bouton {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--f-titre); font-size: 1.0625rem; line-height: 1.1; letter-spacing: .012em;
  padding: .92em 1.3em;
  border: 2px solid transparent; border-radius: 2px;
  text-decoration: none; cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.bouton--plein { background: var(--orange-action); color: #fff; }
.bouton--plein:hover { background: var(--anthracite); color: #fff; }
.bouton--contour { border-color: var(--anthracite); color: var(--anthracite); background: transparent; }
.bouton--contour:hover { background: var(--anthracite); color: #fff; }
.section--sombre .bouton--contour { border-color: #fff; color: #fff; }
.section--sombre .bouton--contour:hover { background: #fff; color: var(--anthracite); }
.bouton[disabled] { opacity: .6; cursor: progress; }

/* Repère : cercle numéroté identique à la coupe type */
.repere {
  display: inline-grid; place-items: center; flex: none;
  width: 2rem; height: 2rem; border-radius: 50%;
  border: 2px solid var(--orange); background: var(--blanc-pur);
  font-family: var(--f-titre); font-size: .95rem; line-height: 1; color: var(--anthracite);
  font-feature-settings: "tnum";
  transition: background-color .15s ease, color .15s ease;
}
.section--sombre .repere { background: var(--anthracite); color: #fff; }

.etiquette {
  display: inline-block; vertical-align: .12em;
  font-family: var(--f-titre); font-size: .8rem; line-height: 1; letter-spacing: .02em;
  padding: .32em .55em .34em; border-radius: 2px;
  background: var(--anthracite); color: #fff;
}

/* Listes à tirets */
.liste { list-style: none; }
.liste li {
  position: relative; padding: .7rem 0 .7rem 1.6rem;
  border-top: 1px solid var(--trait);
}
.liste li:last-child { border-bottom: 1px solid var(--trait); }
.liste li::before {
  content: ""; position: absolute; left: 0; top: 1.45rem;
  width: .8rem; height: 2px; background: var(--anthracite);
}
.liste--2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 2rem; margin-top: 1.5rem; }
.liste--2 li:nth-last-child(2):nth-child(odd) { border-bottom: 1px solid var(--trait); }
.liste--large li { font-size: clamp(1.15rem, 1.05rem + .4vw, 1.35rem); padding-block: .95rem; }
.liste--large li::before { top: 1.8rem; }
.section--sombre .liste li { border-color: #46514f; }
.section--sombre .liste li::before { background: var(--orange); }

/* ---------- En-tête ---------- */
.entete {
  position: sticky; top: 0; z-index: 40;
  border-bottom: 1px solid var(--trait);
}
/* Le flou est porté par un pseudo-élément : un backdrop-filter sur l'en-tête lui-même
   deviendrait le bloc conteneur du menu mobile en position fixe. */
.entete::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(246, 246, 244, .97);
}
@supports (backdrop-filter: blur(8px)) {
  .entete::before { background: rgba(246, 246, 244, .88); backdrop-filter: blur(12px) saturate(1.1); }
}
.menu-ouvert.entete::before { background: var(--blanc); }
.entete__logo, .entete__tel, .entete__burger { position: relative; z-index: 2; }
.entete__in { display: flex; align-items: center; gap: 1.5rem; min-height: var(--entete); }
.entete__logo { color: var(--orange); flex: none; display: block; padding: .4rem 0; }
.entete__logo svg { height: 1.95rem; width: auto; }
.nav { margin-left: auto; align-self: stretch; display: flex; }
.nav__liste { display: flex; align-items: stretch; gap: clamp(1rem, 2.2vw, 2.25rem); list-style: none; }
.nav__item { display: flex; align-items: center; }
.nav__lien {
  position: relative; display: inline-flex; align-items: center; gap: .3rem;
  padding: .5rem 0; border: 0; background: none; cursor: pointer;
  font-family: var(--f-titre); font-size: 1.0625rem; letter-spacing: .012em;
  color: var(--anthracite); text-decoration: none;
}
.nav__lien:hover { color: var(--orange-texte); }
.nav__lien[aria-current="page"]::after, .nav__declencheur[data-actif]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .15rem; height: 2px; background: var(--orange);
}
.nav__declencheur .icone--chevron { width: 1rem; height: 1rem; transition: transform .2s ease; }
.nav__declencheur[aria-expanded="true"] .icone--chevron { transform: rotate(180deg); }
.nav__item--mobile, .nav__mobile-pied { display: none; }

.nav__panneau {
  display: none; position: absolute; left: 0; right: 0; top: 100%;
  background: var(--blanc-pur); border-bottom: 1px solid var(--trait);
  box-shadow: 0 24px 40px -28px rgba(41, 49, 51, .45);
}
.nav__item--menu.est-ouvert .nav__panneau { display: block; }
@media (hover: hover) and (min-width: 64.01em) {
  .nav__item--menu:hover .nav__panneau { display: block; }
}
.nav__panneau-in { padding-block: 1.75rem 1.5rem; }
.nav__prestations { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .25rem 1.5rem; }
.nav__prestations a {
  display: grid; grid-template-columns: auto 1fr; column-gap: .9rem; row-gap: .2rem; align-items: start;
  padding: .9rem .9rem 1rem; border-radius: 2px;
  color: var(--anthracite); text-decoration: none;
}
.nav__prestations a:hover, .nav__prestations a[aria-current="page"] { background: var(--beton); }
.nav__prestations a:hover .repere { background: var(--orange-action); border-color: var(--orange-action); color: #fff; }
.nav__p-nom { font-family: var(--f-titre); font-size: 1.125rem; line-height: 1.2; padding-top: .3rem; }
.nav__p-nom .etiquette, .autres__nom .etiquette { margin-left: .3rem; }
.nav__p-resume { grid-column: 2; font-size: .95rem; line-height: 1.45; color: var(--gris); }
.nav__tout { margin: 1rem .9rem 0; padding-top: 1rem; border-top: 1px solid var(--trait); font-family: var(--f-titre); }
.nav__tout a { color: var(--anthracite); text-decoration-color: var(--orange); text-decoration-thickness: 2px; text-underline-offset: .3em; }

.entete__tel { padding: .7em 1em; font-size: 1rem; }
.entete__burger {
  display: none; align-items: center; gap: .6rem;
  border: 0; background: none; padding: .6rem 0 .6rem .4rem; cursor: pointer;
  font-family: var(--f-titre); font-size: 1.0625rem; color: var(--anthracite);
}
.entete__burger-icone { position: relative; width: 1.5rem; height: 1rem; }
.entete__burger-icone::before, .entete__burger-icone::after, .entete__burger-icone span {
  content: ""; position: absolute; left: 0; right: 0; height: 2px; background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.entete__burger-icone::before { top: 0; }
.entete__burger-icone span { top: calc(50% - 1px); }
.entete__burger-icone::after { bottom: 0; }
.entete__burger[aria-expanded="true"] .entete__burger-icone::before { transform: translateY(7px) rotate(45deg); }
.entete__burger[aria-expanded="true"] .entete__burger-icone span { opacity: 0; }
.entete__burger[aria-expanded="true"] .entete__burger-icone::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 64em) {
  :root { --entete: 4.25rem; }
  .entete__logo svg { height: 1.7rem; }
  .entete__burger { display: inline-flex; }
  .entete__tel { margin-left: auto; padding: .65em; }
  .entete__tel-num { display: none; }
  .nav {
    position: fixed; left: 0; right: 0; top: var(--entete); bottom: 0; z-index: 39;
    display: none; flex-direction: column; margin: 0;
    background: var(--blanc); overflow-y: auto; overscroll-behavior: contain;
    padding: 1rem var(--gout) 2.5rem; border-top: 1px solid var(--trait);
  }
  .menu-ouvert .nav { display: flex; }
  .nav__liste { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__item { display: block; border-bottom: 1px solid var(--trait); }
  .nav__item--menu { display: none; }
  .nav__item--mobile { display: block; }
  .nav__lien { width: 100%; padding: 1rem 0; font-size: 1.5rem; letter-spacing: -.01em; }
  .nav__lien[aria-current="page"]::after { bottom: .7rem; right: auto; width: 2.5rem; }
  .nav__sous { list-style: none; padding: 0 0 1rem; }
  .nav__sous a {
    display: flex; align-items: center; gap: .8rem; padding: .5rem 0;
    font-family: var(--f-titre); font-size: 1.125rem; color: var(--anthracite); text-decoration: none;
  }
  .nav__sous a[aria-current="page"] { color: var(--orange-texte); }
  .nav__mobile-pied { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; margin-top: 2rem; }
  .nav__mail { font-family: var(--f-titre); color: var(--anthracite); }
}

/* ---------- Accroche (accueil) ---------- */
.accroche { padding-top: clamp(2.25rem, .8rem + 5.5vw, 5.75rem); padding-bottom: clamp(3.5rem, 6vw, 6rem); }
.accroche__grille {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(18rem, 25rem);
  column-gap: var(--gout); row-gap: 1.75rem; align-items: end;
}
.accroche__titre { max-width: 11.5em; }
.accroche__texte { padding-bottom: .55rem; }
.accroche__texte .chapo { font-size: clamp(1.12rem, 1.05rem + .3vw, 1.3rem); }
.accroche__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.6rem; }
.accroche__actions .bouton { flex: 1 1 auto; }
@media (max-width: 68em) {
  .accroche__grille { grid-template-columns: minmax(0, 1fr); }
  .accroche__texte { max-width: 38rem; }
  .accroche__actions .bouton { flex: 0 1 auto; }
}

/* ---------- Coupe type (plan) ---------- */
.plan { margin: clamp(2.75rem, 5.5vw, 4.75rem) 0 0; }
.plan__barre {
  display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: .5rem 2rem;
  border-top: 2px solid var(--anthracite); padding: .85rem 0 0;
  font-family: var(--f-titre); font-size: 1rem; letter-spacing: .01em;
}
.plan__barre p { margin: 0; }
.plan__cle { display: inline-flex; align-items: center; gap: .55rem; color: var(--gris); }
.plan__pastille { width: 1.6rem; height: .5rem; background: var(--orange); display: inline-block; }
.plan__cadre { overflow-x: auto; padding: clamp(.75rem, 2vw, 1.75rem) 0 clamp(.5rem, 1.5vw, 1rem); scrollbar-width: thin; }
.plan__cadre:focus-visible { outline-offset: -3px; }
.plan__cadre .coupe { width: 100%; height: auto; min-width: 46rem; }
.plan__astuce { display: none; font-size: .9rem; color: var(--gris); margin: .25rem 0 0; }
.plan__legende {
  list-style: none; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--trait); border-bottom: 1px solid var(--trait); margin-top: .75rem;
}
.plan__legende li + li { border-left: 1px solid var(--trait); }
.plan__legende a {
  display: flex; flex-direction: column; align-items: flex-start; height: 100%;
  padding: 1.15rem 1.1rem 1.35rem;
  color: var(--anthracite); text-decoration: none;
  transition: background-color .15s ease;
}
.plan__legende a:hover, .plan__legende a.est-actif { background: var(--blanc-pur); }
.plan__legende a:hover .repere, .plan__legende a.est-actif .repere { background: var(--orange-action); border-color: var(--orange-action); color: #fff; }
.plan__nom { font-family: var(--f-titre); font-size: 1.15rem; line-height: 1.15; margin: .85rem 0 .45rem; }
.plan__nom .etiquette { margin-top: .35rem; }
.plan__resume { font-size: .95rem; line-height: 1.45; color: var(--gris); }
@media (max-width: 75em) {
  .plan__legende { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .plan__legende li:nth-child(4) { border-left: 0; }
  .plan__legende li:nth-child(n+4) { border-top: 1px solid var(--trait); }
}
@media (max-width: 48em) {
  .plan__astuce { display: block; }
  .plan__legende { grid-template-columns: 1fr; }
  .plan__legende li + li { border-left: 0; border-top: 1px solid var(--trait); }
  .plan__legende a { display: grid; grid-template-columns: auto 1fr; column-gap: 1rem; padding: 1rem .25rem; }
  .plan__legende .repere { grid-row: span 2; }
  .plan__nom { margin: .2rem 0 .25rem; }
}

/* Dessin : états et animation */
.coupe .coupe__z, .coupe .coupe__repere { transition: opacity .25s ease; }
.coupe[data-actif] .coupe__z:not(.est-actif) { opacity: .2; }
.coupe[data-actif] .coupe__repere:not(.est-actif) { opacity: .35; }
.coupe .coupe__repere circle { transition: fill .15s ease; }
.coupe .coupe__repere.est-actif circle { fill: var(--orange-action); stroke: var(--orange-action); }
.coupe .coupe__repere.est-actif text { fill: #fff; }
.coupe a { cursor: pointer; }
.coupe--focus[data-focus="1"] .coupe__z:not([data-z="1"]),
.coupe--focus[data-focus="2"] .coupe__z:not([data-z="2"]),
.coupe--focus[data-focus="3"] .coupe__z:not([data-z="3"]),
.coupe--focus[data-focus="4"] .coupe__z:not([data-z="4"]),
.coupe--focus[data-focus="5"] .coupe__z:not([data-z="5"]),
.coupe--focus[data-focus="6"] .coupe__z:not([data-z="6"]) { opacity: .22; }

.coupe__z[data-z="1"] { --z: 0; }
.coupe__z[data-z="2"] { --z: 1; }
.coupe__z[data-z="3"] { --z: 2; }
.coupe__z[data-z="4"] { --z: 3; }
.coupe__z[data-z="5"] { --z: 4; }
.coupe__z[data-z="6"] { --z: 5; }
@media (prefers-reduced-motion: no-preference) {
  .coupe--anim .coupe__trait {
    stroke-dasharray: 1; stroke-dashoffset: 1;
    animation: coupe-trace .9s cubic-bezier(.55, 0, .25, 1) forwards;
    animation-delay: calc(var(--z, 0) * .2s + .3s);
  }
  .coupe--anim .coupe__remplissage {
    opacity: 0;
    animation: coupe-fondu .5s ease-out forwards;
    animation-delay: calc(var(--z, 0) * .2s + .85s);
  }
  .coupe--anim .coupe__reperes { opacity: 0; animation: coupe-fondu .5s ease-out 1.9s forwards; }
}
@keyframes coupe-trace { to { stroke-dashoffset: 0; } }
@keyframes coupe-fondu { to { opacity: 1; } }

/* Détail zoomé d'une prestation */
.detail { margin: 0; }
.detail__cadre { position: relative; border: 1px solid var(--trait); background: var(--blanc); padding: 3.25rem clamp(.75rem, 2vw, 1.5rem) clamp(.75rem, 2vw, 1.5rem); }
.detail__cadre .coupe { width: 100%; height: auto; }
.detail__marque {
  position: absolute; left: clamp(.75rem, 2vw, 1.25rem); top: .8rem; margin: 0;
  display: flex; align-items: center; gap: .55rem;
  font-family: var(--f-titre); font-size: .95rem; color: var(--gris);
}
.detail__marque .repere { width: 1.7rem; height: 1.7rem; font-size: .85rem; }
.detail figcaption { font-size: .92rem; line-height: 1.5; color: var(--gris); margin-top: .8rem; max-width: 34em; }
.detail--sombre .detail__cadre { border-color: #46514f; background: var(--anthracite); }
.detail--sombre .detail__marque { color: var(--gris-clair-texte); }
.detail--sombre .detail__marque .repere { background: var(--anthracite); color: #fff; }
.detail--sombre figcaption { color: var(--gris-clair-texte); }
.section--beton .detail__cadre { background: var(--blanc); }

/* ---------- Accueil : installations thermiques ---------- */
.thermique__grille {
  display: grid; grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gout); row-gap: 3rem; align-items: center;
}
.thermique__texte { grid-column: 1 / span 5; }
.thermique__texte .titre-m { margin-bottom: 1.5rem; }
.thermique__visuel { grid-column: 7 / span 6; }
.objectifs {
  list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem var(--gout); margin-top: clamp(3.5rem, 6vw, 5.5rem);
}
.bloc-titre + .objectifs { margin-top: 0; }
.objectifs li {
  border-top: 2px solid var(--orange); padding-top: 1.1rem;
  font-family: var(--f-titre); font-size: clamp(1.45rem, 1.1rem + 1.25vw, 2.15rem);
  line-height: 1.08; letter-spacing: -.02em; color: var(--anthracite);
}
.section--sombre .objectifs li { color: #fff; }
.objectifs--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.objectifs--4 li { font-size: clamp(1.35rem, 1.1rem + .9vw, 1.85rem); }
@media (max-width: 60em) {
  .thermique__texte, .thermique__visuel { grid-column: 1 / -1; }
  .thermique__visuel { max-width: 34rem; }
  .objectifs, .objectifs--4 { grid-template-columns: 1fr; }
}
@media (min-width: 40em) and (max-width: 60em) {
  .objectifs--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---------- Accueil : coupe-feu ---------- */
.coupefeu__grille {
  display: grid; grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gout); row-gap: 3rem; align-items: center;
}
.coupefeu__visuel { grid-column: 1 / span 5; }
.coupefeu__texte { grid-column: 7 / span 6; }
.coupefeu__texte .titre-m { margin-bottom: 1.5rem; }
@media (max-width: 60em) {
  .coupefeu__visuel, .coupefeu__texte { grid-column: 1 / -1; }
  .coupefeu__visuel { order: 2; max-width: 30rem; }
}
@media (max-width: 36em) { .liste--2 { grid-template-columns: 1fr; } .liste--2 li:nth-last-child(2):nth-child(odd) { border-bottom: 0; } }

/* ---------- Polluants : éléments, délais ---------- */
.polluants__tete { max-width: 46rem; margin-bottom: clamp(2.25rem, 4vw, 3.25rem); }
.polluants__tete .titre-m { margin-bottom: 1.25rem; }
.polluants__intro { font-size: clamp(1.1rem, 1.05rem + .25vw, 1.25rem); }
.elements {
  list-style: none; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 2px solid var(--anthracite); background: var(--blanc-pur);
}
.element { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; }
@supports (grid-template-rows: subgrid) {
  .element { display: grid; grid-row: span 3; grid-template-rows: subgrid; row-gap: 0; align-content: start; }
}
.element + .element { border-left: 1px solid var(--trait); }
.element__symbole {
  font-family: var(--f-titre); font-size: clamp(3rem, 2rem + 3vw, 4.75rem);
  line-height: .9; letter-spacing: -.04em; margin: 0 0 1.4rem;
}
.element__nom { font-family: var(--f-titre); font-size: 1.2rem; line-height: 1.2; align-self: end; }
.element__ou { font-size: 1rem; line-height: 1.5; margin: .9rem 0 0; padding-top: .9rem; border-top: 1px solid var(--trait); }
@media (max-width: 60em) {
  .elements { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .element:nth-child(3) { border-left: 0; }
  .element:nth-child(n+3) { border-top: 1px solid var(--trait); }
}
@media (max-width: 30em) {
  .elements { grid-template-columns: 1fr; }
  .element + .element { border-left: 0; border-top: 1px solid var(--trait); }
}
.polluants__pied {
  display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gout); row-gap: 2rem;
  align-items: end; margin-top: clamp(2.5rem, 5vw, 4rem);
}
.polluants__pied .delais { grid-column: 1 / span 7; }
.polluants__actions { grid-column: 8 / span 5; display: flex; flex-wrap: wrap; gap: .75rem; justify-content: flex-end; margin: 0; }
@media (max-width: 60em) {
  .polluants__pied .delais, .polluants__actions { grid-column: 1 / -1; justify-content: flex-start; }
}
.delais { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--gout); }
.delai { border-top: 2px solid var(--anthracite); padding-top: 1rem; }
.delai--urgence { border-top-color: var(--orange); }
.delai__label { font-family: var(--f-titre); font-size: 1.05rem; margin-bottom: .6rem; }
.delai__valeur {
  font-family: var(--f-titre); font-size: clamp(2.3rem, 1.6rem + 2.6vw, 3.9rem);
  line-height: .95; letter-spacing: -.03em; margin: 0;
}
.delai__pre { display: block; font-family: var(--f-texte); font-size: 1rem; letter-spacing: 0; line-height: 1.4; color: var(--gris); margin-bottom: .35rem; }
@media (max-width: 30em) { .delais { grid-template-columns: 1fr; } }

/* ---------- Accueil : entreprise ---------- */
.entreprise-accueil__grille {
  display: grid; grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gout); row-gap: 2.5rem; align-items: start;
}
.entreprise-accueil__visuel { grid-column: 1 / span 4; }
.entreprise-accueil__visuel img { width: 100%; max-width: 26rem; }
.entreprise-accueil__texte { grid-column: 6 / span 7; }
.entreprise-accueil__texte .titre-m { margin-bottom: 1.5rem; max-width: 18ch; }
.entreprise-accueil__texte .chapo { margin-bottom: 1rem; }
.atouts__titre { margin: 2.25rem 0 .75rem; }
.atouts { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.atouts li { border-top: 2px solid var(--anthracite); padding-top: .8rem; font-size: 1.02rem; line-height: 1.45; }
@media (max-width: 60em) {
  .entreprise-accueil__visuel, .entreprise-accueil__texte { grid-column: 1 / -1; }
  .entreprise-accueil__visuel img { max-width: 22rem; }
}
@media (max-width: 36em) { .atouts { grid-template-columns: 1fr; gap: 1rem; } }

/* ---------- Réalisations ---------- */
.entete-section { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 1rem 2rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.entete-section .lien-suite { margin: 0; }
.realisations { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gout); }
.realisation figure { margin: 0; }
.realisation__image { aspect-ratio: 4 / 5; overflow: hidden; background: var(--trait); }
.realisation__image img { width: 100%; height: 100%; object-fit: cover; }
.realisation figcaption { padding-top: 1rem; border-top: 2px solid var(--anthracite); margin-top: 1rem; }
.realisation__titre { display: block; font-family: var(--f-titre); font-size: 1.2rem; line-height: 1.2; }
.realisation__lieu { display: block; font-size: 1rem; color: var(--gris); margin-top: .25rem; }
@media (max-width: 56em) { .realisations { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 34em) { .realisations { grid-template-columns: 1fr; } }

/* ---------- Partenaires ---------- */
.partenaires-section .titre-m { margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem); }
.partenaires {
  list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(8.5rem, 1fr));
  border-top: 1px solid var(--trait); border-left: 1px solid var(--trait);
}
.partenaire {
  display: grid; place-items: center; min-height: 7rem; padding: 1rem 1.25rem;
  border-right: 1px solid var(--trait); border-bottom: 1px solid var(--trait); text-align: center;
}
.partenaire img { width: auto; max-width: 100%; max-height: 3rem; filter: grayscale(1); mix-blend-mode: multiply; opacity: .8; }
.partenaire img[src*="vabs"] { max-height: 4.25rem; }
.partenaire__nom { font-family: var(--f-titre); font-size: 1.3rem; line-height: 1.1; letter-spacing: -.01em; color: #687174; }
.partenaires-ligne { margin-top: 2rem; color: var(--gris); }
@media (max-width: 34em) {
  .partenaires { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .partenaire { min-height: 5.5rem; padding: .75rem; }
  .partenaire__nom { font-size: 1.05rem; }
  .partenaire img { max-height: 2.2rem; }
  .partenaire img[src*="vabs"] { max-height: 3.2rem; }
}

/* ---------- Bandeau orange : interlocuteurs ---------- */
.bandeau { background: var(--orange-action); color: #fff; padding-block: clamp(3.75rem, 2rem + 5vw, 6.25rem); }
.bandeau :focus-visible { outline-color: #fff; }
.bandeau a { color: #fff; }
.bandeau__tete { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gout); row-gap: 1rem; align-items: end; }
.bandeau__titre { grid-column: 1 / span 7; max-width: 20ch; }
.bandeau__texte { grid-column: 8 / span 5; font-size: 1.1rem; margin: 0; }
.bandeau__grille { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem var(--gout); margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.bandeau__grille--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 56rem; }
.bandeau .personne { border-top-color: rgba(255, 255, 255, .6); }
.bandeau .personne__role { color: #fff; }
.bandeau .personne__nom, .bandeau .personne__tel { color: #fff; }
.bandeau__standard {
  display: flex; flex-wrap: wrap; gap: .75rem 2.5rem; margin: clamp(2.5rem, 5vw, 3.5rem) 0 0;
  padding-top: 1.25rem; border-top: 1px solid rgba(255, 255, 255, .45);
  font-family: var(--f-titre); font-size: 1.05rem;
}
@media (max-width: 60em) {
  .bandeau__titre, .bandeau__texte { grid-column: 1 / -1; }
  .bandeau__grille, .bandeau__grille--2 { grid-template-columns: 1fr; }
}

/* Carte d'un interlocuteur */
.personne { border-top: 2px solid var(--anthracite); padding-top: 1rem; display: flex; flex-direction: column; align-items: flex-start; }
.personne__role { font-size: 1rem; margin: 0 0 .2rem; color: var(--gris); }
.personne__nom { font-family: var(--f-titre); font-size: 1.45rem; line-height: 1.15; letter-spacing: -.01em; }
.personne__tel {
  font-family: var(--f-titre); font-size: clamp(1.55rem, 1.2rem + 1.2vw, 2.15rem);
  letter-spacing: -.015em; line-height: 1.1; margin-top: .75rem;
  color: var(--anthracite); text-decoration: none;
}
.personne__tel:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: .15em; }
.personne__mail { margin-top: .4rem; font-size: 1rem; word-break: break-word; }

/* ---------- Pages intérieures ---------- */
.fil { padding-top: 1.6rem; font-size: .95rem; color: var(--gris); }
.fil ol { list-style: none; display: flex; flex-wrap: wrap; gap: .35rem; }
.fil li + li::before { content: "/"; margin-right: .35rem; color: var(--trait-fort); }
.fil a { color: var(--gris); }
.fil a:hover { color: var(--orange-texte); }
.fil [aria-current] { color: var(--anthracite); }

.page-tete { padding-block: clamp(1.75rem, 4vw, 3.5rem) clamp(3.5rem, 7vw, 6rem); }
.page-tete--simple { padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.page-tete--simple .chapo { margin-top: 1.5rem; }
.page-tete__grille {
  display: grid; grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gout); row-gap: 3rem; align-items: center;
}
.page-tete__texte { grid-column: 1 / span 6; }
.page-tete__texte .titre-l { margin-bottom: 1.5rem; }
.page-tete__visuel { grid-column: 8 / span 5; }
.page-tete__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 2rem 0 0; }
.page-tete__contact { margin-top: .8rem; font-size: .98rem; color: var(--gris); }
@media (max-width: 60em) {
  .page-tete__texte, .page-tete__visuel { grid-column: 1 / -1; }
  .page-tete__visuel { max-width: 34rem; }
}
.photo-cadre { margin: 0; }
.photo-cadre img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }

/* Deux colonnes : titre / contenu */
.duo { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gout); row-gap: 2rem; }
.duo__tete { grid-column: 1 / span 5; }
.duo__tete .titre-m { margin-bottom: 1.25rem; }
.duo__corps { grid-column: 7 / span 6; }
@media (max-width: 60em) { .duo__tete, .duo__corps { grid-column: 1 / -1; } }

.colonnes { display: grid; gap: 2.5rem var(--gout); }
.colonnes--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.colonnes--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.colonne { border-top: 2px solid var(--anthracite); padding-top: 1.1rem; }
.colonne .titre-s { margin-bottom: .8rem; }
.colonnes--2 .colonne .titre-s { margin-bottom: 1.25rem; }
@media (max-width: 56em) { .colonnes--2, .colonnes--3 { grid-template-columns: 1fr; } }

/* Normes */
.normes { list-style: none; display: grid; gap: 1rem; }
.normes li {
  display: grid; grid-template-columns: 6.5rem 1fr; gap: 1.25rem; align-items: center;
  border: 2px solid var(--anthracite); padding: 1.1rem 1.25rem; background: var(--blanc-pur);
}
.normes__sigle { font-family: var(--f-titre); font-size: 2.2rem; line-height: 1; letter-spacing: -.02em; }
.normes__nom { font-size: 1.02rem; line-height: 1.45; }

/* Étapes : ligne de cote avec traits de repère */
.etapes { list-style: none; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 2px solid var(--anthracite); }
.etape { position: relative; padding: 1.5rem 1.5rem 0 0; }
.etape::before { content: ""; position: absolute; left: 0; top: -9px; width: 2px; height: 16px; background: var(--anthracite); }
.etape:last-child::after { content: ""; position: absolute; right: 0; top: -9px; width: 2px; height: 16px; background: var(--anthracite); }
.etape__num { display: block; font-family: var(--f-titre); font-size: clamp(2.2rem, 1.7rem + 1.6vw, 3.2rem); line-height: 1; color: var(--orange-texte); margin-bottom: .8rem; }
.etape__nom { font-family: var(--f-titre); font-size: 1.35rem; margin-bottom: .4rem; }
.etape p { font-size: 1.02rem; }
@media (max-width: 56em) {
  .etapes { grid-template-columns: 1fr; border-top: 0; border-left: 2px solid var(--anthracite); margin-left: .5rem; }
  .etape { padding: 0 0 2rem 1.75rem; }
  .etape::before { left: -9px; top: 0; width: 16px; height: 2px; }
  .etape:last-child::after { display: none; }
}

/* Galeries */
.galerie__grille { display: grid; gap: var(--gout); align-items: start; }
.galerie__grille--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 54rem; }
.galerie figure { margin: 0; }
.galerie img { width: 100%; }
.galerie__grille--2 img { aspect-ratio: 4 / 5; object-fit: cover; }
.galerie figcaption { font-size: .95rem; color: var(--gris); margin-top: .75rem; }
.galerie__large { max-width: 56rem; }
@media (max-width: 40em) { .galerie__grille--2 { grid-template-columns: 1fr; } }

/* Encart */
.encart { border: 2px solid var(--anthracite); background: var(--blanc-pur); padding: clamp(1.75rem, 4vw, 3rem); max-width: 56rem; }
.encart .titre-m { margin-bottom: 1.25rem; max-width: 20ch; }
.encart-section { padding-top: 0; }
.section--beton + .encart-section { padding-top: var(--section); }

/* Catalogue des prestations */
.catalogue__liste { list-style: none; }
.fiche {
  display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gout); row-gap: 2rem;
  align-items: center; padding-block: clamp(2.5rem, 5vw, 4rem); border-top: 2px solid var(--anthracite);
}
.fiche:last-child { padding-bottom: var(--section); }
.fiche__visuel { grid-column: 1 / span 5; }
.fiche__texte { grid-column: 7 / span 6; }
.fiche__titre { margin-bottom: 1.1rem; }
.fiche__titre a { color: var(--anthracite); text-decoration: none; }
.fiche__titre a:hover { color: var(--orange-texte); }
.fiche .liste { margin-top: 1.25rem; }
.fiche__actions { margin-top: 1.75rem; }
@media (max-width: 60em) {
  .fiche__visuel, .fiche__texte { grid-column: 1 / -1; }
  .fiche__visuel { order: 2; max-width: 30rem; }
}

/* Autres prestations */
.autres .titre-m { margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem); }
.autres__liste { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(14.5rem, 1fr)); column-gap: 1.5rem; border-top: 1px solid var(--trait-fort); }
.autres__liste a {
  display: grid; grid-template-columns: auto 1fr; column-gap: .9rem; row-gap: .25rem;
  padding: 1.1rem 1rem 1.25rem 0; height: 100%;
  border-bottom: 1px solid var(--trait-fort);
  color: var(--anthracite); text-decoration: none;
}
.autres__liste a:hover .repere { background: var(--orange-action); border-color: var(--orange-action); color: #fff; }
.autres__liste a:hover .autres__nom { color: var(--orange-texte); }
.autres__nom { font-family: var(--f-titre); font-size: 1.2rem; line-height: 1.2; padding-top: .3rem; }
.autres__resume { grid-column: 2; font-size: .95rem; line-height: 1.45; color: var(--gris); }

/* ---------- Contact ---------- */
.contact__grille { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gout); row-gap: 3.5rem; align-items: start; }
.contact__formulaire { grid-column: 1 / span 7; }
.contact__formulaire > .titre-s { margin-bottom: 1.5rem; }
.contact__infos { grid-column: 9 / span 4; display: grid; gap: 3rem; }
@media (max-width: 60em) { .contact__formulaire, .contact__infos { grid-column: 1 / -1; } }
.formulaire { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem 1.5rem; }
.champ { display: flex; flex-direction: column; gap: .45rem; min-width: 0; }
.champ--large { grid-column: 1 / -1; }
.champ label { font-family: var(--f-titre); font-size: 1rem; letter-spacing: .01em; }
.requis { color: var(--orange-texte); }
.formulaire input, .formulaire select, .formulaire textarea {
  width: 100%; font: inherit; font-weight: 300; font-size: 1.0625rem; line-height: 1.4;
  color: var(--anthracite); background: var(--blanc-pur);
  border: 1.5px solid var(--trait-fort); border-radius: 2px; padding: .8rem .9rem;
}
.formulaire input:hover, .formulaire select:hover, .formulaire textarea:hover { border-color: var(--anthracite); }
.formulaire input:focus-visible, .formulaire select:focus-visible, .formulaire textarea:focus-visible { outline: 3px solid var(--orange); outline-offset: 1px; border-color: var(--anthracite); }
.formulaire textarea { min-height: 11rem; resize: vertical; }
.formulaire ::placeholder { color: #6f787b; }
.formulaire select {
  appearance: none; -webkit-appearance: none; padding-right: 2.75rem; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6' fill='none' stroke='%23293133' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .85rem center; background-size: 1.1rem;
}
.champ [aria-invalid="true"] { border-color: var(--orange-action); }
.champ__erreur { font-size: .92rem; color: var(--orange-texte); }
.champ--piege { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.formulaire__pied { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin-top: .5rem; }
.formulaire__note { font-size: .92rem; color: var(--gris); margin: 0; flex: 1 1 18rem; }
@media (max-width: 40em) { .formulaire { grid-template-columns: 1fr; } }
.message { padding: 1rem 1.25rem; margin-bottom: 1.5rem; border-left: 4px solid var(--anthracite); background: var(--blanc-pur); }
.message--erreur { border-left-color: var(--orange-action); }

.infos-bloc > .titre-s { margin-bottom: 1.1rem; }
.infos { list-style: none; border-top: 2px solid var(--anthracite); }
.infos li { display: grid; grid-template-columns: 1.4rem 1fr; gap: .9rem; padding: .9rem 0; border-bottom: 1px solid var(--trait); }
.infos .icone { margin-top: .3rem; color: var(--orange-texte); }
.infos__tel { font-family: var(--f-titre); font-size: 1.3rem; color: var(--anthracite); text-decoration: none; }
.contact__personnes { display: grid; gap: 1.75rem; }
.contact__personnes .personne__tel { font-size: 1.5rem; }
.contact__personnes .personne__nom { font-size: 1.25rem; }

/* ---------- Pages légales ---------- */
.texte-legal { max-width: 46rem; margin-inline: 0; }
.texte-legal .titre-s { margin: 2.5rem 0 .75rem; }
.texte-legal .titre-s:first-child { margin-top: 0; }
.texte-legal__maj { margin-top: 3rem; font-size: .95rem; color: var(--gris); }
@media (min-width: 64em) { .texte-legal { margin-left: calc((100% - 2 * var(--gout)) / 12 * 0); } }
.page-merci__tete, .page-404 .page-tete { padding-block: clamp(3rem, 8vw, 7rem); }

/* ---------- Pied de page ---------- */
.pied { background: var(--anthracite); color: var(--gris-clair-texte); font-size: 1rem; line-height: 1.6; }
.pied a { color: #fff; text-decoration: none; }
.pied a:hover { text-decoration: underline; text-underline-offset: .2em; }
.pied__haut {
  display: grid; grid-template-columns: 1.35fr 1fr 1fr 1.15fr; gap: 2.5rem var(--gout);
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
}
.pied .pied__logo { display: inline-block; color: var(--orange); }
.pied__logo svg { width: clamp(11rem, 16vw, 14rem); height: auto; }
.pied__titre { font-size: 1.05rem; color: #fff; margin-bottom: 1rem; letter-spacing: .01em; }
.pied ul { list-style: none; }
.pied li + li { margin-top: .45rem; }
.pied li a { display: inline-flex; align-items: center; gap: .5rem; }
.pied__coord p { margin-top: .9rem; }
.pied__tel { font-family: var(--f-titre); font-size: 1.2rem; }
.pied__bas {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: .75rem 2rem;
  padding-block: 1.4rem 2rem; border-top: 1px solid #46514f; font-size: .92rem;
}
.pied__bas p { margin: 0; }
.pied__bas ul { display: flex; flex-wrap: wrap; gap: .5rem 1.75rem; }
.pied__bas li + li { margin-top: 0; }
@media (max-width: 60em) { .pied__haut { grid-template-columns: repeat(2, minmax(0, 1fr)); } .pied__marque { grid-column: 1 / -1; } }
@media (max-width: 34em) { .pied__haut { grid-template-columns: 1fr; } }

/* ---------- Impression ---------- */
@media print {
  .entete, .pied, .bandeau, .autres, .plan__astuce { display: none !important; }
  body { background: #fff; }
  .section { padding-block: 1.5rem; }
}

/* ---------- Bandeau cookies ---------- */
.cookies {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: var(--anthracite); color: #dfe4e2;
  border-top: 3px solid var(--orange);
  box-shadow: 0 -18px 40px -30px rgba(41, 49, 51, .8);
}
.cookies[hidden] { display: none; }
.cookies__in {
  width: 100%; max-width: calc(var(--wrap) + 2 * var(--gout));
  margin-inline: auto; padding: 1.35rem var(--gout);
  display: flex; align-items: center; flex-wrap: wrap; gap: 1rem 2.5rem;
}
.cookies__texte { flex: 1 1 28rem; }
.cookies__titre {
  font-family: var(--f-titre); font-size: 1.15rem; line-height: 1.2;
  color: #fff; margin-bottom: .3rem;
}
.cookies__texte p { font-size: 1rem; line-height: 1.5; margin: 0; max-width: 62ch; }
.cookies__texte a { color: #fff; white-space: nowrap; }
.cookies__actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-left: auto; }
.cookies__actions .bouton { font-size: 1rem; padding: .75em 1.2em; }
.cookies__actions .bouton--contour { border-color: #fff; color: #fff; }
.cookies__actions .bouton--contour:hover { background: #fff; color: var(--anthracite); }
.cookies :focus-visible { outline-color: #fff; }
@media (prefers-reduced-motion: no-preference) {
  .cookies { transform: translateY(100%); transition: transform .3s cubic-bezier(.22, .8, .3, 1); }
  .cookies.est-visible { transform: translateY(0); }
}
@media (max-width: 48em) {
  .cookies__in { padding-block: 1.15rem; gap: .9rem; }
  .cookies__actions { margin-left: 0; width: 100%; }
  .cookies__actions .bouton { flex: 1 1 8rem; }
}
@media print { .cookies { display: none !important; } }

/* ---------- Tableau (pages légales) ---------- */
.tableau { width: 100%; border-collapse: collapse; margin: 1.5rem 0 1rem; font-size: 1rem; }
.tableau th, .tableau td { text-align: left; vertical-align: top; padding: .85rem 1rem .85rem 0; border-bottom: 1px solid var(--trait); }
.tableau thead th { font-family: var(--f-titre); font-weight: 400; border-bottom: 2px solid var(--anthracite); }
.tableau td:first-child { font-family: var(--f-titre); white-space: nowrap; }
.tableau td:last-child, .tableau th:last-child { white-space: nowrap; padding-right: 0; }
@media (max-width: 40em) {
  .tableau, .tableau tbody, .tableau tr, .tableau td { display: block; width: 100%; }
  .tableau thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .tableau tr { border-bottom: 1px solid var(--trait); padding-block: .5rem; }
  .tableau td { border: 0; padding: .15rem 0; white-space: normal; }
  .tableau td:first-child { font-size: 1.1rem; padding-top: .6rem; }
  .tableau td:last-child::before { content: "Durée : "; color: var(--gris); }
}
