:root{
  --ink:#0b0b0b;
  --text:#121212;
  --muted: rgba(11,11,11,.72);
  --line: rgba(11,11,11,.12);

  --gold:#CF984D;
 --color-accent: var(--gold);
  --sand: rgba(207,152,77,.14);

  --dark:#0b0b0b;
  --dark2:#101010;

  --radius: 18px;
  --shadow: 0 18px 50px rgba(0,0,0,.10);
  --shadow-soft: 0 10px 30px rgba(0,0,0,.06);

  --container: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  color: var(--text);
  background:#fff;
  line-height:1.55;
}

img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }

.container{ max-width: var(--container); margin:0 auto; padding:0 22px; }

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:16px; top:16px; width:auto; height:auto; z-index:9999;
  padding:10px 12px; background:#fff; border:1px solid var(--line); border-radius:12px;
  box-shadow: var(--shadow-soft);
}

/* HEADER */
.header{
  position: sticky;
  top: 0;
  z-index: 3000;
  background: rgba(11,11,11,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 14px 0;
}

/* ======================================
   Header inversé sur zones sombres
   ====================================== */

.header{
  transition:
    background .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}

.header.header--light{
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11,11,11,.08);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

/* Navigation */
.header.header--light .nav--desktop a{
  color: rgba(11,11,11,.82);
}

.header.header--light .nav--desktop a:hover{
  background: rgba(11,11,11,.06);
}

.header.header--light .nav--desktop .nav__group:not(.nav__group--cities) > a{
  color: rgba(11,11,11,.88);
  border: 1px solid rgba(11,11,11,.12);
  background: rgba(11,11,11,.03);
}

.header.header--light .nav--desktop .nav__group:not(.nav__group--cities) > a:hover{
  background: rgba(11,11,11,.07);
  border-color: rgba(11,11,11,.18);
}

.header.header--light .nav__group--cities a{
  color: rgba(11,11,11,.78);
}

.header.header--light .nav__chevron{
  color: rgba(11,11,11,.45);
}

/* Garder le bouton téléphone ocre même quand le header devient blanc */

.header.header--light .header__phone,
.header.header--light .header__phone:visited{
  background: var(--color-accent) !important;
  color: #0b0b0b !important;
  border: none !important;
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
}

.header.header--light .header__phone:hover,
.header.header--light .header__phone:focus{
  background: #d29a4a !important;
  color: #0b0b0b !important;
  border: none !important;
}

.header.header--light .header__phone .btn__icon,
.header.header--light .header__phone svg,
.header.header--light .header__phone svg path{
  color: #0b0b0b !important;
  fill: #0b0b0b !important;
}


/* Logo */
.header.header--light .brand img{
  transition: opacity .18s ease;
}


.header.header--light .header__phone svg{
  fill:#0b0b0b;
}

/* Logo: ne rétrécit jamais à cause de la nav */
.brand{
  display:flex;
  align-items:center;
  flex: 0 0 auto;
}
.brand img{
  height: 110px;   /* Desktop */
  width: auto;
  object-fit: contain;
}


/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--gold);
  color: #0b0b0b;
  font-weight: 850;
  letter-spacing: .01em;
  box-shadow: var(--shadow-soft);
}
.btn:hover{ filter: brightness(1.03); }
.btn--small{ padding: 10px 14px; }
.btn--ghost{
  background: transparent;
  border-color: var(--line);
  box-shadow:none;
}
.btn--ghost:hover{ background: rgba(0,0,0,.04); }
.btn--on-dark{
  color:#fff;
  border-color: rgba(255,255,255,.22);
}
.btn--on-dark:hover{ background: rgba(255,255,255,.08); }


/* HERO */
.hero{
  position: relative;
  z-index: 1;
  min-height: 74vh;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

/* Image hero standard (pages villes) */
.hero__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

/* Slider hero (home uniquement) */
.hero__bg-slider{
  position: absolute;
  inset: 0;
}

.hero__bg-slider .hero__bg{
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
}

.hero__bg-slider .hero__bg.is-active{
  opacity: 1;
}

/* Pages villes : gradient léger en haut, plus sombre en bas */
.hero__scrim{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.08) 0%,
      rgba(0,0,0,.18) 40%,
      rgba(0,0,0,.38) 100%
    );
  pointer-events: none;
}

