/* ====================================================
   L'Ancrage — Feuille de style
   Palette : blanc cassé + terre + ocre + vert lichen + anthracite
   Typographies : Fraunces (titres) + Inter (corps)
   ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT@9..144,300..600,0..100&family=Inter:wght@300..600&display=swap');

:root {
  --blanc-casse: #FAF6F0;
  --terre-claire: #E8DDD0;
  --terre-medium: #D4C4B0;
  --ocre: #B6874B;
  --ocre-fonce: #8F6A3A;
  --terre-brulee: #A0522D;
  --vert-lichen: #6B7355;
  --vert-lichen-fonce: #4E5540;
  --anthracite: #2B2823;
  --gris-chaud: #6B6560;
  --gris-clair: #A8A29B;

  --font-titre: 'Fraunces', Georgia, serif;
  --font-corps: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-w: 1080px;
  --max-w-lg: 1200px;
  --gutter: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--blanc-casse);
  color: var(--anthracite);
  font-family: var(--font-corps);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--ocre-fonce); text-decoration: none; }
a:hover { color: var(--terre-brulee); }

/* ====================================================
   NAVIGATION
   ==================================================== */

.nav {
  padding: 20px var(--gutter);
  border-bottom: 1px solid var(--terre-medium);
  background: var(--blanc-casse);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: var(--max-w-lg);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo svg { height: 32px; width: auto; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  color: var(--anthracite);
  font-weight: 400;
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ocre-fonce);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ocre);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--terre-medium);
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  color: var(--anthracite);
  font-family: var(--font-corps);
  font-size: 13px;
}

/* ====================================================
   SECTIONS ET CONTENEURS
   ==================================================== */

.section {
  padding: 80px var(--gutter);
}

.section-alt { background: var(--terre-claire); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.container-narrow { max-width: 780px; margin: 0 auto; }

.section-eyebrow {
  font-family: var(--font-corps);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocre-fonce);
  margin-bottom: 12px;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-titre);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--anthracite);
  margin-bottom: 20px;
  font-variation-settings: "SOFT" 60;
}

.section-subtitle {
  font-family: var(--font-titre);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--vert-lichen-fonce);
  margin-bottom: 40px;
  max-width: 620px;
}

/* ====================================================
   HERO ACCUEIL
   ==================================================== */

.hero {
  padding: 80px var(--gutter) 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 1px;
  background: var(--ocre);
  opacity: 0.6;
}

.hero-brand {
  font-family: var(--font-titre);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 72px);
  color: var(--anthracite);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 16px;
  font-variation-settings: "SOFT" 70;
}

.hero-tagline {
  font-family: var(--font-titre);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(19px, 2.4vw, 24px);
  color: var(--vert-lichen-fonce);
  margin-bottom: 12px;
  line-height: 1.35;
}

.hero-subtitle {
  font-family: var(--font-corps);
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--gris-chaud);
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ====================================================
   BOUTONS
   ==================================================== */

.btn {
  display: inline-block;
  font-family: var(--font-corps);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 13px 26px;
  border-radius: 100px;
  border: 1px solid var(--ocre);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.12s;
  text-align: center;
  line-height: 1;
}

.btn-primary {
  background: var(--ocre);
  color: white;
}

.btn-primary:hover {
  background: var(--ocre-fonce);
  color: white;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--ocre-fonce);
}

.btn-secondary:hover {
  background: var(--terre-claire);
  color: var(--ocre-fonce);
}

.btn-block { display: block; width: 100%; }

/* ====================================================
   BLOCS DE CONTENU
   ==================================================== */

.bloc-num {
  font-family: var(--font-corps);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocre-fonce);
  margin-bottom: 12px;
  font-weight: 500;
}

.bloc-titre {
  font-family: var(--font-titre);
  font-weight: 400;
  font-size: clamp(24px, 3.5vw, 34px);
  line-height: 1.2;
  color: var(--anthracite);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  font-variation-settings: "SOFT" 50;
}

