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

:root {
  --vert:      #2D6A4F;
  --vert-m:    #40916C;
  --vert-l:    #74C69D;
  --vert-xl:   #D8F3DC;
  --vert-bg:   #F6FBF8;
  --bleu:      #1B6CA8;
  --bleu-l:    #4DA3D5;
  --bleu-bg:   #EEF6FC;
  --ardoise:   #2C3E50;
  --texte:     #1A2733;
  --muted:     #637283;
  --border:    #E4EBF0;
  --blanc:     #FFFFFF;
  --fond:      #FFFFFF;
}

html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--blanc);
  color: var(--texte);
  line-height: 1.6;
  overflow-x: clip;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  height: 68px;
}
.logo { display: flex; align-items: center; gap: 11px; }
.logo-mark {
  width: 38px; height: 38px;
  background: var(--vert);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 20px; height: 20px; fill: white; }
.logo-name {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  color: var(--ardoise);
  font-weight: 700;
  letter-spacing: -0.3px;
}
.logo-tagline {
  font-size: 11px; color: var(--muted);
  display: block; letter-spacing: 0.3px; margin-top: 1px;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--vert); }
.nav-cta {
  background: var(--vert) !important;
  color: white !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 13.5px !important;
  letter-spacing: 0.2px !important;
  transition: background .2s, transform .1s !important;
}
.nav-cta:hover { background: var(--vert-m) !important; }

/* HERO */
.hero {
  background: var(--fond);
  padding: 140px 6% 100px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0; width: 100%;
  background: url('Projects_Medias_11/img-electricien.jpg') center center / cover no-repeat;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}
.hero-left { position: relative; z-index: 1; }
.hero-right { position: relative; z-index: 1; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--vert-bg);
  border: 1px solid rgba(45,106,79,0.2);
  border-radius: 100px;
  padding: 7px 16px;
  margin-bottom: 28px;
  width: fit-content;
}
.hero-pill span {
  font-size: 12.5px; color: var(--vert); font-weight: 600;
  letter-spacing: 0.3px;
}
.hero-pill-dot {
  width: 7px; height: 7px;
  background: var(--vert-l); border-radius: 50%;
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5.5vw, 66px);
  font-weight: 900;
  color: var(--ardoise);
  line-height: 1.06;
  letter-spacing: -2px;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--vert); }
.hero-desc {
  font-size: 17px;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.75;
  font-weight: 400;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--vert);
  color: white;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(45,106,79,0.3);
}
.btn-primary:hover {
  background: var(--vert-m);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,106,79,0.35);
}
.btn-ghost {
  background: white;
  color: var(--ardoise);
  padding: 15px 30px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--vert-m); color: var(--vert); }
