
:root {

  --page:        #F1F5FA;
  --blanc:       #FFFFFF;
  --encre:       #0F2A4C;
  --bleu-fonce:  #0F2A4C;
  --vert:        #078450;
  --bleu:        #2E6FBF;
  --bleu-appuye: #215491;
  --encre-douce: #2A4160;
  --bleu-clair:  #8CBEEF;

  --encre-80: rgba(15, 42, 76, .80);
  --encre-60: rgba(15, 42, 76, .60);
  --encre-25: rgba(15, 42, 76, .25);
  --encre-14: rgba(15, 42, 76, .14);

  --encre-95: rgba(15, 42, 76, .95);

  --clair-82: rgba(241, 245, 250, .82);
  --clair-62: rgba(241, 245, 250, .62);
  --clair-30: rgba(241, 245, 250, .30);
  --clair-10: rgba(241, 245, 250, .10);

  --ombre-cadre:  rgba(15, 42, 76, .45);
  --ombre-tampon: rgba(15, 42, 76, .18);

  --fiche-ombre: drop-shadow(0 5px 7px var(--ombre-tampon)) drop-shadow(0 22px 34px var(--ombre-tampon));

  --titre: 'Archivo Black', 'Arial Black', sans-serif;
  --texte: 'DM Sans', system-ui, -apple-system, sans-serif;

  --marge-page: clamp(16px, 3vw, 44px);
  --largeur-max: 1680px;

  --entete-h: calc(clamp(56px, 5.5vw, 72px) + 2px);
  --section-y: clamp(40px, 6vw, 100px);

  --pignon:    polygon(50% 0, 100% 24%, 100% 100%, 0 100%, 0 24%);
  --toit-bas:  polygon(0 0, 100% 0, 100% 88%, 50% 100%, 0 88%);
  --pente-g:   polygon(0 6%, 100% 0, 100% 100%, 0 100%);
  --pente-d:   polygon(0 0, 100% 6%, 100% 100%, 0 100%);
}

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

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--encre);
  font-family: var(--texte);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: clip;
}

img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p, ul, ol, dl, dd, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; color: inherit; }

a { color: var(--bleu-fonce); text-decoration: none; }
a:hover { color: var(--bleu-appuye); }
a:focus-visible,
button:focus-visible,
input:focus-visible { outline: 3px solid var(--bleu-appuye); outline-offset: 2px; }

::selection { background: var(--bleu-clair); color: var(--encre); }

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

.saut-contenu {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--encre); color: var(--page); padding: 12px 18px;
}
.saut-contenu:focus { left: 0; }

.media {
  position: relative;
  overflow: hidden;
  background: repeating-linear-gradient(45deg, #DDE5EE 0 12px, #EAF0F7 12px 24px);
}
.media img { width: 100%; height: 100%; object-fit: cover; }

.titre-section {
  font-family: var(--titre);
  font-size: clamp(30px, 5.4vw, 84px);
  line-height: .9;
  letter-spacing: -.04em;
  text-transform: uppercase;
  max-width: 20ch;
}
.titre-section--moyen { font-size: clamp(28px, 4.4vw, 66px); }
.titre-section--petit {
  font-size: clamp(24px, 3.4vw, 48px);
  line-height: .92;
  letter-spacing: -.035em;
  max-width: none;
}

.accent-fort { color: var(--bleu-appuye); }

.sur-titre {
  font-family: var(--titre);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.etiquette {
  display: inline-block;
  background: var(--bleu);
  color: var(--encre);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 14px;
}

.section {
  max-width: var(--largeur-max);
  margin: 0 auto;
  padding: var(--section-y) var(--marge-page);
}
.section-large__inner {
  max-width: var(--largeur-max);
  margin: 0 auto;
  padding: var(--section-y) var(--marge-page);
}

.entete-bloc {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(22px, 3vw, 38px);
}
.entete-bloc__note {
  font-size: 15px;
  font-weight: 600;
  color: var(--encre-douce);
  max-width: 32ch;
}
.entete-bloc--filtres {
  margin: clamp(34px, 5vw, 62px) 0 clamp(18px, 2.4vw, 28px);
  align-items: center;
}

.entete {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--page);
  color: var(--bleu-fonce);
  border-bottom: 2px solid var(--bleu-fonce);
}
.entete__inner {
  max-width: var(--largeur-max);
  margin: 0 auto;
  padding: 0 var(--marge-page);
  min-height: calc(var(--entete-h) - 2px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: var(--bleu-fonce);
  font-family: var(--titre);
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.logo:hover { color: var(--bleu-fonce); }

.logo__carre {
  flex: none;
  width: 26px;
  height: 26px;
  background: var(--vert);
  border: 2px solid var(--bleu-fonce);
}
.logo__nom {
  font-size: clamp(14px, 1.3vw, 18px);
  white-space: nowrap;
}
.logo__point { color: var(--bleu-fonce); }

.burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--bleu-fonce);
  border: 0;
  cursor: pointer;
}
.burger__barres { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; width: 24px; }
.burger__barres span { width: 100%; height: 3px; background: var(--page); transition: transform .25s ease, opacity .2s ease, width .25s ease; }

.burger__barres span:nth-child(2) { width: 16px; background: var(--bleu-clair); }
.burger[aria-expanded="true"] .burger__barres span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__barres span:nth-child(2) { width: 100%; opacity: 0; }
.burger[aria-expanded="true"] .burger__barres span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-voile {
  display: none;
  position: fixed;
  inset: var(--entete-h) 0 0;
  z-index: 25;
  background: rgba(15, 42, 76, .58);
  animation: nav-voile-entre 200ms ease-out both;
}
.est-menu-ouvert .nav-voile { display: block; }

.est-menu-ouvert .barre-appel { display: none; }
.est-menu-ouvert { overflow: hidden; }

.nav {
  display: none;
  position: fixed;
  inset: var(--entete-h) 0 0;
  z-index: 26;
  align-content: end;
  gap: 12px;
  padding-bottom: 24px;

  pointer-events: none;
}
.nav.est-ouverte { display: grid; }

.nav .echantillon {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  pointer-events: auto;
  font-family: var(--titre);
  line-height: .9;
  letter-spacing: -.04em;
  text-transform: uppercase;
  transform-origin: left center;
  animation: nav-bande-deroule 300ms cubic-bezier(.65, 0, .35, 1) both;
}
.nav .echantillon__num { font-size: 13px; }
.nav .echantillon__nom {
  font-size: clamp(28px, 9.8vw, 38px);
  animation: nav-libelle-entre 280ms cubic-bezier(.2, .7, .2, 1) both;
}

.nav .echantillon--realisations .echantillon__nom { font-size: clamp(24px, 8.2vw, 32px); }

.nav .echantillon:nth-child(1) { animation-delay: 0ms; }
.nav .echantillon:nth-child(2) { animation-delay: 50ms; }
.nav .echantillon:nth-child(3) { animation-delay: 100ms; }
.nav .echantillon:nth-child(4) { animation-delay: 150ms; }
.nav .echantillon:nth-child(5) { animation-delay: 200ms; }
.nav .echantillon:nth-child(1) .echantillon__nom { animation-delay: 130ms; }
.nav .echantillon:nth-child(2) .echantillon__nom { animation-delay: 180ms; }
.nav .echantillon:nth-child(3) .echantillon__nom { animation-delay: 230ms; }
.nav .echantillon:nth-child(4) .echantillon__nom { animation-delay: 280ms; }
.nav .echantillon:nth-child(5) .echantillon__nom { animation-delay: 330ms; }

.nav .echantillon--services      { background: var(--bleu-fonce);  color: var(--page); }
.nav .echantillon--services .echantillon__num      { color: var(--bleu-clair); }
.nav .echantillon--realisations { background: var(--blanc);       color: var(--bleu-fonce); }

.nav .echantillon--realisations .echantillon__num { color: var(--bleu-appuye); }
.nav .echantillon--secteur      { background: var(--bleu);       color: var(--page); }
.nav .echantillon--secteur .echantillon__num      { color: var(--blanc); }

.nav .echantillon--artisan      { background: var(--bleu-appuye); color: var(--page); }
.nav .echantillon--artisan .echantillon__num      { color: var(--blanc); }
.nav .echantillon--devis        { background: var(--bleu-clair); color: var(--bleu-fonce); }
.nav .echantillon--devis .echantillon__num        { color: var(--bleu-fonce); }

.nav .nav__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin: 12px 22px 0;
  padding: 14px 8px;
  pointer-events: auto;
  background: var(--bleu-fonce);
  color: var(--page);
  border: 2px solid var(--bleu-clair);
  border-radius: 999px;
  animation: nav-appel-entre 300ms cubic-bezier(.2, .7, .2, 1) 300ms both;
}
.nav .nav__tel:hover { background: var(--bleu-appuye); color: var(--page); }
.nav__tel-ligne { display: flex; align-items: center; justify-content: center; gap: 12px; }

