/* ============================================================
   KERS DÉBARRAS — Feuille de style
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --green-dark: #2d4a1e;
  --green-mid: #3d6428;
  --green-light: #f0f4ed;

  /* Alternance de fonds clairs (crème) pour les sections */
  --sec-a: #f5f0e0;
  --sec-b: #ece6d2;
  --white: #ffffff;
  --ink: #2D5016;
  --gray: #6b7280;
  --gray-line: #e5e9e0;

  --green-dark-2: #233b16;   /* hero gradient base */
  --band: #355a23;           /* services band, slightly lighter than hero */

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;

  --shadow-sm: 0 1px 3px rgba(26, 26, 26, .06), 0 1px 2px rgba(26, 26, 26, .04);
  --shadow: 0 10px 30px rgba(26, 26, 26, .08);
  --shadow-lg: 0 24px 60px rgba(26, 26, 26, .14);

  --maxw: 1200px;
  --ease: cubic-bezier(.4, 0, .2, 1);

  --font-head: "Schibsted Grotesk", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: 104px 0; }
.section.sec-a { background: var(--sec-a); }
.section.sec-b { background: var(--sec-b); }
@media (max-width: 720px) { .section { padding: 68px 0; } }

.eyebrow {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
}
.section.dark .eyebrow { color: #a8c79a; }

h2.title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.02em;
  max-width: 18ch;
  text-wrap: balance;
}
.section-head { margin-bottom: 56px; }
.section-head .lead {
  margin-top: 20px;
  font-size: 19px;
  color: var(--gray);
  max-width: 60ch;
}
.section.dark .section-head .lead { color: rgba(255, 255, 255, .8); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s var(--ease), background .25s var(--ease),
              color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--green-dark); color: #fff; }
.btn-primary:hover { background: var(--green-mid); box-shadow: var(--shadow); }
.btn-white { background: #fff; color: var(--green-dark); }
.btn-white:hover { background: var(--green-light); box-shadow: 0 10px 28px rgba(0,0,0,.18); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-outline-green { background: transparent; color: var(--green-dark); border-color: var(--green-dark); }
.btn-outline-green:hover { background: var(--green-dark); color: #fff; box-shadow: var(--shadow); }
.btn-full { width: 100%; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
  padding: 18px 0;
}
.nav.scrolled {
  background: var(--green-dark);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .18);
  padding: 10px 0;
}
.nav .wrap { display: flex; align-items: center; gap: 32px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 58px; width: auto; }
.brand .wordmark {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 21px;
  color: #fff;
  letter-spacing: -.01em;
  line-height: 1;
  white-space: nowrap;
}
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a {
  color: rgba(255, 255, 255, .88);
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
  position: relative;
  transition: color .2s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: #a8c79a; transition: width .25s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--green-dark);
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  padding: 11px 18px; border-radius: var(--radius-sm); white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(0,0,0,.22); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto;
}
.hamburger span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: .3s var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--green-dark);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: 90px 32px 40px;
  transform: translateX(100%); transition: transform .35s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  color: #fff; font-family: var(--font-head); font-weight: 700;
  font-size: 28px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12);
}
.mobile-menu .nav-cta { margin-top: 24px; align-self: flex-start; font-size: 18px; padding: 14px 22px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: radial-gradient(120% 120% at 80% -10%, var(--green-mid) 0%, var(--green-dark) 45%, var(--green-dark-2) 100%);
  color: #fff;
  padding: 168px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 520px; height: 520px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.06);
  box-shadow: 0 0 0 60px rgba(255,255,255,.02);
}
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  color: #d9e7cf; padding: 8px 16px; border-radius: 100px;
  font-size: 14px; font-weight: 600; margin-bottom: 26px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(40px, 5.6vw, 66px);
  font-weight: 800; line-height: 1.02; letter-spacing: -.03em;
  margin-bottom: 24px; text-wrap: balance;
}
.hero p.intro { font-size: 18.5px; color: rgba(255,255,255,.84); max-width: 52ch; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 40px; flex-wrap: wrap; }
.hero-stats .stat { display: flex; align-items: center; gap: 10px; font-size: 15px; color: rgba(255,255,255,.9); font-weight: 600; }
.hero-stats .stat svg { flex: none; }

