/* ============================================================
   De Paepe Terrassement — maquette v2
   Charte : orange #F97316 · verts #2C613E/#1E4A2A · crème/gris
   ============================================================ */

:root {
  --orange: #F97316;
  --orange-2: #E9701E;
  --orange-3: #C75A12;
  --vert: #2C613E;
  --vert-fonce: #1E4A2A;
  --vert-clair: #4E9567;
  --vert-pale: #DCEFE2;
  --creme: #FAF8F3;
  --gris: #F0EDE6;
  --encre: #131A15;
  --encre-2: #1A231D;
  --blanc: #FFFFFF;
  --txt: #222922;
  --txt-2: #5A625A;
  --txt-inv: #F2F4F0;
  --txt-inv-2: #A9B3A9;
  --r-lg: 20px;
  --r-md: 14px;
  --ombre-1: 0 2px 12px -6px rgba(19, 26, 21, .14);
  --ombre-2: 0 24px 48px -24px rgba(19, 26, 21, .35);
  --t: .3s cubic-bezier(.33, 1, .68, 1);
  --t-lent: .6s cubic-bezier(.33, 1, .68, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.04rem;
  line-height: 1.7;
  color: var(--txt);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; }

h1, h2, h3 {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  line-height: 1.06;
  letter-spacing: -.015em;
  margin: 0 0 .55em;
  font-weight: 700;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 5.4vw, 4.3rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.28rem; line-height: 1.25; }

.container { width: min(1200px, 92%); margin-inline: auto; }

.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }

.ico { width: 1.05em; height: 1.05em; fill: currentColor; flex: none; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--orange); color: var(--blanc);
  padding: .6rem 1.1rem; z-index: 300; font-weight: 600; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Utilitaires typo ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--orange-2);
  margin: 0 0 1.1rem;
}
.kicker::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.kicker-centre { justify-content: center; }
.kicker-centre::after {
  content: "";
  width: 26px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.lede { font-size: 1.12rem; color: var(--txt-2); max-width: 58ch; }

.section-head { margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.head-duo {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2.5rem;
  align-items: end;
}
.head-duo .lede { margin: 0 0 .3rem; }

.stars { color: var(--orange); letter-spacing: .12em; }

/* Mot souligné à la main (trait SVG qui se dessine) */
.souligne { position: relative; white-space: nowrap; }
.souligne svg {
  position: absolute;
  left: -2%; right: -2%; bottom: -.14em;
  width: 104%; height: .34em;
  overflow: visible;
}
.souligne path {
  fill: none;
  stroke: var(--orange);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
}
.in .souligne path, .souligne.in path {
  animation: trace 1s .55s cubic-bezier(.33, 1, .68, 1) forwards;
}
@keyframes trace { to { stroke-dashoffset: 0; } }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .01em;
  text-decoration: none;
  padding: .85em 1.7em;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.99); }
.btn .fleche { transition: transform var(--t); }
.btn:hover .fleche { transform: translateX(4px); }

.btn-orange {
  background: var(--orange);
  color: var(--blanc);
  box-shadow: 0 10px 24px -12px rgba(249, 115, 22, .8);
}
.btn-orange:hover { background: var(--orange-2); box-shadow: 0 16px 30px -12px rgba(249, 115, 22, .75); }

.btn-vert { background: var(--vert); color: var(--blanc); }
.btn-vert:hover { background: var(--vert-fonce); }

.btn-blanc { background: var(--blanc); color: var(--encre); box-shadow: 0 10px 26px -14px rgba(19, 26, 21, .5); }

.btn-ghost {
  background: rgba(255, 255, 255, .07);
  color: var(--blanc);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .55);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .15); }

.btn-contour {
  background: transparent;
  color: var(--blanc);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .7);
}
.btn-contour:hover { background: rgba(255, 255, 255, .12); }

