/* ============================================
   monjardiniersuisse.ch — Paysagiste Suisse romande
   Design system : vert nuit + laiton/or
   ============================================ */

:root {
  /* Couleurs */
  --vert-nuit: #0F1A14;
  --vert-profond: #1C2B22;
  --vert-carte: #233429;
  --or: #C9A14A;
  --or-clair: #D9B968;
  --creme: #F5F2EA;
  --creme-pure: #FBFAF5;
  --sauge: #7A8B7F;
  --sauge-clair: #A6B3A9;
  --texte: #2A332D;
  --texte-doux: #5A655D;
  --bordure: #E2DDD0;
  --bordure-sombre: #2F4034;

  /* Typo */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, system-ui, sans-serif;

  /* Layout */
  --max: 1200px;
  --max-etroit: 820px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  /* Ombres */
  --ombre: 0 1px 3px rgba(15,26,20,.06), 0 8px 24px rgba(15,26,20,.05);
  --ombre-forte: 0 4px 12px rgba(15,26,20,.1), 0 20px 48px rgba(15,26,20,.08);

  /* Transitions */
  --t: .3s cubic-bezier(.22,.61,.36,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--texte);
  background: var(--creme-pure);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

/* Typographie ------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--vert-nuit);
}

h1 { font-size: clamp(2.9rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.3rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.7rem); }

p { color: var(--texte-doux); }

.serif { font-family: var(--serif); }

/* Conteneurs -------------------------------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.wrap-etroit { max-width: var(--max-etroit); margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* Eyebrow + titres de section --------------- */
.eyebrow {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--or);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--or);
}

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head p { font-size: 1.1rem; margin-top: 16px; }

/* Boutons ----------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .98rem;
  padding: 15px 28px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--t);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.btn-or {
  background: var(--or);
  color: var(--vert-nuit);
}
.btn-or:hover { background: var(--or-clair); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,161,74,.3); }

.btn-fonce {
  background: var(--vert-nuit);
  color: var(--creme);
}
.btn-fonce:hover { background: var(--vert-profond); transform: translateY(-2px); }

.btn-ligne {
  background: transparent;
  color: var(--vert-nuit);
  border-color: var(--bordure);
}
.btn-ligne:hover { border-color: var(--vert-nuit); background: var(--vert-nuit); color: var(--creme); }

.btn-ligne-claire {
  background: transparent;
  color: var(--creme);
  border-color: rgba(245,242,234,.3);
}
.btn-ligne-claire:hover { border-color: var(--or); color: var(--or); }

/* ============================================
   TOPBAR + HEADER
   ============================================ */
.topbar {
  background: var(--vert-nuit);
  color: var(--sauge-clair);
  font-size: .85rem;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 42px;
  gap: 20px;
}
.topbar-info { display: flex; gap: 24px; align-items: center; }
.topbar-info span { display: inline-flex; align-items: center; gap: 8px; }
.topbar-info svg { width: 15px; height: 15px; color: var(--or); }
.topbar-tel {
  color: var(--creme);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar-tel svg { width: 15px; height: 15px; color: var(--or); }
.topbar-tel:hover { color: var(--or); }

header.site {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,250,245,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bordure);
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--vert-nuit);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo svg { width: 26px; height: 26px; color: var(--or); }
.logo span { color: var(--or); }

nav.main ul {
  display: flex;
  list-style: none;
  gap: 34px;
  align-items: center;
}
nav.main a {
  font-size: .96rem;
  font-weight: 500;
  color: var(--texte);
  position: relative;
  padding: 4px 0;
  transition: var(--t);
}
nav.main a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--or);
  transition: var(--t);
}
nav.main a:hover, nav.main a.actif { color: var(--vert-nuit); }
nav.main a:hover::after, nav.main a.actif::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; }

/* Bloc CTA + coordonnées visible uniquement dans le menu mobile */
.nav-mobile-extra { display: none; }

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
}
.burger span {
  width: 24px; height: 2px;
  background: var(--vert-nuit);
  border-radius: 2px;
  transition: var(--t);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HÉRO
   ============================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--creme);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, rgba(15,26,20,.92) 0%, rgba(15,26,20,.78) 45%, rgba(15,26,20,.55) 100%);
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero h1 { color: var(--creme); margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--or-clair); }
.hero-lead {
  font-size: 1.18rem;
  color: var(--sauge-clair);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-bottom: 8px;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .98rem;
  color: var(--creme);
}
.hero-points svg { width: 20px; height: 20px; color: var(--or); flex-shrink: 0; }