.bloc-texte { font-size: 16px; line-height: 1.75; color: var(--anthracite); }
.bloc-texte p { margin-bottom: 16px; max-width: 680px; }
.bloc-texte strong { color: var(--terre-brulee); font-weight: 500; }

/* ====================================================
   MÉTHODE (3 étapes)
   ==================================================== */

.methode {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.methode-etape {
  background: white;
  border-radius: 14px;
  padding: 30px 26px;
  border: 1px solid var(--terre-medium);
  position: relative;
}

.methode-num {
  font-family: var(--font-titre);
  font-size: 44px;
  color: var(--ocre);
  line-height: 1;
  margin-bottom: 12px;
  font-weight: 300;
  opacity: 0.6;
}

.methode-titre {
  font-family: var(--font-titre);
  font-weight: 500;
  font-size: 20px;
  color: var(--anthracite);
  margin-bottom: 12px;
  font-variation-settings: "SOFT" 40;
}

.methode-texte {
  font-size: 14px;
  color: var(--gris-chaud);
  line-height: 1.65;
}

/* ====================================================
   AUTO-DIAGNOSTIC (formulaire interactif)
   ==================================================== */

.diagnostic {
  background: white;
  border-radius: 18px;
  padding: 40px 30px;
  border: 1px solid var(--terre-medium);
  max-width: 720px;
  margin: 0 auto;
}

.diagnostic-header { text-align: center; margin-bottom: 30px; }

.diagnostic-titre {
  font-family: var(--font-titre);
  font-weight: 500;
  font-size: 24px;
  color: var(--anthracite);
  margin-bottom: 8px;
  font-variation-settings: "SOFT" 50;
}

.diagnostic-sous {
  font-size: 14px;
  color: var(--gris-chaud);
  max-width: 520px;
  margin: 0 auto;
}

.diagnostic-question { margin-bottom: 22px; }

.diagnostic-question label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--anthracite);
  margin-bottom: 8px;
}

.diagnostic-question .aide {
  font-size: 12px;
  color: var(--gris-chaud);
  margin-bottom: 8px;
  font-style: italic;
}

.diagnostic-input,
.diagnostic-select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--terre-medium);
  border-radius: 8px;
  font-family: var(--font-corps);
  font-size: 15px;
  color: var(--anthracite);
  background: var(--blanc-casse);
  transition: border-color 0.15s;
}

.diagnostic-input:focus,
.diagnostic-select:focus {
  outline: none;
  border-color: var(--ocre);
}

.diagnostic-radio-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.diagnostic-radio-btn {
  padding: 8px 16px;
  border: 1px solid var(--terre-medium);
  border-radius: 100px;
  background: var(--blanc-casse);
  cursor: pointer;
  font-size: 13px;
  color: var(--anthracite);
  font-family: var(--font-corps);
  transition: background 0.15s, border-color 0.15s;
}

.diagnostic-radio-btn.selected {
  background: var(--vert-lichen);
  color: white;
  border-color: var(--vert-lichen);
}

.diagnostic-radio-btn:hover:not(.selected) {
  background: var(--terre-claire);
}

.diagnostic-submit {
  width: 100%;
  padding: 14px;
  margin-top: 8px;
  background: var(--ocre);
  color: white;
  border: none;
  border-radius: 100px;
  font-family: var(--font-corps);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
}

.diagnostic-submit:hover { background: var(--ocre-fonce); }

/* Résultat du diagnostic */
.diagnostic-resultat {
  display: none;
  padding-top: 20px;
}

.diagnostic-resultat.actif { display: block; }

.score-container { text-align: center; margin-bottom: 30px; }

.score-jauge {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  position: relative;
}

.score-jauge svg { width: 100%; height: 100%; }

.score-chiffre {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-titre);
  font-size: 48px;
  color: var(--anthracite);
  font-weight: 400;
  font-variation-settings: "SOFT" 60;
}