.btn-lg { font-size: 1.08rem; padding: 1em 2em; }
.btn-sm { font-size: .92rem; padding: .6em 1.25em; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--encre);
  color: var(--txt-inv-2);
  font-size: .85rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 40px;
}
.topbar p { margin: 0; display: flex; align-items: center; gap: .5em; }
.topbar .ico { color: var(--orange); }
.topbar-phones { display: flex; gap: 1.5rem; }
.topbar-phones a {
  display: inline-flex; align-items: center; gap: .45em;
  color: var(--txt-inv); text-decoration: none; font-weight: 600;
}
.topbar-phones a:hover { color: var(--orange); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 243, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(19, 26, 21, .07);
  transition: box-shadow var(--t);
}
.header.scrolled { box-shadow: 0 10px 30px -18px rgba(19, 26, 21, .35); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  min-height: 76px;
  transition: min-height var(--t);
}
.header.scrolled .header-inner { min-height: 66px; }

.brand { display: inline-flex; align-items: center; }
.brand img {
  height: 50px;
  width: auto;
  background: var(--blanc);
  border: 1px solid rgba(19, 26, 21, .08);
  border-radius: 8px;
  padding: 2px;
  transition: height var(--t);
}
.header.scrolled .brand img { height: 44px; }

.nav { margin-left: auto; }
.nav-list {
  display: flex;
  align-items: center;
  gap: .2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: .3em;
  font-size: .96rem;
  font-weight: 600;
  color: var(--txt);
  text-decoration: none;
  padding: .55em .85em;
  border-radius: 999px;
  position: relative;
  transition: color var(--t), background var(--t);
}
.nav-link:hover { color: var(--orange-3); background: rgba(249, 115, 22, .09); }
.nav-link.is-active { color: var(--vert); }
.chev { width: .95em; height: .95em; fill: currentColor; transition: transform var(--t); }
.has-sub:hover .chev { transform: rotate(180deg); }

.has-sub { position: relative; }
.submenu {
  position: absolute;
  top: calc(100% + 8px); left: 0;
  min-width: 260px;
  background: var(--blanc);
  list-style: none;
  margin: 0;
  padding: .55rem;
  border-radius: var(--r-md);
  box-shadow: var(--ombre-2);
  border: 1px solid rgba(19, 26, 21, .06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--t), transform var(--t), visibility var(--t);
}
.has-sub:hover .submenu, .has-sub:focus-within .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.submenu a {
  display: block;
  padding: .55rem .85rem;
  border-radius: 9px;
  color: var(--txt);
  text-decoration: none;
  font-size: .94rem;
  font-weight: 500;
  transition: background var(--t), color var(--t), padding-left var(--t);
}
.submenu a:hover { background: var(--vert-pale); color: var(--vert-fonce); padding-left: 1.05rem; }

.header-cta { margin-left: .4rem; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  background: var(--vert);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  padding: 12px 11px;
  margin-left: auto;
}
.burger span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--blanc);
  transition: transform var(--t), opacity var(--t);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Drawer mobile ---------- */
.drawer[hidden] { display: none; }
.drawer {
  position: fixed;
  inset: 0;
  background: rgba(19, 26, 21, .97);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.drawer nav { display: grid; gap: 1rem; }
.drawer a {
  color: var(--txt-inv);
  text-decoration: none;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
}
.drawer a:hover { color: var(--orange); }
.drawer .btn { justify-self: center; margin-top: .8rem; font-size: 1.05rem; }
.drawer-tel { margin: .2rem 0 0; }
.drawer-tel a { font-size: 1.25rem; color: var(--orange); font-family: 'Inter', sans-serif; font-weight: 700; }

/* ---------- Héro ---------- */
.hero {
  position: relative;
  min-height: min(94vh, 900px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--encre);
  color: var(--blanc);
}
.hero-media { position: absolute; inset: 0; }
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(76deg, rgba(9, 16, 11, .88) 0%, rgba(9, 16, 11, .58) 42%, rgba(9, 16, 11, .10) 80%),
    linear-gradient(0deg, rgba(9, 16, 11, .62) 0%, rgba(9, 16, 11, 0) 34%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(5.5rem, 11vh, 8rem) 0 clamp(6.5rem, 13vh, 9.5rem);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .04em;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(6px);
  padding: .45em 1.05em;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.hero-pill::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, .25);
}