/* ---------- Comparateur Avant / Après ---------- */
.ba { width: 100%; }
.ba-frame {
  position: relative; width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #1a1a1a;
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
}
.ba-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 38%;
  pointer-events: none;
}
.ba-before {
  position: absolute; inset: 0;
  overflow: hidden;
  clip-path: inset(0 50% 0 0);
  will-change: clip-path;
}
.ba-tag {
  position: absolute; top: 16px; z-index: 4;
  font-family: var(--font-head); font-weight: 700; font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 100px;
  color: #fff; backdrop-filter: blur(4px);
}
.ba-tag-before { left: 16px; background: rgba(26,26,26,.62); }
.ba-tag-after { right: 16px; background: rgba(45,74,30,.82); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; transform: translateX(-50%); z-index: 5;
  display: flex; align-items: center; justify-content: center;
}
.ba-line { position: absolute; inset: 0; width: 3px; left: 50%; transform: translateX(-50%); background: #fff; box-shadow: 0 0 0 1px rgba(0,0,0,.12); }
.ba-grip {
  position: relative; z-index: 2;
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; color: var(--green-dark);
  display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.3);
}
.ba-handle:focus-visible { outline: none; }
.ba-handle:focus-visible .ba-grip { box-shadow: 0 0 0 4px rgba(168,199,154,.7), 0 6px 18px rgba(0,0,0,.3); }
.ba-cap { margin-top: 16px; font-size: 14.5px; color: rgba(255,255,255,.72); text-align: center; }

/* ============================================================
   SERVICES BAND
   ============================================================ */
.band {
  background: var(--band); color: #eef4e8;
  padding: 26px 0;
  overflow: hidden;
}
.band-marquee {
  display: flex; width: max-content;
  animation: band-scroll 32s linear infinite;
}
.band:hover .band-marquee { animation-play-state: paused; }
.band-track {
  display: flex; flex-wrap: nowrap; align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  padding-left: clamp(14px, 2.4vw, 30px);
  font-family: var(--font-head);
  font-size: 14px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  white-space: nowrap; flex: none;
}
@keyframes band-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .band-marquee { animation: none; }
}
.band .item { display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; }
.band .dot { opacity: .4; }

/* ============================================================
   TYPES (cards grid)
   ============================================================ */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #fcf9ef; border: 1.5px solid #e6ddc4;
  border-radius: var(--radius); padding: 30px 28px;
  border-left: 3px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-left-color: var(--green-mid);
}
.service-card .ic {
  width: 54px; height: 54px; border-radius: 12px;
  background: var(--green-light); color: var(--green-dark);
  display: grid; place-items: center; margin-bottom: 20px;
}
.service-card h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--gray); font-size: 15.5px; }

/* ============================================================
   ENGAGEMENTS
   ============================================================ */
.cols-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; }
.engage .num {
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  color: var(--green-mid); letter-spacing: .1em; margin-bottom: 16px;
}
.engage .ring {
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid var(--green-mid); color: var(--green-dark);
  display: grid; place-items: center; margin-bottom: 18px;
}
.engage h3 { font-family: var(--font-head); font-size: 19px; font-weight: 700; margin-bottom: 9px; }
.engage p { color: var(--gray); font-size: 15.5px; }

/* ============================================================
   DARK SECTIONS
   ============================================================ */