/* Formulaire de capture */
.form-capture {
  background: var(--creme-pure);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--ombre-forte);
  color: var(--texte);
}
.form-capture h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.form-capture .sous { font-size: .92rem; color: var(--texte-doux); margin-bottom: 22px; }
.champ { margin-bottom: 14px; }
.champ label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--texte);
}
.champ input, .champ select, .champ textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--bordure);
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: .96rem;
  color: var(--texte);
  background: #fff;
  transition: var(--t);
}
.champ input:focus, .champ select:focus, .champ textarea:focus {
  outline: none;
  border-color: var(--or);
  box-shadow: 0 0 0 3px rgba(201,161,74,.15);
}
.champ textarea { resize: vertical; min-height: 90px; }
.form-capture .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: .78rem; color: var(--texte-doux); text-align: center; margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.form-note svg { width: 14px; height: 14px; color: var(--or); }

/* ============================================
   BANDEAU CONFIANCE
   ============================================ */
.confiance {
  background: var(--vert-profond);
  padding: 40px 0;
}
.confiance .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat { text-align: center; color: var(--creme); }
.stat .num {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--or-clair);
  line-height: 1;
  margin-bottom: 8px;
}
.stat .lbl { font-size: .9rem; color: var(--sauge-clair); }

/* ============================================
   CARTES SERVICES
   ============================================ */
.grille-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.carte-service {
  display: block;
  text-decoration: none;
  color: var(--texte);
  background: var(--creme-pure);
  border: 1px solid var(--bordure);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: var(--t);
}
.carte-service h3 { color: var(--vert-nuit); }
.carte-service:hover {
  transform: translateY(-4px);
  box-shadow: var(--ombre-forte);
  border-color: var(--or);
}
.carte-ico {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--vert-nuit);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.carte-ico svg { width: 26px; height: 26px; color: var(--or); }
.carte-service h3 { margin-bottom: 10px; }
.carte-service p { font-size: .96rem; }
.carte-lien {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--vert-nuit);
}
.carte-lien svg { width: 16px; height: 16px; transition: var(--t); }
.carte-service:hover .carte-lien svg { transform: translateX(4px); color: var(--or); }

.center-btn { text-align: center; margin-top: 48px; }

/* ============================================
   BESOINS (situations clients)
   ============================================ */
.besoins { background: var(--creme); }
.grille-besoins {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.carte-besoin {
  background: var(--creme-pure);
  border: 1px solid var(--bordure);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--t);
}
.carte-besoin:hover { box-shadow: var(--ombre); border-color: var(--sauge-clair); }
.carte-besoin .ico {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(201,161,74,.12);
  display: flex; align-items: center; justify-content: center;
}
.carte-besoin .ico svg { width: 24px; height: 24px; color: var(--or); }
.carte-besoin h3 { font-size: 1.2rem; margin-bottom: 6px; }
.carte-besoin p { font-size: .94rem; }

/* ============================================
   POURQUOI NOUS
   ============================================ */
.pourquoi { background: var(--vert-nuit); color: var(--creme); }
.pourquoi .eyebrow { color: var(--or-clair); }
.pourquoi h2 { color: var(--creme); }
.pourquoi .section-head p:not(.eyebrow) { color: var(--sauge-clair); }
.grille-pourquoi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.carte-pourquoi {
  padding: 30px;
  border: 1px solid var(--bordure-sombre);
  border-radius: var(--radius);
  background: var(--vert-profond);
  transition: var(--t);
}
.carte-pourquoi:hover { border-color: var(--or); transform: translateY(-4px); }
.carte-pourquoi .ico {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(201,161,74,.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.carte-pourquoi .ico svg { width: 24px; height: 24px; color: var(--or-clair); }
.carte-pourquoi h3 { color: var(--creme); font-size: 1.2rem; margin-bottom: 10px; }
.carte-pourquoi p { color: var(--sauge-clair); font-size: .95rem; }

/* ============================================
   ÉTAPES
   ============================================ */
.grille-etapes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: etape;
}
.etape { position: relative; padding-top: 16px; }
.etape .num {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--vert-nuit);
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--or);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  background: var(--creme-pure);
}
.etape h3 { font-size: 1.15rem; margin-bottom: 8px; }
.etape p { font-size: .93rem; }
.grille-etapes .etape:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 39px; left: 60px; right: -12px;
  height: 1px;
  background: var(--bordure);
}

/* ============================================
   TÉMOIGNAGES
   ============================================ */