.hero h1 { max-width: 17ch; margin-bottom: .4em; }

.hero-lede {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.65;
  max-width: 52ch;
  color: rgba(255, 255, 255, .86);
  margin: 0 0 2.2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2rem; }

.hero-preuves {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: .93rem;
  color: rgba(255, 255, 255, .82);
}
.hero-preuves li { display: inline-flex; align-items: center; gap: .5em; }
.hero-preuves .ico { color: var(--orange); }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 2px solid rgba(255, 255, 255, .45);
  border-radius: 999px;
}
.scroll-cue::before {
  content: "";
  position: absolute;
  left: 50%; top: 7px;
  width: 4px; height: 8px;
  border-radius: 4px;
  background: var(--orange);
  transform: translateX(-50%);
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue {
  0%   { transform: translate(-50%, 0); opacity: 1; }
  70%  { transform: translate(-50%, 14px); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 0; }
}

/* ---------- Bandeau chiffres ---------- */
.stats {
  background: var(--encre);
  color: var(--txt-inv);
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .15rem;
  padding: 2.1rem 1rem;
  position: relative;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0; top: 28%;
  height: 44%; width: 1px;
  background: rgba(255, 255, 255, .12);
}
.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.4rem, 3.6vw, 3.3rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.stat-num::after { content: attr(data-suffixe); font-size: .55em; color: var(--vert-clair); }
.stat-label { font-size: .92rem; font-weight: 600; letter-spacing: .02em; }
.stat-sous { font-size: .8rem; color: var(--txt-inv-2); }

/* ---------- Services ---------- */
.services { background: var(--creme); }

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.card {
  display: flex;
  flex-direction: column;
  background: var(--blanc);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(19, 26, 21, .06);
  box-shadow: var(--ombre-1);
  transition: transform var(--t-lent), box-shadow var(--t-lent);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--ombre-2); }

.card-media {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(19, 26, 21, .18), transparent 42%);
  opacity: 0;
  transition: opacity var(--t-lent);
}
.card:hover .card-media::after { opacity: 1; }
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.33, 1, .68, 1);
}
.card:hover .card-media img { transform: scale(1.07); }

.card-body {
  padding: 1.25rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  flex: 1;
}
.card-body h3 { margin: 0; }
.card-body p { margin: 0; color: var(--txt-2); font-size: .93rem; line-height: 1.55; flex: 1; }

.card-pied {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  font-size: .93rem;
  font-weight: 600;
  color: var(--vert);
}
.card-fleche {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--vert-pale);
  color: var(--vert-fonce);
  transition: background var(--t), color var(--t), transform var(--t);
}
.card-fleche svg { width: 15px; height: 15px; fill: currentColor; }
.card:hover .card-fleche { background: var(--orange); color: var(--blanc); transform: translateX(4px); }

/* ---------- Processus ---------- */
.process {
  background:
    radial-gradient(90rem 40rem at 110% -20%, rgba(78, 149, 103, .16), transparent 60%),
    var(--vert-fonce);
  color: var(--txt-inv);
}
.process h2 { color: var(--blanc); }
.process .kicker { color: var(--vert-pale); }
.process .kicker::before, .process .kicker::after { background: var(--orange); }
.process .lede { color: rgba(255, 255, 255, .72); }

.etapes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  counter-reset: etape;
}
.etapes::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 3%; right: 3%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 255, 255, .22));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.4s .3s cubic-bezier(.33, 1, .68, 1);
}
.etapes.in::before { transform: scaleX(1); }

.etape { position: relative; }
.etape-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--encre);
  border: 2px solid var(--orange);
  color: var(--orange);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
}
.etape h3 { color: var(--blanc); font-size: 1.15rem; margin-bottom: .35rem; }
.etape p { margin: 0; font-size: .92rem; line-height: 1.6; color: rgba(255, 255, 255, .72); }

/* ---------- Entreprise ---------- */
.entreprise { background: var(--blanc); }
.entreprise-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.entreprise-txt > p { color: var(--txt-2); }

