/* =============================================================================
   MK — Socle CSS
   Charte reprise du logo existant : bleu marine #113F62, sable #BDA487.
   Un seul fichier pour les deux sites ; MK Immobilier bascule ses accents
   via la classe .site-immo posée sur <body>.
   ========================================================================== */

:root {
  --marine:        #113F62;
  --marine-fonce:  #0C2E48;
  --sable:         #BDA487;
  --sable-fonce:   #A98D6C;
  --sable-clair:   #E8DDCF;
  --creme:         #F7F4F0;
  --creme-chaud:   #F7F1E9;
  --encre:         #16232E;
  --gris:          #5E6E7B;
  --gris-clair:    #8FA6B8;
  --gris-pale:     #C9D6E0;
  --bord:          #E4DED6;
  --bord-clair:    #E9E4DD;
  --blanc:         #FFFFFF;

  --titre: 'Barlow Condensed', 'Arial Narrow', 'Segoe UI', system-ui, sans-serif;
  --voile: .37;   /* voile sombre sur photo, valeur maison */
  --texte: 'Barlow', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --largeur: 1440px;
  --gouttiere: 20px;
}

@media (min-width: 900px) {
  :root { --gouttiere: 72px; }
}

/* ---------------------------------------------------------------- Base --- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--texte);
  font-size: 16px;
  line-height: 1.6;
  color: var(--encre);
  background: var(--blanc);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--titre); margin: 0; letter-spacing: -.015em; }
p  { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; height: auto; display: block; }

a { color: var(--marine); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--sable-fonce); }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--sable);
  outline-offset: 2px;
}

.conteneur {
  width: 100%;
  max-width: var(--largeur);
  margin: 0 auto;
  padding-inline: var(--gouttiere);
}

.saut { position: absolute; left: -9999px; }
.saut:focus {
  left: 0; top: 0; z-index: 100;
  padding: 14px 20px; background: var(--marine); color: var(--blanc);
}

/* Donnée manquante, à récupérer auprès du client */
/* Version de relecture uniquement. Le rouge est volontairement desagreable :
   il doit sauter aux yeux sur une capture d'ecran comme sur un telephone,
   et rendre impossible de confondre cette version avec le site publiable. */
.a-fournir {
  background: #FFE3E3;
  color: #A8071A;
  box-shadow: inset 0 -2px 0 #E03131;
  padding: 0 .2em;
  font-style: normal;
  font-weight: 600;
}
.a-fournir::before {
  content: "INFO À DONNER";
  display: inline-block;
  margin-right: .5em;
  padding: .12em .5em;
  font-size: .72em;
  font-weight: 700;
  letter-spacing: .06em;
  vertical-align: .08em;
  color: #fff;
  background: #E03131;
  border-radius: 2px;
}
.sur-sombre .a-fournir,
.bloc-sombre .a-fournir {
  background: #FFC9C9;
  color: #A8071A;
  box-shadow: inset 0 -2px 0 #E03131;
}

/* Le bandeau de la version de travail. Fixe, il suit le defilement : on ne
   peut pas faire defiler jusqu'a l'oublier. */
.bandeau-travail {
  position: sticky; top: 0; z-index: 300;
  display: flex; gap: 14px; align-items: center; justify-content: center;
  flex-wrap: wrap;
  padding: 9px 16px;
  background: #E03131; color: #fff;
  font-size: 13px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  text-align: center;
}
.bandeau-travail span {
  font-weight: 400; text-transform: none; letter-spacing: 0; opacity: .92;
}

/* ------------------------------------------------------------- Marqueur --- */

/* Le marqueur de section porte seul.
   Il était précédé d'un petit trait sable, répété devant chaque titre de
   section : trop systématique, et c'est devenu le tic visuel des sites générés.
   Sans lui, la capitale interlettrée suffit à marquer la rupture, à condition
   de reprendre un peu de graisse et d'espace au-dessous. */
.marqueur {
  display: block;
  font-family: var(--titre);
  font-size: 13px; font-weight: 700; letter-spacing: .24em;
  text-transform: uppercase; color: var(--marine);
  margin-bottom: 10px;
}
.marqueur--clair { color: var(--sable); }

/* --------------------------------------------------------------- Titres --- */