.temoignages { background: var(--creme); }
.grille-temoignages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.carte-temoignage {
  background: var(--creme-pure);
  border: 1px solid var(--bordure);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.etoiles { display: flex; gap: 3px; margin-bottom: 18px; }
.etoiles svg { width: 18px; height: 18px; color: var(--or); fill: var(--or); }
.carte-temoignage blockquote {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--texte);
  font-style: italic;
  margin-bottom: 22px;
  flex-grow: 1;
}
.temoin-auteur { display: flex; align-items: center; gap: 13px; }
.temoin-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--vert-nuit);
  color: var(--or);
  font-family: var(--serif);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.temoin-nom { font-weight: 600; font-size: .95rem; color: var(--texte); }
.temoin-ville { font-size: .85rem; color: var(--texte-doux); }

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  background: var(--vert-nuit);
  color: var(--creme);
  position: relative;
  overflow: hidden;
}
.cta-final::after {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,161,74,.12) 0%, transparent 70%);
}
.cta-final .wrap { position: relative; z-index: 1; text-align: center; }
.cta-final h2 { color: var(--creme); margin-bottom: 18px; }
.cta-final p { color: var(--sauge-clair); font-size: 1.15rem; max-width: 560px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--or-clair);
}
.cta-tel svg { width: 24px; height: 24px; }

/* ============================================
   FOOTER
   ============================================ */
footer.site {
  background: #0A130E;
  color: var(--sauge-clair);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
footer.site .logo { color: var(--creme); margin-bottom: 18px; }
.footer-desc { font-size: .92rem; max-width: 300px; margin-bottom: 20px; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: .93rem; transition: var(--t); }
.footer-col a:hover { color: var(--or); }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; font-size: .93rem; }
.footer-contact svg { width: 17px; height: 17px; color: var(--or); flex-shrink: 0; margin-top: 3px; }
.footer-bas {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .85rem;
}

/* ============================================
   PAGE — bandeau titre
   ============================================ */
.page-tete {
  background: var(--vert-nuit);
  color: var(--creme);
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 0;
  position: relative;
  overflow: hidden;
}
.page-tete::after {
  content: '';
  position: absolute;
  bottom: -60%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,161,74,.1) 0%, transparent 70%);
}
.page-tete .wrap { position: relative; z-index: 2; width: 100%; }
.page-tete h1 { color: var(--creme); margin-bottom: 16px; }
.page-tete p { color: var(--sauge-clair); font-size: 1.15rem; max-width: 620px; }
.fil { font-size: .85rem; color: var(--sauge); margin-bottom: 22px; display: flex; gap: 8px; align-items: center; }
.fil a:hover { color: var(--or); }
.fil svg { width: 14px; height: 14px; }

/* ============================================
   SERVICES — page détail
   ============================================ */