.checklist {
  list-style: none;
  margin: 1.7rem 0 2.1rem;
  padding: 0;
  display: grid;
  gap: .9rem;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  font-weight: 500;
}
.checklist .coche {
  flex: none;
  width: 24px; height: 24px;
  margin-top: .1em;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--vert-pale);
  color: var(--vert-fonce);
}
.checklist .coche svg { width: 12px; height: 12px; fill: currentColor; }

.entreprise-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem; }
.lien-tel {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-weight: 700;
  color: var(--vert);
  text-decoration: none;
  font-size: 1.05rem;
}
.lien-tel:hover { color: var(--vert-fonce); text-decoration: underline; }

.entreprise-visu { position: relative; }
.photo-cadre { margin: 0; position: relative; }
.photo-cadre img {
  border-radius: var(--r-lg);
  box-shadow: var(--ombre-2);
  width: 100%;
}
.photo-cadre figcaption {
  font-size: .85rem;
  color: var(--txt-2);
  padding-top: .8rem;
}
.badge-flottant {
  position: absolute;
  top: -22px; right: -14px;
  background: var(--orange);
  color: var(--blanc);
  border-radius: 16px;
  padding: .8rem 1.15rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  transform: rotate(4deg);
  box-shadow: 0 14px 30px -12px rgba(249, 115, 22, .7);
  z-index: 2;
}
.badge-flottant span { display: block; font-size: 1.5rem; }
.badge-flottant small { display: block; font-family: 'Inter', sans-serif; font-weight: 600; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; opacity: .92; }

.entreprise-tuiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 1.3rem;
}
.tuile-num {
  background: var(--vert-fonce);
  color: var(--blanc);
  border-radius: var(--r-md);
  padding: 1.2rem 1.3rem;
}
.tuile-chiffre {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--vert-pale);
  line-height: 1.1;
}
.tuile-texte { font-size: .88rem; color: rgba(255, 255, 255, .75); line-height: 1.4; display: block; margin-top: .3rem; }

.tuile-attente {
  border: 2px dashed rgba(44, 97, 62, .4);
  background: var(--creme);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: .15rem;
  padding: 1.1rem 1rem;
  color: var(--txt-2);
}
.tuile-attente svg { width: 26px; height: 26px; fill: var(--vert-clair); margin-bottom: .35rem; }
.tuile-attente strong { color: var(--vert-fonce); font-size: .95rem; }
.tuile-attente span { font-size: .82rem; }

/* ---------- Chantiers (bandeau défilant) ---------- */
.chantiers { background: var(--creme); padding-bottom: clamp(4.5rem, 9vw, 7.5rem); }
.chantiers .section-head { text-align: center; }
.chantiers .section-head .lede { margin-inline: auto; }

.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: defile 60s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img {
  height: clamp(230px, 28vw, 400px);
  width: auto;
  border-radius: var(--r-md);
  flex: none;
}
@keyframes defile {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-note {
  text-align: center;
  font-size: .88rem;
  color: var(--txt-2);
  margin-top: 1.6rem;
}

/* ---------- Avis ---------- */
.avis { background: var(--gris); }
.avis-grid {
  display: grid;
  grid-template-columns: .95fr 1.55fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.avis-score h2 { max-width: 12ch; }

.score-carte {
  background: var(--blanc);
  border-radius: var(--r-lg);
  padding: 1.8rem;
  display: grid;
  gap: .45rem;
  justify-items: start;
  box-shadow: var(--ombre-1);
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
}
.score-carte::after {
  content: "G";
  position: absolute;
  right: -6px; bottom: -26px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 7rem;
  font-weight: 800;
  color: var(--gris);
  z-index: 0;
}
.score-carte > * { position: relative; z-index: 1; }
.score-note {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--vert-fonce);
}
.score-note span { font-size: 1.5rem; color: var(--txt-2); font-weight: 700; }
.stars.big { font-size: 1.35rem; }
.score-sub { color: var(--txt-2); font-size: .95rem; margin-bottom: .9rem; }

.avis-cartes { display: grid; gap: 1.2rem; }
.avis-carte {
  margin: 0;
  background: var(--blanc);
  border-radius: var(--r-md);
  padding: 1.6rem 1.8rem 1.4rem;
  box-shadow: var(--ombre-1);
  position: relative;
}
.avis-carte::before {
  content: "“";
  position: absolute;
  top: .2rem; right: 1.4rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--vert-pale);
}
.avis-carte p { margin: .5rem 0 .9rem; font-size: 1rem; line-height: 1.65; }
.avis-carte footer {
  font-weight: 600;
  font-size: .88rem;
  color: var(--txt-2);
  display: flex;
  align-items: center;
  gap: .6em;
}
.avis-carte footer::before {
  content: attr(data-initiale);
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--vert);
  color: var(--blanc);
  font-size: .8rem;
  font-weight: 700;
}
.avis-note {
  margin: 2.2rem 0 0;
  font-size: .84rem;
  font-style: italic;
  color: var(--txt-2);
  opacity: .85;
}