.t-xxl { font-size: clamp(29px, 4.2vw, 50px); font-weight: 800; line-height: 1.09; text-wrap: pretty; }
.t-xl  { font-size: clamp(26px, 3.4vw, 44px); font-weight: 800; line-height: 1.1;  text-wrap: pretty; }
.t-l   { font-size: clamp(24px, 2.6vw, 34px); font-weight: 800; line-height: 1.15; text-wrap: pretty; }
.t-m   { font-size: clamp(19px, 1.6vw, 21px); font-weight: 700; line-height: 1.25; }
.t-s   { font-size: 17px; font-weight: 700; line-height: 1.3; }

.chapeau { font-size: clamp(16px, 1.4vw, 18px); line-height: 1.62; color: var(--gris); max-width: 62ch; }
.sur-sombre .chapeau { color: var(--gris-pale); }

/* --------------------------------------------------------------- Boutons -- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 28px;
  font-family: var(--titre); font-size: 15px; font-weight: 700; letter-spacing: .03em;
  border: 1.5px solid transparent; cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn--sable   { background: var(--sable);  color: var(--marine-fonce); }
.btn--sable:hover   { background: var(--sable-clair); color: var(--marine-fonce); }
.btn--marine  { background: var(--marine); color: var(--blanc); }
.btn--marine:hover  { background: var(--marine-fonce); color: var(--blanc); }
.btn--ligne   { border-color: var(--marine); color: var(--marine); }
.btn--ligne:hover   { background: var(--marine); color: var(--blanc); }
.btn--ligne-claire  { border-color: rgba(232,221,207,.45); color: var(--blanc); }
.btn--ligne-claire:hover { background: rgba(255,255,255,.1); color: var(--blanc); }
.btn--petit   { min-height: 46px; padding: 0 22px; font-size: 13px; letter-spacing: .04em; }
.btn--bloc    { width: 100%; }

/* --------------------------------------------------- Bandeau et en-tête --- */

.bandeau {
  background: var(--marine-fonce);
  font-size: 13px; font-weight: 500; color: var(--sable-clair);
}
.bandeau__in {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 8px 26px;
  min-height: 44px; padding-block: 8px;
}
.bandeau__gauche { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 26px; }
.bandeau em { font-style: normal; color: var(--sable); }
.bandeau__tel {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--titre); font-size: 14px; font-weight: 700; color: var(--blanc);
}
.bandeau__tel .ico { stroke: var(--sable); }

.entete { background: var(--blanc); border-bottom: 1px solid var(--bord-clair); }
.entete__in {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  min-height: 92px; padding-block: 14px;
}
.logo img { height: 52px; width: auto; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-family: var(--titre); font-size: 14px; font-weight: 600;
}
.nav a.est-actif { color: var(--sable-fonce); font-weight: 700; }

.burger {
  display: none;
  align-items: center; justify-content: center;
  width: 46px; height: 46px; padding: 0;
  background: var(--marine); border: none; cursor: pointer;
}
.burger .ico { stroke: var(--blanc); }

@media (max-width: 1099px) {
  .entete__in { min-height: 68px; }
  .logo img { height: 40px; }
  .burger { display: inline-flex; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; z-index: 20;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px var(--gouttiere) 20px;
    background: var(--blanc); border-bottom: 1px solid var(--bord-clair);
    box-shadow: 0 18px 30px rgba(12, 46, 72, .12);
  }
  .nav.est-ouvert { display: flex; }
  .nav a { min-height: 52px; display: flex; align-items: center; border-bottom: 1px solid var(--bord-clair); }
  .nav .btn { margin-top: 14px; border-bottom: none; }
  .entete__in { position: relative; }
}

/* ------------------------------------------------------------- Sections --- */

.section { padding-block: clamp(48px, 6vw, 88px); }
.section--serre { padding-block: clamp(40px, 4.5vw, 72px); }
.section--creme { background: var(--creme); }
.section--chaud { background: var(--creme-chaud); }
.section--marine { background: var(--marine); color: var(--blanc); }
.section--nuit   { background: var(--marine-fonce); color: var(--blanc); }
.section--marine h1, .section--marine h2, .section--nuit h2 { color: var(--blanc); }