.score-chiffre-sur {
  font-size: 16px;
  color: var(--gris-chaud);
  font-family: var(--font-corps);
  display: block;
  margin-top: -8px;
}

.score-label {
  font-family: var(--font-titre);
  font-size: 22px;
  color: var(--vert-lichen-fonce);
  font-weight: 500;
  margin-bottom: 8px;
  font-style: italic;
}

.score-msg {
  font-size: 14px;
  color: var(--gris-chaud);
  max-width: 480px;
  margin: 0 auto;
}

.priorites-titre {
  font-family: var(--font-titre);
  font-size: 20px;
  color: var(--anthracite);
  margin-bottom: 16px;
  font-weight: 500;
  text-align: center;
}

.priorite-item {
  background: var(--blanc-casse);
  border-left: 3px solid var(--ocre);
  padding: 16px 20px;
  margin-bottom: 10px;
  border-radius: 0 8px 8px 0;
}

.priorite-num {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ocre-fonce);
  font-weight: 500;
  margin-bottom: 6px;
}

.priorite-titre {
  font-family: var(--font-titre);
  font-size: 16px;
  color: var(--anthracite);
  margin-bottom: 6px;
  font-weight: 500;
}

.priorite-texte {
  font-size: 14px;
  color: var(--gris-chaud);
  line-height: 1.6;
}

.diagnostic-cta {
  text-align: center;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--terre-claire);
}

.diagnostic-cta p {
  font-size: 14px;
  color: var(--gris-chaud);
  margin-bottom: 14px;
}

/* ====================================================
   PREUVE (cas Aurélien en teaser)
   ==================================================== */

.preuve {
  background: var(--vert-lichen);
  border-radius: 18px;
  padding: 40px 34px;
  color: var(--blanc-casse);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.preuve-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terre-claire);
  margin-bottom: 12px;
  font-weight: 500;
}

.preuve-titre {
  font-family: var(--font-titre);
  font-size: 24px;
  color: white;
  margin-bottom: 16px;
  line-height: 1.25;
  font-weight: 400;
  font-variation-settings: "SOFT" 50;
}

.preuve-texte {
  font-size: 15px;
  line-height: 1.65;
  color: var(--terre-claire);
  margin-bottom: 20px;
}

.preuve-cta {
  display: inline-block;
  padding: 12px 22px;
  background: transparent;
  border: 1px solid var(--terre-claire);
  color: var(--terre-claire);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
}

.preuve-cta:hover {
  background: var(--terre-claire);
  color: var(--vert-lichen-fonce);
}

/* ====================================================
   OFFRES (tuiles)
   ==================================================== */