/* ---------- Zone d'intervention ---------- */
.zone {
  background:
    radial-gradient(70rem 36rem at -10% 120%, rgba(44, 97, 62, .35), transparent 55%),
    var(--encre);
  color: var(--txt-inv);
}
.zone h2 { color: var(--blanc); }
.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.zone-txt > p { color: var(--txt-inv-2); }

.depts { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.5rem 0; }
.dept {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  padding: .42em .55em .42em 1em;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
}
.dept em {
  font-style: normal;
  background: var(--orange);
  color: var(--blanc);
  font-weight: 700;
  font-size: .85rem;
  padding: .12em .6em;
  border-radius: 999px;
}
.dept-alt { opacity: .55; }
.dept-alt em { background: rgba(255, 255, 255, .2); }

.villes {
  list-style: none;
  padding: 0;
  margin: 1.3rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.villes li {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: .3em .95em;
  font-size: .92rem;
  transition: border-color var(--t), background var(--t);
}
.villes li:hover { border-color: var(--orange); background: rgba(249, 115, 22, .12); }
.zone-note { font-size: .95rem; color: var(--txt-inv-2); }
.zone-note a { color: var(--orange); font-weight: 700; }

.zone-carte { margin: 0; }
.zone-carte svg {
  width: 100%;
  height: auto;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--r-lg);
}
.carte-dept {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .2em;
  fill: rgba(255, 255, 255, .28);
  text-anchor: middle;
  font-family: 'Inter', sans-serif;
}
.carte-riviere {
  font-size: 11px;
  font-style: italic;
  fill: rgba(133, 193, 233, .6);
  font-family: 'Inter', sans-serif;
}