.section__tete { display: flex; flex-direction: column; gap: 14px; }
.section__tete + .grille, .section__tete + .cartes { margin-top: clamp(28px, 3vw, 44px); }

.tete-ligne {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 24px 40px;
}

/* ---------------------------------------------------------------- Héros --- */

.heros { background: var(--marine); color: var(--blanc); }
.heros__in { display: grid; grid-template-columns: 1fr; }
.heros__texte {
  display: flex; flex-direction: column; gap: 22px;
  padding: clamp(36px, 5vw, 64px) var(--gouttiere);
  max-width: var(--largeur); margin-inline: auto; width: 100%;
}
.heros__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 4px; }

@media (min-width: 900px) {
  .heros__in { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .heros__texte {
    justify-content: center; min-height: 560px;
    padding-inline: var(--gouttiere) 40px;
    max-width: calc(var(--largeur) / 2); margin-inline: 0 0;
    margin-left: max(var(--gouttiere), calc((100vw - var(--largeur)) / 2));
  }
  .heros__media { min-height: 560px; }
}

/* Un bloc photo placé dans un héros ou un duo doit remplir toute la colonne,
   quelle que soit la hauteur passée en paramètre. */
.heros__media, .duo__media { display: grid; }
.heros__media { min-height: 240px; }
.heros__media > .photo,
.duo__media   > .photo { height: 100%; min-height: inherit; }

/* ------------------------------------------------------------ Photos ------ */

.photo {
  height: var(--h, 240px);
  display: flex; align-items: flex-end;
  background-color: var(--marine-fonce);
  background-image: repeating-linear-gradient(135deg,
    rgba(189,164,135,.14) 0 2px, transparent 2px 11px);
}
.photo--clair {
  background-color: #EFE7DC;
  background-image: repeating-linear-gradient(135deg,
    rgba(17,63,98,.10) 0 2px, transparent 2px 11px);
}
.photo--plein { height: 100%; min-height: var(--h, 240px); }
.photo__lab {
  font-family: var(--titre); font-size: 10px; font-weight: 700;
  letter-spacing: .16em; color: rgba(232,221,207,.72); padding: 14px 16px;
}
.photo--clair .photo__lab { color: rgba(17,63,98,.55); }

/* ------------------------------------------------------- Réassurance ------ */

.reassurance { background: var(--marine-fonce); }
.reassurance__in {
  display: grid; grid-template-columns: 1fr;
  max-width: var(--largeur); margin-inline: auto;
}
.reassurance__item {
  display: flex; align-items: center; gap: 14px;
  padding: 18px var(--gouttiere);
  border-bottom: 1px solid rgba(232,221,207,.16);
}
.reassurance__item .ico { stroke: var(--sable); flex-shrink: 0; }
.reassurance__item strong {
  display: block; font-family: var(--titre);
  font-size: 13.5px; font-weight: 600; color: var(--blanc); line-height: 1.35;
}
.reassurance__item span { font-size: 13.5px; color: var(--gris-clair); }

@media (min-width: 900px) {
  .reassurance__in { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .reassurance__item { padding-block: 24px; border-bottom: none; border-right: 1px solid rgba(232,221,207,.16); }
  .reassurance__item:last-child { border-right: none; }
}

/* -------------------------------------------------------------- Grilles --- */

.grille { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 700px)  { .grille--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 900px)  { .grille--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
                             .grille--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .grille--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.duo { display: grid; grid-template-columns: 1fr; }
@media (min-width: 900px) { .duo { grid-template-columns: 1fr 1fr; } }
.duo__texte {
  display: flex; flex-direction: column; justify-content: center; gap: 20px;
  padding: clamp(40px, 5vw, 78px) var(--gouttiere);
}
.duo__media { min-height: 300px; }
@media (min-width: 900px) { .duo__media { min-height: 460px; } }

/* --------------------------------------------------------------- Cartes --- */

.carte { background: var(--blanc); border: 1px solid var(--bord); display: flex; flex-direction: column; }
.carte__corps { display: flex; flex-direction: column; gap: 14px; padding: 26px 26px 30px; }
.carte__corps h3 { color: var(--marine); }
.carte__corps p { font-size: 15px; line-height: 1.62; color: var(--gris); }
.carte__liens { display: flex; flex-direction: column; gap: 8px; padding-top: 4px; }
.carte__liens a { font-size: 14.5px; font-weight: 500; min-height: 28px; display: flex; align-items: center; }

.carte--plate { border: none; }
.carte--plate .carte__corps { padding: 20px 22px 24px; gap: 8px; }

.eyebrow {
  font-family: var(--titre); font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--sable-fonce);
}
.detail { font-size: 14px; line-height: 1.55; color: var(--gris); }

/* ------------------------------------------------------- Sous-prestation -- */

.presta {
  display: flex; gap: 20px; padding: 26px 26px 30px;
  border: 1px solid var(--bord); background: var(--blanc);
}
.presta__ico {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; width: 54px; height: 54px; background: var(--creme);
}
.presta__ico .ico { stroke: var(--marine); }
.presta__txt { display: flex; flex-direction: column; gap: 9px; }
.presta__txt h3 { color: var(--marine); font-size: 19px; }
.presta__txt p { font-size: 15px; line-height: 1.6; color: var(--gris); }
.presta__txt a { font-family: var(--titre); font-size: 13.5px; font-weight: 700; margin-top: 4px; }

/* ---------------------------------------------------------------- Étapes -- */

.etape {
  display: flex; flex-direction: column; gap: 12px;
  padding: 26px 24px 30px; background: var(--blanc); border-top: 3px solid var(--marine);
}
.etape__num { font-family: var(--titre); font-size: 30px; font-weight: 800; color: var(--sable); line-height: 1; }
.etape h4 { color: var(--marine); font-size: 16.5px; font-weight: 700; }
.etape p { font-size: 14.5px; line-height: 1.55; color: var(--gris); }
.etape--creme { background: var(--creme); border-top-color: transparent; }
.etape--creme .etape__num { font-size: 34px; }
.etape--creme h4 { font-size: 20px; }
.etape--creme p { font-size: 15px; line-height: 1.62; }

/* -------------------------------------------------------------- Chiffres -- */

.chiffres { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); background: var(--marine); }
@media (min-width: 900px) { .chiffres { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.chiffre {
  display: flex; flex-direction: column; gap: 6px; padding: 26px 24px;
  border-right: 1px solid rgba(232,221,207,.16);
  border-bottom: 1px solid rgba(232,221,207,.16);
}
.chiffre__val { font-family: var(--titre); font-size: 30px; font-weight: 800; color: var(--blanc); line-height: 1; }
.chiffre__val--accent { color: var(--sable); }
/* Le libellé, et lui seul. Écrit « .chiffre span », ce sélecteur l'emportait
   sur .chiffre__val et .chiffre__val--accent, plus spécifique qu'eux : tous les
   chiffres du site sortaient en petit et en gris, accent compris. */
.chiffre span:not([class]) { font-size: 13.5px; color: #A9BECD; }

/* ------------------------------------------------------------- Communes --- */

.communes { display: grid; grid-template-columns: 1fr; gap: 0 24px; }
@media (min-width: 560px) { .communes { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.communes a {
  display: flex; align-items: center; min-height: 50px;
  font-family: var(--titre); font-size: 15px; font-weight: 600;
  border-bottom: 1px solid var(--bord-clair);
}
.communes a.est-fort { color: var(--sable-fonce); font-weight: 700; }

/* ----------------------------------------------------------------- Avis --- */

.avis-tete { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; margin-bottom: 28px; }
.etoiles { display: flex; align-items: center; gap: 5px; color: var(--sable); }
.avis-tete strong { font-family: var(--titre); font-size: 15px; font-weight: 700; }
.avis-tete em { font-style: normal; font-size: 14px; color: var(--gris); }

.avis {
  display: flex; flex-direction: column; gap: 12px;
  background: var(--blanc); border-left: 3px solid var(--sable); padding: 24px 26px;
}
.avis p { font-size: 15.5px; line-height: 1.62; }
.avis cite { font-family: var(--titre); font-size: 13px; font-weight: 700; font-style: normal; color: var(--marine); }

/* ------------------------------------------------------------------ FAQ --- */

.faq { display: flex; flex-direction: column; }
.faq__item { display: flex; flex-direction: column; gap: 8px; padding: 20px 0; border-bottom: 1px solid var(--bord-clair); }
.faq__item h4 { font-size: 16.5px; font-weight: 700; color: var(--marine); }
.faq__item p { font-size: 15px; line-height: 1.6; color: var(--gris); }

/* ----------------------------------------------------------- Fil d'Ariane - */

.fil { background: var(--creme); }
.fil__in { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; min-height: 46px; }
.fil a, .fil span { font-size: 13px; color: var(--gris); }
.fil [aria-current] { font-weight: 600; color: var(--marine); }
.fil__sep { color: #B9C2C9; }

/* ------------------------------------------------------------- Liste coche */

.liste-coche { display: flex; flex-direction: column; gap: 14px; }
.liste-coche li { display: flex; gap: 14px; align-items: flex-start; }
.liste-coche .ico { stroke: var(--sable); flex-shrink: 0; margin-top: 3px; }
.liste-coche p { font-size: 16px; line-height: 1.6; color: #3F4F5C; }
.liste-coche strong { font-weight: 600; color: var(--encre); }

/* ---------------------------------------------------------- Encart local -- */

.encart {
  display: flex; flex-direction: column; gap: 18px;
  padding: 30px 28px 34px; background: var(--creme);
  align-self: flex-start;
}
.encart h3 { color: var(--marine); font-size: 21px; line-height: 1.25; }
.encart p { font-size: 15.5px; line-height: 1.6; color: var(--gris); }
.encart__actions { display: flex; flex-direction: column; gap: 12px; }
.encart__pied { display: flex; flex-direction: column; gap: 8px; padding-top: 16px; border-top: 1px solid #E1D9CE; }
.encart__pied span { font-family: var(--titre); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--sable-fonce); }
.encart__pied strong { font-family: var(--titre); font-size: 26px; font-weight: 800; color: var(--marine); line-height: 1; }

.colonnes { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 1000px) { .colonnes { grid-template-columns: 1.45fr 1fr; gap: 56px; } }

/* ------------------------------------------------------------ Appel final - */

.appel { background: var(--marine); color: var(--blanc); }
.appel__in {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 28px 50px; padding-block: clamp(40px, 5vw, 62px);
}
.appel__txt { display: flex; flex-direction: column; gap: 12px; }
.appel__txt p { font-size: 17px; line-height: 1.55; color: var(--gris-pale); }
.appel__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.appel--chaud { background: var(--creme-chaud); color: var(--encre); }
.appel--chaud h2 { color: var(--marine); }
.appel--chaud .appel__txt p { color: #4E6273; }

/* ---------------------------------------------------------------- Pied ---- */

.pied { background: var(--marine-fonce); color: var(--blanc); padding-block: clamp(40px, 5vw, 62px) 32px; }
.pied__grille { display: grid; grid-template-columns: 1fr; gap: 34px; }
@media (min-width: 700px)  { .pied__grille { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .pied__grille { grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 44px; } }
.pied__marque { display: flex; flex-direction: column; gap: 16px; }
.pied__marque img { height: 46px; width: auto; }
.pied__marque p { font-size: 14.5px; line-height: 1.65; color: var(--gris-clair); }
.pied__col { display: flex; flex-direction: column; gap: 10px; }
.pied__col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--sable); margin-bottom: 2px;
}
.pied__col a, .pied__col span { font-size: 14.5px; line-height: 1.6; color: #D7E0E7; }
.pied__col a { min-height: 30px; display: flex; align-items: center; }
.pied__col a:hover { color: var(--sable); }
.pied__bas {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 14px 30px; margin-top: 36px; padding-top: 22px;
  border-top: 1px solid rgba(232,221,207,.16);
}
.pied__bas span, .pied__bas a { font-size: 13px; color: #6F8698; }
.pied__legal { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }

/* --------------------------------------------------- Barre mobile fixe ---- */

.barre-mobile {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,.14);
}
.barre-mobile a {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 60px; font-family: var(--titre); font-size: 14.5px; font-weight: 700;
}
.barre-mobile .b-tel   { background: var(--sable);  color: var(--marine-fonce); }
.barre-mobile .b-tel .ico { stroke: var(--marine-fonce); }
.barre-mobile .b-devis { background: var(--marine); color: var(--blanc); }
.barre-mobile .b-devis .ico { stroke: var(--blanc); }

@media (min-width: 900px) { .barre-mobile { display: none; } }
@media (max-width: 899px) { body { padding-bottom: 60px; } }

/* =============================================================================
   MK IMMOBILIER — bascule des accents
   ========================================================================== */

.site-immo .bandeau { background: var(--marine); }
.site-immo .marqueur { color: var(--marine); }
.site-immo .heros { background: var(--creme-chaud); color: var(--encre); }
.site-immo .heros h1 { color: var(--marine); }
.site-immo .heros .chapeau { color: #4E6273; }
.site-immo .heros__media { background-color: #EFE7DC;
  background-image: repeating-linear-gradient(135deg, rgba(17,63,98,.10) 0 2px, transparent 2px 11px); }

.logo-immo { display: flex; align-items: center; gap: 14px; }
.logo-immo__sigle {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border: 2px solid var(--sable); flex-shrink: 0;
}
.logo-immo__sigle .ico { stroke: var(--marine); }
.logo-immo__txt { display: flex; flex-direction: column; gap: 2px; }
.logo-immo__nom {
  font-family: var(--titre); font-size: 22px; font-weight: 800;
  color: var(--marine); line-height: 1; letter-spacing: -.01em;
}
.logo-immo__nom em { font-style: normal; font-weight: 500; }
.logo-immo__base {
  font-family: var(--titre); font-size: 9.5px; font-weight: 600;
  letter-spacing: .17em; text-transform: uppercase; color: var(--sable-fonce);
}
.pied .logo-immo__nom { color: var(--blanc); }

.bien__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 16px; }
.bien__meta span { font-size: 14px; color: var(--gris); }
.bien__prix { font-family: var(--titre); font-size: 20px; font-weight: 800; color: var(--marine); margin-top: 4px; }

.avant-apres { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

/* -------------------------------------------------------------- Sommaire -- */

.sommaire { background: var(--creme); min-height: 100vh; padding-block: 56px; }
.sommaire__carte {
  display: flex; flex-direction: column; gap: 10px;
  padding: 26px 28px 30px; background: var(--blanc); border: 1px solid var(--bord);
}
.sommaire__carte h3 { color: var(--marine); font-size: 19px; }
.sommaire__carte code {
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 12.5px; color: var(--gris);
}

/* ------------------------------------------------------------ Impression -- */

@media print {
  .bandeau, .nav, .burger, .barre-mobile, .appel { display: none !important; }
  body { padding-bottom: 0; }
  .photo { border: 1px solid #999; background: #fff; }
}

/* =============================================================================
   AJOUTS — navigation à sous-menus, photos réelles, listes de communes
   ========================================================================== */

/* --- Navigation à deux niveaux -------------------------------------------- */

.nav__groupe { position: relative; display: flex; align-items: center; }
.nav__lien {
  display: flex; align-items: center;
  font-family: var(--titre); font-size: 14px; font-weight: 600;
}
.nav__lien.est-actif { color: var(--sable-fonce); font-weight: 700; }

.nav__sous {
  position: absolute; top: 100%; left: -18px; z-index: 40;
  display: none; flex-direction: column; min-width: 260px;
  padding: 10px 0; background: var(--blanc);
  border: 1px solid var(--bord-clair);
  box-shadow: 0 18px 40px rgba(12, 46, 72, .16);
}
.nav__groupe:hover .nav__sous,
.nav__groupe:focus-within .nav__sous { display: flex; }
.nav__sous a {
  display: flex; align-items: center; min-height: 44px; padding: 0 18px;
  font-family: var(--texte); font-size: 14.5px; font-weight: 500;
}
.nav__sous a:hover { background: var(--creme); color: var(--marine); }

@media (max-width: 1099px) {
  .nav__groupe { display: block; }
  .nav__lien { min-height: 52px; border-bottom: 1px solid var(--bord-clair); }
  .nav__sous {
    position: static; display: flex; min-width: 0; padding: 0 0 8px 16px;
    border: none; box-shadow: none; background: transparent;
  }
  .nav__sous a { min-height: 44px; padding: 0; font-size: 14px; color: var(--gris); }
}

/* --- Photo réelle ---------------------------------------------------------- */

.photo--pleine { height: var(--h, 240px); overflow: hidden; background: var(--creme); }
.photo--pleine img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --- Communes en pied de page --------------------------------------------- */

.pied__communes { margin-top: 38px; padding-top: 26px; border-top: 1px solid rgba(232,221,207,.16); }
.pied__communes h4 {
  font-size: 12px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--sable); margin-bottom: 14px;
}
.pied__villes { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.pied__villes a { font-size: 13.5px; color: #93A9BA; }
.pied__villes a:hover { color: var(--sable); }
.pied__villes a.est-fort { color: var(--sable); font-weight: 600; }

/* --- Index de communes ----------------------------------------------------- */

.zone { display: flex; flex-direction: column; gap: 12px; }
.zone__tete { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 14px; }
.zone__tete h3 { font-size: 20px; font-weight: 700; color: var(--marine); }
.zone__tete span { font-size: 14px; color: var(--gris); }
.zone__liste {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 2px 20px;
}
.zone__liste a {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  min-height: 42px; padding: 6px 0;
  font-family: var(--titre); font-size: 14.5px; font-weight: 600;
  border-bottom: 1px solid var(--bord-clair);
}
.zone__liste a em { font-style: normal; font-size: 12.5px; font-weight: 500; color: var(--gris); }

/* --- Formulaire ------------------------------------------------------------ */

.form { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 700px) { .form { grid-template-columns: 1fr 1fr; } .form .large { grid-column: 1 / -1; } }
.champ { display: flex; flex-direction: column; gap: 7px; }
.champ label { font-family: var(--titre); font-size: 13.5px; font-weight: 600; color: var(--marine); }
.champ input, .champ select, .champ textarea {
  font-family: var(--texte); font-size: 16px; color: var(--encre);
  min-height: 52px; padding: 12px 14px;
  background: var(--blanc); border: 1.5px solid var(--bord); border-radius: 0;
}
.champ textarea { min-height: 140px; resize: vertical; }
.champ input:focus, .champ select:focus, .champ textarea:focus {
  outline: none; border-color: var(--marine); box-shadow: 0 0 0 3px rgba(17,63,98,.12);
}
.champ--case { flex-direction: row; align-items: flex-start; gap: 12px; }
.champ--case input { min-height: 0; width: 22px; height: 22px; margin-top: 3px; flex-shrink: 0; }
.champ--case label { font-family: var(--texte); font-weight: 400; font-size: 14px; color: var(--gris); }
.form__note { font-size: 13.5px; color: var(--gris); }

/* --- Encadré d'information ------------------------------------------------- */

.info {
  display: flex; gap: 16px; padding: 22px 24px;
  background: var(--creme); border-left: 4px solid var(--sable);
}
.info .ico { stroke: var(--sable-fonce); flex-shrink: 0; }
.info h4 { font-size: 15px; font-weight: 700; color: var(--marine); margin-bottom: 6px; }
.info p { font-size: 15px; line-height: 1.6; color: var(--gris); }

/* --- Contenu rédactionnel long --------------------------------------------- */

.prose { max-width: 68ch; display: flex; flex-direction: column; gap: 18px; }
.prose p { font-size: 16.5px; line-height: 1.72; color: #3F4F5C; }
.prose h2 { font-size: clamp(22px, 2.2vw, 28px); font-weight: 800; color: var(--encre); margin-top: 14px; }
.prose h3 { font-size: 19px; font-weight: 700; color: var(--marine); margin-top: 10px; }
.prose ul { display: flex; flex-direction: column; gap: 10px; }
.prose li { position: relative; padding-left: 22px; font-size: 16px; line-height: 1.65; color: #3F4F5C; }
.prose li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 8px; height: 8px; background: var(--sable);
}

/* --- Plan du site ---------------------------------------------------------- */

.plan { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 800px) { .plan { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.plan h3 {
  font-size: 12px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--marine); margin-bottom: 12px;
  padding-bottom: 8px; border-bottom: 2px solid var(--sable);
}
.plan a { display: flex; align-items: center; min-height: 34px; font-size: 14.5px; }