.offres-grille {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.offre-carte {
  background: white;
  border: 1px solid var(--terre-medium);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.offre-carte:hover {
  border-color: var(--ocre);
  transform: translateY(-2px);
}

.offre-carte.recommandee {
  border-color: var(--ocre);
  border-width: 2px;
}

.offre-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--ocre);
  color: white;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.offre-nom {
  font-family: var(--font-titre);
  font-size: 24px;
  color: var(--anthracite);
  font-weight: 500;
  margin-bottom: 8px;
  font-variation-settings: "SOFT" 50;
}

.offre-cible {
  font-size: 13px;
  color: var(--vert-lichen-fonce);
  font-style: italic;
  margin-bottom: 20px;
  min-height: 34px;
}

.offre-prix {
  font-family: var(--font-titre);
  font-size: 40px;
  color: var(--ocre);
  font-weight: 400;
  margin-bottom: 4px;
  line-height: 1;
  font-variation-settings: "SOFT" 70;
}

.offre-prix-unite {
  font-size: 13px;
  color: var(--gris-chaud);
  margin-bottom: 24px;
}

.offre-inclus {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.offre-inclus li {
  padding: 8px 0 8px 22px;
  font-size: 14px;
  color: var(--anthracite);
  position: relative;
  border-bottom: 1px solid var(--terre-claire);
  line-height: 1.5;
}

.offre-inclus li:last-child { border-bottom: none; }

.offre-inclus li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 12px;
  height: 1px;
  background: var(--ocre);
}

.offre-delai {
  font-size: 12px;
  color: var(--gris-chaud);
  padding: 12px 16px;
  background: var(--blanc-casse);
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
}

.offre-delai strong { color: var(--vert-lichen-fonce); font-weight: 500; }

/* ====================================================
   RÉALISATIONS
   ==================================================== */

.realisation-header {
  background: var(--terre-claire);
  padding: 60px var(--gutter) 80px;
  text-align: center;
}

.realisation-titre {
  font-family: var(--font-titre);
  font-size: clamp(30px, 4vw, 42px);
  color: var(--anthracite);
  margin-bottom: 12px;
  font-weight: 400;
  font-variation-settings: "SOFT" 60;
}

.realisation-sous {
  font-family: var(--font-titre);
  font-style: italic;
  font-weight: 300;
  color: var(--vert-lichen-fonce);
  font-size: 18px;
}

.realisation-corps { max-width: 820px; margin: 0 auto; padding: 60px var(--gutter); }

.realisation-diagnostic {
  background: var(--vert-lichen);
  color: white;
  padding: 30px 32px;
  border-radius: 14px;
  margin: 32px 0;
}

.realisation-diagnostic .label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terre-claire);
  margin-bottom: 10px;
  font-weight: 500;
}

.realisation-diagnostic .phrase {
  font-family: var(--font-titre);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.35;
  font-variation-settings: "SOFT" 60;
  font-style: italic;
}

.livrables-liste { list-style: none; padding: 0; margin: 24px 0; }

.livrables-liste li {
  padding: 12px 0 12px 30px;
  font-size: 15px;
  border-bottom: 1px solid var(--terre-medium);
  position: relative;
}

.livrables-liste li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 18px;
  height: 1px;
  background: var(--ocre);
}

.avant-apres {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin: 32px 0;
}

.avant-apres-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.avant-apres-photo {
  aspect-ratio: 4/3;
  background: var(--terre-medium);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--gris-chaud);
  font-family: var(--font-corps);
  font-style: italic;
}

.avant-apres-legende {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--gris-chaud);
  text-align: center;
  font-style: italic;
  margin-top: 6px;
}

/* ====================================================
   À PROPOS
   ==================================================== */

.apropos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.apropos-photo {
  order: -1;
  text-align: center;
}

.apropos-photo img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  margin: 0 auto 16px;
  border: 3px solid var(--terre-medium);
}

.apropos-nom {
  font-family: var(--font-titre);
  font-size: 20px;
  color: var(--anthracite);
  font-weight: 500;
  margin-bottom: 4px;
}

.apropos-fonction {
  font-family: var(--font-titre);
  font-size: 14px;
  color: var(--vert-lichen-fonce);
  font-style: italic;
  font-weight: 300;
}

.apropos-texte h3 {
  font-family: var(--font-titre);
  font-size: 22px;
  color: var(--anthracite);
  margin: 30px 0 14px;
  font-weight: 500;
  font-variation-settings: "SOFT" 50;
}

.apropos-texte h3:first-child { margin-top: 0; }

.apropos-texte p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--anthracite);
  margin-bottom: 14px;
}

/* ====================================================
   CONTACT
   ==================================================== */

.contact {
  background: var(--vert-lichen-fonce);
  color: var(--blanc-casse);
  padding: 60px 32px;
  border-radius: 18px;
  margin-top: 60px;
}

.contact-titre {
  font-family: var(--font-titre);
  font-size: 30px;
  color: white;
  margin-bottom: 16px;
  font-weight: 400;
  font-variation-settings: "SOFT" 60;
}

.contact-texte {
  color: var(--terre-claire);
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 1.7;
}