.ville-pt circle { fill: #fff; }
.ville-pt text {
  fill: rgba(255, 255, 255, .85);
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  text-anchor: middle;
}
.ville-pt {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .5s ease, transform .5s ease;
}
.zone.in .ville-pt { opacity: 1; transform: none; }
.zone.in .ville-pt:nth-of-type(1) { transition-delay: .15s; }
.zone.in .ville-pt:nth-of-type(2) { transition-delay: .25s; }
.zone.in .ville-pt:nth-of-type(3) { transition-delay: .35s; }
.zone.in .ville-pt:nth-of-type(4) { transition-delay: .45s; }
.zone.in .ville-pt:nth-of-type(5) { transition-delay: .55s; }
.zone.in .ville-pt:nth-of-type(6) { transition-delay: .65s; }
.zone.in .ville-pt:nth-of-type(7) { transition-delay: .75s; }
.zone.in .ville-pt:nth-of-type(8) { transition-delay: .85s; }
.zone.in .ville-pt:nth-of-type(9) { transition-delay: .95s; }
.zone.in .ville-pt:nth-of-type(10) { transition-delay: 1.05s; }
.zone.in .ville-pt:nth-of-type(11) { transition-delay: 1.15s; }

.ville-s circle { fill: rgba(255, 255, 255, .5); }
.ville-s text { fill: rgba(255, 255, 255, .5); font-size: 11px; text-anchor: start; }

.base circle { fill: var(--orange); }
.base text {
  fill: var(--blanc);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 15.5px;
  letter-spacing: .06em;
  text-anchor: middle;
}
.base .base-sub {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  fill: var(--orange);
  letter-spacing: .16em;
  font-weight: 600;
}
.base-pulse {
  fill: none !important;
  stroke: var(--orange);
  stroke-width: 2;
  animation: pulse 2.6s ease-out infinite;
  transform-origin: 267px 282px;
}
@keyframes pulse {
  0%   { transform: scale(.55); opacity: .95; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ---------- CTA final ---------- */
.cta-final { background: var(--creme); }
.cta-panneau {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--r-lg) + 8px);
  background:
    radial-gradient(46rem 24rem at 88% -30%, rgba(255, 255, 255, .22), transparent 58%),
    linear-gradient(130deg, var(--orange) 12%, var(--orange-3) 100%);
  color: var(--blanc);
  padding: clamp(2.6rem, 6vw, 4.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 30px 60px -30px rgba(199, 90, 18, .55);
}
.cta-panneau::after {
  content: "1998";
  position: absolute;
  right: 1.5rem; bottom: -3.2rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .08);
  line-height: 1;
  pointer-events: none;
}
.cta-txt h2 { color: var(--blanc); margin-bottom: .3rem; max-width: 18ch; }
.cta-txt p { margin: 0; font-size: 1.06rem; color: rgba(255, 255, 255, .92); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; position: relative; z-index: 1; }

/* ---------- Footer ---------- */
.footer { background: var(--encre); color: var(--txt-inv-2); font-size: .95rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.6rem;
  padding: clamp(3.2rem, 6vw, 4.8rem) 0;
}
.footer h3 {
  color: var(--blanc);
  font-size: 1.02rem;
  margin-bottom: 1.1rem;
}
.footer h3::after {
  content: "";
  display: block;
  width: 30px; height: 3px;
  border-radius: 3px;
  background: var(--orange);
  margin-top: .55rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.footer a { color: var(--txt-inv-2); text-decoration: none; transition: color var(--t); }
.footer a:hover { color: var(--orange); }
.footer address { font-style: normal; line-height: 1.9; }
.footer-brand img {
  height: 60px; width: auto;
  border-radius: 8px;
  background: var(--blanc);
  padding: 2px;
  margin-bottom: 1.1rem;
}
.footer-brand p { max-width: 30ch; }
.footer-gnote { color: var(--txt-inv); font-weight: 500; }
.footer-horaires { margin-top: 1rem; }
.footer-depts { color: var(--txt-inv); font-weight: 500; }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .09); padding: 1.2rem 0; font-size: .84rem; }
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem;
}
.footer-bottom p { margin: 0; }

/* ---------- Barre d'appel mobile ---------- */
.callbar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -10px 30px -12px rgba(19, 26, 21, .5);
}
.callbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: .95rem;
  font-size: 1.02rem;
  font-weight: 700;
  text-decoration: none;
}
.callbar-tel { background: var(--vert-fonce); color: var(--blanc); }
.callbar-devis { background: var(--orange); color: var(--blanc); }