.nav__tel-icone { flex: none; fill: currentColor; }
.nav .nav__tel-numero {
  font-family: var(--titre);
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
}

@keyframes nav-voile-entre   { from { opacity: 0; } to { opacity: 1; } }
@keyframes nav-bande-deroule { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes nav-libelle-entre { from { opacity: 0; transform: translateX(-26px); } to { opacity: 1; transform: none; } }
@keyframes nav-appel-entre   { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

.nav__tel-numero { display: block; }

.nav__tel-mention {
  display: block;
  font-family: var(--texte);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  color: var(--page);

  opacity: .88;
}

.hero { background: var(--page); overflow: hidden; }

.hero__inner {
  max-width: var(--largeur-max);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px) var(--marge-page) clamp(40px, 6vw, 52px);
  display: grid;
  gap: clamp(24px, 3vw, 48px);
}

.hero__colonne { container-type: inline-size; }

.hero__titre {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.brique {
  font-family: var(--titre);
  font-weight: 900;

  font-size: clamp(28px, 10.4cqi, 74px);
  line-height: 1;
  letter-spacing: -.03em;
  text-transform: uppercase;
  padding: 10px 20px 16px;
}

.brique--fonce  { background: var(--bleu-fonce);  color: var(--page); }
.brique--clair  { background: var(--bleu-clair);  color: var(--bleu-fonce); }
.brique--moyen  { background: var(--bleu);        color: var(--page); }
.brique--appuye { background: var(--bleu-appuye); color: var(--page); }

.hero__titre .brique:nth-child(2) { margin-left: 46px; }
.hero__titre .brique:nth-child(3) { margin-left: 16px; }

.hero__pignon { position: relative; }
.hero__photo {
  height: clamp(300px, 56vw, 520px);
  overflow: hidden;
  clip-path: var(--pignon);
  background: repeating-linear-gradient(45deg, #DDE5EE 0 12px, #EAF0F7 12px 24px);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }

.hero__tampon {
  position: absolute;
  left: 0;
  bottom: -22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: clamp(108px, 30vw, 168px);
  height: clamp(108px, 30vw, 168px);
  padding: 0 clamp(8px, 2.5vw, 14px);
  background: var(--bleu-clair);
  text-align: center;
  transform: rotate(-9deg);

  box-shadow: 10px 10px 0 var(--ombre-tampon);
}
.hero__tampon-chiffre {
  font-family: var(--titre);
  font-weight: 900;
  font-size: clamp(22px, 7.5vw, 40px);
  line-height: 1;
  color: var(--bleu-fonce);
}
.hero__tampon-legende {
  margin-top: clamp(4px, 1.5vw, 8px);
  font-size: clamp(8px, 2vw, 11px);
  line-height: 1.35;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bleu-fonce);
  opacity: .75;
}

.hero__chapo {
  margin-top: clamp(24px, 4vw, 48px);
  font-size: 17px;
  line-height: 1.6;
  color: var(--encre-douce);
  max-width: 440px;
  text-wrap: pretty;
}

.boutons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.bouton {
  display: inline-block;
  border-radius: 0;
  font-family: var(--titre);
  font-weight: 800;
  font-size: 19px;
  line-height: 1;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.bouton--plein {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--vert);
  color: var(--page);
  padding: 22px 40px;
}

.bouton-icone { flex: none; fill: currentColor; }

.bouton--plein:hover { background: var(--bleu-fonce); color: var(--vert); }
.bouton--contour {
  background: transparent;
  color: var(--bleu-fonce);
  border: 2px solid var(--bleu-fonce);
  padding: 20px 38px;
}
.bouton--contour:hover { background: var(--bleu-fonce); color: var(--page); }

.media--toit-bas { height: clamp(320px, 42vw, 560px); clip-path: var(--toit-bas); }

.bandeau {
  position: relative;
  height: clamp(84px, 10.6vw, 136px);
  overflow: hidden;
  background: var(--page);
  border-top: 2px solid var(--bleu-fonce);
  border-bottom: 2px solid var(--bleu-fonce);
}

.bandeau__piste {
  position: absolute;
  inset: 0 auto 0 0;
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.4vw, 44px);
  padding-left: clamp(20px, 3vw, 40px);
  white-space: nowrap;
  will-change: transform;
}

.bandeau__mot {
  font-family: var(--titre);
  font-weight: 900;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: transparent;

  -webkit-text-stroke-color: var(--bleu-fonce);
  -webkit-text-stroke-width: clamp(1px, .11vw, 1.5px);
}
.bandeau__sep {
  font-family: var(--titre);
  font-size: clamp(13px, 1.6vw, 20px);
  color: var(--bleu-clair);
}

.bandeau__piste--fond { z-index: 1; }

.bandeau__peint {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 8%;
  overflow: hidden;
  background: var(--bleu-clair);
}

.bandeau__peint::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(180deg, rgba(15, 42, 76, .055) 0 2px, transparent 2px 7px),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, .18) 0 1px, transparent 1px 13px);
}