/* Home : voile beaucoup plus léger */
.home .hero__scrim{
  background:
    radial-gradient(
      1000px 600px at 15% 15%,
      rgba(0,0,0,.04),
      rgba(0,0,0,0) 60%
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,.02),
      rgba(0,0,0,.18)
    );
}

/* Home : image légèrement éclaircie */
.home .hero__bg{
  filter: brightness(1.18) contrast(1.03);
}

.hero__content{
  position: relative;
  color: #fff;
  padding: 96px 0 56px;
  max-width: 78ch;
}

/* HERO : harmonisation boutons */
.hero .btn{
  letter-spacing: .01em;
}

.hero .btn--ghost{
  color: #fff;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.06);
  letter-spacing: .01em;
  transition:
    background .18s ease,
    border-color .18s ease,
    transform .18s ease,
    box-shadow .18s ease;
}

.hero .btn--ghost:hover{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,.28);
}

.eyebrow{
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.18);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .80rem;
  margin: 0 0 12px;
}

h1{
  margin: 0 0 14px;
  font-size: clamp(2.15rem, 3.9vw, 3.55rem);
  line-height: 1.06;
}

.lead{
  margin: 0 0 18px;
  font-size: 1.08rem;
  color: rgba(255,255,255,.88);
}

.hero__cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 10px;
}

/* HERO – Highlights éditoriaux */
.chips{
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .95rem;
  color: rgba(255,255,255,.88);
}

.chips li{
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
}

.chips li::after{
  content: "•";
  margin-left: 14px;
  opacity: .55;
}

.chips li:last-child::after{
  content: "";
}

/* SECTIONS */
.section{ padding: 78px 0; }
.section--light{ background:#fff; }
.section--sand{ background: var(--sand); }
.section--dark{
  background: linear-gradient(180deg, var(--dark), var(--dark2));
  color:#fff;
}

.section-kicker{
  margin:0 0 8px;
  font-weight: 900;
  letter-spacing:.08em;
  text-transform: uppercase;
  font-size: .78rem;
  color: rgba(11,11,11,.72);
}
.section-kicker--dark{ color: rgba(255,255,255,.78); }

.section__intro{
  margin: 0;
  max-width: 76ch;
  color: var(--muted);
}
.section__intro--dark{ color: rgba(255,255,255,.78); }

.section-box{
  background:#fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow);
}
.section-box--accent{ border-left: 4px solid var(--gold); }

.section.section--dark .section-box{
  background:#0b0b0b !important;
  color:#fff;
  border:1px solid rgba(255,255,255,.10);
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.section-head--dark{ margin-bottom: 18px; }
.section-head--dark h2{ margin:0; }
.section-head h2{ margin:0; font-size: clamp(1.55rem, 2.2vw, 2.15rem); }
.section-box h2{ margin:0 0 12px; font-size: clamp(1.55rem, 2.2vw, 2.15rem); }

.grid3{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.card h3{ margin:0 0 8px; font-size: 1.08rem; }
.card p{ margin:0; color: var(--muted); }
.card--soft{ background: rgba(255,255,255,.86); }

/* Steps */
.steps{ margin-top: 22px; display:grid; gap: 12px; }
.step{
  display:grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items:flex-start;
  padding: 16px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  background: rgba(0,0,0,.02);
}
.step__num{
  width: 48px; height: 48px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 14px;
  background: rgba(207,152,77,.18);
  border: 1px solid rgba(207,152,77,.35);
  font-weight: 950;
}
.step h3{ margin:0 0 6px; }
.step p{ margin:0; color: var(--muted); }

/* Note */
.note{
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(207,152,77,.14);
  border: 1px solid rgba(207,152,77,.28);
  color: rgba(11,11,11,.78);
}

/* Projects */
.projects{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}

.project{
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  overflow:hidden;
  background: rgba(255,255,255,.04);
}
.project__media{
  display:block;
  position:relative;
  aspect-ratio: 4 / 3;
  overflow:hidden;
}
.project__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition: transform .35s ease;
}
.project__media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.28));
  pointer-events:none;
}
.project:hover .project__media img{ transform: scale(1.04); }