.contact-coords {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

.contact-coord {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--terre-claire);
}

.contact-coord-icon {
  width: 36px;
  height: 36px;
  background: rgba(232, 221, 208, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-coord-icon svg { width: 18px; height: 18px; }

.contact-coord-label {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--terre-medium);
  margin-bottom: 2px;
}

.contact-coord-valeur {
  color: white;
  font-size: 16px;
  font-weight: 400;
}

.contact-coord-valeur a { color: white; text-decoration: none; }
.contact-coord-valeur a:hover { color: var(--terre-claire); }

/* ====================================================
   AIDES PUBLIQUES (page offres)
   ==================================================== */

.aides {
  background: var(--terre-claire);
  border-radius: 16px;
  padding: 40px 32px;
  margin: 40px 0;
}

.aides-titre {
  font-family: var(--font-titre);
  font-size: 22px;
  color: var(--anthracite);
  margin-bottom: 16px;
  font-weight: 500;
  font-variation-settings: "SOFT" 50;
}

.aides-liste {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.aides-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 15px;
}

.aides-item::before {
  content: '·';
  color: var(--ocre);
  font-size: 24px;
  line-height: 1;
}

.aides-note {
  font-size: 14px;
  color: var(--vert-lichen-fonce);
  font-style: italic;
  padding-top: 16px;
  border-top: 1px solid var(--terre-medium);
}

/* ====================================================
   FAQ
   ==================================================== */

.faq-item {
  border-bottom: 1px solid var(--terre-medium);
  padding: 20px 0;
}

.faq-question {
  font-family: var(--font-titre);
  font-size: 17px;
  color: var(--anthracite);
  margin-bottom: 10px;
  font-weight: 500;
}

.faq-reponse {
  font-size: 15px;
  color: var(--gris-chaud);
  line-height: 1.65;
}

/* ====================================================
   FOOTER
   ==================================================== */

.footer {
  background: var(--anthracite);
  color: var(--terre-medium);
  padding: 40px var(--gutter) 30px;
  text-align: center;
}

.footer-inner {
  max-width: var(--max-w-lg);
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-titre);
  font-size: 20px;
  color: white;
  margin-bottom: 6px;
  font-weight: 400;
  font-variation-settings: "SOFT" 50;
}

.footer-baseline {
  font-family: var(--font-titre);
  font-style: italic;
  font-size: 14px;
  color: var(--terre-medium);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  list-style: none;
}

.footer-links a {
  color: var(--terre-medium);
  font-size: 13px;
}

.footer-links a:hover { color: white; }

.footer-mentions {
  font-size: 12px;
  color: var(--gris-clair);
  padding-top: 20px;
  border-top: 1px solid rgba(212, 196, 176, 0.15);
}

/* ====================================================
   ILLUSTRATIONS DÉCORATIVES
   ==================================================== */

.illus-hero {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
}

.illus-hero-left { left: -60px; }
.illus-hero-right { right: -60px; }

.hero > * { position: relative; z-index: 1; }

/* ====================================================
   RESPONSIVE
   ==================================================== */

@media (min-width: 768px) {
  .section { padding: 100px var(--gutter); }
  .preuve { grid-template-columns: 1fr 2fr; padding: 50px 44px; }
  .contact-coords { grid-template-columns: repeat(3, 1fr); }
  .apropos { grid-template-columns: 260px 1fr; gap: 60px; }
  .apropos-photo { order: 0; }
  .apropos-photo img { width: 220px; height: 220px; }
  .aides-liste { grid-template-columns: repeat(2, 1fr); }
  .avant-apres { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  :root { --gutter: 20px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-links.mobile-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--blanc-casse);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--terre-medium);
  }
  .section { padding: 60px var(--gutter); }
  .hero { padding: 60px var(--gutter) 80px; }
  .diagnostic { padding: 30px 22px; }
  .offre-carte { padding: 28px 24px; }
  .illus-hero { display: none; }
}