.service-detail {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 38px 0;
  border-bottom: 1px solid var(--bordure);
  align-items: start;
}
.service-detail:last-child { border-bottom: none; }
.service-detail .ico {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--vert-nuit);
  display: flex; align-items: center; justify-content: center;
}
.service-detail .ico svg { width: 28px; height: 28px; color: var(--or); }
.service-detail h3 { font-size: 1.5rem; margin-bottom: 12px; }
.service-detail p { margin-bottom: 14px; }
.service-detail .tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.service-detail .tag {
  font-size: .85rem;
  padding: 7px 15px;
  background: var(--creme);
  border: 1px solid var(--bordure);
  border-radius: 100px;
  color: var(--texte-doux);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.service-detail .tag svg { width: 14px; height: 14px; color: var(--or); }

/* ============================================
   VILLES
   ============================================ */
.villes-bloc { margin-bottom: 56px; }
.villes-bloc h2 { margin-bottom: 8px; }
.villes-bloc > p { margin-bottom: 28px; }
.grille-villes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ville-pill {
  background: var(--creme-pure);
  border: 1px solid var(--bordure);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: .96rem;
  text-decoration: none;
  color: var(--texte);
  transition: var(--t);
}
.ville-pill:hover { border-color: var(--or); background: var(--creme); transform: translateY(-2px); }
.ville-pill:focus-visible { outline: 2px solid var(--or); outline-offset: 2px; }
.ville-pill svg { width: 18px; height: 18px; color: var(--or); flex-shrink: 0; }
.ville-pill.principale { border-left: 3px solid var(--or); }

/* ============================================
   À PROPOS
   ============================================ */
.apropos-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.apropos-intro img { border-radius: var(--radius-lg); box-shadow: var(--ombre); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.apropos-intro h2 { margin-bottom: 20px; }
.apropos-intro p { margin-bottom: 16px; font-size: 1.05rem; }
.valeurs { background: var(--creme); }
.grille-valeurs { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.carte-valeur {
  background: var(--creme-pure);
  border: 1px solid var(--bordure);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.carte-valeur .ico {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--vert-nuit);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.carte-valeur .ico svg { width: 26px; height: 26px; color: var(--or); }
.carte-valeur h3 { margin-bottom: 10px; }
.carte-valeur p { font-size: .95rem; }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-infos h2 { margin-bottom: 16px; }
.contact-infos > p { margin-bottom: 32px; font-size: 1.05rem; }
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--bordure);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-item .ico {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--vert-nuit);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item .ico svg { width: 22px; height: 22px; color: var(--or); }
.contact-item .lbl { font-size: .82rem; color: var(--texte-doux); margin-bottom: 3px; }
.contact-item .val { font-weight: 600; font-size: 1.05rem; color: var(--texte); }
.contact-item a.val:hover { color: var(--or); }
.form-contact {
  background: var(--creme-pure);
  border: 1px solid var(--bordure);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--ombre);
}
.form-contact h3 { font-size: 1.5rem; margin-bottom: 8px; }
.form-contact > p { font-size: .95rem; margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-contact .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ============================================
   FAQ
   ============================================ */
.faq-liste { max-width: var(--max); margin: 0 auto; }
.faq-item {
  border: 1px solid var(--bordure);
  border-radius: var(--radius);
  margin-bottom: 14px;
  background: var(--creme-pure);
  overflow: hidden;
  transition: var(--t);
}
.faq-item.ouvert { border-color: var(--or); box-shadow: var(--ombre); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 28px;
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--vert-nuit);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-q .chevron {
  flex-shrink: 0;
  width: 24px; height: 24px;
  transition: var(--t);
  color: var(--or);
}
.faq-item.ouvert .chevron { transform: rotate(180deg); }
.faq-r {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-r-inner { padding: 0 28px 26px; }
.faq-r p { font-size: 1rem; line-height: 1.7; }
.faq-r p + p { margin-top: 14px; }

/* ============================================
   SÉLECTEUR PRESTATION — menu déroulant custom
   ============================================ */
.select-maison { position: relative; }
.select-maison.ouvert { z-index: 200; }
.select-maison .sm-btn {
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  border: 1px solid var(--bordure);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  font-family: var(--sans);
  font-size: .96rem;
  color: var(--texte);
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  text-align: left;
  transition: var(--t);
}
.select-maison .sm-btn:hover { border-color: var(--sauge-clair); }
.select-maison.ouvert .sm-btn { border-color: var(--or); box-shadow: 0 0 0 3px rgba(201,161,74,.15); }
.select-maison .sm-val { color: var(--texte-doux); }
.select-maison .sm-val.choisi { color: var(--texte); }
.select-maison .sm-chevron { width: 18px; height: 18px; color: var(--or); flex-shrink: 0; transition: transform .25s; }
.select-maison.ouvert .sm-chevron { transform: rotate(180deg); }
.select-maison .sm-liste {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: #fff;
  border: 1.5px solid var(--or);
  border-radius: var(--radius-sm);
  box-shadow: 0 0 0 3px rgba(201,161,74,.12), var(--ombre-forte);
  z-index: 200;
  max-height: 320px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.select-maison.ouvert .sm-liste { display: block; }
.select-maison .sm-option {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  font-size: .94rem;
  color: var(--texte);
  cursor: pointer;
  border-bottom: 1px solid var(--creme);
  transition: background .15s;
}
.select-maison .sm-option:last-child { border-bottom: none; }
.select-maison .sm-option:hover { background: var(--creme); }
.select-maison .sm-option svg { width: 18px; height: 18px; color: var(--or); flex-shrink: 0; }
.select-maison .sm-groupe {
  position: sticky;
  top: 0;
  padding: 11px 15px 6px;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--or);
  background: var(--creme);
  border-bottom: 1px solid var(--bordure);
  z-index: 1;
}
.select-maison .sm-groupe:not(:first-child) { border-top: 1px solid var(--bordure); }

/* ============================================
   SÉLECTEUR PRESTATION — pastilles
   ============================================ */
.pastilles { display: flex; flex-wrap: wrap; gap: 9px; }
.pastille-groupe {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--or);
  margin: 22px 0 12px;
}
.pastille-groupe:first-of-type { margin-top: 4px; }
.pastilles + .pastille-groupe { margin-top: 22px; }
.pastille {
  cursor: pointer;
  font-family: var(--sans);
  font-size: .88rem;
  padding: 9px 16px;
  border-radius: 100px;
  border: 1px solid var(--bordure);
  color: var(--texte);
  background: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--t);
}
.pastille svg { width: 16px; height: 16px; color: var(--or); flex-shrink: 0; transition: var(--t); }
.pastille:hover { border-color: var(--sauge-clair); }
.pastille.active {
  background: var(--vert-nuit);
  color: var(--or-clair);
  border-color: var(--vert-nuit);
}
.pastille.active svg { color: var(--or-clair); }

/* ============================================
   ZONES DESSERVIES — filtres & blocs cantons
   ============================================ */
.zones-intro { font-size: 1.1rem; margin-top: 16px; margin-bottom: 32px; max-width: 720px; }

.canton-filtres {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 52px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--bordure);
}
.canton-filtre {
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 100px;
  border: 1px solid var(--bordure);
  color: var(--texte);
  background: var(--creme-pure);
  transition: var(--t);
}
.canton-filtre:hover {
  background: var(--vert-nuit);
  color: var(--or-clair);
  border-color: var(--vert-nuit);
}

.canton-bloc { margin-bottom: 48px; scroll-margin-top: 100px; }
.canton-titre {
  margin-bottom: 22px;
}
.ville-pill .chef-tag {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--or);
  background: rgba(201,161,74,.12);
  padding: 3px 9px;
  border-radius: 100px;
  margin-left: auto;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .grille-services, .grille-pourquoi, .grille-temoignages, .grille-valeurs { grid-template-columns: repeat(2, 1fr); }
  .grille-etapes { grid-template-columns: repeat(2, 1fr); }
  .grille-etapes .etape::before { display: none; }
  .grille-villes { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; justify-items: center; }
  .hero-texte { width: 100%; }
  .form-capture { max-width: 480px; width: 100%; margin-inline: auto; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }

  .topbar-info { display: none; }
  .topbar .wrap { justify-content: center; }

  nav.main {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(86vw, 360px);
    background: linear-gradient(165deg, var(--vert-profond) 0%, var(--vert-nuit) 55%);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 92px 28px 32px;
    transform: translateX(100%);
    transition: transform .42s cubic-bezier(.22,.61,.36,1);
    z-index: 90;
    box-shadow: -18px 0 50px rgba(0,0,0,.4);
    overflow-y: auto;
  }
  /* Liseré doré sur le bord du panneau */
  nav.main::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: linear-gradient(180deg, var(--or) 0%, transparent 70%);
  }
  nav.main.open { transform: translateX(0); }
  nav.main ul { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  nav.main li { width: 100%; }
  nav.main a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--creme);
    font-family: var(--sans);
    font-size: 1.05rem;
    font-weight: 500;
    padding: 15px 2px;
    width: 100%;
    border-bottom: 1px solid rgba(245,242,234,.09);
    transition: color .25s, padding-left .25s;
  }
  nav.main a::after { display: none; }
  /* Chevron discret au bout de chaque lien */
  nav.main ul a::after {
    content: '';
    display: inline-block;
    position: static;
    width: 7px; height: 7px;
    background: none;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    opacity: .3;
    transition: opacity .25s, transform .25s;
  }
  nav.main a:hover, nav.main a.actif { color: var(--or); padding-left: 8px; }
  nav.main ul a:hover::after, nav.main ul a.actif::after { width: 7px; opacity: .9; transform: translateX(3px) rotate(45deg); }

  /* Apparition en cascade des éléments à l'ouverture */
  nav.main li, nav.main .nav-mobile-extra {
    opacity: 0;
    transform: translateX(18px);
    transition: opacity .4s ease, transform .4s ease;
  }
  nav.main.open li, nav.main.open .nav-mobile-extra { opacity: 1; transform: translateX(0); }
  nav.main.open li:nth-child(1) { transition-delay: .07s; }
  nav.main.open li:nth-child(2) { transition-delay: .12s; }
  nav.main.open li:nth-child(3) { transition-delay: .17s; }
  nav.main.open li:nth-child(4) { transition-delay: .22s; }
  nav.main.open li:nth-child(5) { transition-delay: .27s; }
  nav.main.open li:nth-child(6) { transition-delay: .32s; }
  nav.main.open .nav-mobile-extra { transition-delay: .4s; }

  /* Bloc CTA + coordonnées dans le menu */
  .nav-mobile-extra {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: auto;
    padding-top: 28px;
  }
  nav.main a.nav-cta {
    width: 100%;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    padding: 16px 24px;
    border-bottom: none;
    box-shadow: 0 10px 26px rgba(201,161,74,.28);
  }
  nav.main a.nav-cta:hover { padding-left: 24px; }
  .nav-mobile-contact { display: flex; flex-direction: column; gap: 12px; }
  nav.main .nav-mobile-contact a, .nav-mobile-contact span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--sauge-clair);
    font-size: .88rem;
    border-bottom: none;
    padding: 2px 0;
  }
  .nav-mobile-contact svg { width: 16px; height: 16px; color: var(--or); flex-shrink: 0; }
  nav.main .nav-mobile-contact a:hover { color: var(--or); padding-left: 0; }
  .nav-mobile-contact a::after { display: none; }

  .burger { display: flex; z-index: 95; }
  .header-actions .btn-cta-header { display: none; }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,26,20,.5);
    backdrop-filter: blur(2px);
    z-index: 80;
    opacity: 0;
    visibility: hidden;
    transition: var(--t);
  }
  .nav-overlay.show { opacity: 1; visibility: visible; }

  .grille-services, .grille-besoins, .grille-pourquoi, .grille-temoignages,
  .grille-etapes, .grille-valeurs { grid-template-columns: 1fr; }
  .grille-villes { grid-template-columns: repeat(2, 1fr); }
  .confiance .wrap { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  .apropos-intro, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .apropos-intro img { order: -1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-detail { grid-template-columns: 1fr; gap: 16px; }
  .form-contact { padding: 28px; }
  .cta-tel { font-size: 1.25rem; }
}

@media (max-width: 420px) {
  .grille-villes { grid-template-columns: 1fr; }
  .form-capture { padding: 26px; }
}

/* Accessibilité */
:focus-visible { outline: 2px solid var(--or); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ============================================
   PAGE-TETE — variante avec image de fond
   ============================================ */
/* la variante image garde la même hauteur que les autres bandeaux (min-height de .page-tete) */
.page-tete .tete-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.page-tete .tete-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.5) saturate(.8); }
.page-tete.avec-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(110deg, rgba(15,26,20,.97) 0%, rgba(15,26,20,.93) 55%, rgba(15,26,20,.86) 100%);
}