.section.dark { background: var(--green-dark); color: #fff; }
.section.dark h2.title { color: #fff; }

.zone-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.zone-list { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 30px; }
.zone-item { display: flex; gap: 14px; align-items: flex-start; }
.zone-item .dep {
  flex: none; width: 46px; height: 46px; border-radius: 10px;
  background: rgba(45,80,22,.08); border: 1px solid rgba(45,80,22,.16);
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 17px; color: var(--green-dark);
}
.zone-item .ztxt strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: 17px; }
.zone-item .ztxt span { font-size: 14.5px; color: var(--gray); }
.zone-more {
  grid-column: 1 / -1; margin-top: 4px; font-size: 15px; color: var(--gray);
  display: flex; gap: 12px; align-items: center;
}
.zone-more .plus { color: var(--green-mid); font-family: var(--font-head); font-weight: 800; }
.zone-right p { color: var(--gray); font-size: 17.5px; margin-bottom: 18px; }

/* ============================================================
   RÉALISATIONS
   ============================================================ */
.cards-3.gallery { gap: 26px; }
.photo-card {
  background: #fff; border: 1.5px solid var(--gray-line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  cursor: pointer; text-align: left; width: 100%; color: inherit; font: inherit;
  display: block; padding: 0;
}
.photo-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.photo-card:focus-visible { outline: 3px solid var(--green-mid); outline-offset: 3px; }
.photo-view {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  background: rgba(45, 74, 30, .9); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  letter-spacing: .03em; padding: 11px;
  transform: translateY(100%); transition: transform .28s var(--ease);
}
.photo-view::before {
  content: ""; width: 15px; height: 15px; flex: none;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 12s4-7 11-7 11 7 11 7-4 7-11 7-11-7-11-7z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 12s4-7 11-7 11 7 11 7-4 7-11 7-11-7-11-7z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E") center/contain no-repeat;
}
.photo-card:hover .photo-view,
.photo-card:focus-visible .photo-view { transform: translateY(0); }
.photo-thumb {
  position: relative; aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #dfeed4 0%, #c2dcae 55%, #a7c993 100%);
  display: grid; place-items: center;
}
.photo-thumb .cam { color: var(--green-dark); opacity: .55; }
.photo-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.photo-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 80% at 30% 20%, rgba(255,255,255,.35), transparent 60%);
  pointer-events: none;
}
.photo-cat {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--green-dark); color: #fff;
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: .04em; padding: 6px 12px; border-radius: 100px;
}
.photo-body { padding: 20px 22px 22px; }
.photo-body h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.photo-meta { display: flex; align-items: center; gap: 10px; color: var(--gray); font-size: 14.5px; }
.photo-meta .sep { opacity: .5; }
.gallery-note { text-align: center; font-style: italic; color: var(--gray); margin-top: 40px; font-size: 15.5px; }
.center-cta { text-align: center; margin-top: 28px; }

/* ============================================================
   AVIS
   ============================================================ */