.hero-social-proof {
  margin-top: 48px;
  display: flex; align-items: center; gap: 24px;
}
.avatars {
  display: flex;
}
.avatars .av {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2.5px solid white;
  margin-left: -10px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
.avatars .av:first-child { margin-left: 0; }
.av-1 { background: #4DA3D5; color: white; }
.av-2 { background: #74C69D; color: white; }
.av-3 { background: #F4A261; color: white; }
.av-4 { background: #E76F51; color: white; }
.social-text p { font-size: 14px; font-weight: 600; color: var(--ardoise); }
.social-text span { font-size: 12px; color: var(--muted); }
.stars { color: #F4A261; font-size: 13px; letter-spacing: 2px; }

/* HERO CARD */
.hero-card {
  background: white;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07), 0 4px 16px rgba(0,0,0,0.04);
  position: relative;
  z-index: 2;
}
.hero-card-badge {
  position: absolute;
  top: -14px; right: 24px;
  background: var(--vert);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}
.hero-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 700;
  color: var(--ardoise); margin-bottom: 6px;
}
.hero-card > p {
  font-size: 14px; color: var(--muted); margin-bottom: 28px;
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.6px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-size: 15px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--texte);
  background: var(--fond);
  transition: border-color .2s, background .2s;
  appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--vert-m);
  background: white;
  box-shadow: 0 0 0 4px rgba(64,145,108,0.1);
}
.field textarea { height: 80px; resize: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-submit {
  width: 100%; padding: 14px;
  background: var(--vert); color: white; border: none;
  border-radius: 10px; font-size: 15px; font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer; margin-top: 4px;
  box-shadow: 0 4px 14px rgba(45,106,79,0.3);
  transition: background .2s, transform .1s;
}
.btn-submit:hover { background: var(--vert-m); }
.btn-submit:active { transform: scale(0.99); }
.form-note {
  text-align: left;
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: flex-start; /* ← était center */
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap; /* ← évite le débordement sur mobile */
}
.form-note svg { width: 13px; height: 13px; fill: var(--vert-l); flex-shrink: 0; margin-top: 1px; }

/* LOGOS PARTENAIRES */
.partenaires {
  padding: 40px 6%;
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partenaires-inner {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 40px;
}
.partenaires-label {
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--muted);
  white-space: nowrap;
}
.partner-logo {
  font-size: 15px; font-weight: 700; color: #B0BEC5;
  letter-spacing: 0.5px; text-transform: uppercase;
}

/* MÉTIERS */
.metiers {
  padding: 96px 6%;
  background: var(--fond);
}
.section-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--vert);
  margin-bottom: 12px; display: block;
}
.section-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900; color: var(--ardoise);
  letter-spacing: -1.2px; line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px; color: var(--muted);
  max-width: 540px; line-height: 1.7; margin-bottom: 52px;
}
.metiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px;
}
.metier-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: all .25s;
}
.metier-card:hover {
  border-color: var(--vert-m);
  box-shadow: 0 8px 28px rgba(45,106,79,0.1);
  transform: translateY(-4px);
}
.metier-icon {
  width: 52px; height: 52px;
  background: var(--vert-bg);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
}
.metier-card h3 { font-size: 14px; font-weight: 700; color: var(--ardoise); margin-bottom: 6px; }
.metier-card p { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* GARANTIES */
.garanties {
  padding: 96px 6%;
  background: white;
}
.garanties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.garantie-card {
  background: var(--fond);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.garantie-card:hover {
  border-color: var(--vert-m);
  background: var(--vert-bg);
}
.garantie-top {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px;
}
.garantie-icon {
  width: 44px; height: 44px;
  background: var(--vert-bg);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.garantie-card:hover .garantie-icon { background: rgba(255,255,255,0.8); }
.garantie-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; color: var(--vert);
  background: var(--vert-xl);
  padding: 4px 10px; border-radius: 100px;
}
.garantie-card h3 { font-size: 16px; font-weight: 700; color: var(--ardoise); margin-bottom: 10px; }
.garantie-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* CHIFFRES */
.chiffres {
  padding: 80px 6%;
  background: var(--vert);
}
.chiffres-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.chiffre-item {
  background: rgba(255,255,255,0.08);
  padding: 44px 32px;
  text-align: center;
  transition: background .2s;
}
.chiffre-item:first-child { border-radius: 12px 0 0 12px; }
.chiffre-item:last-child { border-radius: 0 12px 12px 0; }
.chiffre-item:hover { background: rgba(255,255,255,0.14); }
.chiffre-item strong {
  font-family: 'Fraunces', serif;
  font-size: 52px; font-weight: 900;
  color: white; display: block; line-height: 1;
  letter-spacing: -2px; margin-bottom: 8px;
}
.chiffre-item span { font-size: 14px; color: rgba(255,255,255,0.65); font-weight: 400; }

/* PROCESSUS */
.processus {
  padding: 96px 6%;
  background: var(--fond);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 52px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(12.5% + 28px); right: calc(12.5% + 28px);
  height: 2px;
  background: var(--vert-xl);
  z-index: 0;
}
.step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 20px; position: relative; z-index: 1;
}
.step-num {
  width: 56px; height: 56px;
  background: white;
  border: 2px solid var(--vert-l);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 900; color: var(--vert);
  margin-bottom: 20px;
  position: relative;
}
.step.active .step-num {
  background: var(--vert);
  border-color: var(--vert);
  color: white;
  box-shadow: 0 4px 16px rgba(45,106,79,0.3);
}
.step h4 { font-size: 15px; font-weight: 700; color: var(--ardoise); margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* TEMOIGNAGES */
.temoignages {
  padding: 96px 6%;
  background: white;
}
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.temoignage-card {
  background: var(--fond);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: box-shadow .2s;
}
.temoignage-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.06); }
.temoignage-stars { color: #F4A261; font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.temoignage-card p { font-size: 15px; color: var(--texte); line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.temoignage-author { display: flex; align-items: center; gap: 12px; }
.author-av {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: white;
  flex-shrink: 0;
}
.author-av.v1 { background: var(--vert); }
.author-av.v2 { background: var(--bleu); }
.author-av.v3 { background: #F4A261; }
.author-info strong { display: block; font-size: 14px; font-weight: 700; color: var(--ardoise); }
.author-info span { font-size: 12px; color: var(--muted); }

/* CONTACT */
.contact {
  padding: 96px 6%;
  background: var(--fond);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start;
}
.contact-left h2 {
  font-family: 'Fraunces', serif;
  font-size: 40px; font-weight: 900; color: var(--ardoise);
  letter-spacing: -1.2px; line-height: 1.1; margin-bottom: 16px;
}
.contact-left > p { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 40px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px;
}
.contact-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--vert-bg);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
}
.contact-item-icon svg { width: 20px; height: 20px; fill: var(--vert); }
.contact-item h4 { font-size: 13px; font-weight: 700; color: var(--muted); letter-spacing: 0.3px; text-transform: uppercase; margin-bottom: 3px; }
.contact-item p, .contact-item a { font-size: 15px; color: var(--ardoise); text-decoration: none; font-weight: 500; }
.contact-item a:hover { color: var(--vert); }