/* ============================================
   PRESTATIONS — cartes cliquables (page services)
   ============================================ */
.service-detail.lien {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  padding-left: 28px;
  padding-right: 28px;
  margin-left: -28px;
  margin-right: -28px;
  border-radius: 16px;
  transition: background .2s ease, box-shadow .2s ease;
}
.service-detail.lien:hover {
  background: var(--creme);
  box-shadow: 0 10px 30px rgba(15,26,20,.06);
}
.service-detail.lien:hover h3 { color: var(--or); }
.service-detail .titre-ligne {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.service-detail .fleche {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--bordure);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s ease, border-color .2s ease;
}
.service-detail .fleche svg { width: 18px; height: 18px; color: var(--or); }
.service-detail.lien:hover .fleche { background: var(--or); border-color: var(--or); }
.service-detail.lien:hover .fleche svg { color: var(--creme); }

/* ============================================
   PRESTATION — page détail dédiée
   ============================================ */
.presta-corps { display: grid; grid-template-columns: 1.4fr .9fr; gap: 56px; align-items: start; }
.presta-corps h2 { margin: 0 0 18px; }
.presta-corps p { margin-bottom: 16px; }
.presta-corps .sous-titre { margin: 32px 0 14px; }
.presta-liste { list-style: none; margin: 0 0 8px; padding: 0; }
.presta-liste li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--bordure);
}
.presta-liste li:last-child { border-bottom: none; }
.presta-liste svg { width: 20px; height: 20px; color: var(--or); flex-shrink: 0; margin-top: 2px; }
.presta-aside {
  background: var(--vert-nuit);
  color: var(--creme);
  border-radius: 18px;
  padding: 32px 28px;
}
.presta-aside h3 { color: var(--creme); font-size: 1.35rem; margin-bottom: 10px; }
.presta-aside p { color: var(--sauge-clair); font-size: .98rem; margin-bottom: 22px; }
.presta-aside .btn { width: 100%; justify-content: center; margin-bottom: 12px; }
.presta-aside .aside-tel {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  color: var(--creme); font-weight: 600; font-size: 1.05rem;
  padding: 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 100px;
}
.presta-aside .aside-tel:hover { border-color: var(--or); color: var(--or-clair); }
.presta-aside .aside-tel svg { width: 18px; height: 18px; color: var(--or); }