.bandeau__peint::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: clamp(80px, 11vw, 150px);
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .32));
}

.bandeau__piste--peint .bandeau__mot {
  color: var(--bleu-fonce);
  -webkit-text-stroke: 0;
}
.bandeau__piste--peint .bandeau__sep { color: var(--page); }

.bandeau__bord {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 34px;
  left: 8%;
  pointer-events: none;
}
.bandeau__bord-forme {
  position: absolute;
  inset: 0;
  background: var(--bleu);
  clip-path: polygon(0 0, 46% 0, 40% 7%, 58% 13%, 44% 20%, 50% 27%, 34% 34%, 54% 41%, 38% 49%, 60% 56%, 36% 63%, 52% 71%, 32% 78%, 46% 86%, 28% 93%, 40% 100%, 0 100%);
}
.bandeau__goutte {
  position: absolute;
  left: 0;
  background: var(--bleu);
  border-radius: 2px;
  transform: translateY(-50%);
}
.bandeau__goutte--1 { width: 7px; height: 13px; left: 20px; top: 31%; }
.bandeau__goutte--2 { width: 5px; height: 9px;  left: 26px; top: 66%; }
.bandeau__goutte--3 { width: 4px; height: 7px;  left: 15px; top: 84%; opacity: .8; }

.js-inactif .bandeau__peint { width: 50%; }
.js-inactif .bandeau__bord { left: 50%; }

.metiers .titre-section { margin-bottom: clamp(26px, 4vw, 52px); }

.metiers__grille {
  display: grid;
  gap: clamp(16px, 2vw, 26px);
  perspective: 1400px;
}

.fiche {
  padding: clamp(30px, 3.6vw, 52px) clamp(20px, 2.4vw, 34px) clamp(24px, 3vw, 38px);
  color: var(--encre);

  transition-property: translate, rotate, scale, filter;
  transition-duration: .46s;
  transition-timing-function: cubic-bezier(.22, .61, .36, 1);
}
.fiche--blanche { background: var(--blanc); clip-path: var(--pente-g); }
.fiche--bleue   { background: var(--bleu);  clip-path: var(--pente-d); color: var(--blanc); }
.fiche--claire   { background: var(--bleu-clair); clip-path: var(--pente-g); }

@media (hover: hover) and (pointer: fine) {
  .fiche:hover { translate: 0 -12px; rotate: x 3deg; scale: 1.014; filter: var(--fiche-ombre); }
}
.fiche:focus-within { translate: 0 -12px; rotate: x 3deg; scale: 1.014; filter: var(--fiche-ombre); }

.fiche__num {
  font-family: var(--titre);
  font-size: clamp(44px, 5vw, 74px);
  line-height: .8;
  margin-bottom: 18px;
  color: var(--encre-25);
}
.fiche--claire .fiche__num { color: rgba(15, 42, 76, .3); }

.fiche--bleue .fiche__num { color: rgba(255, 255, 255, .38); }