.project__body{ padding: 14px 14px 16px; }
.project__title{ margin:0 0 10px; font-size: 1.05rem; }

.meta{ margin:0 0 10px; display:grid; gap:8px; }
.meta > div{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.meta dt{ font-weight: 850; color: rgba(255,255,255,.86); }
.meta dd{ margin:0; color: rgba(255,255,255,.74); text-align:right; }
.muted-dark{ margin:0; color: rgba(255,255,255,.72); }

.pills{ margin-top: 18px; display:flex; flex-wrap:wrap; gap:10px; }
.pill{
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.02);
  color: rgba(0,0,0,.74);
  font-weight: 650;
}

/* Form */
.form{ margin-top: 18px; }
.form__grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
label{ display:block; font-weight: 850; font-size: .94rem; }
input, textarea{
  width:100%;
  margin-top: 8px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.14);
  background: #fff;
  color: var(--text);
  font: inherit;
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}
input:focus, textarea:focus{
  outline: 2px solid rgba(207,152,77,.42);
  border-color: rgba(207,152,77,.55);
}
.form__actions{
  margin-top: 12px;
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap:wrap;
}

.small{ font-size: .92rem; }
.muted{ color: var(--muted); }

/* Footer */
.footer{
  background:#0b0b0b;
  color:#fff;
  padding:32px 0;
}

.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 12px;
  flex-wrap:wrap;
}
.footer p{
  margin:0;
}

.footer .small{
  color:rgba(255,255,255,.65);
}

.footer a{
  color:#fff;
  text-decoration:none;
}

.footer a:hover{
  color:var(--color-accent);
}

/* =========================================================
   Burger menu (desktop default + mobile only)
   ========================================================= */

/* Desktop default */
.nav--desktop{ display:flex; }
.burger{ display:none; }

/* Burger button */
.burger{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  padding: 10px;
  cursor: pointer;

  display: none;                 /* desktop: caché */
  -webkit-tap-highlight-color: transparent;

  flex-direction: column;        /* empile verticalement */
  justify-content: center;
  gap: 6px;
}

.burger span{
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,.92);
  border-radius: 999px;
  transition: background .18s ease;
}

.header.header--light .burger span{
  background: #0b0b0b !important;
}

.header.header--light .burger{
  border-color: rgba(11,11,11,.14) !important;
  background: rgba(11,11,11,.03) !important;
}

/* Overlay (IMPORTANT: caché par défaut !) */
.mobile-menu{
  display:none;            /* <-- essentiel */
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  z-index: 2000;
  pointer-events:none;     /* tant que fermé */
}
.mobile-menu.is-open{
  display:block;
  pointer-events:auto;
}

/* Drawer */
.mobile-menu__panel{
  position:absolute;
  top: 12px;
  right: 12px;
  left: 12px;
  border-radius: 18px;
  background: rgba(11,11,11,.94);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 22px 70px rgba(0,0,0,.45);
  padding: 14px;
}

.mobile-menu__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.mobile-menu__brand{
  color: rgba(255,255,255,.88);
  font-weight: 850;
  letter-spacing: .02em;
}
.mobile-menu__close{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.88);
  cursor:pointer;
}

