/* =====================================================
 *  terrassement-bois.fr — CSS Stitch exact
 *  Couleurs: Forêt (#3D5A3E) + Chêne (#8B6914)
 *  Source: test_design_v3.html (Stitch reference)
 * ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --cp: #3D5A3E;
  --cd: #2C3E2D;
  --cdd: #1a2e1c;
  --cl: #F5F1EB;
  --cc: #8B6914;
  --cch: #745811;
  --title: #1a1a2e;
  --body: #444;
  --muted: #666;
  --bg: #f8f9fa;
  --white: #fff;
  --border: #e8e8e8;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 2px 12px rgba(0,0,0,.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* =====================================================
   CONTAINER (nav + galerie-bloc)
   ===================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* =====================================================
   NAV HEADER
   ===================================================== */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding: 16px 0;
}
.nav-header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  padding: 10px 0;
  backdrop-filter: blur(12px);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo svg { height: 34px; width: auto; }
.nav-header.scrolled .nav-logo svg text tspan:first-child { fill: var(--cp); }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  transition: color .2s;
}
.nav-header.scrolled .nav-links a { color: var(--body); }
.nav-links a:hover { color: var(--cc); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: all .25s;
  border: none;
  cursor: pointer;
}
.btn-primary { background: var(--cc); color: #fff; }
.btn-primary:hover { background: var(--cch); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.15); }

.nav-cta { white-space: nowrap; padding: 10px 20px; font-size: 13px; }
.nav-header:not(.scrolled) .nav-cta {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px; transition: all .3s;
}
.nav-header.scrolled .nav-burger span { background: var(--title); }
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =====================================================
   HERO — Stitch exact
   ===================================================== */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero__ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,62,45,.92) 0%, rgba(44,62,45,.75) 60%, rgba(44,62,45,.50) 100%);
}
.hero__in {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}
.hero__txt { color: #fff; }
.hero__title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.hero__title span { color: #8B6914; }
.hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,.88);
  margin-bottom: 28px;
  line-height: 1.7;
  max-width: 540px;
}
.hero__btns {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: all .25s;
  border: none;
  cursor: pointer;
}
.hero__btn--p { background: #8B6914; color: #fff; }
.hero__btn--p:hover { background: #745811; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.2); }
.hero__btn--s { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(4px); }
.hero__btn--s:hover { background: rgba(255,255,255,.2); }
.hero__btn svg { width: 16px; height: 16px; }

.hero__badges { display: flex; gap: 20px; flex-wrap: wrap; }
.hero__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}
.hero__badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #8B6914;
  flex-shrink: 0;
}

.hero__args {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.hero__args li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: rgba(255,255,255,.9);
}
.hero__args li svg { width: 20px; height: 20px; color: var(--cc); flex-shrink: 0; }

.hero__form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: 0 25px 60px rgba(0,0,0,.2);
}
.hero__form h3,
.hero__form-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 4px;
}
.hero__form-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

/* Hero département / galerie (1 colonne, pas de form) */
.dept-hero .hero__in {
  grid-template-columns: 1fr;
  max-width: 800px;
  text-align: center;
}
.dept-hero .hero__badges { justify-content: center; }
.dept-hero .hero__btns { justify-content: center; }
.dept-hero .hero__sub { margin-left: auto; margin-right: auto; }

/* =====================================================
   BREADCRUMB — Stitch exact
   ===================================================== */