.contact-form {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
}
.contact-form h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px; font-weight: 700; color: var(--ardoise); margin-bottom: 6px;
}
.contact-form > p { font-size: 14px; color: var(--muted); margin-bottom: 28px; }

/* FOOTER */
footer {
  background: var(--ardoise);
  padding: 64px 6% 36px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
}
.footer-brand .logo-name { color: white; }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.4); }
.footer-brand p {
  font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.7; margin-top: 14px; max-width: 280px;
}
.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--vert-l); margin-bottom: 18px;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 14px; margin-bottom: 10px; transition: color .2s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 13px; margin-left: 20px; }

@media (max-width: 1100px) {
  .hero, .contact-grid, .footer-top { grid-template-columns: 1fr; }
  .chiffres-grid { grid-template-columns: 1fr 1fr; }
  .steps, .temoignages-grid { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .nav-links { display: none; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .montage-wrap { height: 340px !important; }
  .montage-photo-back { width: 72%; height: 300px; }
  .montage-photo-front { width: 58%; height: 240px; }
}
@media (max-width: 600px) {
  .hero { padding: 100px 5% 60px; }
  .hero-card { padding: 28px 20px; }
  .chiffres-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .temoignages-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .montage-wrap { height: 260px !important; }
  .montage-photo-back { width: 80%; height: 230px; top: 20px; }
  .montage-photo-front { width: 60%; height: 190px; }
  .terrain { grid-template-columns: 1fr; }
  .terrain-content { padding: 40px 5%; }
  .contact-form { padding: 32px 20px; }
  .parallax-strip { height: 260px; }
  .field-row { grid-template-columns: 1fr; }
  .chiffre-item:first-child { border-radius: 12px 12px 0 0; }
  .chiffre-item:last-child { border-radius: 0 0 12px 12px; }
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  width: 40px; height: 40px; cursor: pointer;
  background: none; border: none; padding: 4px; gap: 5px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ardoise); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 1100px) { .hamburger { display: flex; } }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0; z-index: 99;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 16px 6% 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--ardoise); text-decoration: none;
  font-size: 16px; font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-menu a:last-child { border-bottom: none; margin-top: 8px; }