/* ---------- Apparitions ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.33, 1, .68, 1), transform .8s cubic-bezier(.33, 1, .68, 1);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

[data-parallax] { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-img { animation: none; }
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; }
  .base-pulse { animation: none; opacity: 0; }
  .scroll-cue { display: none; }
  .etapes::before { transition: none; transform: scaleX(1); }
  .ville-pt { opacity: 1 !important; transform: none !important; transition: none; }
  .souligne path { animation: none; stroke-dashoffset: 0; }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1120px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .etapes { grid-template-columns: repeat(2, 1fr); gap: 2.4rem 2rem; }
  .etapes::before { display: none; }
  .head-duo { grid-template-columns: 1fr; align-items: start; gap: 1rem; }
  .entreprise-grid, .zone-grid { grid-template-columns: 1fr; }
  .badge-flottant { right: 8px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav, .header-cta { display: none; }
  .burger { display: flex; }
  .avis-grid { grid-template-columns: 1fr; }
  .avis-score h2 { max-width: none; }
}

@media (max-width: 620px) {
  body { padding-bottom: 56px; } /* espace pour la callbar */
  .topbar p.topbar-phones { display: none; }
  .topbar-inner { justify-content: center; text-align: center; }
  .cards { grid-template-columns: 1fr; }
  .etapes { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .stat { padding: 1.4rem .6rem; }
  .stat:nth-child(3)::before { display: none; }
  .hero { min-height: 82vh; }
  .hero-actions .btn { width: 100%; }
  .hero-preuves { gap: .8rem 1.2rem; }
  .scroll-cue { display: none; }
  .entreprise-tuiles { grid-template-columns: 1fr; }
  .badge-flottant { top: -18px; padding: .65rem .95rem; }
  .badge-flottant span { font-size: 1.25rem; }
  .cta-panneau { flex-direction: column; align-items: stretch; text-align: center; }
  .cta-actions { flex-direction: column; }
  .cta-panneau::after { font-size: 7rem; right: .5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .callbar { display: grid; }
}

/* ============================================================
   Pages intérieures
   ============================================================ */

/* ---------- Bannière de page ---------- */
.page-banner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--encre);
  color: var(--blanc);
}
.page-banner img.banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(9, 16, 11, .82) 0%, rgba(9, 16, 11, .25) 55%, rgba(9, 16, 11, .35) 100%);
}
.banner-content {
  position: relative;
  z-index: 2;
  padding: 7rem 0 2.6rem;
}
.banner-content h1 { color: var(--blanc); max-width: 22ch; margin-bottom: .2em; font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
.banner-content .lede { color: rgba(255, 255, 255, .88); margin: 0 0 .4rem; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .45em;
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-size: .85rem;
  color: rgba(255, 255, 255, .75);
}
.breadcrumb a { color: rgba(255, 255, 255, .9); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb li:not(:last-child)::after { content: "›"; margin-left: .45em; opacity: .6; }
.breadcrumb [aria-current] { color: var(--orange); font-weight: 600; }

/* ---------- Corps de page service ---------- */
.page-intro { background: var(--blanc); }
.intro-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
.intro-grid .prose p { color: var(--txt-2); }
.prose p + p { margin-top: 1em; }

.carte-infos {
  background: var(--creme);
  border: 1px solid rgba(19, 26, 21, .08);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.7rem;
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 100px;
}
.carte-infos h2 { font-size: 1.15rem; margin: 0; }
.carte-infos ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; font-size: .95rem; }
.carte-infos li { display: flex; gap: .6em; align-items: flex-start; }
.carte-infos .ico { color: var(--vert); margin-top: .2em; }
.carte-infos .btn { justify-content: center; }
.carte-infos .lien-tel { justify-content: center; }

/* ---------- Prestations ---------- */
.prestations { background: var(--creme); }
.prestation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.prestation {
  background: var(--blanc);
  border: 1px solid rgba(19, 26, 21, .06);
  border-radius: var(--r-md);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--ombre-1);
}
.prestation h3 { font-size: 1.05rem; margin-bottom: .35rem; display: flex; align-items: center; gap: .5em; }
.prestation h3::before {
  content: "";
  flex: none;
  width: 9px; height: 9px;
  border-radius: 2px;
  background: var(--orange);
  transform: rotate(45deg);
}
.prestation p { margin: 0; font-size: .92rem; color: var(--txt-2); line-height: 1.6; }

/* ---------- Galerie ---------- */
.galerie { background: var(--blanc); }
.galerie-grid { columns: 3 300px; gap: 1.1rem; }
.galerie-grid figure {
  margin: 0 0 1.1rem;
  break-inside: avoid;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--ombre-1);
}
.galerie-grid img {
  width: 100%;
  display: block;
  transition: transform .6s cubic-bezier(.33, 1, .68, 1);
}
.galerie-grid figure:hover img { transform: scale(1.04); }
.galerie-grid figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem .9rem .7rem;
  font-size: .82rem;
  color: #fff;
  background: linear-gradient(0deg, rgba(9, 16, 11, .72), transparent);
  opacity: 0;
  transition: opacity var(--t);
}
.galerie-grid figure:hover figcaption { opacity: 1; }