.bc {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.bc__in {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}
.bc__in a { color: var(--cp); font-weight: 500; transition: color .2s; }
.bc__in a:hover { color: #2C3E2D; }
.bc__sep { color: var(--border); }

/* =====================================================
   TRUST BAR — Stitch exact
   ===================================================== */
.trust {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust__in {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-it { display: flex; align-items: center; gap: 14px; }
.trust-it__ic {
  width: 48px; height: 48px;
  background: var(--cl);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cp);
}
.trust-it__ic svg { width: 20px; height: 20px; }
.trust-it__num {
  font-size: 26px;
  font-weight: 800;
  color: var(--title);
  line-height: 1;
}
.trust-it__lb {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 2px;
}

/* =====================================================
   SECTIONS — Stitch exact
   ===================================================== */
.sec {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 40px;
}
.sec--gray { background: var(--bg); }
.sec--white { background: #fff; }
.sec__head { text-align: center; margin-bottom: 48px; }
.sec__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cl);
  color: var(--cp);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 14px;
}
.sec__tag svg { width: 16px; height: 16px; }
.sec__title {
  font-size: 34px;
  font-weight: 700;
  color: var(--title);
  line-height: 1.2;
}
.sec__title::after {
  content: '';
  display: block;
  width: 60px; height: 3px;
  background: #8B6914;
  margin: 16px auto 0;
  border-radius: 2px;
}
.sec__sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 600px;
  margin: 16px auto 0;
  line-height: 1.7;
}

/* =====================================================
   PRESTATIONS — Stitch exact
   ===================================================== */
.presta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.presta-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 24px;
  transition: all .3s;
}
.presta-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.presta-card__ic {
  width: 48px; height: 48px;
  background: var(--cl);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cp);
  margin-bottom: 18px;
}
.presta-card__ic svg { width: 20px; height: 20px; }
.presta-card__t {
  font-size: 18px;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 10px;
}
.presta-card__d {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.presta-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.presta-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--body);
}
.presta-card ul li::before {
  content: "";
  display: inline-block;
  width: 16px; height: 16px;
  background: var(--cp);
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.7 5.3a1 1 0 010 1.4l-8 8a1 1 0 01-1.4 0l-4-4a1 1 0 111.4-1.4L8 12.6l7.3-7.3a1 1 0 011.4 0z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.7 5.3a1 1 0 010 1.4l-8 8a1 1 0 01-1.4 0l-4-4a1 1 0 111.4-1.4L8 12.6l7.3-7.3a1 1 0 011.4 0z'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}

/* =====================================================
   POURQUOI NOUS — Stitch exact
   ===================================================== */
.pq-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.pq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pq-it {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: all .25s;
}
.pq-it:hover { box-shadow: var(--shadow); border-color: var(--cp); }
.pq-it__ic {
  width: 44px; height: 44px;
  background: var(--cl);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cp);
}
.pq-it__ic svg { width: 20px; height: 20px; }
.pq-it__t {
  font-size: 16px;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 4px;
}
.pq-it__tx {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.pq-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 380px;
}

/* =====================================================
   TÉMOIGNAGES — Stitch exact
   ===================================================== */