.mobile-menu a:hover { color: var(--vert); }
.mobile-menu .m-cta {
  background: var(--vert); color: white !important;
  text-align: center; border-radius: 10px; padding: 14px;
  font-weight: 700; border-bottom: none;
}

/* FLOAT TEL */
.float-tel {
  position: fixed; right: 0; top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  display: flex; align-items: center;
  cursor: pointer; text-decoration: none;
}
.float-tel-icon {
  width: 52px; height: 52px;
  background: var(--vert);
  border-radius: 12px 0 0 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: -4px 0 20px rgba(45,106,79,0.3);
  flex-shrink: 0;
  transition: background .2s, border-radius .3s;
}
.float-tel-icon svg { width: 22px; height: 22px; fill: white; }
.float-tel-label {
  background: var(--vert); color: white;
  height: 52px;
  display: flex; flex-direction: column; justify-content: center;
  border-radius: 12px 0 0 12px;
  white-space: nowrap;
  max-width: 0; overflow: hidden;
  transition: max-width .35s cubic-bezier(.4,0,.2,1), padding .3s;
  padding-left: 0; padding-right: 0;
}
.float-tel.expanded .float-tel-label,
.float-tel:hover .float-tel-label {
  max-width: 220px;
  padding-left: 16px; padding-right: 20px;
}
.float-tel.expanded .float-tel-icon,
.float-tel:hover .float-tel-icon { background: var(--vert-m); border-radius: 0; }
.float-tel-label strong { font-size: 15px; font-weight: 700; line-height: 1.2; }
.float-tel-label span { font-size: 11px; opacity: 0.75; margin-top: 2px; }

/* BACK TO TOP */
.back-top {
  position: fixed; right: 0; bottom: 90px; z-index: 200;
  width: 44px; height: 44px;
  background: white;
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: 10px 0 0 10px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; text-decoration: none;
  box-shadow: -2px 0 12px rgba(0,0,0,0.07);
  opacity: 0; pointer-events: none;
  transition: opacity .3s, background .2s;
}
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { background: var(--vert-bg); }
.back-top svg { width: 18px; height: 18px; fill: none; stroke: var(--vert); stroke-width: 2.5; }