.reviews-scroller {
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(61,100,40,.45) transparent;
}
.reviews-scroller::-webkit-scrollbar { height: 8px; }
.reviews-scroller::-webkit-scrollbar-track { background: transparent; }
.reviews-scroller::-webkit-scrollbar-thumb { background: rgba(61,100,40,.35); border-radius: 100px; }
.reviews-scroller::-webkit-scrollbar-thumb:hover { background: var(--green-mid); }
.reviews-track { display: flex; align-items: flex-start; gap: 24px; padding-bottom: 18px; }
.reviews-track .review-card {
  flex: 0 0 360px; max-width: 84vw; scroll-snap-align: start;
}
.reviews-hint {
  margin-top: 8px; text-align: center;
  font-family: var(--font-head); font-size: 13.5px; font-weight: 600;
  letter-spacing: .02em; color: var(--green-mid);
}
.review-card {
  background: #fcf9ef; border: 1.5px solid #e6ddc4; border-radius: var(--radius); padding: 30px 28px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.review-stars { color: #e8a317; font-size: 17px; letter-spacing: 2px; margin-bottom: 16px; }
.review-card blockquote {
  font-size: 16.5px; line-height: 1.6; color: var(--ink); flex: 1;
}
.review-author { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.review-author .av {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: var(--green-dark); color: #fff;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 17px;
}
.review-author .meta strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: 15.5px; }
.review-author .meta span { font-size: 13.5px; color: var(--gray); }

/* Badge note Google (en-tête section avis) */
.google-rating {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 20px; padding: 9px 18px;
  background: var(--white); border: 1.5px solid #e6ddc4; border-radius: 100px;
  box-shadow: var(--shadow-sm);
  font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: var(--ink);
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.google-rating:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.google-rating .gr-google { font-weight: 800; color: var(--green-dark); }
.google-rating .gr-stars { color: #e8a317; letter-spacing: 1.5px; }
.google-rating .gr-score { font-weight: 800; }
.google-rating .gr-count { color: var(--gray); font-weight: 500; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item {
  background: #fcf9ef;
  border: 1.5px solid #e6ddc4; border-radius: var(--radius);
  margin-bottom: 14px; overflow: hidden;
  border-left: 3px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq-item:hover { border-color: #d8cfb4; }
.faq-item.open { border-left-color: var(--green-mid); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 26px; font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--ink);
}
.faq-q .icon {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--green-light); color: var(--green-dark);
  display: grid; place-items: center; font-size: 20px; font-weight: 700; line-height: 1;
  transition: transform .3s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.faq-item.open .faq-q .icon { background: var(--green-dark); color: #fff; transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a .inner { padding: 0 26px 24px; color: var(--gray); font-size: 16px; }

/* ============================================================
   CONTACT FINAL
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.contact-grid .lead-dark { color: rgba(255,255,255,.82); font-size: 19px; margin-top: 18px; margin-bottom: 36px; }
.contact-lines { display: flex; flex-direction: column; gap: 20px; }
.contact-line { display: flex; align-items: center; gap: 16px; }
.contact-line .ci {
  width: 50px; height: 50px; border-radius: 12px; flex: none;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
  display: grid; place-items: center; color: #cfe0c2;
}
.contact-line .ct small { display: block; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 2px; }
.contact-line .ct a, .contact-line .ct span { font-family: var(--font-head); font-weight: 700; font-size: 19px; color: #fff; }
.contact-hours { margin-top: 30px; font-size: 14px; color: rgba(255,255,255,.6); }

/* Fond contact en deux tons (gauche / droite) */
#contact.section.dark {
  background: linear-gradient(90deg, var(--green-dark) 0 50%, #34541f 50% 100%);
}

/* Carte « Le devis, c'est simple » */
.quote-card {
  background: rgba(0, 0, 0, .22);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 40px;
}
.quote-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.quote-head h3 { font-family: var(--font-head); font-size: 23px; font-weight: 800; color: #fff; }
.quote-doc { color: rgba(255, 255, 255, .45); flex: none; }
.quote-steps { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.quote-steps li { display: flex; gap: 12px; align-items: flex-start; color: rgba(255, 255, 255, .86); font-size: 16px; }
.quote-steps .ar { color: #a8c79a; font-family: var(--font-head); font-weight: 700; flex: none; }
.quote-cta { width: 100%; background: #9cbb6e; color: var(--green-dark); font-size: 16.5px; }
.quote-cta:hover { background: #aecb80; box-shadow: var(--shadow); transform: translateY(-1px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #1c2f12; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.08); }
.footer .wrap.footer-row { max-width: 1440px; padding-inline: 40px; }
.footer-row { display: flex; align-items: center; gap: 22px; flex-wrap: nowrap; }
.footer-logo { display: flex; align-items: center; gap: 10px; flex: none; }
.footer-logo img { height: 42px; width: auto; }
.footer-logo span { font-family: var(--font-head); font-weight: 800; font-size: 17px; color: #fff; letter-spacing: -.01em; white-space: nowrap; }
.footer-copy { font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.62); white-space: nowrap; flex: none; }
.footer-links { display: flex; gap: 22px; flex-wrap: nowrap; }
.footer-links a { font-family: var(--font-head); font-weight: 600; font-size: 13.5px; color: #fff; white-space: nowrap; transition: color .2s var(--ease); }
.footer-links a:hover { color: #a8c79a; }
.footer-social { margin-left: auto; display: flex; gap: 12px; flex: none; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: #fff; color: var(--green-dark);
  display: grid; place-items: center;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.footer-social a:hover { transform: translateY(-2px); background: #a8c79a; }
@media (max-width: 1180px) {
  .footer .wrap.footer-row { justify-content: center; gap: 18px 24px; flex-wrap: wrap; text-align: center; }
  .footer-social { margin-left: 0; }
}
@media (max-width: 680px) {
  .footer { padding: 36px 0 28px; }
  .footer .wrap.footer-row {
    flex-direction: column; align-items: center;
    gap: 24px; text-align: center; padding-inline: 20px;
  }
  .footer-logo img { height: 46px; }
  .footer-logo span { font-size: 18px; }
  .footer-links {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px 20px; white-space: normal;
  }
  .footer-links a { font-size: 14px; white-space: normal; text-align: center; }
  .footer-social { margin-left: 0; gap: 14px; }
  .footer-social a { width: 44px; height: 44px; }
  .footer-copy { order: 10; margin-top: 4px; }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .cards-3, .reviews { grid-template-columns: repeat(2, 1fr); }
  .cols-4 { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .zone-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  #contact.section.dark { background: var(--green-dark); }
}
@media (max-width: 1000px) {
  .nav-links, .nav > .wrap > .nav-cta { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .cards-3, .reviews, .cols-4, .zone-list { grid-template-columns: 1fr; }
  .hero { padding: 124px 0 64px; }
  .hero-stats { gap: 16px 26px; }
  .section-head { margin-bottom: 40px; }
  .zone-grid, .contact-grid { gap: 32px; }
  /* Boutons pleine largeur pour des cibles tactiles confortables */
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 100%; width: 100%; }
  /* Coordonnées : éviter tout débordement d'un email/numéro long */
  .contact-line .ct a, .contact-line .ct span { font-size: 17px; overflow-wrap: anywhere; }
}
@media (max-width: 460px) {
  .wrap { padding-inline: 18px; }
  .reviews-track .review-card { flex-basis: 84vw; }
  .hero-badge { font-size: 13px; }
  .hero p.intro { font-size: 17px; }
  .section-head .lead { font-size: 17px; }
  .zone-list { gap: 18px; }
}

/* ============================================================
   MODALE DÉTAIL CHANTIER
   ============================================================ */
.chantier-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: center; justify-content: center;
  padding: 28px;
}
.chantier-modal.open { display: flex; }
.cm-overlay {
  position: absolute; inset: 0;
  background: rgba(20, 32, 14, .58); backdrop-filter: blur(3px);
  opacity: 0; transition: opacity .28s var(--ease);
}
.chantier-modal.open .cm-overlay { opacity: 1; }
.cm-dialog {
  position: relative; z-index: 1;
  width: 100%; max-width: 720px; max-height: 90vh;
  background: #fffaf0; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden; display: flex;
  transform: translateY(18px) scale(.98); opacity: 0;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.chantier-modal.open .cm-dialog { transform: translateY(0) scale(1); opacity: 1; }
.cm-frame { width: 100%; height: 86vh; max-height: 86vh; border: 0; display: block; }
.cm-close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255, 255, 255, .92); color: var(--green-dark);
  border: 1px solid var(--gray-line); cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.cm-close:hover { background: var(--green-dark); color: #fff; transform: rotate(90deg); }
@media (max-width: 620px) {
  .chantier-modal { padding: 0; }
  .cm-dialog { max-width: 100%; max-height: 100%; height: 100%; border-radius: 0; }
  .cm-frame { height: 100vh; max-height: 100vh; }
}

/* ============================================================
   PAGES LÉGALES (mentions, confidentialité, CGV, recyclage)
   ============================================================ */
/* Nav toujours opaque sur ces pages (pas de hero sombre derrière) */
.nav-solid { background: var(--green-dark); box-shadow: 0 6px 24px rgba(0, 0, 0, .18); }

/* En-tête de page */
.legal-hero {
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-dark-2) 100%);
  color: #fff;
  padding: 132px 0 60px;
}
.legal-hero .back-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  color: #a8c79a; margin-bottom: 22px;
  transition: gap .2s var(--ease), color .2s var(--ease);
}
.legal-hero .back-link:hover { gap: 11px; color: #fff; }
.legal-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 800; line-height: 1.08; letter-spacing: -.02em;
  text-wrap: balance;
}
.legal-hero .legal-updated {
  margin-top: 16px; font-size: 14px; color: rgba(255, 255, 255, .68);
}

/* Corps */
.legal-body { background: var(--sec-a); padding: 60px 0 100px; }
.legal-wrap { max-width: 820px; }

/* Sommaire */
.legal-toc {
  background: var(--white); border: 1px solid var(--gray-line);
  border-radius: var(--radius); padding: 24px 28px; margin-bottom: 48px;
  box-shadow: var(--shadow-sm);
}
.legal-toc h2 {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gray);
  margin-bottom: 14px;
}
.legal-toc ol { list-style: none; counter-reset: toc; display: grid; gap: 9px; }
.legal-toc li { counter-increment: toc; }
.legal-toc a {
  font-family: var(--font-head); font-weight: 600; font-size: 15.5px;
  color: var(--ink); display: inline-flex; gap: 10px;
  transition: color .2s var(--ease);
}
.legal-toc a::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--green-mid); font-weight: 700;
}
.legal-toc a:hover { color: var(--green-mid); }

/* Contenu rédactionnel */
.legal-content { color: #34421f; }
.legal-content section { scroll-margin-top: 96px; }
.legal-content section + section { margin-top: 44px; }
.legal-content h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 28px); font-weight: 800;
  letter-spacing: -.01em; color: var(--green-dark);
  margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 2px solid var(--gray-line);
}
.legal-content h3 {
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  color: var(--green-dark); margin: 26px 0 10px;
}
.legal-content p { margin-bottom: 14px; }
.legal-content p:last-child { margin-bottom: 0; }
.legal-content ul, .legal-content ol { margin: 0 0 16px 4px; padding-left: 22px; }
.legal-content li { margin-bottom: 8px; }
.legal-content a:not(.back-link) {
  color: var(--green-mid); font-weight: 600;
  text-decoration: underline; text-underline-offset: 2px;
  text-decoration-color: rgba(61, 100, 40, .35);
}
.legal-content a:not(.back-link):hover { text-decoration-color: var(--green-mid); }
.legal-content strong { color: var(--green-dark); font-weight: 700; }

/* Tableau identité (mentions légales) */
.legal-table {
  width: 100%; border-collapse: collapse;
  background: var(--white); border: 1px solid var(--gray-line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}
.legal-table th, .legal-table td {
  text-align: left; padding: 13px 18px; vertical-align: top;
  border-bottom: 1px solid var(--gray-line); font-size: 15.5px;
}
.legal-table tr:last-child th, .legal-table tr:last-child td { border-bottom: 0; }
.legal-table th {
  width: 38%; font-family: var(--font-head); font-weight: 600;
  color: var(--gray); white-space: nowrap;
}
@media (max-width: 560px) {
  .legal-table, .legal-table tbody, .legal-table tr, .legal-table th, .legal-table td { display: block; width: 100%; }
  .legal-table th { border-bottom: 0; padding-bottom: 2px; white-space: normal; }
  .legal-table td { padding-top: 2px; padding-bottom: 14px; }
}

/* Encadré d'information / mise en garde */
.legal-callout {
  background: var(--green-light); border-left: 4px solid var(--green-mid);
  border-radius: var(--radius-sm); padding: 16px 20px; margin: 22px 0;
  font-size: 15px; color: #34421f;
}
.legal-callout strong { display: block; margin-bottom: 4px; }