.fiche__titre {
  font-family: var(--titre);
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.05;
  letter-spacing: -.025em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.fiche__texte {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-wrap: pretty;
  color: var(--encre-douce);
}

.fiche--bleue .fiche__texte { color: var(--blanc); }
.fiche--claire .fiche__texte { color: var(--encre-95); }

.fiche__media { height: clamp(180px, 22vw, 250px); margin-bottom: 20px; }

.puces { display: flex; flex-wrap: wrap; gap: 8px; font-size: 13px; font-weight: 600; }
.puces li { background: var(--bleu-fonce); color: var(--page); padding: 7px 12px; border-radius: 999px; }

.artisan { display: grid; gap: clamp(24px, 4vw, 64px); align-items: center; }
.artisan__media { position: relative; }
.ruban {
  position: absolute;
  left: 0;
  top: clamp(12px, 2vw, 26px);
  background: var(--bleu-clair);
  color: var(--encre);
  font-family: var(--titre);
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 9px 14px;
}
.artisan__texte .titre-section { margin-bottom: clamp(18px, 2.6vw, 28px); }
.artisan__texte p {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
  color: var(--encre-douce);
  max-width: 44ch;
  text-wrap: pretty;
}
.artisan__texte p + p { margin-top: 15px; }

.chiffres { display: grid; gap: 12px; margin-top: clamp(24px, 3vw, 34px); }
.chiffres__bloc { border: 2px solid var(--encre-25); padding: 16px 18px; }
.chiffres dt { font-family: var(--titre); font-size: 24px; line-height: 1; margin-bottom: 6px; color: var(--bleu-appuye); }
.chiffres dd { font-size: 14px; color: var(--encre-douce); }

.preuves { background: var(--blanc); color: var(--encre); }

.carrousel__scene { display: grid; gap: clamp(28px, 4vw, 48px); }
.chantier { margin: 0; }
.chantier[hidden] { display: none; }
.chantier__legende {
  display: flex;
  gap: 10px;
  align-items: baseline;
  justify-content: center;
  margin-top: 14px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-wrap: pretty;
}
.chantier__num { font-family: var(--titre); color: var(--bleu-fonce); }

.js-inactif .carrousel__barre { display: none; }

.carrousel__barre {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  justify-content: center;
  margin-top: clamp(16px, 2vw, 24px);
}
.carrousel__fleche {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--encre);
  border-radius: 999px;
  background: transparent;
  color: var(--encre);
  font-size: 13px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.carrousel__fleche:hover { background: var(--encre); color: var(--page); }
.carrousel__compteur {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  min-width: 15ch;
  text-align: center;
}
.carrousel__points { display: flex; }

.carrousel__point {
  position: relative;
  width: 40px;
  height: 44px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.carrousel__point::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border: 2px solid var(--encre);
  border-radius: 50%;
  transition: background .2s ease;
}
.carrousel__point:hover::before { background: var(--encre-25); }
.carrousel__point[aria-current="true"]::before { background: var(--encre); }

.comparateur {
  --ratio: 1.5;
  --hauteur-max: min(72vh, 640px);
  position: relative;

  max-width: min(100%, max(300px, calc(var(--ratio) * var(--hauteur-max))));
  margin: 0 auto;
  overflow: hidden;
  border: 4px solid var(--encre);
  user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
  background: repeating-linear-gradient(45deg, #DDE5EE 0 12px, #EAF0F7 12px 24px);
}
.comparateur__img--apres { display: block; width: 100%; height: auto; }
.comparateur__img--avant { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.comparateur__img { -webkit-user-drag: none; user-drag: none; }

.comparateur__volet {
  position: absolute;
  inset: 0;
  clip-path: inset(0 46% 0 0);
}

.comparateur__poignee {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 54%;
  width: 4px;
  background: var(--page);
  pointer-events: none;
}
.comparateur__poignee > span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--page);
  color: var(--encre);
  font-family: var(--titre);
  font-size: 12px;
  letter-spacing: .06em;
  padding: 12px 10px;
  white-space: nowrap;
}
.comparateur__label {
  position: absolute;
  top: 0;
  font-family: var(--titre);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 9px 14px;
  pointer-events: none;
}
.comparateur__label--avant { left: 0; background: var(--bleu-fonce); color: var(--page); }
.comparateur__label--apres { right: 0; background: var(--bleu); color: var(--page); }

.comparateur__curseur {
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: 44px;
  opacity: 0;
  cursor: ew-resize;
}
.comparateur__curseur:focus-visible { opacity: .9; }

.filtres { display: flex; flex-wrap: wrap; gap: 9px; }
.filtre {
  border: 2px solid var(--encre);
  background: transparent;
  color: var(--encre);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 11px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}
.filtre span { opacity: .7; }
.filtre:hover { background: var(--encre-14); }
.filtre.est-actif { background: var(--encre); color: var(--page); }

.galerie { display: grid; gap: clamp(14px, 2vw, 24px); align-items: start; }
.galerie__item[hidden] { display: none; }

.galerie__item .media { height: clamp(230px, 27vw, 320px); border: 3px solid var(--bleu-fonce); }
.galerie__item .media img { transition: transform .6s cubic-bezier(.16, 1, .3, 1); }
.galerie__item:hover .media img { transform: scale(1.04); }

.galerie__tag {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--bleu-fonce);
  color: var(--bleu-clair);
  font-family: var(--titre);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 11px;
}
.galerie__legende {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
}

.galerie__num { font-family: var(--titre); color: var(--bleu-fonce); }

.engagements .titre-section { margin-bottom: clamp(24px, 4vw, 44px); max-width: 24ch; }
.engagements__grille { display: grid; gap: clamp(14px, 2vw, 22px); }
.engagement { padding-top: 18px; }
.engagement--clair { border-top: 4px solid var(--bleu-clair); }
.engagement--bleu { border-top: 4px solid var(--bleu); }
.engagement__titre {
  font-family: var(--titre);
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: 10px;
}
.engagement__texte { font-size: 15px; line-height: 1.6; color: var(--encre-douce); }

.avis { background: var(--bleu-clair); color: var(--encre); }
.avis .sur-titre { margin-bottom: clamp(24px, 3vw, 40px); }
.avis__grille { display: grid; gap: clamp(20px, 3vw, 40px); }
.avis__bloc p {
  font-family: var(--titre);
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.25;
  letter-spacing: -.02em;
  margin-bottom: 16px;
  text-wrap: pretty;
}
.avis__bloc footer { font-size: 13px; font-weight: 600; }
.avis__bloc--barre { border-left: 4px solid var(--encre); padding-left: clamp(16px, 2vw, 26px); }
.avis__mention { font-size: 13px; margin-top: 22px; }

.secteur { display: grid; gap: clamp(24px, 4vw, 56px); align-items: center; }
.secteur .titre-section { margin-bottom: 20px; }
.secteur__chapo {
  font-size: 16px;
  line-height: 1.65;
  color: var(--encre-douce);
  margin-bottom: clamp(22px, 3vw, 32px);
  max-width: 40ch;
  text-wrap: pretty;
}
.communes { display: flex; flex-wrap: wrap; gap: 9px; }
.communes li { border: 2px solid var(--encre-25); font-size: 14px; padding: 8px 14px; border-radius: 999px; }

.communes__base { background: var(--bleu); border-color: var(--bleu); color: var(--page); font-weight: 700; }
.secteur__note { font-size: 14px; color: var(--encre-douce); margin-top: 22px; }

.secteur__carte { position: relative; border: 4px solid var(--bleu); }
#carte { display: none; height: clamp(340px, 40vw, 540px); background: #DDE5EE; }

#carte .leaflet-tile-pane { filter: grayscale(1) contrast(.92) brightness(1.06); }

#carte.leaflet-container { position: relative; z-index: 0; font-family: var(--texte); background: #DDE5EE; }

#carte .leaflet-control-attribution { font-size: 10px; background: var(--page); }

#carte .leaflet-control-zoom a { width: 44px; height: 44px; line-height: 42px; font-size: 20px; }
.etiquette-carte {
  font-size: 11px;
  font-weight: 700;
  color: var(--encre);
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(255, 255, 255, .85);
  transform: translate(9px, -8px);
  display: inline-block;
}
.repere-base { display: flex; flex-direction: column; align-items: center; gap: 6px; transform: translate(-50%, -9px); }
.repere-base__losange { width: 18px; height: 18px; background: var(--bleu); border: 3px solid var(--encre); transform: rotate(45deg); }
.repere-base__nom {
  background: var(--bleu-clair);
  color: var(--encre);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 6px 8px;
  white-space: nowrap;
}

.secteur__replis { display: block; padding: 14px; font-size: 14px; color: var(--encre-douce); }
.secteur__carte.avec-carte #carte { display: block; }
.secteur__carte.avec-carte .secteur__replis { display: none; }