/* PARALLAX STRIP */
.parallax-strip {
  height: 400px;
  background: url('Projects_Medias_11/img-chantier.jpg') center 30% / cover no-repeat;
  background-attachment: fixed;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.parallax-strip::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(45,106,79,0.7) 0%, rgba(13,33,55,0.6) 100%);
}
.parallax-content {
  position: relative; z-index: 1;
  text-align: center; padding: 0 6%;
}
.parallax-content h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900; color: white;
  letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 20px;
}
.parallax-content p {
  font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto;
}
.parallax-cta {
  background: var(--or, #C8952A); color: white;
  padding: 15px 36px; border-radius: 10px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  display: inline-block;
  transition: opacity .2s;
}
.parallax-cta:hover { opacity: 0.9; }
@media (max-width: 768px) {
  .parallax-strip { background-attachment: scroll; height: 320px; }
}

/* TERRAIN SECTION */
.terrain {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.terrain-img {
  background: url('Projects_Medias_11/img-carreleur.jpg') center center / cover no-repeat;
  min-height: 340px;
}
.terrain-content {
  background: var(--ardoise);
  padding: 72px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.terrain-content .section-eyebrow { color: var(--vert-l); }
.terrain-content .section-h2 { color: white; font-size: clamp(26px, 3vw, 40px); }
.terrain-content .section-sub { color: rgba(255,255,255,0.6); margin-bottom: 0; }
.terrain-list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.terrain-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: rgba(255,255,255,0.8);
}
.terrain-list li::before {
  content: '';
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px;
  background: var(--vert);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px; background-repeat: no-repeat; background-position: center;
}
.terrain-cta {
  margin-top: 36px;
  background: var(--vert); color: white;
  padding: 14px 28px; border-radius: 10px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  display: inline-block; width: fit-content;
  transition: background .2s;
}
.terrain-cta:hover { background: var(--vert-m); }
@media (max-width: 960px) {
  .terrain { grid-template-columns: 1fr; }
  .terrain-content { padding: 48px 6%; }
}
/* MONTAGE PHOTOS */
.montage-section {
  padding: 80px 6%;
  background: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.montage-wrap {
  position: relative;
  height: 400px;
}
.montage-photo-back {
  position: absolute;
  left: 0; top: 40px;
  width: 68%; height: 310px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.13);
  border: 5px solid var(--vert-m);
}
.montage-photo-front {
  position: absolute;
  right: 0; top: 0;
  width: 55%; height: 260px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
  border: 5px solid white;
}
.montage-photo-back img,
.montage-photo-front img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.montage-line {
  position: absolute;
  bottom: 10px; left: 16px;
  width: 140px; height: 5px;
  background: var(--vert);
  border-radius: 3px;
}
.montage-line::before {
  content: '';
  position: absolute;
  left: 160px; top: 0;
  width: 60px; height: 5px;
  background: var(--vert-l);
  border-radius: 3px;
  opacity: 0.4;
}
.montage-text .section-eyebrow { display: block; }
.montage-text .section-h2 { margin-bottom: 16px; }
.montage-text .section-sub { margin-bottom: 32px; }
.montage-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.montage-badge {
  background: var(--vert-bg);
  border: 1px solid rgba(45,106,79,0.2);
  color: var(--vert);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}
@media (max-width: 1100px) {
  .montage-section { grid-template-columns: 1fr; }
  .montage-wrap { height: 340px; margin-bottom: 20px; }
}





/* ═══════════════════════════════════════════
   COOKIE GOOCLE CONSENT + GA
   ═══════════════════════════════════════════ */

/* ===== LNC CMP (simple, propre) ===== */
  #lnc-cmp-banner, #lnc-cmp-modal-backdrop { font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
  #lnc-cmp-banner {
    position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 99999;
    background: #0D1526; color: #fff; border-radius: 14px; padding: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
    display: none;
  }
  #lnc-cmp-banner .lnc-cmp-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: space-between; }
  #lnc-cmp-banner .lnc-cmp-text { max-width: 900px; line-height: 1.35; font-size: 14px; opacity: .95; }
  #lnc-cmp-banner a { color: #fff; text-decoration: underline; }
  .lnc-cmp-actions { display: flex; gap: 10px; flex-wrap: wrap; }
  .lnc-cmp-btn {
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.08);
    color: #fff;
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
  }
  .lnc-cmp-btn:hover { background: rgba(255,255,255,.14); }
  .lnc-cmp-btn-primary { background: var(--yellow); color: #fff; border-color: var(--yellow); }
  .lnc-cmp-btn-primary:hover { background: var(--yellow2); }
  .lnc-cmp-btn-danger { background: transparent; }

  /* Modal */
  #lnc-cmp-modal-backdrop {
    position: fixed; inset: 0; background: rgba(0,0,0,.55);
    z-index: 99998; display: none; align-items: center; justify-content: center;
    padding: 16px;
  }
  #lnc-cmp-modal {
    width: min(680px, 100%); background: #fff; color: #111; border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,.35);
    padding: 18px;
  }
  #lnc-cmp-modal h3 { margin: 0 0 8px; font-size: 18px; }
  #lnc-cmp-modal p { margin: 0 0 14px; font-size: 14px; color: #333; line-height: 1.35; }
  .lnc-cmp-item {
    display: flex; gap: 12px; align-items: flex-start; justify-content: space-between;
    padding: 12px; border: 1px solid #eee; border-radius: 12px; margin-bottom: 10px;
  }
  .lnc-cmp-item b { display: block; margin-bottom: 4px; }
  .lnc-cmp-item small { color: #555; display: block; line-height: 1.25; }
  .lnc-cmp-switch { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
  .lnc-cmp-switch input { transform: scale(1.2); }
  .lnc-cmp-footer { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; margin-top: 12px; }

  /* Floating reopen button */
  #lnc-cmp-fab {
    position: fixed; left: 4px; bottom: 230px; z-index: 99997;
    background: #0D1526; color: #fff; border: 1px solid rgba(74,158,255,.25);
    padding: 10px 12px; border-radius: 999px; cursor: pointer; display: none;
    box-shadow: 0 8px 22px rgba(0,0,0,.25);
    font-size: 13px;
  }



/* ═══════════════════════════════════════════
   PAGES LÉGALES — À coller à la fin de style.css
   Préfixe .legal- pour isoler ces styles
   Impact : ml.php / rgpd.php / cgu.php uniquement
   ═══════════════════════════════════════════ */

/* HERO BANNER */
.legal-hero {
  background: var(--ardoise, #2C3E50);
  padding: 110px 6% 56px;
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,.015) 40px, rgba(255,255,255,.015) 41px);
  pointer-events: none;
}
.legal-hero-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
  background: none; padding: 0;
}