.tem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tem-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px;
  position: relative;
  transition: all .3s;
}
.tem-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.tem-card__quote {
  position: absolute;
  top: 16px; right: 20px;
  color: var(--cp);
  opacity: .1;
}
.tem-card__stars { display: flex; align-items: center; gap: 2px; margin-bottom: 6px; }
.tem-card__note { font-size: 13px; font-weight: 700; color: var(--title); margin-left: 8px; }
.tem-card__txt {
  font-size: 15px;
  color: var(--body);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.tem-card__sep {
  width: 40px; height: 3px;
  background: #8B6914;
  margin-bottom: 12px;
  border-radius: 2px;
}
.tem-card__auth {
  font-size: 14px;
  font-weight: 700;
  color: var(--title);
}

/* =====================================================
   CTA BAND — Stitch exact
   ===================================================== */
.cta-band {
  background: linear-gradient(135deg, #1a2e1c 0%, #3D5A3E 50%, #2C3E2D 100%);
  padding: 48px 40px;
}
.cta-band__in {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band__left { flex: 1; min-width: 280px; }
.cta-band__t {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}
.cta-band__tx {
  font-size: 15px;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
}
.cta-band__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #8B6914;
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: all .25s;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  white-space: nowrap;
  flex-shrink: 0;
}
.cta-band__btn:hover { background: #745811; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }
.cta-band__btn svg { width: 16px; height: 16px; }

/* =====================================================
   AVANTAGES — Stitch exact
   ===================================================== */
.av-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.av-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.av-img img { width: 100%; height: 100%; object-fit: cover; min-height: 340px; }
.av-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.av-it { display: flex; gap: 14px; align-items: flex-start; }
.av-it__ic {
  width: 42px; height: 42px;
  background: var(--cp);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.av-it__ic svg { width: 20px; height: 20px; }
.av-it__ct { flex: 1; }
.av-it__t {
  font-size: 16px;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 4px;
}
.av-it__tx {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* =====================================================
   ÉTIQUETTES (Proximité) — Stitch exact
   ===================================================== */
.etiq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.etiq {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 18px;
  transition: all .25s;
}
.etiq:hover { border-color: var(--cp); box-shadow: var(--shadow); }
.etiq__ic {
  width: 32px; height: 32px;
  background: var(--cl);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cp);
  flex-shrink: 0;
}
.etiq__ic svg { width: 16px; height: 16px; }
.etiq__ct {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.etiq__tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--cp);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.etiq__lb {
  font-size: 13px;
  font-weight: 600;
  color: var(--title);
}

/* =====================================================
   FAQ — Stitch exact
   ===================================================== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-it {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
  background: #fff;
  transition: border-color .25s;
}
.faq-it:hover { border-color: var(--cp); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--title);
  gap: 16px;
  user-select: none;
  transition: background .2s;
}
.faq-q:hover { background: var(--bg); }
.faq-chev {
  width: 20px; height: 20px;
  color: var(--muted);
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-it.open .faq-chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-it.open .faq-a { max-height: 600px; }
.faq-a__inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--body);
  line-height: 1.8;
}

/* =====================================================
   ZONE INTERVENTION — Stitch exact
   ===================================================== */
.zone-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.zone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--body);
  transition: all .25s;
}
.zone-link:hover { background: var(--cl); color: var(--cp); border-color: var(--cp); }
.zone-link svg { width: 16px; height: 16px; }

/* =====================================================
   PAS TROUVÉ — Stitch exact
   ===================================================== */
.pas-trouve {
  text-align: center;
  padding: 32px 40px;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pas-trouve p { color: var(--muted); font-size: 14px; }
.pas-trouve a { color: var(--cp); font-weight: 600; transition: color .2s; }
.pas-trouve a:hover { color: var(--cd); }
.pas-trouve svg { width: 14px; height: 14px; vertical-align: middle; }

/* =====================================================
   INFOS VILLE — Stitch exact
   ===================================================== */
.iv {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.iv__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 340px;
}
.iv__content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 24px;
}
.iv__content h2::after {
  content: '';
  display: block;
  width: 50px; height: 3px;
  background: #8B6914;
  margin-top: 12px;
  border-radius: 2px;
}
.iv table { width: 100%; border-collapse: collapse; }
.iv th, .iv td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.iv th { font-weight: 600; color: var(--title); width: 40%; background: var(--bg); }
.iv td { color: var(--body); }
.iv td a { color: var(--cp); font-weight: 500; }
.iv td a:hover { color: var(--cd); }
.iv tr:last-child th, .iv tr:last-child td { border-bottom: none; }

/* =====================================================
   FOOTER DARK — Stitch exact
   ===================================================== */
.footer-dark {
  background: #1e293b;
  color: #94a3b8;
  padding: 56px 0 0;
}
.footer-dark__in {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-dark__brand p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-dark h4 {
  font-size: 14px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.footer-dark ul { list-style: none; }
.footer-dark ul li { margin-bottom: 8px; }
.footer-dark ul li a { font-size: 13px; color: #94a3b8; transition: color .2s; }
.footer-dark ul li a:hover { color: #fff; }
.footer-dark__copy {
  border-top: 1px solid #334155;
  margin-top: 40px;
  padding: 20px 40px;
  text-align: center;
  font-size: 12px;
  color: #64748b;
}
.footer-mentions { margin-top: 4px; font-size: 11px; }
.footer-legal { margin-top: 8px; font-size: 12px; }
.footer-legal a { color: #94a3b8; transition: color .2s; }
.footer-legal a:hover { color: #fff; }
.footer-legal__sep { margin: 0 8px; color: #475569; }
.footer-dark__brand .footer-brand-logo {
  display: block;
  margin-bottom: 12px;
}
.footer-dark__brand .footer-brand-logo svg { height: 30px; width: auto; }

/* =====================================================
   PAGES LÉGALES
   ===================================================== */
.legal-page {
  padding: 120px 0 60px;
  background: var(--white);
}
.legal-page h1 {
  font-size: 2rem;
  color: var(--title);
  margin-bottom: 8px;
}
.legal-page .legal-updated {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
}
.legal-page h2 {
  font-size: 1.2rem;
  color: var(--title);
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal-page p {
  margin-bottom: 12px;
  line-height: 1.8;
}
.legal-page ul {
  margin: 0 0 16px 24px;
  line-height: 1.8;
}
.legal-page ul li { margin-bottom: 4px; }
.legal-page a {
  color: var(--cp);
  text-decoration: underline;
}
.legal-page a:hover { color: var(--cc); }

/* =====================================================
   CTA FIN — Stitch exact
   ===================================================== */
.cta-fin {
  padding: 80px 40px;
  text-align: center;
  background: linear-gradient(135deg, #1a2e1c 0%, #3D5A3E 50%, #2C3E2D 100%);
  position: relative;
  overflow: hidden;
}
.cta-fin::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,.06) 0%, transparent 60%);
}
.cta-fin__in {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.cta-fin__t {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.cta-fin__tx {
  font-size: 16px;
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
  line-height: 1.7;
}
.cta-fin__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: #8B6914;
  color: #fff;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  transition: all .25s;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.cta-fin__btn:hover { background: #745811; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.25); }
.cta-fin__btn svg { width: 16px; height: 16px; }

/* =====================================================
   VILLES GRID (homepage, dept, galerie)
   ===================================================== */
.villes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.ville-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--title);
  transition: all .25s;
}
.ville-link:hover { border-color: var(--cp); box-shadow: var(--shadow); color: var(--cp); }
.ville-link svg { width: 16px; height: 16px; color: var(--cp); }

/* =====================================================
   DÉPARTEMENTS GRID (homepage)
   ===================================================== */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.dept-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--body);
  transition: all .25s;
}
.dept-link:hover { border-color: var(--cp); background: var(--cl); color: var(--cp); }
.dept-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  padding: 2px 6px;
  background: var(--cl);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--cp);
}

/* =====================================================
   DÉPARTEMENTS VOISINS
   ===================================================== */
.dept-voisins {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.dept-voisin-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--title);
  transition: all .25s;
}
.dept-voisin-link:hover { border-color: var(--cp); box-shadow: var(--shadow); color: var(--cp); }
.dept-voisin-link svg { width: 16px; height: 16px; color: var(--cp); }

/* =====================================================
   TAGS CLOUD (toutes villes d'un dept)
   ===================================================== */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.zone-tag {
  display: inline-block;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  color: var(--body);
  transition: all .2s;
}
.zone-tag:hover { border-color: var(--cp); color: var(--cp); background: var(--cl); }

/* =====================================================
   GALERIE (3 images — homepage, dept)
   ===================================================== */
.galerie-bloc .container { padding-top: 70px; padding-bottom: 70px; }
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.galerie-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  transition: all .3s;
}
.galerie-item:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.galerie-item img { width: 100%; height: 240px; object-fit: cover; }
.galerie-caption {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--title);
  background: #fff;
}

/* =====================================================
   GALERIE PAGE (galerie.php)
   ===================================================== */
.galerie-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.galerie-page-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  transition: all .3s;
}
.galerie-page-item:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.galerie-page-item img { width: 100%; height: 280px; object-fit: cover; }
.galerie-page-caption { padding: 20px; }
.galerie-page-caption h3 { font-size: 16px; font-weight: 700; color: var(--title); margin-bottom: 6px; }
.galerie-page-caption p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* =====================================================
   HELPERS
   ===================================================== */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }

/* =====================================================
   RESPONSIVE — 1024px
   ===================================================== */
@media (max-width: 1024px) {
  .hero__in { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px; }
  .hero__form { max-width: 480px; }
  .presta-grid { grid-template-columns: repeat(2, 1fr); }
  .pq-wrap, .av-wrap, .iv { grid-template-columns: 1fr; }
  .footer-dark__in { grid-template-columns: 1fr 1fr; }
  .cta-band__in { flex-direction: column; text-align: center; }
  .cta-band__left { text-align: center; }
  .villes-grid { grid-template-columns: repeat(3, 1fr); }
  .dept-grid { grid-template-columns: repeat(3, 1fr); }
  .galerie-page-grid { grid-template-columns: repeat(2, 1fr); }

  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
    gap: 0;
  }
  .nav-links.open a {
    color: var(--body);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open a:last-child { border-bottom: none; }
}

/* =====================================================
   GUIDE LOCAL (NOUVEAU BLOC)
   ===================================================== */
.guide-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.guide-block {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--cc);
  border-radius: var(--radius);
  padding: 28px 32px;
  transition: box-shadow .25s, transform .25s;
}
.guide-block:hover { box-shadow: var(--shadow); transform: translateX(2px); }
.guide-block__t {
  font-size: 18px;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 12px;
  line-height: 1.3;
}
.guide-block p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.8;
}

/* =====================================================
   PRIX TABLEAU (NOUVEAU BLOC)
   ===================================================== */