.devis { background: var(--page); color: var(--bleu-fonce); }
.devis .titre-section { margin-bottom: clamp(20px, 3vw, 30px); max-width: 22ch; }
.devis__chapo {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--encre-douce);
  margin-bottom: clamp(26px, 4vw, 40px);
  max-width: 44ch;
  text-wrap: pretty;
}
.devis__tels { display: grid; gap: clamp(14px, 2vw, 24px); margin-bottom: clamp(28px, 4vw, 46px); }

.carte-tel {
  display: block;
  padding: clamp(22px, 3vw, 34px);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.carte-tel--pleine { background: var(--bleu-fonce); color: var(--page); }

.carte-tel--pleine:hover { background: var(--page); color: var(--bleu-fonce); transform: translateY(-3px); }
.carte-tel--pleine .carte-tel__libelle { color: var(--clair-82); }

.carte-tel--pleine:hover .carte-tel__libelle { color: var(--bleu-fonce); opacity: .85; }
.carte-tel--contour { border: 3px solid var(--bleu-fonce); color: var(--bleu-fonce); }
.carte-tel--contour:hover { background: var(--bleu-fonce); color: var(--page); transform: translateY(-3px); }
.carte-tel--contour .carte-tel__libelle { color: var(--bleu-fonce); opacity: .85; }
.carte-tel--contour:hover .carte-tel__libelle { color: var(--clair-82); opacity: 1; }
.carte-tel__libelle {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.carte-tel__numero {
  display: flex;
  align-items: center;
  gap: .18em;
  font-family: var(--titre);
  font-size: clamp(24px, 3vw, 44px);
  letter-spacing: -.03em;
  line-height: 1;
}

.carte-tel__icone { flex: none; width: .72em; height: .72em; fill: currentColor; }

.formulaire {
  background: var(--blanc);
  border: 2px solid var(--encre-14);
  color: var(--bleu-fonce);
  padding: clamp(22px, 3vw, 40px);
}
.formulaire__titre {
  font-family: var(--titre);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bleu-fonce);
  margin-bottom: clamp(20px, 3vw, 28px);
}
.formulaire__grille { display: grid; gap: clamp(14px, 2vw, 22px); align-items: end; }
.champ { display: flex; flex-direction: column; gap: 8px; }
.champ label { font-size: 14px; font-weight: 600; color: var(--bleu-fonce); }
.champ input {
  background: var(--blanc);
  border: 2px solid var(--encre-25);
  color: var(--bleu-fonce);
  font-family: var(--texte);
  font-size: 16px;
  padding: 13px 14px;
  transition: border-color .2s ease, background .2s ease;
}
.champ input::placeholder { color: var(--encre-60); }
.champ input:focus { border-color: var(--bleu-fonce); background: var(--blanc); }
.champ input:focus-visible,
.btn--envoyer:focus-visible { outline-color: var(--bleu-fonce); }

.champ input[aria-invalid="true"] { border-color: var(--vert); }
.champ__erreur { font-size: 13px; font-weight: 700; color: var(--bleu-fonce); min-height: 1.2em; }
.champ--action label { visibility: hidden; }

.btn--envoyer {
  background: var(--vert);
  color: var(--page);
  border: 0;
  padding: 15px 22px;
  font-family: var(--titre);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.btn--envoyer:hover { background: var(--bleu-fonce); color: var(--page); transform: translateY(-2px); }
.btn--envoyer[disabled] { opacity: .7; cursor: default; transform: none; }

.formulaire__mention { font-size: 13px; color: var(--encre-douce); margin-top: 18px; }
.formulaire__retour:not(:empty) {
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--vert);
  color: var(--page);
  font-size: 14px;
  font-weight: 600;
}

.pied {
  background: var(--bleu-fonce);
  color: var(--clair-82);
  padding: clamp(38px, 5vw, 64px) 0 0;
  font-size: 14px;
}
.pied__inner {
  max-width: var(--largeur-max);
  margin: 0 auto;
  padding: 0 var(--marge-page);
}

.pied__haut {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 44px);
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: clamp(24px, 3.2vw, 38px);
}
.pied__logo { display: block; font-family: var(--titre); font-size: clamp(17px, 1.6vw, 21px); text-transform: uppercase; color: var(--page); }
.pied__logo .logo__point { color: var(--vert); }
.pied__bio { max-width: 46ch; margin-top: 10px; line-height: 1.65; }

.pied__tels { display: flex; flex-wrap: wrap; gap: 2px 24px; }
.pied__tels a { display: inline-flex; align-items: center; gap: 7px; padding: 11px 2px; color: var(--bleu-clair); font-family: var(--titre); font-size: clamp(15px, 1.4vw, 18px); }
.pied__tel-icone { flex: none; width: 14px; height: 14px; fill: currentColor; }
.pied__tels a:hover { color: var(--page); }

.pied__cols,
.pied__villes {
  display: grid;
  gap: clamp(16px, 2.2vw, 30px);
  padding: clamp(22px, 2.8vw, 34px) 0;
  border-top: 1px solid var(--clair-10);
}
.pied__h {
  font-family: var(--titre);
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--page);
  margin-bottom: 6px;
}
.pied__liste { display: grid; }

.pied__liste a { display: inline-block; padding: 5px 0; color: var(--clair-82); line-height: 1.4; }
.pied__liste a:hover { color: var(--bleu-clair); }
.pied__liste [aria-current] { color: var(--bleu-clair); font-weight: 700; }

.pied__villes .pied__liste { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 16px; }

.pied__bas {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 24px;
  justify-content: space-between;
  padding: clamp(15px, 1.9vw, 20px) 0;
  border-top: 1px solid var(--clair-10);
  font-size: 13px;
  color: var(--clair-62);
}

.pied__bas a { color: var(--clair-82); text-decoration: underline; text-underline-offset: 3px; }
.pied__bas a:hover { color: var(--bleu-clair); }

.pied__credit {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 7px;
  align-items: center;
  justify-content: center;
  padding: 15px 0 clamp(22px, 2.8vw, 32px);
  border-top: 1px solid var(--clair-10);
  font-size: 13px;
  color: var(--clair-62);
}
.pied__credit-lien { display: inline-flex; align-items: center; gap: 7px; color: var(--page); font-weight: 700; }
.pied__credit-lien:hover { color: var(--bleu-clair); }
.pied__credit-logo { display: inline-flex; width: 17px; height: 17px; }
.pied__credit-logo svg { width: 100%; height: 100%; }
.pied__credit-tag { flex-basis: 100%; text-align: center; color: var(--clair-62); font-size: 12.5px; }