/* autres prestations */
.autres-presta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.autre-carte {
  background: var(--creme);
  border: 1px solid var(--bordure);
  border-radius: 14px;
  padding: 22px 20px;
  text-decoration: none;
  color: var(--texte);
  display: flex; align-items: center; gap: 14px;
  transition: border-color .2s ease, transform .2s ease;
}
.autre-carte:hover { border-color: var(--or); transform: translateY(-3px); }
.autre-carte svg { width: 24px; height: 24px; color: var(--or); flex-shrink: 0; }
.autre-carte span { font-weight: 600; font-size: .98rem; }

@media (max-width: 860px) {
  .presta-corps { grid-template-columns: 1fr; gap: 36px; }
  .presta-aside { position: static; }
  .autres-presta { grid-template-columns: 1fr; }
}

/* Mention optionnelle dans les labels de formulaire */
.opt { font-weight: 400; color: var(--texte-doux); font-size: .88em; }

/* Case à cocher "être rappelé" */
.case-rappel {
  display: flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
  font-size: .95rem;
  color: var(--texte);
  margin-bottom: 4px;
  user-select: none;
}
.case-rappel input { position: absolute; opacity: 0; width: 0; height: 0; }
.case-rappel .case-faux {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border: 1.5px solid var(--bordure);
  border-radius: 6px;
  background: var(--creme-pure);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, border-color .15s ease;
}
.case-rappel .case-faux::after {
  content: '';
  width: 11px; height: 6px;
  border-left: 2px solid var(--creme-pure);
  border-bottom: 2px solid var(--creme-pure);
  transform: rotate(-45deg) translateY(-1px);
  opacity: 0;
  transition: opacity .15s ease;
}
.case-rappel input:checked + .case-faux {
  background: var(--or);
  border-color: var(--or);
}
.case-rappel input:checked + .case-faux::after { opacity: 1; }
.case-rappel input:focus-visible + .case-faux {
  outline: 2px solid var(--or);
  outline-offset: 2px;
}