.mobile-menu__links{
  padding-top: 12px;
  display:grid;
  gap: 10px;
}
.mobile-menu__links a{
  color: rgba(255,255,255,.90);
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.mobile-menu__links a:hover{ background: rgba(255,255,255,.10); }

.mobile-menu__divider{
  height: 1px;
  background: rgba(255,255,255,.12);
  margin: 6px 0;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1100px){
  .brand img{ height: 96px; }
  .hero__content{ padding: 82px 0 44px; }
  .section{ padding: 62px 0; }
  .section-box{ padding: 30px; }
  .projects{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}

/* Mobile only */
@media (max-width: 720px){
  /* header plus compact + logo plus visible */
  .header__inner{
    padding: 10px 0;
  }
  .brand img{
    height: 84px; /* un poil plus grand que 76 */
  }

  /* Cache le menu desktop, affiche burger */
  .nav--desktop{ display:none; }
  .burger{ display:inline-flex; align-items:center; justify-content:center; }

  /* Grids */
  .grid3{ grid-template-columns: 1fr; }
  .projects{ grid-template-columns: 1fr; }
  .form__grid{ grid-template-columns: 1fr; }
  .meta dd{ text-align:left; }

  /* Hero un peu moins haut sur mobile (évite l'effet “tout écran”) */
  .hero{ min-height: 66vh; }
  .hero__content{ padding: 72px 0 42px; }
}

/* Safety */
main{ display:block; }

/* =========================
   POPUP PREMIUM (Formspree)
   ========================= */

.modal{
  position: fixed;
  inset: 0;
  z-index: 4000; /* au-dessus header (3000) + menu mobile (2000) */
  display: none;
}

.modal.is-open{ display:block; }

.modal__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.58);
  backdrop-filter: blur(6px);
}

.modal__panel{
  position: relative;
  margin: 14vh auto 0;
  max-width: 520px;
  width: calc(100% - 24px);
  border-radius: 18px;
  background: rgba(11,11,11,.94);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 22px 70px rgba(0,0,0,.55);
  padding: 18px 18px 16px;

  transform: translateY(10px);
  opacity: 0;
  animation: modalIn .22s ease forwards;
}

@keyframes modalIn{
  to{ transform: translateY(0); opacity: 1; }
}

.modal__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.modal__icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 950;
  color: #0b0b0b;
  background: var(--gold);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.modal__close{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.88);
  cursor:pointer;
}

.modal__title{
  margin: 0 0 8px;
  color: rgba(255,255,255,.92);
  font-size: 1.25rem;
}

.modal__text{
  margin: 0 0 14px;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}

.modal__actions{
  display:flex;
  justify-content:flex-end;
  gap: 10px;
}

/* petit confort mobile */
@media (max-width: 720px){
  .modal__panel{ margin-top: 12vh; }
}

/* =========================
   Autocomplete communes
   ========================= */
.suggest {
  position: relative;
  margin-top: 6px;
}

.suggest__list {
  position: absolute;
  z-index: 5000;
  left: 0;
  right: 0;

  border: 1px solid rgba(255,255,255,.14);
  background: rgba(11,11,11,.96);
  border-radius: 12px;
  overflow: hidden;

  box-shadow: 0 18px 50px rgba(0,0,0,.45);
}

.suggest__item {
  padding: 10px 12px;
  cursor: pointer;
  color: rgba(255,255,255,.88);
  line-height: 1.25;
}

.suggest__item:hover {
  background: rgba(255,255,255,.06);
}

.suggest__muted {
  color: rgba(255,255,255,.62);
  font-size: .92em;
  margin-left: 6px;
}

/* AUTOCOMPLETE */
.autocomplete {
  position: relative;
}

.autocomplete__list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  margin-top: 6px;
  z-index: 50;
  display: none;
  overflow: hidden;
}

.autocomplete__list.is-open {
  display: block;
}