@media (min-width: 720px) {
  .pied__cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pied__villes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1080px) {
  .pied__villes { grid-template-columns: repeat(4, minmax(0, 1fr)); }

  .pied__villes .pied__liste { grid-template-columns: minmax(0, 1fr); }
}

.barre-appel {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: flex;
  gap: 3px;
  background: var(--page);
  border-top: 2px solid var(--bleu-fonce);
  padding-bottom: env(safe-area-inset-bottom);
}
.barre-appel__tel,
.barre-appel__devis {
  height: 60px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  transition: transform .14s ease;
}
.barre-appel__tel:active,
.barre-appel__devis:active { transform: translateY(3px); }

.barre-appel__tel {
  flex: 1;
  justify-content: space-between;
  background: var(--vert);
  color: var(--page);
  padding: 0 18px;
}
.barre-appel__tel-numero {
  font-family: var(--titre);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -.01em;
}
.barre-appel__tel-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;

  opacity: .92;
}
.barre-appel__tel-icone { flex: none; fill: currentColor; }

.barre-appel__devis {
  flex: 0 0 96px;
  width: 96px;
  justify-content: center;
  gap: 7px;
  background: var(--bleu-fonce);
}
.barre-appel__devis-texte {
  font-family: var(--titre);
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--page);
}
.barre-appel__devis-fleche {
  font-family: var(--titre);
  font-weight: 900;
  font-size: 15px;
  color: var(--page);
}

body { padding-bottom: calc(62px + env(safe-area-inset-bottom)); }

[data-anim] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.16, 1, .3, 1);
}
[data-anim].est-visible { opacity: 1; transform: none; }

.js-inactif [data-anim] { opacity: 1; transform: none; }