.prix-table-wrap {
  max-width: 1000px;
  margin: 0 auto 40px;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.prix-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.prix-table thead {
  background: var(--cp);
  color: #fff;
}
.prix-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.prix-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.prix-table tbody tr:last-child { border-bottom: none; }
.prix-table tbody tr:hover { background: var(--cl); }
.prix-table td {
  padding: 16px 20px;
  vertical-align: middle;
}
.prix-essence {
  font-weight: 700;
  color: var(--title);
  font-size: 15px;
  white-space: nowrap;
}
.prix-valeur {
  font-weight: 700;
  color: var(--cc);
  font-size: 15px;
  white-space: nowrap;
}
.prix-avantage {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.prix-facteurs {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 32px;
  border: 1px solid var(--border);
}
.prix-facteurs__t {
  font-size: 17px;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 16px;
}
.prix-facteurs ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prix-facteurs ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--body);
  line-height: 1.7;
}
.prix-facteurs ul li svg {
  width: 18px;
  height: 18px;
  color: var(--cp);
  flex-shrink: 0;
  margin-top: 3px;
}

/* =====================================================
   POURQUOI LE BOIS (NOUVEAU BLOC)
   ===================================================== */
.pourquoi-bois-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pourquoi-bois-it {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all .3s;
}
.pourquoi-bois-it:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: var(--cp);
}
.pourquoi-bois-it__ic {
  width: 48px;
  height: 48px;
  background: var(--cl);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cp);
  margin-bottom: 18px;
}
.pourquoi-bois-it__ic svg { width: 22px; height: 22px; }
.pourquoi-bois-it__t {
  font-size: 17px;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 10px;
  line-height: 1.3;
}
.pourquoi-bois-it__tx {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* =====================================================
   RESPONSIVE — 768px
   ===================================================== */
@media (max-width: 768px) {
  .hero { min-height: auto; }
  .hero__in {
    padding: 40px 20px;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero__title { font-size: 30px; }
  .hero__sub { font-size: 15px; }
  /* FIX MOBILE : le formulaire VUD doit être VISIBLE sur mobile */
  .hero__form {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 24px 20px;
    border-radius: var(--radius);
    box-shadow: 0 12px 32px rgba(0,0,0,.22);
    overflow: visible;
    min-height: auto;
  }
  .hero__form-title { font-size: 18px; }
  .hero__form-sub { font-size: 12px; margin-bottom: 16px; }
  #v1cd9434b70d {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    overflow: visible;
  }
  #v1cd9434b70d iframe,
  #v1cd9434b70d form,
  #v1cd9434b70d > div {
    width: 100% !important;
    max-width: 100% !important;
  }
  .hero__btns { flex-direction: column; align-items: stretch; }
  .hero__btn { justify-content: center; width: 100%; }
  .hero__badges { flex-direction: column; gap: 8px; }
  .trust__in { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 0 20px; }
  .presta-grid, .tem-grid, .galerie-grid, .pourquoi-bois-grid { grid-template-columns: 1fr; }
  .sec { padding: 48px 20px; }
  .sec__title { font-size: 26px; }
  .cta-band { padding: 36px 20px; }
  .cta-band__t { font-size: 20px; }
  .cta-fin { padding: 56px 20px; }
  .cta-fin__t { font-size: 26px; }
  .iv { padding: 48px 20px; gap: 24px; }
  .footer-dark__in { grid-template-columns: 1fr; gap: 32px; padding: 0 20px; }
  .footer-dark__copy { padding: 16px 20px; }
  .villes-grid { grid-template-columns: repeat(2, 1fr); }
  .dept-grid { grid-template-columns: repeat(2, 1fr); }
  .galerie-page-grid { grid-template-columns: 1fr; }
  .container, .bc__in { padding: 0 20px; }
  .dept-hero .hero__btns { align-items: center; }
  /* Guide local */
  .guide-block { padding: 22px 20px; }
  .guide-block__t { font-size: 16px; }
  .guide-block p { font-size: 14px; }
  /* Prix table — scroll horizontal sur mobile si besoin */
  .prix-table-wrap { overflow-x: auto; border-radius: var(--radius); }
  .prix-table { min-width: 520px; }
  .prix-table thead th,
  .prix-table td { padding: 12px 14px; font-size: 13px; }
  .prix-facteurs { padding: 20px; }
  .prix-facteurs__t { font-size: 15px; }
}

/* =====================================================
   RESPONSIVE — 1024px : pourquoi-bois en 2 colonnes
   ===================================================== */
@media (max-width: 1024px) and (min-width: 769px) {
  .pourquoi-bois-grid { grid-template-columns: repeat(2, 1fr); }
}