.autocomplete__item {
  padding: 12px 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.autocomplete__item:hover {
  background: #f7f7f7;
}

.autocomplete__item small {
  color: #888;
}

.autocomplete__item[aria-selected="true"] {
  background: #f0f0f0;
}

/* iPhone: assure que le burger est cliquable */
.burger {
  position: relative;
  z-index: 3500; /* au-dessus du header */
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* si jamais un overlay du header recouvre */
.header, .header__inner, .nav {
  pointer-events: auto;
}

/* =========================================================
   AJOUTS NAV + TELEPHONE + FOOTER (clean)
   ========================================================= */

/* Bouton téléphone */
.btn__icon{
  display:inline-flex;
  margin-right: 10px;
  transform: translateY(1px);
}
.btn--phone{
  white-space: nowrap;
}

/* Header : nav structurée (Home / Villes) + téléphone à droite */
.nav--desktop{
  flex: 1 1 auto;
  min-width: 0;
  display:flex;
  align-items:flex-start;
  flex-wrap: wrap;
  column-gap: 14px;
  row-gap: 12px;
  overflow: visible; /* ✅ empêche toute coupe du contenu */
}

/* Groupes */
.nav__group{
  display:flex;
  align-items:center;
  flex-wrap: wrap;
  column-gap: 14px;
  row-gap: 12px;
  min-width: 0;
}

/* Groupe villes : une seule ligne compacte + scroll si besoin */
/* Wrapper = ligne complète */
.nav__group--cities-wrapper{
  flex-basis: 100%;
  display:flex;
  align-items:center;
  gap:10px;
}

/* Ligne scrollable */
.nav__group--cities{
  flex:1;
  display:flex;
  align-items:center;
  gap:14px;
  overflow-x:auto;
  scrollbar-width:none;
}

.nav__group--cities::-webkit-scrollbar{
  display:none;
}

.nav__group--cities::-webkit-scrollbar{
  display: none;         /* Chrome / Safari */
}

/* ✅ Indique discrètement qu'on peut scroller (évite l'effet “tronqué”) */
.nav__group--cities{
  -webkit-mask-image: linear-gradient(90deg, #000 92%, transparent);
  mask-image: linear-gradient(90deg, #000 92%, transparent);
}

/* Séparateur inutile si on force 2 lignes */
.nav__sep{
  display:none;
}

/* Liens (base) */
.nav--desktop a{
  padding: 8px 10px;
  border-radius: 12px;
  color: rgba(255,255,255,.86);
  letter-spacing: 0.02em;
  line-height: 1.25;
  white-space: nowrap;
}
.nav--desktop a:hover{ background: rgba(255,255,255,.08); }

/* Villes : texte simple (premium, sobre) */
.nav__group--cities a{
  font-size: .90rem;
  font-weight: 450;
  letter-spacing: .02em;
  opacity: .9;
  color: rgba(255,255,255,.88);
  background: none;
  border: none;
  padding: 6px 8px;
  white-space: nowrap;
}

/* Liens Home : badge discret */
.nav--desktop .nav__group:not(.nav__group--cities) > a{
  font-weight: 600;
  color: rgba(255,255,255,.90);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
}

/* Bouton téléphone (placé hors nav) : complètement à droite */
.header__phone{
  margin-left: auto;
  flex: 0 0 auto;
  white-space: nowrap;
}

/* Quand on approche du burger : on garde seulement "Toutes les villes" */
@media (max-width: 980px){
  .nav--desktop .nav__group--cities a.nav__zone:not(.nav__all){ display:none; }
}

/* Footer : coordonnées harmonisées */
.footer__coords{
  margin: 0;
  font-style: normal;
  text-align: right;
}
.footer__coords p{
  margin: 0 0 4px;
}
.footer__coords a{
  text-decoration: underline;
}
.footer__title{
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

@media (max-width: 720px){
  .footer__coords{ text-align: left; }
}

/* Transition fluide pour les badges Home */
.nav--desktop .nav__group:not(.nav__group--cities) > a{
  transition: 
    background .18s ease,
    border-color .18s ease,
    transform .18s ease,
    box-shadow .18s ease;
}

/* Hover premium discret */
.nav--desktop .nav__group:not(.nav__group--cities) > a:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.28);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

/* ======================================
   MOBILE HEADER CLEAN
   ====================================== */
@media (max-width: 720px){

  /* 1️⃣ On cache totalement la nav desktop */
  .nav,
  .nav--desktop{
    display: none !important;
  }

  /* 2️⃣ Header plus compact */
  .header__inner{
    padding: 8px 0;
    gap: 8px;
  }

  /* 3️⃣ Logo plus petit et contraint */
  .brand{
    flex: 0 0 auto;
    max-width: 120px;
  }

  .brand img{
    height: 56px;
    width: auto;
  }

  /* 4️⃣ Bouton téléphone compact */
  .header__phone{
    flex: 0 0 auto;
    padding: 8px 10px;
    font-size: 0.85rem;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* 5️⃣ Burger bien visible */
  .burger{
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }
}

/* ======================================
   FIX SCROLL MENU MOBILE (safe)
   ====================================== */
.mobile-menu__panel{
  max-height: calc(100vh - 24px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* ======================================
   Footer colonne droite plus discrète (DESKTOP + MOBILE)
   ====================================== */
.footer__coords{
  font-size: 0.88rem;
  line-height: 1.5;
  opacity: 0.85;
}

.footer__coords strong{
  font-weight: 600;
}

.footer__title{
  font-size: 0.85rem;
  letter-spacing: .08em;
  opacity: 0.7;
}

/* ======================================
   Chevrons scroll villes (desktop)
   ====================================== */

.nav__group--cities-wrapper{
  flex-basis: 100%;
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap: nowrap;      /* ✅ empêche retour à la ligne */
  min-width: 0;
}

/* Ligne scrollable */
.nav__group--cities{
  flex: 1;
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap: nowrap;      /* ✅ crucial */
  overflow-x:auto;
  scrollbar-width:none;
  -webkit-overflow-scrolling: touch;
  min-width: 0;
}

.nav__group--cities::-webkit-scrollbar{
  display:none;
}

.nav__chevron{
  font-size: 1.2rem;
  color: rgba(255,255,255,.45);
  cursor: pointer;
  user-select: none;
  transition: opacity .2s ease, transform .2s ease;
}

.nav__chevron:hover{
  opacity: .9;
  transform: scale(1.15);
}

.nav__chevron--left{ margin-right: 4px; }
.nav__chevron--right{ margin-left: 4px; }

@media (max-width: 720px){
  .nav__chevron{ display:none; }
}

/* ======================================
   Chevrons scroll villes – interaction
   ====================================== */

.nav__chevron{
  font-size: 1.25rem;
  color: rgba(255,255,255,.55);
  cursor: pointer;
  transition: 
    color .18s ease,
    transform .18s ease,
    background .18s ease,
    box-shadow .18s ease;
  padding: 6px 10px;
  border-radius: 10px;
}

/* Hover */
.nav__chevron:hover{
  color: #ffffff;
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

/* Active (clic) */
.nav__chevron:active{
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(0,0,0,.25);
  background: rgba(255,255,255,.12);
}

/* ======================================
   Chevrons dynamiques intelligents
   ====================================== */

.nav__chevron{
  font-size: 1.25rem;
  padding: 6px 10px;
  border-radius: 10px;
  cursor: pointer;

  color: rgba(255,255,255,.65);  /* ✅ plus lisible */
  opacity: 0;                    /* caché par défaut */
  pointer-events: none;

  transition: 
    opacity .25s ease,
    color .18s ease,
    transform .18s ease,
    background .18s ease,
    box-shadow .18s ease;
}

/* Visible uniquement si scroll possible */
.nav__chevron.is-visible{
  opacity: .65;                  /* ✅ légèrement plus visible */
  pointer-events: auto;
}

/* Hover premium */
.nav__chevron.is-visible:hover{
  opacity: 1;
  color: #fff;
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

/* Etat "désactivé" quand on est au bout */
.nav__chevron.is-disabled{
  opacity: .45 !important;       /* ✅ au lieu de .2 */
  filter: grayscale(40%);
  pointer-events: none;
}

/* Légère pulsation */
@keyframes chevronPulse{
  0% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}

.nav__chevron.is-pulse{
  animation: chevronPulse 1.8s ease-in-out infinite;
}

/* ======================================
   HERO villes : lien FAQ + highlights
   ====================================== */

/* Lien FAQ discret (entre 2 boutons) */
.hero__faq{
  align-self: center;
  font-weight: 550;
  font-size: .95rem;
  color: rgba(255,255,255,.88);
  opacity: .85;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity .18s ease;
}
.hero__faq:hover{
  opacity: 1;
}

/* Highlights (remplace les chips “boutons”) */
.hero__highlights{
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255,255,255,.86);
  font-size: .95rem;
}

.hero__highlights li{
  padding: 0;
  border: 0;
  background: transparent;
}

.hero__highlights li::after{
  content: "•";
  margin-left: 14px;
  opacity: .55;
}

.hero__highlights li:last-child::after{
  content: "";
}

.btn--faq{
  font-size: .85rem;
  padding: 6px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
  backdrop-filter: blur(4px);
  transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn--faq:hover{
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

.pill-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.pill-link{
  display:inline-block;
  padding:10px 14px;
  border:1px solid rgba(0,0,0,.12);
  border-radius:999px;
  background:#fff;
  text-decoration:none;
  line-height:1;
}
.pill-link:hover{
  border-color: rgba(0,0,0,.22);
}
.pill-link--all{
  font-weight:600;
}

.link-highlight{
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
}

.link-highlight:hover{
  opacity: .75;
}

.section--dark{
  background:#0b0b0b;
  color:#fff;
}

.section--dark .section-kicker{
  color: var(--color-accent);
}

.section--dark .section__intro{
  color: rgba(255,255,255,.75);
}

/* ==========================
   GALERIE IMMERSIVE
   ========================== */

.material-gallery{
  margin-top:28px;
  overflow-x:auto;
  padding:10px 0 18px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}

.material-gallery::-webkit-scrollbar{
  display:none;
}

.material-track{
  display:flex;
  gap:26px;
  padding:0 12px;
}

.material-card{
  flex:0 0 min(720px,82%);
  scroll-snap-align:center;
  position:relative;
  opacity:.85;
  transition:transform .35s ease, opacity .35s ease;
}

.material-card img{
  width:100%;
  height:clamp(280px,34vw,420px);
  object-fit:cover;
  border-radius:18px;
  box-shadow:0 40px 80px rgba(0,0,0,.55);
}

.material-title{
  margin:0 0 10px 2px;
  font-size:14px;
  font-weight:700;
  color:var(--color-accent);
  letter-spacing:.03em;
}

.material-card:hover{
  opacity:1;
  transform:scale(1.02);
}

/* ==========================
   GALERIE VERSION CLAIRE
   ========================== */

.section--gallery-light{
  background:#ffffff;
}

.section--gallery-light .section-box{
  background:#ffffff;
  color:#111;
  border-radius:18px;
  padding:60px;
}

.section--gallery-light .section-kicker{
  color: var(--color-accent);
}

.section--gallery-light h2{
  color:#111;
}

.section--gallery-light .section__intro,
.section--gallery-light p{
  color:#333;
}

/* titres images */
.section--gallery-light .material-title{
  color: var(--color-accent);
}

/* ombre images plus légère pour fond blanc */
.section--gallery-light .material-card img{
  box-shadow:0 30px 60px rgba(0,0,0,.18);
}

/* ======================================
   HERO – Proof strip premium
   ====================================== */

.hero__proofs{
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: .95rem;
  color: rgba(255,255,255,.88);
  letter-spacing: .01em;
}

.hero__proofs li{
  position: relative;
}

.hero__proofs li::after{
  content: "•";
  margin-left: 18px;
  opacity: .5;
}

.hero__proofs li:last-child::after{
  content: "";
}

.hero__proofs strong{
  color: #ffffff;
  font-weight: 800;
}

.hero__reassure{
  margin: 12px 0 0;
  font-size: .92rem;
  color: rgba(255,255,255,.75);
}

.breadcrumb{
  font-size:14px;
  margin:20px auto 0;
  color:#666;
}

.breadcrumb a{
  color:#666;
  text-decoration:none;
}

.breadcrumb a:hover{
  text-decoration:underline;
}

.breadcrumb span{
  margin:0 6px;
}

.projects-note{
  margin-top: 28px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  max-width: 720px;
}

/* ======================================
   CTA flottant mobile
   ====================================== */

.mobile-cta{
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%) translateY(16px);
  z-index: 4000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #0b0b0b;
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity .22s ease,
    transform .22s ease,
    box-shadow .18s ease;
}

.mobile-cta.is-visible{
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mobile-cta:hover{
  filter: brightness(1.02);
}

@media (min-width: 721px){
  .mobile-cta{
    display: none;
  }
}

/* animation douce du CTA mobile */

@keyframes ctaFloat {
  0%   { transform: translateX(-50%) translateY(0); }
  50%  { transform: translateX(-50%) translateY(-3px); }
  100% { transform: translateX(-50%) translateY(0); }
}

.mobile-cta.is-visible{
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  animation: ctaFloat 3.2s ease-in-out infinite;
}