@media (min-width: 720px) {
  .metiers__grille { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .artisan, .secteur { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .chiffres { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .galerie { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .engagements__grille { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .avis__grille { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .devis__tels { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .formulaire__grille { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1360px) {
  .burger { display: none; }

  .barre-appel { display: none; }
  body { padding-bottom: 0; }

  .entete__inner {
    height: 96px;
    min-height: 0;
    align-items: stretch;
  }
  .logo__nom { font-size: 22px; font-weight: 900; }

  html { scroll-padding-top: 120px; }

  .nav-voile { display: none; }
  .nav {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    position: static;
    inset: auto;
    background: none;
    border: 0;
    padding: 0;
    min-width: 0;
    pointer-events: auto;
  }
  .nav .echantillon__num,
  .nav__tel-icone { display: none; }

  .nav .echantillon__nom,
  .nav .echantillon--realisations .echantillon__nom { font-size: inherit; }

  .nav .nav__tel-mention { font-size: 10.5px; letter-spacing: .08em; text-align: left; }
  .nav .echantillon,
  .nav .echantillon__nom,
  .nav .nav__tel { animation: none; }

  .nav .echantillon {
    display: flex;
    align-items: flex-end;
    gap: 0;
    flex: 0 1 156px;
    width: 156px;

    padding: 26px 10px 20px;
    font-family: var(--titre);
    font-weight: 800;
    font-size: 17px;
    line-height: 1;
    letter-spacing: -.04em;
    text-transform: uppercase;
    height: 118px;
    transition: transform .18s ease, filter .18s ease, height .3s cubic-bezier(.4, 0, .2, 1);
  }
  .nav .echantillon + .echantillon { margin-left: 3px; }

  .nav .echantillon--services      { background: var(--bleu);        color: var(--page); }

  .nav .echantillon--realisations { background: var(--bleu-appuye); color: var(--page); }
  .nav .echantillon--secteur      { background: var(--bleu-clair); color: var(--bleu-fonce); }

  .nav .echantillon--artisan      { background: var(--blanc);       color: var(--bleu-fonce); }
  .nav .echantillon--devis        { background: var(--bleu-fonce);  color: var(--page); }

  .nav .nav__tel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0;
    border: 0;
    flex: none;
    align-self: flex-start;
    width: 210px;
    margin: 0 0 0 3px;
    padding: 26px 16px 20px;
    background: var(--bleu-fonce);
    border-left: 3px solid var(--bleu-clair);
    border-radius: 0;
    height: 118px;
    transition: transform .18s ease, filter .18s ease, height .3s cubic-bezier(.4, 0, .2, 1);
  }
  .nav .nav__tel:hover { background: var(--bleu-fonce); color: var(--page); }

  .entete--repliee .nav .echantillon,
  .entete--repliee .nav .nav__tel {
    height: calc(118px * .7);
  }
  .entete--repliee .nav .echantillon.est-actif {
    height: 118px;
  }

  .nav .echantillon[aria-current="page"] { height: 132px; }
  .entete--repliee .nav .echantillon[aria-current="page"] { height: 118px; }
  .nav .nav__tel-numero {
    font-family: var(--titre);
    font-weight: 900;
    font-size: 20px;
    line-height: 1;
    color: var(--page);
    white-space: nowrap;
  }
  .nav .nav__tel-mention { margin-top: 6px; }

  .nav .echantillon:hover,
  .nav .nav__tel:hover {
    transform: translateY(10px);
    filter: saturate(1.25);
  }
}

@media (min-width: 1080px) {

  .hero__inner {

    grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
    min-height: 620px;
    padding: 0 var(--marge-page);
  }

  .hero__colonne { padding: 54px 0 52px; }
  .brique { font-size: clamp(56px, 10.4cqi, 74px); }

  .hero__pignon { margin-top: 22px; }
  .hero__photo { height: 100%; }
  .hero__tampon { left: -60px; bottom: 80px; }

  .metiers__grille { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .metiers__grille .fiche:nth-child(2) { margin-top: clamp(0px, 2.5vw, 40px); }
  .metiers__grille .fiche:nth-child(3) { margin-top: clamp(0px, 1.2vw, 18px); }

  .galerie { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .galerie__item:nth-child(2) { margin-top: clamp(0px, 2vw, 32px); }
  .galerie__item:nth-child(4) { margin-top: clamp(0px, 3vw, 48px); }
  .galerie__item:nth-child(6) { margin-top: clamp(0px, 2vw, 32px); }
  .galerie__item:nth-child(8) { margin-top: clamp(0px, 3vw, 48px); }

  .engagements__grille { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  [data-anim] { opacity: 1; transform: none; transition: none; }

  .nav-voile,
  .nav .echantillon,
  .nav .echantillon__nom,
  .nav .nav__tel { animation: none; }
  * { transition-duration: .01ms !important; }
}

@media print {
  .entete, .barre-appel, .bandeau, .comparateur__curseur,
  .carrousel__barre, #carte, .ck { display: none; }

  .chantier[hidden] { display: block; }
  body { background: #fff; color: #000; padding: 0; }
  .fiche, .avis, .devis { clip-path: none; background: #fff; border: 1px solid #999; }
  .secteur__replis { display: block; }
}

html.est-verrouille { overflow: hidden; }

.js-inactif .demarrage { display: none; }
.ouverture-vue .demarrage { display: none; }

.demarrage {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  padding: var(--marge-page);
  overflow: hidden;
  background: var(--bleu-fonce);

  animation: demarrage-filet 1ms 3700ms forwards;
}
@keyframes demarrage-filet { to { opacity: 0; visibility: hidden; } }

.demarrage.est-en-cours {
  animation: demarrage-sortie 520ms cubic-bezier(.65, 0, .25, 1) 2220ms forwards;
}
@keyframes demarrage-sortie { to { transform: translateY(-101%); } }

.demarrage__scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3.2vw, 42px);
}

.demarrage__ligne {
  display: block;
  overflow: hidden;
  padding-bottom: .06em;
}
.demarrage__nom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .16em;
  font-family: var(--titre);
  font-size: clamp(26px, 6.6vw, 86px);
  line-height: 1.06;
  letter-spacing: -.03em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--page);
  transform: translateY(106%);
}
.est-en-cours .demarrage__nom {
  animation: demarrage-nom 640ms cubic-bezier(.16, 1, .3, 1) 120ms forwards;
}
@keyframes demarrage-nom { to { transform: translateY(0); } }

.demarrage__point {
  flex: none;
  width: .3em;
  height: .3em;
  background: var(--vert);
}

.demarrage__mots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(6px, .9vw, 12px);
}

.demarrage__mot {
  font-family: var(--titre);

  font-size: clamp(13px, 2.6vw, 34px);
  line-height: 1;
  letter-spacing: .01em;
  text-transform: uppercase;
  padding: clamp(7px, .9vw, 13px) clamp(11px, 1.5vw, 22px);
  clip-path: inset(0 100% 0 0);
}
.est-en-cours .demarrage__mot {
  animation: demarrage-mot 420ms cubic-bezier(.55, 0, .2, 1) forwards;
}
.est-en-cours .demarrage__mot--peinture   { animation-delay: 560ms; }
.est-en-cours .demarrage__mot--toiture    { animation-delay: 700ms; }
.est-en-cours .demarrage__mot--couverture { animation-delay: 840ms; }
@keyframes demarrage-mot { to { clip-path: inset(0 0 0 0); } }

.demarrage__mot--peinture   { background: var(--page); color: var(--bleu-fonce); }
.demarrage__mot--toiture    { background: var(--bleu-clair); color: var(--bleu-fonce); }
.demarrage__mot--couverture { background: var(--bleu); color: var(--page); }

@media (prefers-reduced-motion: reduce) {
  .demarrage__nom { transform: none; }
  .demarrage__mot { clip-path: none; }
  .demarrage *    { animation: none !important; }
  .demarrage,
  .demarrage.est-en-cours { animation: demarrage-filet 1ms 900ms forwards; }
}

.entree { background: var(--page); }
.entree__inner {
  max-width: var(--largeur-max);
  margin: 0 auto;
  padding: clamp(20px, 3vw, 34px) var(--marge-page) clamp(26px, 3.6vw, 44px);
}
.entree__chapo {
  max-width: 62ch;
  margin-top: clamp(16px, 2.2vw, 26px);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65;
  color: var(--encre-douce);
  text-wrap: pretty;
}
.entree .boutons { margin-top: clamp(22px, 2.6vw, 30px); }

.fil { margin-bottom: clamp(14px, 2vw, 22px); font-size: 13px; font-weight: 600; }
.fil ol { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; }
.fil li { color: var(--encre-douce); }
.fil li + li::before { content: '\203A'; margin-right: 8px; color: var(--encre-25); }
.fil a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.fil a:hover { color: var(--bleu-appuye); }
.fil [aria-current] { color: var(--encre); }

.grille-services {
  display: grid;
  gap: clamp(16px, 2vw, 26px);
  perspective: 1400px;
}

.fiche { position: relative; }
.fiche__lien {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--titre);
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.fiche__lien::after { content: ''; position: absolute; inset: 0; }
.fiche:hover .fiche__lien { text-decoration-thickness: 2px; }

.etapes__num {
  font-family: var(--titre);
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: .8;
  margin-bottom: 14px;
  color: var(--encre-25);
}

.grille-apercu { display: grid; gap: clamp(14px, 1.8vw, 22px); perspective: 1400px; }

.grille-apercu .fiche__num { font-size: clamp(28px, 2.4vw, 38px); margin-bottom: 10px; }

.soeurs { display: flex; flex-wrap: wrap; gap: 9px; margin-top: clamp(20px, 2.6vw, 30px); }
.soeurs a,
.soeurs span {
  display: inline-block;
  border: 2px solid var(--encre-25);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 14px;
  font-weight: 600;
  color: var(--encre);
}
.soeurs a:hover { border-color: var(--bleu-appuye); color: var(--bleu-appuye); }
.soeurs [aria-current] { background: var(--bleu); border-color: var(--bleu); color: var(--page); font-weight: 700; }

.section-action { display: flex; justify-content: center; margin-top: clamp(28px, 3.4vw, 44px); }
.section-action--gauche { justify-content: flex-start; }

.atouts { display: grid; gap: 12px; max-width: 48ch; margin-top: clamp(20px, 2.6vw, 30px); }
.atouts li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: clamp(15px, 1.15vw, 17px);
  font-weight: 600;
  line-height: 1.45;
  color: var(--encre);
}
.atouts li::before { content: ''; flex: none; width: 13px; height: 13px; margin-top: .3em; background: var(--vert); }
.artisan__texte .bouton { margin-top: clamp(24px, 3vw, 34px); }

.fond { background: var(--blanc); }

.preuves + .fond { border-top: 2px solid var(--encre-14); }
.fond__bloc { display: grid; gap: clamp(22px, 3vw, 34px); }
.fond__bloc + .fond__bloc { margin-top: clamp(42px, 5vw, 80px); }

.fond__texte { max-width: 58ch; }
.fond .titre-section { margin-bottom: clamp(12px, 1.6vw, 18px); }
.fond p {
  margin-bottom: .9em;
  font-size: clamp(16px, 1.2vw, 17.5px);
  line-height: 1.75;
  color: var(--encre-douce);
}
.fond p:last-child { margin-bottom: 0; }
.fond a { color: var(--bleu-appuye); text-decoration: underline; text-underline-offset: 3px; }
.fond a:hover { color: var(--encre); }
.fond__photo { aspect-ratio: 4 / 3; }
.fond .chiffres { margin-top: 0; }

@media (min-width: 720px) {
  .grille-services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grille-apercu { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .grille-services .fiche:nth-child(2),
  .grille-services .fiche:nth-child(4) { margin-top: clamp(0px, 2.2vw, 34px); }
}

@media (min-width: 1080px) {
  .grille-apercu { grid-template-columns: repeat(4, minmax(0, 1fr)); }

  .fond__bloc {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(40px, 5vw, 88px);
    align-items: center;
  }

  .fond__bloc:nth-child(even) .fond__cote { order: -1; }

  .fond .chiffres { grid-template-columns: minmax(0, 1fr); }
}

.legal__bloc { max-width: 68ch; }
.legal__bloc + .legal__bloc { margin-top: clamp(34px, 4vw, 58px); }
.legal__bloc h2 { margin-bottom: clamp(10px, 1.4vw, 16px); }
.legal__bloc ul { margin: 0 0 .9em; padding-left: 1.15em; }
.legal__bloc li {
  margin-bottom: .45em;
  font-size: clamp(16px, 1.2vw, 17.5px);
  line-height: 1.75;
  color: var(--encre-douce);
}

.legal__fiche { display: grid; gap: 12px; max-width: 68ch; margin: 0 0 clamp(16px, 2vw, 22px); }
.legal__fiche > div {
  display: grid;
  gap: 3px 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--encre-14);
}
.legal__fiche dt {
  font-family: var(--titre);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--encre-60);
}
.legal__fiche dd {
  margin: 0;
  font-size: clamp(16px, 1.2vw, 17.5px);
  line-height: 1.6;
  color: var(--encre-douce);
}

.legal__vide {
  display: inline-block;
  padding: 1px 8px;
  font-family: var(--titre);
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--vert);
  border: 1px dashed var(--vert);
}

.legal__maj { margin-top: clamp(30px, 3.6vw, 48px); font-size: 13.5px; color: var(--encre-60); }

@media (min-width: 720px) {
  .legal__fiche > div { grid-template-columns: minmax(0, 17ch) minmax(0, 1fr); align-items: baseline; }
}

.ck {
  --ck-marge: clamp(12px, 2vw, 24px);
  position: fixed;
  left: 50%;
  bottom: var(--ck-marge);
  transform: translateX(-50%);
  z-index: 45;
  width: min(calc(100vw - 2 * var(--ck-marge)), max(50vw, 760px));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 28px);
  padding: 14px 20px;
  background: var(--encre);
  border: 2px solid var(--vert);
  color: var(--clair-82);
  box-shadow: 0 12px 34px var(--ombre-cadre);
}
.ck__txt {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
}
.ck__txt a { color: var(--bleu-clair); text-decoration: underline; text-underline-offset: 3px; }
.ck__txt a:hover { color: var(--page); }
.ck__btns { display: flex; gap: 10px; flex: 0 0 auto; }
.ck__btn {
  min-height: 42px;
  padding: 0 18px;
  cursor: pointer;
  font-family: var(--titre);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  background: transparent;
  transition: transform .12s ease;
}
.ck__btn--oui { color: var(--page); background: var(--vert); border: 2px solid var(--vert); }
.ck__btn--non { color: var(--clair-82); border: 2px solid var(--clair-30); }
.ck__btn:hover { transform: translateY(-2px); }
.ck__btn:active { transform: translateY(1px); }
.ck__btn:focus-visible { outline: 3px solid var(--bleu-clair); outline-offset: 3px; }

.est-menu-ouvert .ck { display: none; }

@media (min-width: 900px) {
  .ck__txt { white-space: nowrap; }
}

@media (max-width: 899px) {
  .ck { flex-direction: column; align-items: stretch; gap: 14px; padding: 18px 20px; }
  .ck__txt { text-align: center; }
  .ck__btns { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1359px) {
  .ck { bottom: calc(62px + var(--ck-marge) + env(safe-area-inset-bottom)); }
}

html.gated { overflow: hidden; }

html.gated body > *:not(.gate) { display: none !important; }

.gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--page);
}
.gate.is-out { opacity: 0; pointer-events: none; transition: opacity .5s ease; }

.gate__card {
  position: relative;
  width: min(430px, 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(28px, 5vw, 44px) clamp(22px, 4vw, 36px);
  background: var(--bleu-fonce);
  box-shadow: 10px 10px 0 var(--ombre-tampon);
}
.gate__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--titre);
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--page);
}
.gate__point { width: 12px; height: 12px; background: var(--vert); }
.gate__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--bleu-clair);
}
.gate__label::before { content: ""; width: 20px; height: 2px; background: var(--bleu-clair); }
.gate__title {
  margin: 0;
  font-family: var(--titre);
  font-size: clamp(26px, 5vw, 34px);
  line-height: 1.05;
  color: var(--page);
}

.gate__row { display: flex; gap: 10px; width: 100%; margin-top: 6px; }
.gate__input {
  flex: 1;
  min-width: 0;
  font: inherit;
  font-size: 16px;
  color: var(--bleu-fonce);
  background: var(--page);
  border: 2px solid var(--page);
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s ease;
}
.gate__input::placeholder { color: var(--encre-douce); opacity: .7; }
.gate__input:focus { border-color: var(--bleu-clair); }
.gate__btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  font-family: var(--titre);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--page);
  background: var(--vert);
  border: 2px solid var(--vert);
  cursor: pointer;
  transition: transform .12s ease;
}
.gate__btn:hover { transform: translateY(-2px); }
.gate__btn:active { transform: translateY(1px); }
.gate__err { min-height: 1.2em; margin: 0; font-size: 13.5px; font-weight: 600; color: var(--vert); }

.gate__card.shake { animation: gate-secousse .35s; }
@keyframes gate-secousse {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-4px); }
  40%, 60% { transform: translateX(4px); }
}

@media (max-width: 420px) {
  .gate__row { flex-direction: column; }
  .gate__btn { padding: 14px 22px; }
}