.tuile-attente-galerie {
  border: 2px dashed rgba(44, 97, 62, .4);
  background: var(--creme);
  border-radius: var(--r-md);
  break-inside: avoid;
  margin: 0 0 1.1rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: .2rem;
  padding: 1.4rem 1rem;
  color: var(--txt-2);
}
.tuile-attente-galerie svg { width: 28px; height: 28px; fill: var(--vert-clair); margin-bottom: .4rem; }
.tuile-attente-galerie strong { color: var(--vert-fonce); font-size: .95rem; }
.tuile-attente-galerie span { font-size: .82rem; }

/* ---------- FAQ ---------- */
.faq { background: var(--creme); }
.faq-liste { max-width: 820px; display: grid; gap: .9rem; }
.faq-item {
  background: var(--blanc);
  border: 1px solid rgba(19, 26, 21, .07);
  border-radius: var(--r-md);
  box-shadow: var(--ombre-1);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--vert-pale);
  color: var(--vert-fonce);
  font-weight: 700;
  font-size: 1.2rem;
  transition: transform var(--t), background var(--t), color var(--t);
}
.faq-item[open] summary::after { content: "–"; background: var(--orange); color: var(--blanc); }
.faq-item .faq-reponse { padding: 0 1.4rem 1.3rem; color: var(--txt-2); }

/* ---------- Services liés ---------- */
.related { background: var(--blanc); }
.related .cards { grid-template-columns: repeat(3, 1fr); }

/* ---------- Page devis ---------- */
.devis-page { background: var(--creme); }
.devis-grid {
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}
.devis-form-wrap iframe {
  width: 100%;
  border: 0;
  display: block;
  min-height: 640px;
}
.devis-aside { display: grid; gap: 1.4rem; position: sticky; top: 100px; }
.aside-carte {
  background: var(--blanc);
  border: 1px solid rgba(19, 26, 21, .07);
  border-radius: var(--r-lg);
  box-shadow: var(--ombre-1);
  padding: 1.5rem 1.6rem;
}
.aside-carte h2 { font-size: 1.1rem; margin-bottom: .8rem; }
.aside-carte ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; font-size: .93rem; }
.aside-carte li { display: flex; gap: .55em; align-items: flex-start; }
.aside-carte .ico { color: var(--vert); margin-top: .2em; }
.aside-carte address { font-style: normal; line-height: 1.85; font-size: .95rem; }
.aside-carte a { color: var(--vert); font-weight: 600; text-decoration: none; }
.aside-carte a:hover { text-decoration: underline; }
.aside-avis { border-top: 4px solid var(--orange); }
.aside-avis .stars { font-size: 1.1rem; }

/* ---------- Pages légales / prose ---------- */
.page-prose { background: var(--blanc); }
.page-prose .prose { max-width: 760px; }
.page-prose h2 { font-size: 1.4rem; margin-top: 2rem; }
.page-prose p, .page-prose li { color: var(--txt-2); }

/* ---------- Bandeau titre simple (pages sans photo) ---------- */
.page-head-simple {
  background:
    radial-gradient(60rem 30rem at 110% -40%, rgba(78, 149, 103, .18), transparent 60%),
    var(--encre);
  color: var(--blanc);
  padding: 4.5rem 0 3rem;
}
.page-head-simple h1 { color: var(--blanc); margin-bottom: .2em; }
.page-head-simple .lede { color: var(--txt-inv-2); margin: 0; }
.page-head-simple .breadcrumb { margin-bottom: 1.2rem; }

/* ---------- Responsive pages intérieures ---------- */
@media (max-width: 1120px) {
  .prestation-grid { grid-template-columns: repeat(2, 1fr); }
  .related .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; }
  .carte-infos { position: static; }
  .devis-grid { grid-template-columns: 1fr; }
  .devis-aside { position: static; }
}
@media (max-width: 620px) {
  .page-banner { min-height: 300px; }
  .banner-content { padding-top: 5rem; }
  .prestation-grid { grid-template-columns: 1fr; }
  .related .cards { grid-template-columns: 1fr; }
  .galerie-grid { columns: 2 150px; }
}