/* Carte prestation entièrement cliquable — focus clavier */
.carte-service:focus-visible {
  outline: 2px solid var(--or);
  outline-offset: 3px;
}

/* Lien "Toutes nos prestations" en bas de liste footer */
.footer-toutes {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--or);
  font-weight: 600;
}
.footer-toutes svg { width: 15px; height: 15px; transition: transform .2s ease; }
.footer-toutes:hover { color: var(--or-clair); }
.footer-toutes:hover svg { transform: translateX(4px); }

/* ============================================
   PRESTATIONS — sections par catégorie
   ============================================ */
.section-cat { padding-top: 56px; padding-bottom: 56px; }
.section-cat + .section-cat { border-top: 1px solid var(--bordure); }
.cat-head { margin-bottom: 8px; }
.cat-head h2 { margin: 0 0 6px; }
.cat-head .cat-sous {
  font-size: 1.05rem;
  color: var(--texte-doux);
  max-width: 600px;
  margin-bottom: 8px;
}

/* ============================================
   PAGES VILLE
   ============================================ */
.ville-intro {
  display: grid;
  grid-template-columns: 1.5fr .9fr;
  gap: 48px;
  align-items: start;
}
.ville-intro h2 { margin-bottom: 16px; }
.ville-intro > div > p { margin-bottom: 16px; }
.ville-fait {
  background: var(--vert-nuit);
  color: var(--creme);
  border-radius: 18px;
  padding: 32px 28px;
  position: sticky;
  top: 24px;
}
.ville-fait-ico {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: rgba(201,161,74,.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.ville-fait-ico svg { width: 26px; height: 26px; color: var(--or); }
.ville-fait h3 { color: var(--creme); font-size: 1.5rem; margin-bottom: 2px; }
.ville-canton { color: var(--sauge-clair); font-size: .92rem; margin-bottom: 20px; }
.ville-points { list-style: none; margin: 0 0 24px; padding: 0; }
.ville-points li {
  position: relative;
  padding: 9px 0 9px 26px;
  color: var(--creme);
  font-size: .95rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.ville-points li:last-child { border-bottom: none; }
.ville-points li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 14px; height: 8px;
  border-left: 2px solid var(--or);
  border-bottom: 2px solid var(--or);
  transform: translateY(-60%) rotate(-45deg);
}
.ville-fait .btn { width: 100%; justify-content: center; }

.autres-villes-sec { padding-top: 0; }
.autres-villes {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.autre-ville {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: var(--creme-pure);
  border: 1px solid var(--bordure);
  border-radius: 12px;
  text-decoration: none;
  color: var(--texte);
  font-size: .92rem;
  font-weight: 500;
  transition: border-color .2s ease, transform .2s ease;
}
.autre-ville:hover { border-color: var(--or); transform: translateY(-2px); }
.autre-ville svg { width: 16px; height: 16px; color: var(--or); flex-shrink: 0; }

@media (max-width: 860px) {
  .ville-intro { grid-template-columns: 1fr; gap: 32px; }
  .ville-fait { position: static; }
  .autres-villes { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 861px) and (max-width: 1100px) {
  .autres-villes { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   CARTES PAR CATÉGORIE (pages ville)
   ============================================ */
.grille-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.carte-categorie {
  background: var(--creme-pure);
  border: 1px solid var(--bordure);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}
.carte-categorie .cat-ico {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: var(--vert-nuit);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.carte-categorie .cat-ico svg { width: 25px; height: 25px; color: var(--or); }
.carte-categorie h3 { font-size: 1.4rem; margin-bottom: 16px; color: var(--vert-nuit); }
.carte-categorie .liste-presta { list-style: none; margin: 0 0 18px; padding: 0; flex-grow: 1; }
.carte-categorie .liste-presta li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: .95rem;
  color: var(--texte);
  border-bottom: 1px solid var(--bordure);
}
.carte-categorie .liste-presta li:last-child { border-bottom: none; }
.carte-categorie .liste-presta svg { width: 15px; height: 15px; color: var(--or); flex-shrink: 0; }
.carte-categorie .cat-voir {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--vert-nuit);
  text-decoration: none;
  margin-top: auto;
}
.carte-categorie .cat-voir svg { width: 15px; height: 15px; transition: transform .2s ease; }
.carte-categorie .cat-voir:hover { color: var(--or); }
.carte-categorie .cat-voir:hover svg { transform: translateX(4px); }

@media (max-width: 900px) {
  .grille-categories { grid-template-columns: 1fr; }
}

/* ============================================
   À PROPOS — sections enrichies
   ============================================ */
.section-engagement .engagement-bloc { max-width: 760px; }
.section-engagement h2 { margin-bottom: 18px; }
.section-engagement p { margin-bottom: 16px; font-size: 1.05rem; }
.engagement-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  margin-top: 28px;
}
.eng-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 500;
  color: var(--texte);
}
.eng-item svg {
  width: 20px; height: 20px;
  color: var(--or);
  flex-shrink: 0;
}

.zone-apropos { padding-top: 0; }
.zone-bloc {
  background: var(--vert-nuit);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--creme);
}
.zone-ico {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(201,161,74,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.zone-ico svg { width: 30px; height: 30px; color: var(--or); }
.zone-bloc h2 { color: var(--creme); margin-bottom: 12px; }
.zone-bloc p { color: var(--sauge-clair); margin-bottom: 22px; max-width: 620px; }

@media (max-width: 768px) {
  .engagement-points { grid-template-columns: 1fr; }
  .zone-bloc { flex-direction: column; align-items: flex-start; padding: 32px 28px; gap: 22px; }
}

/* ============================================
   FAQ par catégories
   ============================================ */
.faq-cat { margin-bottom: 56px; }
.faq-cat:last-child { margin-bottom: 0; }
.faq-cat-head { margin-bottom: 24px; }
.faq-cat-head h2 {
  margin-bottom: 6px;
}
.faq-section .faq-liste { max-width: 100%; }

/* ============================================
   PAGES LÉGALES — contenu texte
   ============================================ */
.legal-section { padding: 60px 0 80px; }
.legal-contenu { max-width: var(--max-etroit); margin: 0 auto; }
.legal-contenu h2 {
  font-size: 1.7rem;
  margin: 44px 0 16px;
  padding-top: 28px;
  border-top: 1px solid var(--bordure);
}
.legal-contenu h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.legal-contenu h3 { font-size: 1.2rem; margin: 26px 0 10px; }
.legal-contenu p,
.legal-contenu li { color: var(--texte-doux); line-height: 1.75; font-size: 1rem; }
.legal-contenu p { margin-bottom: 14px; }
.legal-contenu ul { margin: 0 0 16px 22px; }
.legal-contenu li { margin-bottom: 8px; }
.legal-contenu a { color: var(--or); text-decoration: underline; }
.legal-contenu a:hover { color: var(--texte); }
.legal-contenu strong { color: var(--texte); font-weight: 600; }
.legal-maj { font-size: .9rem; color: var(--sauge); margin-bottom: 36px; }
.legal-encart {
  background: var(--creme);
  border: 1px solid var(--bordure);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  margin: 8px 0 24px;
}
.legal-encart p { margin-bottom: 6px; }

/* Liens légaux dans le pied de page */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 4px;
}
.footer-legal a { color: var(--sauge-clair); font-size: .85rem; transition: var(--t); }
.footer-legal a:hover { color: var(--or); }

/* ============================================
   EYEBROW — label doré insulé
   Garantit la taille (.8rem) et les marges (0 0 18px) de tout <p class="eyebrow">,
   quel que soit le conteneur. Spécificité (0,2,1) : bat ".section-head p",
   ".apropos-intro p", ".section-engagement p", ".contact-infos > p",
   ".ville-intro > div > p" et tout futur "bloc p" (≤ 0,1,2), SANS toucher
   les vrais paragraphes de contenu, ni la couleur (exception .pourquoi .eyebrow),
   ni le tiret ::before.
   ============================================ */
.wrap p.eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