.legal-h1 {
color: #FFFFFF;
}

.legal-hero-breadcrumb a {
  color: var(--vert-l, #74C69D);
  text-decoration: none;
}
.legal-hero-breadcrumb a:hover { text-decoration: underline; }
.legal-hero-title {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: white;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 10px;
}
.legal-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,.55);
}
.legal-hero-bar {
  width: 60px; height: 4px;
  background: var(--vert, #2D6A4F);
  border-radius: 2px;
  margin-top: 24px;
}

/* CONTENEUR PRINCIPAL */
.legal-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 2% 96px;
}

/* TITRES D'ARTICLES */
.legal-h4 {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ardoise, #2C3E50);
  margin: 36px 0 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border, #E4EBF0);
}
.legal-h4:first-of-type {
  border-top: none; margin-top: 0; padding-top: 0;
}

/* TEXTE */
.legal-p {
  font-size: 15px;
  color: var(--muted, #637283);
  margin-bottom: 14px;
  line-height: 1.75;
}
.legal-p strong { color: var(--ardoise, #2C3E50); font-weight: 700; }
.legal-p a { color: var(--vert, #2D6A4F); text-decoration: none; }
.legal-p a:hover { text-decoration: underline; }

/* LISTE */
.legal-ul { margin: 0 0 16px 20px; }
.legal-ul li {
  font-size: 15px;
  color: var(--muted, #637283);
  margin-bottom: 6px;
  line-height: 1.65;
}
.legal-ul a { color: var(--vert, #2D6A4F); text-decoration: none; }
.legal-ul a:hover { text-decoration: underline; }

/* SÉPARATEUR */
.legal-hr {
  border: none;
  border-top: 1px solid var(--border, #E4EBF0);
  margin: 24px 0;
}

/* TABLE DES MATIÈRES */
.legal-toc {
  background: var(--vert-bg, #F6FBF8);
  border: 1.5px solid rgba(45,106,79,.15);
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 52px;
}
.legal-toc-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--vert, #2D6A4F);
  margin-bottom: 16px;
  display: block;
}
.legal-toc ol { margin-left: 20px; }
.legal-toc ol li { font-size: 14px; color: var(--ardoise, #2C3E50); margin-bottom: 7px; }
.legal-toc ol li a { color: var(--ardoise, #2C3E50); text-decoration: none; font-weight: 500; }
.legal-toc ol li a:hover { color: var(--vert, #2D6A4F); }

/* MENTIONS LÉGALES — 3 CARTES */
.legal-ml-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.legal-ml-card {
  background: white;
  border: 1.5px solid var(--border, #E4EBF0);
  border-radius: 16px;
  padding: 32px;
  transition: border-color .2s, box-shadow .2s;
}
.legal-ml-card:hover {
  border-color: var(--vert-m, #40916C);
  box-shadow: 0 8px 28px rgba(45,106,79,.08);
}
.legal-ml-card-title {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ardoise, #2C3E50);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--vert-xl, #D8F3DC);
}
.legal-ml-card ul { list-style: none; padding: 0; margin: 0; }
.legal-ml-card ul li {
  font-size: 14px;
  color: var(--muted, #637283);
  margin-bottom: 9px;
  line-height: 1.5;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.legal-ml-card ul li::before {
  content: '·';
  color: var(--vert, #2D6A4F);
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1;
}
.legal-ml-card ul a { color: var(--vert, #2D6A4F); text-decoration: none; word-break: break-all; }
.legal-ml-card ul a:hover { text-decoration: underline; }

/* RESPONSIVE */
@media (max-width: 1100px) { .legal-ml-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .legal-ml-grid { grid-template-columns: 1fr; }
  .legal-wrap { padding: 40px 5% 72px; }
  .legal-toc { padding: 20px; }
  .legal-hero { padding: 90px 5% 44px; }
}



/* ═══════════════════════════════════════════
   PAGES SEO — À coller à la fin de style.css
   Préfixe seo- pour isoler ces styles
   Impact : template_seo.php uniquement
   ═══════════════════════════════════════════ */

/* ── HERO ── */
.seo-hero {
  position: relative;
  min-height: 420px;
  display: flex; align-items: center;
  padding: 120px 6% 72px;
  overflow: hidden;
  background: var(--ardoise, #2C3E50);
}
.seo-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: .18;
  z-index: 0;
}
.seo-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(44,62,80,.55) 0%, rgba(27,61,46,.40) 100%);
  z-index: 1;
}
.seo-hero__content {
  position: relative; z-index: 2;
  max-width: 780px;
}
.seo-hero__breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
}
.seo-hero__breadcrumb a {
  color: var(--vert-l, #74C69D);
  text-decoration: none;
}
.seo-hero__breadcrumb a:hover { text-decoration: underline; }
.seo-hero__h1 {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: clamp(26px, 3.8vw, 50px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.5px;
  margin-bottom: 20px;
}
.seo-hero__intro {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 640px;
}
.seo-hero__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--vert, #2D6A4F);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700; font-size: 15px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 16px rgba(45,106,79,.35);
}
.seo-hero__cta:hover { background: var(--vert-m, #40916C); transform: translateY(-2px); }
.seo-hero__bar {
  width: 56px; height: 4px;
  background: var(--vert-l, #74C69D);
  border-radius: 2px;
  margin-top: 36px;
  opacity: .7;
}

/* ── ARTICLE WRAPPER ── */
.seo-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 3% 96px;
}

/* ── TEXTE ARTICLE ── */
.seo-article h2 {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  color: var(--ardoise, #2C3E50);
  margin: 52px 0 16px;
  padding-top: 16px;
  border-top: 2px solid var(--vert-xl, #D8F3DC);
  line-height: 1.2;
}
.seo-article h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.seo-article h3 {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: var(--vert, #2D6A4F);
  margin: 32px 0 12px;
}
.seo-article p {
  font-size: 15.5px;
  color: var(--muted, #637283);
  line-height: 1.8;
  margin-bottom: 16px;
}
.seo-article strong { color: var(--ardoise, #2C3E50); font-weight: 700; }
.seo-article a { color: var(--vert, #2D6A4F); text-decoration: underline; }
.seo-article a:hover { color: var(--vert-m, #40916C); }
.seo-article ul {
  margin: 0 0 18px 22px;
}
.seo-article ul li {
  font-size: 15.5px;
  color: var(--muted, #637283);
  margin-bottom: 8px;
  line-height: 1.7;
}
.seo-article em {
  font-size: 13px;
  color: #9aabb8;
  font-style: italic;
  display: block;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border, #E4EBF0);
  line-height: 1.6;
}

/* ── IMAGE SPLIT (texte + image côte à côte) ── */
.seo-split {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 52px;
  align-items: start; /* important pour que sticky fonctionne */
  margin: 52px 0;
}
.seo-split--reverse { grid-template-columns: 420px 1fr; }
.seo-split--reverse .seo-split__img { order: -1; }
.seo-split__img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  /* Sticky : l'image reste visible pendant que le texte défile */
  position: sticky;
  top: 88px; /* hauteur nav (68px) + 20px d'air */
}
.seo-split__img img {
  width: 100%;
  height: auto;        /* portrait ou paysage : hauteur naturelle */
  display: block;
  object-fit: cover;
}
.seo-split__text h2 { margin-top: 0 !important; }

/* ── IMAGE FULL WIDTH ── */
.seo-img-full {
  margin: 48px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  max-height: 420px;
}
.seo-img-full img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ── FAQ ── */
.seo-faq {
  background: var(--vert-bg, #F6FBF8);
  border-radius: 16px;
  padding: 40px;
  margin: 60px 0;
}
.seo-faq__title {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--ardoise, #2C3E50);
  margin-bottom: 28px;
}
.seo-faq__item {
  border-top: 1px solid rgba(45,106,79,.15);
  padding: 20px 0;
}
.seo-faq__item:first-of-type { border-top: none; padding-top: 0; }
.seo-faq__q {
  font-weight: 700;
  font-size: 15px;
  color: var(--ardoise, #2C3E50);
  margin-bottom: 10px;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
}
.seo-faq__q::after {
  content: '+';
  color: var(--vert, #2D6A4F);
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform .2s;
}
.seo-faq__item.open .seo-faq__q::after { transform: rotate(45deg); }
.seo-faq__a {
  font-size: 15px;
  color: var(--muted, #637283);
  line-height: 1.75;
  display: none;
}
.seo-faq__item.open .seo-faq__a { display: block; }

/* ── LIENS INTERNES ── */
.seo-links {
  background: var(--ardoise, #2C3E50);
  border-radius: 16px;
  padding: 36px 40px;
  margin: 48px 0 0;
}
.seo-links__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--vert-l, #74C69D);
  margin-bottom: 18px;
}
.seo-links__list {
  display: flex; flex-wrap: wrap; gap: 12px;
  list-style: none; margin: 0; padding: 0;
}
.seo-links__list a {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.8);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.12);
  transition: background .2s, color .2s;
}
.seo-links__list a:hover { background: rgba(255,255,255,.14); color: #fff; }

/* ── CTA FINAL ── */
.seo-cta-block {
  background: var(--vert, #2D6A4F);
  border-radius: 16px;
  padding: 48px 44px;
  margin: 48px 0;
  text-align: center;
}
.seo-cta-block p {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
}
.seo-cta-block a {
  display: inline-flex; align-items: center; gap: 8px;
  background: white;
  color: var(--vert, #2D6A4F);
  padding: 16px 36px;
  border-radius: 10px;
  font-weight: 700; font-size: 15px;
  text-decoration: none;
  transition: opacity .2s;
}
.seo-cta-block a:hover { opacity: .9; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .seo-split { grid-template-columns: 1fr; }
  .seo-split--reverse .seo-split__img { order: 0; }
  .seo-split__img {
    position: static; /* pas de sticky sur mobile */
    max-height: 360px;
    overflow: hidden;
  }
  .seo-split__img img { height: 100%; object-fit: cover; }
}
@media (max-width: 600px) {
  .seo-hero { padding: 100px 5% 56px; min-height: 360px; }
  .seo-wrap { padding: 48px 5% 72px; }
  .seo-faq { padding: 24px 20px; }
  .seo-links { padding: 24px 20px; }
  .seo-cta-block { padding: 32px 20px; }
}
