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

  --gold: #d9953b;
  --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;
  scroll-padding-top: 122px;
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 94px;
  }
}

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 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);
}

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

/* 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: 152px;
  width: auto;
  object-fit: contain;
}

.cta-header {
  padding: 8px 14px;
  border-radius: 999px;
  background: #f2a65a;
  color: #111;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s;
}

.cta-header:hover {
  background: #e5933f;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 28px;
  border-radius: 999px;
  border: 1px solid transparent;

  background: var(--gold);
  color: #0b0b0b;

  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;

  box-shadow: var(--shadow-soft);
  cursor: pointer;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-soft);
}

.btn--small {
  padding: 10px 16px;
  font-size: 0.95rem;
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  box-shadow: none;
  color: inherit;
}

.btn--ghost:hover {
  background: rgba(0, 0, 0, 0.04);
  transform: translateY(-1px);
  box-shadow: none;
}

.btn--ghost:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn--on-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.btn--on-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* ======================================
   HERO — version rationalisée
   ====================================== */

.hero {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

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

/* slider home */
.hero__bg-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

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

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

/* Ken Burns — zoom + translation douce, variante par image */
@keyframes kb1 {
  from { transform: scale(1)    translate(0,      0); }
  to   { transform: scale(1.08) translate(-1.5%, -1%); }
}
@keyframes kb2 {
  from { transform: scale(1.08) translate(1%,   0.5%); }
  to   { transform: scale(1)    translate(-1%,  -0.5%); }
}
@keyframes kb3 {
  from { transform: scale(1)    translate(-1%,  1%); }
  to   { transform: scale(1.08) translate(1.5%, -1%); }
}

.hero__bg-slider .hero__bg:nth-child(1).is-active { animation: kb1 6s ease-in-out forwards; }
.hero__bg-slider .hero__bg:nth-child(2).is-active { animation: kb2 6s ease-in-out forwards; }
.hero__bg-slider .hero__bg:nth-child(3).is-active { animation: kb3 6s ease-in-out forwards; }

/* Ken Burns sur image hero statique (pages villes) */
.hero > .hero__bg {
  animation: kb1 10s ease-in-out forwards;
  will-change: transform;
}

/* voile global */
.hero__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.18) 40%,
      rgba(0, 0, 0, 0.22) 60%,
      rgba(0, 0, 0, 0.30) 100%);
}

/* home : voile plus léger */
.home .hero__scrim {
  background:
    radial-gradient(900px 520px at 22% 22%,
      rgba(0, 0, 0, 0.04),
      rgba(0, 0, 0, 0) 62%),
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.06) 0%,
      rgba(0, 0, 0, 0.14) 40%,
      rgba(0, 0, 0, 0.18) 60%,
      rgba(0, 0, 0, 0.26) 100%);
}

/* home : image un peu éclaircie */
.home .hero__bg {
  filter: brightness(1.14) contrast(1.04);
}

.hero__content {
  position: relative;
  color: #fff;
  padding: 32px 0;
}

.hero__panel {
  max-width: 1080px;
}

/* eyebrow scoped hero only */
.hero .eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.14);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.80rem;
}

/* h1 scoped hero only */
.hero h1 {
  margin: 0 0 16px;
  max-width: 18ch;
  font-size: clamp(2.5rem, 4.6vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

/* lead scoped hero only */
.hero .lead {
  margin: 0 0 18px;
  max-width: 60ch;
  font-size: 1.16rem;
  line-height: 1.48;
  color: rgba(255, 255, 255, 0.94);
}

/* CTA */
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 16px;
}

.hero__cta .btn {
  min-height: 48px;
  text-align: center;
  white-space: nowrap;
}

.hero .btn {
  letter-spacing: 0.01em;
}

.hero .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

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

/* preuves : une seule version */
.hero__proofs {
  list-style: none;
  margin: 0;
  padding: 12px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero__proofs li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 0.90rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.hero__proofs li::after {
  content: none;
}

.hero__proofs strong {
  color: inherit;
  font-weight: 700;
}

/* on neutralise l'ancien sous-message si présent quelque part */
.hero__reassure,
.hero__sublead {
  display: none !important;
}

/* responsive */
@media (max-width: 1100px) {
  .hero {
    min-height: calc(100vh - 64px);
  }

  .hero__content {
    padding: 62px 0 30px;
  }

  .hero__panel {
    max-width: 100%;
  }

  .hero h1 {
    max-width: 16ch;
    font-size: clamp(2.3rem, 6vw, 4rem);
  }

  .hero .lead {
    max-width: 100%;
    font-size: 1.08rem;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: calc(100vh - 58px);
  }

  .hero__content {
    padding: 64px 0 28px;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: clamp(2.05rem, 8vw, 3.1rem);
    line-height: 1.0;
  }

  .hero .lead {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero__cta .btn {
    width: 100%;
    white-space: normal;
  }

  .hero__proofs {
    gap: 10px;
  }

  .hero__proofs li {
    width: 100%;
    justify-content: center;
  }
}

/* ======================================
   HERO GLOBAL (pages éditoriales)
   ====================================== */

.hero-global {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 420px;
}

/* image */
.hero-global__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;

  /* cohérent avec la home */
  filter: brightness(1.08) contrast(1.02);
}

/* overlay léger (beaucoup moins sombre qu’avant) */
.hero-global__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.12) 40%,
      rgba(0, 0, 0, 0.18) 100%);
}

/* contenu */
.hero-global__content {
  position: relative;
  z-index: 2;
}

/* cartouche */
.hero-global__box {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);

  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.04);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);

  padding: 34px;
  max-width: 880px;
}

/* typo cohérente home */
.hero-global__box h1 {
  margin: 0 0 12px;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.hero-global__box .section__intro {
  margin-bottom: 14px;
  color: rgba(20, 20, 20, 0.75);
}

/* responsive */
@media (max-width: 720px) {
  .hero-global {
    min-height: auto;
    padding: 32px 0;
  }

  .hero-global__box {
    padding: 22px 18px;
    border-radius: 22px;
  }
}

/* ======================================
   HERO — variante page villes
   ====================================== */

.hero--cities {
  min-height: calc(100vh - 72px);
}

.hero--cities .hero__content {
  padding-bottom: 32px;
}

.hero--cities .hero__bg {
  filter: brightness(1.04) contrast(1.03);
}

.hero__scrim--cities {
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.16) 0%,
      rgba(0, 0, 0, 0.10) 26%,
      rgba(0, 0, 0, 0.18) 62%,
      rgba(0, 0, 0, 0.34) 100%);
}

@media (max-width: 900px) {
  .hero--cities {
    min-height: calc(100vh - 64px);
  }

  .hero--cities .hero__content {
    padding-bottom: 32px;
  }
}

/* ======================================
   SECTIONS
   ====================================== */

.section {
  padding: 58px 0;
}

.section--light {
  background: #fff;
}

.section--sand {
  background: var(--sand);
}

.section--dark {
  background: linear-gradient(180deg, var(--dark), var(--dark2));
  color: #fff;
}

@media (max-width: 720px) {
  .section {
    padding: 34px 0;
  }
}


/* ======================================
   TYPO SECTIONS
   ====================================== */

.section-kicker {
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(11, 11, 11, 0.72);
}

.section-kicker--dark {
  color: rgba(255, 255, 255, 0.78);
}

.section__intro {
  margin: 0;
  max-width: 76ch;
  color: var(--muted);
}

.zones-inline {
  margin-top: 12px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.55);
  max-width: 70ch;
}

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


/* ======================================
   SECTION BOX
   ====================================== */

.section-box {
  background: #fff;
  border: 1px solid rgba(0, 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, 0.10);
}

@media (max-width: 720px) {
  .section-box {
    padding: 22px 18px;
  }
}


/* ======================================
   SECTION HEAD
   ====================================== */

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: start;
  gap: 36px;
  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);
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.section-box h2 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.section-head .section__intro {
  position: relative;
  max-width: 760px;
  margin: 0;
  padding-left: 18px;

  font-size: 1.08rem;
  line-height: 1.55;
  color: rgba(20, 20, 20, 0.88);
  font-weight: 450;
}

.section-head .section__intro::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 2px;
  border-radius: 999px;
  background: rgba(207, 152, 77, 0.5);
}

@media (max-width: 1100px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-head .section__intro {
    max-width: none;
    padding-left: 14px;
    font-size: 1rem;
    line-height: 1.6;
  }
}


/* ======================================
   CARTES ZONES CLIQUABLES
   ====================================== */

.zone-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  padding-right: 56px;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.zone-card h3,
.zone-card p {
  color: inherit;
}


/* ======================================
   PICTO FLÈCHE / ACTION
   ====================================== */

.zone-card__plus {
  position: absolute;
  right: 16px;
  bottom: 14px;

  width: 30px;
  height: 30px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
  color: #CF984D;

  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.12),
    0 1px 2px rgba(0, 0, 0, 0.06);

  transition:
    transform 0.25s cubic-bezier(.2, .8, .2, 1),
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.zone-card__plus svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .zone-card:hover {
    transform: translateY(-2px);
  }

  .zone-card:hover .zone-card__plus {
    transform: translateY(-2px);
    box-shadow:
      0 10px 26px rgba(0, 0, 0, 0.16),
      0 2px 4px rgba(0, 0, 0, 0.08);
    color: #b87d25;
  }

  .zone-card:hover .zone-card__plus svg {
    transform: translate(2px, -2px);
  }
}


/* ======================================
   NOTE DE TRANSITION ZONES → VILLES
   ====================================== */

.zones-footer-note {
  position: relative;
  margin-top: 20px;
  padding-top: 18px;

  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(20, 20, 20, 0.65);
}

.zones-footer-note::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 120px;
  height: 2px;

  background: #CF984D;
  border-radius: 999px;
}

.zones-footer-note a {
  margin-left: 6px;
  font-weight: 500;
  text-decoration: none;
  color: #111;
  transition: opacity 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .zones-footer-note a:hover {
    opacity: 0.6;
  }
}


/* ======================================
   AJUSTEMENT DE RYTHME ENTRE CES 2 BLOCS
   ====================================== */

#zones-prioritaires {
  padding-bottom: 40px;
}

#liste-villes {
  padding-top: 40px;
}

@media (max-width: 720px) {
  #zones-prioritaires {
    padding-bottom: 28px;
  }

  #liste-villes {
    padding-top: 28px;
  }
}

/* =========================
   Zone d’intervention — départements couverts
   ========================= */

.zone-departments {
  margin-top: 28px;
}

.zone-departments__label {
  margin: 0 0 14px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(20, 20, 20, 0.58);
  text-transform: uppercase;
}

.zone-departments__list {
  list-style: none;
  margin: 0;
  padding: 0;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 24px;
}

.zone-departments__list li {
  position: relative;
  padding-left: 14px;

  font-size: 1rem;
  line-height: 1.5;
  color: rgba(20, 20, 20, 0.82);
}

.zone-departments__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;

  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(207, 152, 77, 0.8);
}

@media (max-width: 1100px) {
  .zone-departments__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .zone-departments {
    margin-top: 22px;
  }

  .zone-departments__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .zone-departments__list li {
    font-size: 0.98rem;
  }
}


/* =========================
   Liste des villes par département
   ========================= */

.cities-grid {
  column-count: 2;
  column-gap: 36px;
  margin-top: 18px;
}

.city-dept {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;

  display: inline-block;
  width: 100%;
  margin: 0 0 24px;
  vertical-align: top;
}

.city-dept__title {
  margin: 0 0 12px;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
  color: #111;
}

.city-links-list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.8;
}

.city-links-list li+li {
  margin-top: 2px;
}

.city-links-list a {
  text-decoration: none;
  color: inherit;
}

@media (hover: hover) and (pointer: fine) {
  .city-links-list a:hover {
    opacity: 0.65;
  }
}

@media (min-width: 1600px) {
  .cities-grid {
    column-count: 3;
  }
}

@media (max-width: 900px) {
  .cities-grid {
    column-count: 1;
  }

  .city-dept {
    margin-bottom: 22px;
  }
}

/* =========================
   Liste des villes par département
   ========================= */

.cities-grid {
  column-count: 2;
  column-gap: 36px;
  margin-top: 18px;
}

.city-dept {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;

  display: inline-block;
  width: 100%;
  margin: 0 0 24px;
  vertical-align: top;
}

.city-dept__title {
  margin: 0 0 12px;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
  color: #111;
}

.city-links-list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.8;
}

.city-links-list li+li {
  margin-top: 2px;
}

.city-links-list a {
  text-decoration: none;
  color: inherit;
}

@media (hover: hover) and (pointer: fine) {
  .city-links-list a:hover {
    opacity: 0.65;
  }
}

@media (min-width: 1600px) {
  .cities-grid {
    column-count: 3;
  }
}

@media (max-width: 900px) {
  .cities-grid {
    column-count: 1;
  }

  .city-dept {
    margin-bottom: 22px;
  }
}

/* PATCH HOME : espacement intro sous titre dans les section-box */
.section-box>.section__intro {
  margin-bottom: 18px;
}

/* PATCH HOME : meilleure gestion des intros dans les section-head */
.section-head .section__intro {
  max-width: 60ch;
}

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

.grid2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 720px) {
  .grid2 {
    grid-template-columns: 1fr;
  }
}

.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);
}

/* PATCH HOME : liens intégrés dans les notes */
.note .link-highlight {
  margin-left: 6px;
  white-space: nowrap;
}

/* 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;
  /* reset button styles when used as a button */
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.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;
}

/* =========================
   Icônes du bloc approche
   ========================= */

#approche .card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  margin: 0 auto 20px;
  line-height: 0;
  border-radius: 50%;
  background: #000;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#approche .card-icon svg {
  display: block;
  width: 56px;
  height: 56px;
  max-width: 100%;
  max-height: 100%;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

#approche .card h3 {
  margin-top: 0;
}

#approche .card:hover .card-icon {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

#approche .card:hover .card-icon svg {
  transform: scale(1.08);
  opacity: 0.95;
}

/* 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;
  max-width: 1460px;
  width: min(1460px, calc(100% - 56px));
  margin: 0 auto;
  padding: 0;
}

.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;
  -webkit-tap-highlight-color: transparent;

  flex-direction: column;
  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;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(6px);
  z-index: 2000;
  pointer-events: none;
}

.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;
  max-height: calc(100svh - 100px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.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;
}

/* Boutons CTA dans le menu mobile — globaux (indépendants de la taille de fenêtre) */
.cta-header-mobile {
  display: block;
  margin-top: 12px;
  padding: 10px;
  text-align: center;
  border-radius: 8px;
  background: #f2a65a;
  font-weight: 700;
  font-size: 0.9rem;
  color: #1a1a1a;
  -webkit-text-fill-color: #1a1a1a;
  border: none;
  cursor: pointer;
  width: 100%;
  text-decoration: none;
  box-sizing: border-box;
}

/* Surclasse .mobile-menu__links a (spec 0,1,1) grâce à la double classe (spec 0,2,0) */
.mobile-menu__links .cta-header-mobile {
  background: #f2a65a;
  color: #1a1a1a;
  -webkit-text-fill-color: #1a1a1a;
  border: none;
  padding: 12px;
}

/* Cache le burger quand le menu est ouvert — global (burger apparaît jusqu'à 1050px) */
.burger[aria-expanded="true"] {
  display: none !important;
}

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

@media (max-width: 1100px) {
  .brand img {
    height: 130px;
  }

  .hero__content {
    padding: 82px 0 44px;
  }

  .section {
    padding: 62px 0;
  }

  .section-box {
    padding: 30px;
  }

  .projects {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* PATCH HOME : stacks plus propres pour nouveaux contenus */
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-head .section__intro {
    max-width: 76ch;
  }
}

/* Mobile only */
@media (max-width: 720px) {

  /* header plus compact + logo plus visible */
  .header__inner {
    padding: 10px 0;
  }

  .brand img {
    height: 110px;
  }

  /* 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 */
  .hero {
    min-height: 66vh;
  }

  .hero__content {
    padding: 72px 0 42px;
    max-width: 100%;
  }

  /* PATCH HOME : hero et contenus plus longs */
  h1 {
    font-size: clamp(1.95rem, 8vw, 2.7rem);
    line-height: 1.08;
  }

  .lead {
    font-size: 1rem;
  }

  .hero__proofs {
    gap: 10px;
    font-size: .92rem;
  }

  .hero__proofs li {
    display: block;
    width: 100%;
  }

  .hero__proofs li::after {
    display: none;
  }

  .note .link-highlight {
    display: inline-block;
    margin-left: 0;
    margin-top: 6px;
  }

  .section-box {
    padding: 24px;
  }

  .section-box h2 {
    margin-bottom: 10px;
  }

  .form__actions .btn {
    width: 100%;
  }

  #approche .section-head .section__intro {
    max-width: 100%;
  }

  #approche .card-icon {
    width: 78px;
    height: 78px;
  }

  #approche .card-icon svg {
    width: 52px;
    height: 52px;
  }
}

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

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

.modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
  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;
  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;
}

/* 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 */
.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;
}

/* Indique discrètement qu'on peut scroller */
.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);
  transition:
    background .18s ease,
    border-color .18s ease,
    transform .18s ease,
    box-shadow .18s ease;
}

.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);
}

/* 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;
  font-size: 0.88rem;
  line-height: 1.5;
  opacity: 0.85;
}

.footer__coords p {
  margin: 0 0 4px;
}

.footer__coords a {
  text-decoration: underline;
}

.footer__coords strong {
  font-weight: 600;
}

.footer__title {
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  opacity: 0.7;
}

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

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

  .nav,
  .nav--desktop {
    display: none !important;
  }

  .header__inner {
    padding: 8px 0;
    gap: 8px;
  }

  .brand {
    flex: 0 0 auto;
    max-width: 120px;
  }

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

  .header__phone {
    flex: 0 0 auto;
    padding: 8px 10px;
    font-size: 0.85rem;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .burger {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }
}


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

.nav__group--cities-wrapper {
  flex-basis: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  min-width: 0;
}

.nav__group--cities {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
  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.25rem;
  padding: 6px 10px;
  border-radius: 10px;
  cursor: pointer;

  color: rgba(255, 255, 255, .65);
  opacity: 0;
  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;
  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;
  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-block {
  margin-top: 28px;
  width: 100%;
  overflow: hidden;
}

.material-gallery-head {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 5;
}

.material-gallery-nav {
  display: flex;
  gap: 12px;
}

.material-gallery-nav__btn {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  cursor: pointer;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.10),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    opacity 0.2s ease;
}

.material-gallery-nav__btn svg {
  width: 20px;
  height: 20px;
}

.material-gallery-nav__btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
}

.material-gallery-nav__btn:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

/* viewport scrollable */
.material-gallery {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 0 18px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

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

.material-track {
  display: flex;
  gap: 26px;
  padding: 0 12px;
  width: max-content;
  min-width: 100%;
}

.material-card {
  flex: 0 0 min(720px, 82vw);
  width: min(720px, 82vw);
  scroll-snap-align: center;
  opacity: 0.85;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

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

.material-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.material-card__media img {
  display: block;
  width: 100%;
  height: clamp(280px, 34vw, 420px);
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.material-card__label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  max-width: calc(100% - 28px);
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #111;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.material-card:hover .material-card__label {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

/* dots */
.material-gallery-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  width: 100%;
}

.material-gallery-dots__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: all 0.25s ease;
}

.material-gallery-dots__dot:hover {
  background: rgba(0, 0, 0, 0.5);
}

.material-gallery-dots__dot.is-active {
  width: 26px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.85);
}

/* ==========================
   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;
}

.section--gallery-light .material-card__media img {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

/* responsive */
@media (max-width: 720px) {
  .material-gallery-head {
    margin-bottom: 14px;
  }

  .material-gallery-nav__btn {
    width: 46px;
    height: 46px;
  }

  .material-gallery-nav__btn svg {
    width: 18px;
    height: 18px;
  }

  .material-track {
    gap: 18px;
    padding: 0 8px;
  }

  .material-card {
    flex: 0 0 88vw;
    width: 88vw;
    scroll-snap-align: start;
  }

  .material-card__label {
    font-size: 0.78rem;
    padding: 7px 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    border-radius: 12px;
    text-align: center;
    max-width: calc(100% - 28px);
  }

  .material-card:hover .material-card__label {
    transform: translateX(-50%) translateY(-2px);
  }

  .material-gallery-dots {
    gap: 12px;
  }

  .material-gallery-dots__dot {
    width: 12px;
    height: 12px;
  }

  .material-gallery-dots__dot.is-active {
    width: 24px;
    height: 12px;
  }
}

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

.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;
}



/* =========================================================
   PATCH HOMEPAGE — nouvelle structure / sans régression
   ========================================================= */

.nav--desktop .nav__group:not(.nav__group--cities)>a {
  white-space: nowrap;
}

#approche .section-head {
  align-items: flex-start;
}

#services .grid3 {
  align-items: stretch;
}

#services .card {
  height: 100%;
}

.section-box[style*="text-align:center"] .section__intro {
  max-width: 76ch;
}

#contact {
  scroll-margin-top: 100px;
}

.contact-section-box {
  text-align: left;
}

.contact-section-box__actions {
  margin-top: 56px;
  text-align: center;
}

.contact-section-box__actions .btn {
  display: inline-flex;
}

#zone .section__intro {
  max-width: 72ch;
}

/* =========================================================
   POPUP FORMULAIRE MULTI-ETAPES — VERSION PREMIUM VISIBLE
   ========================================================= */

/* BASE */
#leadFormModal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
}

#leadFormModal.is-open {
  display: block;
}

#leadFormModal[aria-hidden="true"] {
  display: none;
}

#leadFormModal[aria-hidden="false"] {
  display: block;
}

/* OVERLAY PLUS PROFOND */
.lead-form-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .68);
  backdrop-filter: blur(10px);
}

/* PANEL */
.lead-form-modal__panel {
  position: relative;
  width: min(980px, calc(100% - 24px));
  max-height: calc(100vh - 20px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;

  margin: 10px auto;
  padding: 34px 36px 40px;

  border-radius: 26px;
  background: #ffffff;

  box-shadow:
    0 40px 120px rgba(0, 0, 0, .35),
    0 10px 40px rgba(0, 0, 0, .12);

  animation: modalIn .28s cubic-bezier(.2, .8, .2, 1);
}

@keyframes modalIn {
  from {
    transform: translateY(18px) scale(.98);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* CLOSE */
.lead-form-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;

  width: 44px;
  height: 44px;

  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .08);

  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(6px);

  font-size: 18px;
  cursor: pointer;

  transition: all .2s ease;
}

.lead-form-modal__close:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

/* PROGRESSION PLUS VISIBLE */
.lead-form-modal__progress {
  margin-bottom: 22px;
}

.lead-form-modal__progress-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .08);
  overflow: hidden;
}

.lead-form-modal__progress-bar span {
  display: block;
  height: 100%;
  width: 50%;
  border-radius: 999px;

  background: linear-gradient(90deg, #CF984D, #e0b06a);
  box-shadow: 0 6px 14px rgba(207, 152, 77, .35);

  transition: width .25s ease;
}

.lead-form-modal__progress-text {
  margin-top: 8px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--muted);
}

/* INTRO PLUS EDITORIALE */
.lead-form-modal__intro {
  margin-bottom: 26px;
  max-width: 680px;
}

.lead-form-modal__intro h2 {
  font-size: clamp(1.9rem, 2.6vw, 2.5rem);
  line-height: 1.1;
  margin-bottom: 12px;
}

.lead-form-modal__intro .section__intro {
  font-size: 1rem;
  color: var(--muted);
}

/* STEP */
.lead-step {
  display: none;
}

.lead-step.is-active {
  display: block;
  animation: stepFade .2s ease;
}

@keyframes stepFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

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

/* FORM */
.form-stack {
  display: grid;
  gap: 40px;
}

/* CHAMPS */
.form--lead input,
.form--lead textarea {
  transition: all .18s ease;
}

.form--lead input:focus,
.form--lead textarea:focus {
  box-shadow: 0 0 0 4px rgba(207, 152, 77, .15);
}

/* QUESTIONS / TITRES */
.choice-group {
  margin: 0;
  padding: 0;
  border: 0;
}

/* SÉPARATEUR ENTRE QUESTIONS */
.choice-group+.choice-group {
  position: relative;
  margin-top: 36px;
  padding-top: 28px;
}

.choice-group+.choice-group::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 2px;
  background: #CF984D;
  border-radius: 2px;
}

/* TITRES */
.choice-group legend {
  margin-bottom: 16px;
  font-weight: 800;
  font-size: 1.08rem;
  color: #111;
  letter-spacing: 0.01em;
}

/* NOTE */
.legend-note,
.field-optional {
  font-weight: 500;
  color: var(--muted);
  font-size: .9em;
}

/* CARTES DE CHOIX PREMIUM */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.choice-grid--compact {
  grid-template-columns: repeat(4, 1fr);
}

.choice-card {
  position: relative;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  opacity: 0;
}

.choice-card span {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 18px;

  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, .08);
  background: #fff;

  box-shadow: 0 8px 20px rgba(0, 0, 0, .05);

  font-weight: 600;
  color: #111;

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease,
    border-color .2s ease,
    color .2s ease;
}

.choice-card:hover span {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
}

.choice-card input:checked+span {
  border-color: #CF984D;
  background: #CF984D;
  color: #fff;

  box-shadow:
    0 16px 40px rgba(0, 0, 0, .18),
    0 0 0 2px rgba(207, 152, 77, .40);
}

/* =========================
   DROPZONE / UPLOAD
   ========================= */

.upload-field__label {
  margin: 0 0 12px;
  font-weight: 800;
  font-size: 1.08rem;
  color: #111;
  letter-spacing: 0.01em;
}

.lead-dropzone {
  margin-top: 10px;
  border: 1px dashed rgba(207, 152, 77, 0.8);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.02);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  width: 100%;
  cursor: pointer;
}

.lead-dropzone:hover,
.lead-dropzone:focus {
  border-color: #CF984D;
  background: rgba(207, 152, 77, 0.06);
  box-shadow: var(--shadow-soft);
  outline: none;
}

.lead-dropzone.dragover {
  border-color: #CF984D;
  background: rgba(207, 152, 77, 0.10);
  transform: scale(1.01);
  box-shadow: var(--shadow-soft);
}

.lead-dropzone__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
}

.lead-dropzone__icon-svg {
  width: 46px;
  height: 46px;
  display: block;
  color: #CF984D;
}

.lead-dropzone__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}

.lead-dropzone__subtitle {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.5;
  text-align: center;
}

.lead-upload-link {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  width: auto;
  color: inherit;
  text-decoration: underline;
  font-size: inherit;
  font-weight: 700;
  cursor: pointer;
}

.lead-upload-link:hover {
  opacity: 0.75;
}

.lead-dropzone__file-name {
  margin: 14px 0 0;
  font-size: .92rem;
  color: var(--muted);
  min-height: 20px;
}

/* Quand un fichier est chargé, on masque le contenu éditorial de la dropzone */
.lead-dropzone.has-file .lead-dropzone__icon,
.lead-dropzone.has-file .lead-dropzone__title,
.lead-dropzone.has-file .lead-dropzone__subtitle,
.lead-dropzone.has-file .lead-dropzone__file-name {
  display: none;
}

/* =========================
   APERÇU UPLOAD
   ========================= */

.lead-upload-preview {
  margin-top: 18px;
}

.lead-upload-preview__image {
  display: block;
  width: 100%;
  max-width: 960px;
  max-height: 420px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}

.lead-upload-preview__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
}

.lead-upload-preview__name {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  word-break: break-word;
}

.lead-upload-preview__delete {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.lead-upload-preview__delete:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.20);
}

/* CONSENTEMENT */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;

  background: rgba(0, 0, 0, .04);
  border: 1px solid rgba(0, 0, 0, .08);
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  flex: 0 0 auto;
  accent-color: #CF984D;
}

.form-consent span {
  font-size: .95rem;
  line-height: 1.55;
}

/* FOOTER ACTIONS */
#leadFormModal .lead-form-actions {
  position: static;

  display: flex;
  align-items: center;
  gap: 12px;

  padding-top: 8px;
  padding-bottom: 4px;
  margin-top: 24px;

  background: transparent;
}

#leadFormModal .lead-form-actions--step1 {
  justify-content: flex-end;
}

#leadFormModal .lead-form-actions--step2 {
  justify-content: space-between;
}

#leadFormModal .lead-form-actions .btn {
  min-height: 52px;
  font-weight: 700;
}

.lead-form-actions .btn[type="submit"] {
  padding-left: 32px;
  padding-right: 32px;
}

/* ERREURS */
.form-error {
  margin-top: 12px;
  font-weight: 600;
  color: #b42318;
}

/* MOBILE */
@media (max-width: 720px) {
  #leadFormModal {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .lead-form-modal__panel {
    width: 100%;
    max-height: none;
    min-height: 100%;
    margin: 0;
    padding: 22px 16px 40px;
    border-radius: 0;
  }

  .form-consent span {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .form-stack {
    gap: 24px;
  }

  .choice-grid,
  .choice-grid--compact {
    grid-template-columns: 1fr;
  }

  .lead-dropzone {
    padding: 24px 16px;
    border-radius: 18px;
  }

  .lead-dropzone__title {
    font-size: 1.05rem;
    line-height: 1.35;
  }

  .lead-dropzone__subtitle {
    font-size: .92rem;
  }

  .lead-dropzone__icon-svg {
    width: 42px;
    height: 42px;
  }

  .lead-upload-preview__image {
    max-height: 260px;
    border-radius: 18px;
  }

  .lead-upload-preview__meta {
    align-items: flex-start;
  }

  .lead-upload-preview__delete {
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
  }

  #leadFormModal .lead-form-actions {
    justify-content: stretch;
  }

  #leadFormModal .lead-form-actions--step1,
  #leadFormModal .lead-form-actions--step2 {
    justify-content: stretch;
  }

  #leadFormModal .lead-form-actions .btn {
    width: 100%;
  }
}

/* =========================
   ERREURS CHAMPS / GROUPES
   ========================= */

.field-error-text {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #b42318;
}

.form--lead input.is-invalid,
.form--lead textarea.is-invalid,
.form--lead select.is-invalid {
  border-color: #b42318 !important;
  box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.12) !important;
}

.choice-group.is-invalid legend,
.form-consent.is-invalid span {
  color: #b42318;
}

.choice-group.is-invalid .choice-grid,
.form-consent.is-invalid {
  position: relative;
}

.choice-group.is-invalid .choice-card span {
  border-color: rgba(180, 35, 24, 0.35);
}

.form-consent.is-invalid {
  border-color: rgba(180, 35, 24, 0.35);
  box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.08);
}

.lead-form-actions .btn[disabled] {
  opacity: 0.72;
  cursor: wait;
  pointer-events: none;
}

.lead-form-actions .btn.is-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn__spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btnSpin .7s linear infinite;
  flex: 0 0 auto;
}

@keyframes btnSpin {
  to {
    transform: rotate(360deg);
  }
}

/* =========================
   CTA flottant unifié
   ========================= */

.floating-cta {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 1200;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  min-height: 68px;
  padding: 0 30px;

  border: none;
  border-radius: 999px;

  background: #CF984D;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  cursor: pointer;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);

  opacity: 0;
  transform: translateY(16px) scale(0.96);

  transition:
    opacity .35s cubic-bezier(.22, 1, .36, 1),
    transform .35s cubic-bezier(.22, 1, .36, 1),
    box-shadow .2s ease;
}

.floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.floating-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.floating-cta:active {
  transform: translateY(0) scale(0.98);
}

.floating-cta__icon {
  width: 38px;
  height: 38px;
  display: block;
  flex: 0 0 auto;
}

.floating-cta span {
  display: block;
  white-space: nowrap;
}

/* tablette / mobile */
@media (max-width: 959px) {
  .floating-cta {
    right: 16px;
    left: 16px;
    bottom: 16px;

    width: auto;
    min-height: 60px;
    padding: 0 22px;
    gap: 12px;

    font-size: 1rem;
  }

  .floating-cta__icon {
    width: 32px;
    height: 32px;
  }
}

/* petits mobiles */
@media (max-width: 420px) {
  .floating-cta {
    min-height: 56px;
    padding: 0 18px;
    font-size: 0.95rem;
  }

  .floating-cta__icon {
    width: 28px;
    height: 28px;
  }
}

.floating-cta.is-hidden-near-footer {
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  pointer-events: none;
}

/* pages où le CTA doit être masqué */
body.simulateur-page .floating-cta,
body.generateur-page .floating-cta {
  display: none !important;
}


/* =========================
   HERO VILLES (image background)
   ========================= */

.section--hero-villes {
  position: relative;
  background: #000;
  overflow: hidden;
}

/* =========================
   HERO VILLES (image background)
   ========================= */

.section--hero-villes {
  position: relative;
  background: #000;
  overflow: hidden;
}

.section--hero-villes::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/img/sud-ouest.jpg") center / cover no-repeat;
  opacity: 0.85;
}

.section--hero-villes::after {
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.35));

}

.section--hero-villes .container {
  position: relative;
  z-index: 2;
}

.section--hero-villes .section-box {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(5px);
  border-radius: 18px;
}

.section--hero-villes h1,
.section--hero-villes .section-kicker {
  color: #111;
}


/* =========================
   POSITIONNEMENT COMPACT
   ========================= */

.positioning-duo {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 26px;
}

.positioning-duo__content {
  order: 1;
  padding: 34px;
  background: #f4f3f1;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 26px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.positioning-duo__visual {
  order: 2;
  border-radius: 26px;
}

.positioning-duo__eyebrow {
  margin: 0 0 12px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666;
  font-weight: 700;
}

.positioning-duo__title {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 1.9vw, 1.8rem);
  line-height: 1.15;
}

.positioning-duo__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #222;
  max-width: 34ch;
}

/* =========================
   CARTE GRAPHIQUE
   ========================= */

.positioning-graphic-card {
  position: relative;
  height: 100%;
  min-height: 320px;
  border-radius: 26px;
  overflow: hidden;
  background: #050505;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.positioning-graphic-card--interactive {
  position: relative;
  overflow: hidden;
}

/* graphique complet : on ne coupe rien */
.positioning-graphic-image {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: opacity 1.2s ease;
}

/* photo projet : elle remplit le cadre */
.positioning-graphic-fade-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04);
  filter: brightness(0.92);
  transition:
    opacity 1.2s ease-in-out,
    transform 1.4s ease-out,
    filter 1.2s ease-in-out;
  pointer-events: none;
  z-index: 1;
}

/* =========================
   LOGO LEN INTERACTIF
   ========================= */

.positioning-graphic-len {
  position: absolute;
  top: 14%;
  right: 16%;
  width: 34%;
  pointer-events: none;
  z-index: 2;
  transform: scale(0.6);
  transition:
    transform 1.1s cubic-bezier(.22, 1, .36, 1),
    filter 0.28s ease,
    opacity 0.6s ease 0.6s;
}

.positioning-graphic-len__logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 0 rgba(207, 152, 77, 0));
}

.positioning-graphic-card--interactive:hover .positioning-graphic-len {
  transform: translateY(-4px) scale(1);
}

.positioning-graphic-card--interactive:hover .positioning-graphic-len__logo {
  filter: drop-shadow(0 0 18px rgba(207, 152, 77, 0.28));
}

/* état activé après délai JS */
.positioning-graphic-card--interactive.is-faded .positioning-graphic-fade-image {
  opacity: 1;
  transform: scale(1);
  filter: brightness(1);
}

.positioning-graphic-card--interactive.is-faded .positioning-graphic-image {
  opacity: 0.15;
}

.positioning-graphic-card--interactive.is-faded .positioning-graphic-len {
  opacity: 0;
}

/* =========================
   UX MOBILE : HINT + RETOUR
   ========================= */

.positioning-graphic-hint {
  display: none;
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 6;

  opacity: 1;
  align-items: center;
  justify-content: center;
  gap: 6px;

  padding: 8px 12px;
  border-radius: 999px;

  background: rgba(0, 0, 0, 0.78);
  color: #fff;

  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
  pointer-events: none;
}

.positioning-graphic-hint__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.positioning-graphic-hint__icon-svg {
  width: 22px;
  height: 22px;
  color: #CF984D;
  display: block;
  flex: 0 0 auto;
  transform: rotate(180deg) scaleX(-1);
  transform-origin: center;
}

.positioning-graphic-back {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 7;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 12px;
  border: none;
  border-radius: 999px;

  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;

  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);

  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.positioning-graphic-back:hover {
  background: rgba(0, 0, 0, 0.76);
}

.positioning-graphic-card--interactive.is-faded .positioning-graphic-back {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* animation */
@keyframes positioningHintPulse {

  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  }

  30% {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  }

  60% {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  }
}

/* état après interaction : disparition très rapide */
.positioning-graphic-hint.is-static {
  animation: none !important;
  opacity: 0;
  transform: translateY(-4px) scale(0.96);
  pointer-events: none;
}


/* =========================
   VERSION MOBILE
   ========================= */

.positioning-mobile-cards {
  display: none !important;
}

@media (max-width: 1100px) {
  .positioning-graphic-hint {
    display: inline-flex;
  }

  .positioning-graphic-hint:not(.is-static):not(.is-shown-static) {
    animation: positioningHintPulse 1.2s cubic-bezier(.22, 1, .36, 1) infinite;
  }

  .positioning-duo {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .positioning-duo__content {
    order: 1;
    display: block;
    max-width: none;
  }

  .positioning-duo__visual {
    display: block;
    order: 2;
  }

  .positioning-graphic-card {
    min-height: auto;
  }

  .positioning-graphic-card--interactive {
    cursor: pointer;
  }

  .positioning-graphic-len {
    top: 11%;
    right: 16%;
    width: 34%;
  }
}

/* desktop : on masque les aides mobiles */
@media (min-width: 1101px) {

  .positioning-graphic-hint,
  .positioning-graphic-back {
    display: none !important;
  }
}

@media (max-width: 720px) {
  .positioning-duo {
    gap: 16px;
  }

  .positioning-duo__content {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .positioning-duo__title {
    font-size: 1.55rem;
  }

  .positioning-duo__text {
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: none;
  }

  .positioning-graphic-card {
    border-radius: 20px;
  }

  .positioning-graphic-len {
    top: 10%;
    right: 14%;
    width: 34%;
  }

  .positioning-graphic-hint {
    top: 4px;
    right: 10px;
    padding: 7px 11px;
    font-size: 0.7rem;
    gap: 5px;
  }

  .positioning-graphic-hint__icon-svg {
    width: 24px;
    height: 24px;
  }

  .positioning-graphic-back {
    top: 12px;
    left: 12px;
    padding: 7px 11px;
    font-size: 0.74rem;
  }
}

/* ======================================
   HOME + PAGES ÉDITORIALES — minimal premium pass
   ====================================== */

/* largeur généreuse mais sage */
body.home main>.section .container,
body.home main>section.section .container,
body.site-page main>.section .container,
body.site-page main>section.section .container {
  max-width: 1460px;
  width: min(1460px, calc(100% - 56px));
}

@media (max-width: 720px) {

  body.home main>.section .container,
  body.home main>section.section .container,
  body.site-page main>.section .container,
  body.site-page main>section.section .container {
    width: calc(100% - 28px);
  }
}

/* fond global très neutre */
body.home main,
body.home main .section,
body.home main .section.section--light,
body.home main .section.section--sand,
body.site-page main,
body.site-page main .section,
body.site-page main .section.section--light,
body.site-page main .section.section--sand {
  background: #f8f8f6;
}

body.home main .section.section--dark,
body.site-page main .section.section--dark {
  background: linear-gradient(180deg, var(--dark), var(--dark2));
  color: #fff;
}

/* bloc principal */
body.home main .section-box,
body.site-page main .section-box {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.025);
  border-radius: 28px;
  padding: 34px;
}

@media (max-width: 720px) {

  body.home main .section-box,
  body.site-page main .section-box {
    padding: 22px 18px;
    border-radius: 22px;
  }
}

/* cards */
body.home main .card,
body.home main .positioning-duo__content,
body.home main .positioning-mobile-card,
body.site-page main .card,
body.site-page main .positioning-duo__content,
body.site-page main .positioning-mobile-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.045);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.02);
  border-radius: 22px;
}

/* hiérarchie typographique */
body.home main h2,
body.site-page main h2 {
  letter-spacing: -0.04em;
  line-height: 1.03;
}

body.home main h3,
body.site-page main h3 {
  letter-spacing: -0.025em;
  line-height: 1.14;
}

body.home main .section__intro,
body.home main .positioning-duo__text,
body.home main .card p,
body.site-page main .section__intro,
body.site-page main .positioning-duo__text,
body.site-page main .card p {
  color: rgba(20, 20, 20, 0.74);
}

body.home main .section-kicker,
body.home main .positioning-duo__eyebrow,
body.site-page main .section-kicker,
body.site-page main .positioning-duo__eyebrow {
  color: rgba(20, 20, 20, 0.46);
  letter-spacing: 0.11em;
}

/* rythme vertical */
body.home main .section,
body.site-page main .section {
  padding-top: 58px;
  padding-bottom: 58px;
}

@media (max-width: 720px) {

  body.home main .section,
  body.site-page main .section {
    padding-top: 34px;
    padding-bottom: 34px;
  }
}

/* grilles */
body.home main .grid3,
body.home main .grid2,
body.site-page main .grid3,
body.site-page main .grid2 {
  gap: 20px;
}

@media (max-width: 720px) {

  body.home main .grid3,
  body.home main .grid2,
  body.site-page main .grid3,
  body.site-page main .grid2 {
    gap: 14px;
  }
}

/* duo */
body.home main .positioning-duo,
body.site-page main .positioning-duo {
  gap: 26px;
}

body.home main .positioning-duo__content,
body.site-page main .positioning-duo__content {
  padding: 32px;
}

@media (max-width: 720px) {

  body.home main .positioning-duo__content,
  body.site-page main .positioning-duo__content {
    padding: 22px 18px;
  }
}

/* cards en 3 colonnes */
body.home main .grid3 .card,
body.site-page main .grid3 .card {
  padding: 24px 22px;
}

body.home main .grid3 .card h3,
body.site-page main .grid3 .card h3 {
  margin-bottom: 12px;
}

@media (max-width: 720px) {

  body.home main .grid3 .card,
  body.site-page main .grid3 .card {
    padding: 20px 18px;
  }
}

/* boutons */
body.home main .btn,
body.home main button:not(.burger):not(.mobile-menu__close),
body.site-page main .btn,
body.site-page main button:not(.burger):not(.mobile-menu__close) {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* hover desktop très subtil */
@media (hover: hover) and (pointer: fine) {

  body.home main .card,
  body.home main .positioning-duo__content,
  body.site-page main .card,
  body.site-page main .positioning-duo__content {
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease,
      border-color 0.2s ease;
  }

  body.home main .card:hover,
  body.home main .positioning-duo__content:hover,
  body.site-page main .card:hover,
  body.site-page main .positioning-duo__content:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.06);
  }
}


/* =========================
   Accompagnement — image + contenu
   ========================= */

.services-layout {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 22px;
}

.services-media {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.045);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.02);
}

.services-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.services-content .grid3 {
  margin-top: 0;
}

.services-content .conclusion-block {
  margin-top: 28px;
}

@media (max-width: 1100px) {
  .services-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .services-media img {
    min-height: 300px;
  }
}

/* ======================================
   HOME + PAGES ÉDITORIALES — section-head éditorial avec barre ocre
   ====================================== */

body.home .section-head,
body.site-page .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: start;
  gap: 36px;
}

body.home .section-head .section__intro,
body.site-page .section-head .section__intro {
  position: relative;
  max-width: 760px;
  margin: 0;
  padding-left: 18px;
  font-size: 1.08rem;
  line-height: 1.55;
  color: rgba(20, 20, 20, 0.88);
  font-weight: 450;
}

body.home .section-head .section__intro::before,
body.site-page .section-head .section__intro::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 2px;
  border-radius: 999px;
  background: rgba(207, 152, 77, 0.5);
}

/* ======================================
   LISIBILITÉ SECTIONS SOMBRES
   Surcharge les règles body.home/site-page
   qui ont une spécificité plus élevée
   ====================================== */

/* Kicker et titres directs en section sombre */
body.home main .section.section--dark .section-kicker,
body.site-page main .section.section--dark .section-kicker {
  color: var(--gold);
}

body.home main .section.section--dark h1,
body.home main .section.section--dark h2,
body.site-page main .section.section--dark h1,
body.site-page main .section.section--dark h2 {
  color: #fff;
}

body.home main .section.section--dark .section__intro,
body.site-page main .section.section--dark .section__intro,
body.home .section.section--dark .section-head .section__intro,
body.site-page .section.section--dark .section-head .section__intro {
  color: rgba(255, 255, 255, 0.80);
}

body.home .section.section--dark .section-head .section__intro::before,
body.site-page .section.section--dark .section-head .section__intro::before {
  background: rgba(255, 255, 255, 0.25);
}

/* Textes directs dans section-box sombre avec couleurs hardcodées */
body.home main .section.section--dark .approach-visual-intro,
body.site-page main .section.section--dark .approach-visual-intro {
  color: rgba(255, 255, 255, 0.82);
}

body.home main .section.section--dark .approach-cta p,
body.site-page main .section.section--dark .approach-cta p {
  color: rgba(255, 255, 255, 0.78);
}

body.home main .section.section--dark .partners-showcase__intro,
body.site-page main .section.section--dark .partners-showcase__intro {
  color: rgba(255, 255, 255, 0.78);
}

/* Projects dans #approche sombre — !important requis car règles sources aussi !important */
body.home .section.section--dark .projects--inside-approach .project__title,
body.site-page .section.section--dark .projects--inside-approach .project__title {
  color: #fff !important;
}

body.home .section.section--dark .projects--inside-approach .project__body p,
body.site-page .section.section--dark .projects--inside-approach .project__body p,
body.home .section.section--dark .projects--inside-approach .muted-dark,
body.site-page .section.section--dark .projects--inside-approach .muted-dark {
  color: rgba(255, 255, 255, 0.68) !important;
}

/* Cartes blanches dans sections sombres : textes doivent rester sombres */
body.home main .section.section--dark .card h3,
body.site-page main .section.section--dark .card h3 {
  color: var(--ink);
}

body.home main .section.section--dark .card p,
body.site-page main .section.section--dark .card p {
  color: rgba(20, 20, 20, 0.72);
}

@media (max-width: 1100px) {

  body.home .section-head,
  body.site-page .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body.home .section-head .section__intro,
  body.site-page .section-head .section__intro {
    max-width: none;
    padding-left: 14px;
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* ======================================
   HOME — intro visuels approche
   ====================================== */

.approach-visual-intro {
  max-width: 1180px;
  margin: 42px auto 30px;
  text-align: left;
  text-wrap: balance;
  font-size: 1.08rem;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: rgba(20, 20, 20, 0.84);
}

.approach-visual-intro::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1.2em;
  margin-right: 14px;
  vertical-align: -0.15em;
  border-radius: 999px;
  background: rgba(207, 152, 77, 0.5);
}

@media (min-width: 1280px) {
  .approach-visual-intro {
    max-width: 1320px;
  }
}

@media (max-width: 1100px) {
  .approach-visual-intro {
    max-width: none;
    margin: 32px 0 22px;
    font-size: 1rem;
    line-height: 1.55;
  }
}

@media (max-width: 720px) {
  .approach-visual-intro {
    font-size: 0.96rem;
    line-height: 1.55;
  }
}

/* ======================================
   HOME — visuels dans le bloc approche
   ====================================== */

body.home .projects--inside-approach,
body.site-page .projects--inside-approach {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

body.home .projects--inside-approach .project,
body.site-page .projects--inside-approach .project {
  background: transparent;
  border: none;
  box-shadow: none;
  transition: transform 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {

  body.home .projects--inside-approach .project:hover,
  body.site-page .projects--inside-approach .project:hover {
    transform: translateY(-4px);
  }

  body.home .projects--inside-approach .project:hover img,
  body.site-page .projects--inside-approach .project:hover img {
    transform: scale(1.1);
  }
}

body.home .projects--inside-approach .project__media,
body.site-page .projects--inside-approach .project__media {
  display: block;
  overflow: hidden;
  border-radius: 20px;
}

body.home .projects--inside-approach .project__media img,
body.site-page .projects--inside-approach .project__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  transition: transform 0.6s ease;
}

body.home .projects--inside-approach .project__body,
body.site-page .projects--inside-approach .project__body {
  margin-top: 14px;
}

body.home .projects--inside-approach .project__title,
body.home .projects--inside-approach .project__body,
body.home .projects--inside-approach .project__body p,
body.home .projects--inside-approach .muted-dark,
body.site-page .projects--inside-approach .project__title,
body.site-page .projects--inside-approach .project__body,
body.site-page .projects--inside-approach .project__body p,
body.site-page .projects--inside-approach .muted-dark {
  color: #111 !important;
}

body.home .projects--inside-approach .project__title,
body.site-page .projects--inside-approach .project__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

body.home .projects--inside-approach .project__body p,
body.site-page .projects--inside-approach .project__body p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #666 !important;
}

@media (max-width: 900px) {

  body.home .projects--inside-approach,
  body.site-page .projects--inside-approach {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* ======================================
   HOME — correction visuels "Notre approche"
   ====================================== */

body.home .projects--inside-approach .project__media,
body.site-page .projects--inside-approach .project__media {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  aspect-ratio: 4 / 3;
  line-height: 0;
}

body.home .projects--inside-approach .project__media img,
body.site-page .projects--inside-approach .project__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

/* TEST header bleu */
.site-header {
  background: #00273d !important;
}

/* =========================
   Personnalisation — partenaires finitions
   ========================= */

.partners-showcase {
  margin-top: 28px;
}

.partners-showcase__intro {
  margin: 0 0 18px;
  max-width: 980px;

  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(20, 20, 20, 0.72);
}


/* ===== Bande noire ===== */

.partners-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;

  padding: 20px;
  border-radius: 22px;

  background: linear-gradient(180deg, #0d0d0d, #141414);
}


/* ===== Cards partenaires ===== */

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* 🔥 centrage vertical */
  text-align: center;

  gap: 18px;

  min-height: 170px;
  padding: 24px 20px;

  border-radius: 16px;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);

  text-decoration: none;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}


/* ===== Logo ===== */

.partner-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 60px;
}

.partner-card__logo img {
  display: block;

  max-width: 220px;
  max-height: 50px;

  width: auto;
  height: auto;

  filter: brightness(0) invert(1);
  opacity: 0.9;

  transition:
    filter 0.35s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}



.partner-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
}


/* ===== Texte ===== */

.partners-strip .partner-card .partner-card__text {
  margin: 0;

  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 600;

  color: #ffffff !important;
  text-align: center;
}


/* ===== Hover ===== */

@media (hover: hover) and (pointer: fine) {

  .partner-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);

    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
  }

  .partner-card:hover img {
    opacity: 1;
    transform: scale(1.12);
  }
}


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

@media (max-width: 980px) {
  .partners-strip {
    grid-template-columns: 1fr;
  }

  .partner-card {
    min-height: auto;
  }
}

@media (max-width: 720px) {

  .partners-showcase {
    margin-top: 22px;
  }

  .partners-showcase__intro {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .partners-strip {
    padding: 16px;
    border-radius: 16px;
  }

  .partner-card {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .partner-card__logo img {
    max-width: 180px;
    max-height: 44px;
  }

  .partner-card__text {
    font-size: 0.92rem;
  }
}


/* =========================
   CTA approche (remplace la bulle)
   ========================= */

.approach-cta {
  position: relative;
  margin-top: 36px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.approach-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 62%;
  height: 2px;
  background: rgba(207, 152, 77, 0.7);
  border-radius: 999px;
}

.approach-cta p {
  margin: 0;
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(20, 20, 20, 0.75);
}

.approach-cta .btn {
  white-space: nowrap;
}

@media (max-width: 720px) {
  .approach-cta {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 18px;
  }

  .approach-cta::before {
    width: 100%;
  }

  .approach-cta .btn {
    margin-top: 8px;
  }
}

.approach-cta--with-visual {
  align-items: center;
  flex-wrap: nowrap;
}

.approach-cta--with-visual .approach-cta__main {
  flex: 1 1 auto;
  min-width: 0;
}

.approach-cta--with-visual .approach-cta__main p {
  max-width: 400px;
}

.approach-cta--with-visual > .btn {
  flex-shrink: 0;
  align-self: center;
}

.approach-cta--simulator {
  display: grid;
  grid-template-columns: 1fr 440px auto;
  align-items: center;
  gap: 40px;
}

.approach-cta--simulator > p {
  max-width: none;
}

.approach-cta--simulator .approach-preview__slider,
.approach-cta--simulator .approach-preview__labels {
  max-width: 100%;
}

.approach-cta--simulator > .btn {
  align-self: center;
}

.approach-preview {
  margin-top: 14px;
}

.approach-preview__slider {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 8px;
  background: #f3efe7;
  user-select: none;
  cursor: ew-resize;
}

.approach-preview__slider .before-after-base,
.approach-preview__slider .before-after-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.approach-preview__slider .before-after-base img,
.approach-preview__slider .before-after-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.approach-preview__slider .before-after-overlay {
  width: 50%;
  overflow: hidden;
  border-right: 2px solid rgba(255,255,255,0.95);
}

.approach-preview__slider .before-after-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0;
  pointer-events: none;
}

.approach-preview__slider .before-after-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -18px;
  width: 36px;
  height: 36px;
  margin-top: -18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

.approach-preview__slider .before-after-handle::after {
  content: "↔";
  position: absolute;
  top: 50%;
  left: -8px;
  transform: translateY(-50%);
  font-size: 15px;
  font-weight: 700;
  color: #1f1f1f;
}

.approach-preview__slider .before-after-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
}

.approach-preview__slider .before-after-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -140%);
  background: rgba(0,0,0,0.62);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding: 6px 11px;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.9;
  white-space: nowrap;
}

.approach-preview__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  max-width: 360px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(20,20,20,0.5);
}

.approach-preview__labels span:last-child {
  color: #CF984D;
}

.section--dark .approach-preview__labels span:first-child {
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 720px) {
  .approach-cta--with-visual {
    flex-wrap: wrap;
  }
  .approach-cta--with-visual > .btn {
    width: 100%;
  }
  .approach-cta--simulator {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Slider avant / après
   ========================= */

.ba-slider {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin: 36px auto 0;
  max-width: 900px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  cursor: ew-resize;
}

.ba-slider__track {
  position: relative;
  display: block;
  user-select: none;
  -webkit-user-select: none;
}

.ba-slider__img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.ba-slider__before-wrap {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--split, 50%)) 0 0);
}

.ba-slider__img--before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split, 50%);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 4;
}

.ba-slider__line {
  flex: 1;
  width: 2px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0,0,0,0.35);
}

.ba-slider__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.28);
}

.ba-slider__tag {
  position: absolute;
  top: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(0,0,0,0.48);
  padding: 4px 12px;
  border-radius: 20px;
  pointer-events: none;
  z-index: 3;
}

.ba-slider__tag--before { left: 14px; }
.ba-slider__tag--after  { right: 14px; }

.ba-slider__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  touch-action: pan-y;
}

/* =========================
   Section simulateur
   ========================= */

.simulator-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.simulator-text h2 {
  color: #fff;
  margin-top: 12px;
}

.simulator-steps {
  list-style: none;
  padding: 0;
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.simulator-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.simulator-step__num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #CF984D;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.simulator-step strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.simulator-step p {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.5;
}

.simulator-visual {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.simulator-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.simulator-visual--placeholder::before {
  content: 'Capture du simulateur à venir';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.simulator-visual--placeholder img {
  display: none;
}

.simulator-visual__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.75);
  font-size: 0.72rem;
  padding: 7px 14px;
  text-align: center;
  letter-spacing: 0.03em;
}

.simulator-visual--placeholder .simulator-visual__caption {
  display: none;
}

@media (max-width: 860px) {
  .simulator-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .simulator-visual {
    order: -1;
    min-height: 200px;
  }
}

/* =========================
   Conclusions éditoriales
   ========================= */

body.home #services .note,
body.home #zone .note,
body.site-page #services .note,
body.site-page #zone .note {
  position: relative;
  margin-top: 34px;
  padding-left: 22px;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  font-size: 1.12rem;
  line-height: 1.55;
  color: rgba(20, 20, 20, 0.9);
  font-weight: 500;
  letter-spacing: -0.01em;
  max-width: 980px;
}

body.home #services .note::before,
body.home #zone .note::before,
body.site-page #services .note::before,
body.site-page #zone .note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  bottom: 0.25em;
  width: 3px;
  border-radius: 999px;
  background: #CF984D;
}

@media (max-width: 720px) {

  body.home #services .note,
  body.home #zone .note,
  body.site-page #services .note,
  body.site-page #zone .note {
    font-size: 1rem;
    padding-left: 18px;
    margin-top: 26px;
  }
}

/* =========================
   Conclusion avec icône premium
   ========================= */

.conclusion-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  max-width: 980px;
}

.conclusion-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.conclusion-icon svg {
  width: 36px;
  height: auto;
  color: #CF984D;
}

.conclusion-block p {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(20, 20, 20, 0.9);
}

@media (max-width: 720px) {
  .conclusion-block {
    align-items: flex-start;
    gap: 12px;
  }

  .conclusion-icon {
    width: 38px;
    height: 38px;
  }

  .conclusion-icon svg {
    width: 18px;
  }

  .conclusion-block p {
    font-size: 1rem;
  }
}

/* =========================================================
   HEADER NEW — structure premium
   ========================================================= */

.site-header-new {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(20, 20, 20, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-new__inner {
  width: min(1460px, calc(100% - 56px));
  margin: 0 auto;
  min-height: 72px;
  padding: 14px 0;

  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.header-new__brand img {
  display: block;
  height: 82px;
  width: auto;
  transition: opacity 0.18s ease;
}

.header-new__brand:hover img {
  opacity: 0.82;
}

.header-new__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-width: 0;
}

.header-new__nav a,
.header-new__dropdown-trigger {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: color 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.header-new__nav a::after,
.header-new__dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #CF984D;
  transition: width 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-new__nav a:hover,
.header-new__dropdown-trigger:hover {
  color: #ffffff;
}

.header-new__nav a:hover::after,
.header-new__dropdown-trigger:hover::after {
  width: 100%;
}

.header-new__contact-trigger {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.header-new__contact-trigger:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
}

.header-new__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-new__simulate,
.header-new__contact-trigger {
  min-height: 40px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.84rem;
  white-space: nowrap;
}

.header-new__simulate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #CF984D;
  color: #0b0b0b;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(207, 152, 77, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-new__simulate:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(207, 152, 77, 0.38);
}

.header-new__contact-trigger {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
}

.header-new__dropdown {
  position: relative;
}

.header-new__dropdown-panel {
  position: absolute;
  top: 100%;
  right: 0;
  padding-top: 12px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  pointer-events: none;

  transition:
    opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.22s;
}

.header-new__dropdown:hover .header-new__dropdown-panel,
.header-new__dropdown:focus-within .header-new__dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.header-new__contact-panel {
  width: 440px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);

  display: grid;
  grid-template-columns: 1fr 152px;
  gap: 20px;
}

.header-new__contact-panel strong {
  display: block;
  margin-bottom: 8px;
}

.header-new__contact-panel p {
  margin: 0 0 8px;
  line-height: 1.5;
  font-size: 0.875rem;
  color: rgba(20, 20, 20, 0.72);
}

.header-new__contact-panel a {
  color: inherit;
  font-size: 0.875rem;
}

.header-new__contact-panel a:hover {
  color: inherit;
}

.header-new__contact-actions {
  display: grid;
  gap: 10px;
  align-content: start;
}

.header-new__phone,
.header-new__study {
  min-height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.header-new__phone {
  gap: 8px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #111;
  background: #fff;
}

.header-new__phone:hover {
  background: #f7f7f7;
  transform: translateY(-1px);
}

.header-new__study {
  border: none;
  background: #CF984D;
  color: #0b0b0b;
  cursor: pointer;
}

.header-new__study:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(207, 152, 77, 0.36);
}

.header-new__cities-panel {
  right: auto;
  left: 50%;
  transform: translate(-50%, 4px);

  width: 300px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);

  display: grid;
  gap: 4px;
}

.header-new__dropdown:hover .header-new__cities-panel,
.header-new__dropdown:focus-within .header-new__cities-panel {
  transform: translate(-50%, 0);
}

.header-new__cities-panel a {
  padding: 9px 12px;
  border-radius: 10px;
  color: #111;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.16s ease, padding-left 0.16s ease;
}

.header-new__cities-panel a:hover {
  background: rgba(207, 152, 77, 0.14);
  padding-left: 18px;
  color: #111;
}

.header-new__company-panel {
  right: auto;
  left: 50%;
  transform: translate(-50%, 4px);

  width: 220px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);

  display: grid;
  gap: 4px;
}

.header-new__dropdown:hover .header-new__company-panel,
.header-new__dropdown:focus-within .header-new__company-panel {
  transform: translate(-50%, 0);
}

.header-new__company-panel a {
  padding: 9px 12px;
  border-radius: 10px;
  color: #111;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.16s ease, padding-left 0.16s ease;
}

.header-new__company-panel a:hover {
  background: rgba(207, 152, 77, 0.14);
  padding-left: 18px;
  color: #111;
}

/* Palier 1 — légèrement réduit (1050 → 1400px) */
@media (max-width: 1400px) {
  .header-new__inner { gap: 20px; }
  .header-new__nav { gap: 18px; }
  .header-new__nav a,
  .header-new__dropdown-trigger,
  .header-new__contact-trigger { font-size: 0.8rem; }
  .header-new__brand img { height: 64px; }
}

/* Palier 2 — compact (1050 → 1200px) */
@media (max-width: 1200px) {
  .header-new__inner { gap: 14px; }
  .header-new__nav { gap: 10px; }
  .header-new__nav a,
  .header-new__dropdown-trigger,
  .header-new__contact-trigger { font-size: 0.74rem; letter-spacing: 0; }
  .header-new__simulate,
  .header-new__contact-trigger { padding: 8px 12px; min-height: 36px; }
  .header-new__brand img { height: 56px; }
}

/* Palier 3 — burger (<1050px) */
@media (max-width: 1050px) {
  .header-new__nav,
  .header-new__actions {
    display: none;
  }
  .header-new__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 18px;
    min-height: 64px;
  }
  .header-new__brand img { height: 54px; }
  .burger { display: inline-flex !important; }
}

@media (max-width: 720px) {
  .header-new__inner {
    width: calc(100% - 28px);
    min-height: 58px;
  }

  .header-new__brand img {
    height: 54px;
  }
}

/* ======================================
   PAGE BUDGET — BARRE DE PRIX & TIMELINE
   ====================================== */

/* --- Barre de prix spectre --- */
.price-spectrum {
  margin: 28px 0 30px;
}

.price-spectrum__bar {
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(90deg,
    #e8d9b8 0%,
    #CF984D 50%,
    #96650f 100%
  );
  display: flex;
  overflow: hidden;
}

.price-spectrum__zone {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.25;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.price-spectrum__zone:nth-child(1) { color: rgba(70, 45, 5, 0.88); }
.price-spectrum__zone:nth-child(2) { color: #fff; }
.price-spectrum__zone:nth-child(3) { color: rgba(255, 255, 255, 0.88); border-right: none; }

.price-spectrum__ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.price-spectrum__tick {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text, #1a1a1a);
}

.price-spectrum__tick--mid {
  color: var(--muted, #888);
  font-weight: 600;
}

/* --- Cards budget enrichies --- */
.budget-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.budget-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(207, 152, 77, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.budget-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: #CF984D;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.budget-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted, #888);
  margin: 0;
}

.budget-card__value {
  font-size: 1.42rem;
  font-weight: 800;
  color: #CF984D;
  line-height: 1.15;
  margin: 2px 0 0;
  letter-spacing: -0.02em;
}

.budget-card__value .unit {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted, #888);
  letter-spacing: 0;
}

.budget-card__sub {
  font-size: 0.8rem;
  color: var(--muted, #888);
  margin: 2px 0 0;
}

.budget-card__text {
  font-size: 0.94rem;
  line-height: 1.55;
  margin: 4px 0 0;
}

/* --- Timeline des lots --- */
.budget-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0 4px;
  margin-top: 44px;
  position: relative;
}

.budget-timeline::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(207, 152, 77, 0.1),
    rgba(207, 152, 77, 0.65) 15%,
    rgba(207, 152, 77, 0.65) 85%,
    rgba(207, 152, 77, 0.1)
  );
  z-index: 0;
}

.budget-timeline__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 0 6px;
}

.budget-timeline__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #CF984D;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(207, 152, 77, 0.32);
}

.budget-timeline__icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.budget-timeline__title {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  margin: 0 0 12px;
  color: var(--color-text, #1a1a1a);
  line-height: 1.35;
}

.budget-timeline__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.7;
  color: var(--muted, #888);
  width: fit-content;
}

.budget-timeline__list li {
  padding-left: 12px;
  position: relative;
}

.budget-timeline__list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: #CF984D;
}

.budget-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin-top: 8px;
}

.budget-table th {
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.budget-table td {
  padding: 10px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
}

.budget-table tr:last-child td {
  border-bottom: none;
}

.delta-positive {
  color: #7dd87d;
  font-weight: 600;
}

.budget-compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  overflow: hidden;
}

.budget-compare-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  gap: 12px;
}

.budget-compare-list li:last-child {
  border-bottom: none;
}

.budget-compare-list__total {
  background: rgba(255,255,255,0.06);
  font-weight: 700;
  color: #fff !important;
}

.budget-compare-list__value {
  white-space: nowrap;
  color: #e07070;
  font-weight: 600;
}

.budget-compare-list__total .budget-compare-list__value {
  color: #e07070;
}

@media (max-width: 640px) {
  .budget-table {
    display: block;
  }
  .budget-table thead {
    display: none;
  }
  .budget-table tbody {
    display: block;
  }
  .budget-table tr {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .budget-table tr:last-child {
    border-bottom: none;
  }
  .budget-table td {
    display: block;
    padding: 2px 0;
    border-bottom: none;
    color: rgba(255,255,255,0.85);
  }
  .budget-table td:first-child {
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    font-size: 0.9rem;
  }
  .budget-table td:nth-child(2)::before {
    content: 'Prix marché : ';
    color: rgba(255,255,255,0.45);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .budget-table td:nth-child(3)::before {
    content: 'Valeur créée : ';
    color: rgba(255,255,255,0.45);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .budget-compare-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .budget-compare-list__value {
    font-size: 1rem;
  }
}

@media (max-width: 900px) {
  .budget-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }

  .budget-timeline::before { display: none; }

  .budget-timeline__step {
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    padding: 0;
  }

  .budget-timeline__icon { margin-bottom: 0; }
  .budget-timeline__title { text-align: left; }
}

@media (max-width: 560px) {
  .budget-timeline { grid-template-columns: 1fr; }

  .price-spectrum__zone {
    font-size: 0.62rem;
    padding: 0 4px;
    letter-spacing: 0.03em;
  }
}

/* ======================================
   PROJECT TIMELINE (index / homepage)
   ====================================== */

/* Phase labels row */
.proj-timeline-meta {
  display: flex;
  margin-bottom: 10px;
}

.proj-timeline-meta__zone {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 4px 4px 0 0;
}

.proj-timeline-meta__zone--common {
  flex: 8;
  background: rgba(11, 11, 11, 0.04);
  color: rgba(11, 11, 11, 0.4);
  border-bottom: 2px solid rgba(11, 11, 11, 0.08);
}

.proj-timeline-meta__gap {
  flex: 1;
}

.proj-timeline-meta__zone--ours {
  flex: 8;
  background: rgba(207, 152, 77, 0.08);
  color: #8f5f1a;
  border-bottom: 2px solid rgba(207, 152, 77, 0.4);
}

.proj-timeline {
  display: flex;
  align-items: flex-start;
  margin: 0 0 36px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.proj-timeline__step {
  flex: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 6px;
}

.proj-timeline__connector {
  flex: 1;
  min-width: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 19px;
  flex-shrink: 0;
}

.proj-timeline__line {
  width: 100%;
  height: 2px;
  background: var(--line);
}

.proj-timeline__line--site {
  background: var(--gold);
}

.proj-timeline__dur {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 6px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.proj-timeline__dur--site {
  color: #b07022;
}

.proj-timeline__dur-note {
  display: block;
  font-size: 0.6rem;
  color: var(--muted);
  margin-top: 3px;
  text-align: center;
  line-height: 1.35;
  white-space: normal;
  width: 100%;
}


.proj-timeline__node {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f4f2;
  border: 2px solid rgba(11, 11, 11, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--muted);
  flex-shrink: 0;
  margin-bottom: 14px;
}

.proj-timeline__node--prod {
  background: rgba(207, 152, 77, 0.18);
  border-color: rgba(207, 152, 77, 0.4);
  color: #8f5f1a;
}

.proj-timeline__node--site {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 4px 14px rgba(207, 152, 77, 0.4);
}

.proj-timeline__node--end {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.proj-timeline__text {
  width: 100%;
}

.proj-timeline__title {
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0 0 5px;
  line-height: 1.3;
  color: var(--ink);
}

.proj-timeline__step--site .proj-timeline__title {
  color: #8f5f1a;
}

.proj-timeline__desc {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}


@media (max-width: 860px) {
  .proj-timeline-meta { display: none; }

  .proj-timeline {
    flex-direction: column;
    gap: 0;
    overflow-x: unset;
  }

  .proj-timeline__step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 14px;
    padding: 0;
    flex: unset;
    width: 100%;
  }

  .proj-timeline__step .proj-timeline__node {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .proj-timeline__step .proj-timeline__text {
    padding-top: 10px;
  }

  .proj-timeline__connector {
    flex-direction: row;
    padding-top: 0;
    padding-left: 19px;
    height: 36px;
    align-items: center;
    gap: 10px;
    width: 100%;
    flex: unset;
    min-width: unset;
  }

  .proj-timeline__line {
    width: 2px;
    height: 100%;
    flex-shrink: 0;
  }

  .proj-timeline__dur {
    margin-top: 0;
  }

}

/* ======================================
   MENTIONS LÉGALES
   ====================================== */

.legal-page h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 36px;
}

.legal-page h2 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 40px 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--line);
}

.legal-page h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 24px 0 8px;
  color: var(--ink);
}

.legal-page p,
.legal-page li {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 10px;
}

.legal-page ul {
  padding-left: 20px;
  margin: 0 0 14px;
}

.legal-page li {
  margin-bottom: 6px;
}

.legal-page a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-update {
  margin-top: 48px;
  font-size: 0.78rem !important;
  color: rgba(0,0,0,0.35) !important;
  font-style: italic;
}

/* Footer legal link */
.footer__legal-link {
  opacity: 0.55;
  transition: opacity 0.2s;
}

.footer__legal-link:hover {
  opacity: 1;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer__social-link:hover {
  color: #fff;
}

.footer__social-link svg {
  width: 22px;
  height: 22px;
}

/* ======================================
   QUI SOMMES-NOUS
   ====================================== */

.qsn-headline {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.18;
  margin: 0 0 32px;
  letter-spacing: -0.02em;
}

.qsn-story {
  max-width: 72ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.75;
}

.qsn-story p {
  margin: 0 0 18px;
}

.qsn-story strong {
  color: #fff;
}

.qsn-team-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 8px 0 44px;
  line-height: 1.2;
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
}

.team-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.team-card__photo-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1a1a1a;
}

.team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.team-card__body {
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.team-card__role {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold);
}

.team-card__name {
  margin: 0 0 14px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.team-card__bio {
  margin: 0 0 20px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--muted);
  flex: 1;
}

.team-card__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0a66c2;
  opacity: 0.85;
  transition: opacity 0.18s;
  margin-top: auto;
}

.team-card__linkedin:hover {
  opacity: 1;
}

/* Convictions */
.qsn-convictions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.qsn-conviction__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 10px;
}

.qsn-conviction p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
}

@media (max-width: 860px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  .team-card__photo-wrap {
    aspect-ratio: 3 / 2;
  }

  .team-card__photo {
    object-position: center 20%;
  }

  .qsn-convictions {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .qsn-headline {
    font-size: 1.75rem;
  }
}

/* ======================================
   LIGHTBOX
   ====================================== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 7, 0.92);
  cursor: pointer;
}

.lightbox__stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: min(92vw, 1100px);
  padding: 0 56px;
  box-sizing: border-box;
}

.lightbox__img-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  object-fit: contain;
  transition: opacity 0.22s ease;
}

.lightbox__img.is-loading {
  opacity: 0;
}

.lightbox__caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  text-align: center;
  letter-spacing: 0.01em;
}

/* Close button */
.lightbox__close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 2px solid var(--gold);
  background: rgba(20, 20, 20, 0.85);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox__close:hover {
  background: var(--gold);
  color: #0b0b0b;
  transform: scale(1.08);
}

.lightbox__close svg {
  width: 20px;
  height: 20px;
}

/* Prev / Next buttons */
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 2px solid rgba(207, 152, 77, 0.55);
  background: rgba(20, 20, 20, 0.75);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox__nav:hover {
  border-color: var(--gold);
  background: rgba(207, 152, 77, 0.15);
  transform: translateY(-50%) scale(1.08);
}

.lightbox__nav:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

.lightbox__nav svg {
  width: 20px;
  height: 20px;
}

.lightbox__nav--prev {
  left: 0;
}

.lightbox__nav--next {
  right: 0;
}

/* Entrance animation */
@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox:not([hidden]) .lightbox__img-wrap {
  animation: lightboxIn 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (max-width: 600px) {
  .lightbox__stage {
    padding: 0 44px;
  }

  .lightbox__nav {
    width: 40px;
    height: 40px;
  }

  .lightbox__close {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
  }
}

/* ======================================
   RATE LIMIT MODAL
   ====================================== */

.rate-modal {
  position: fixed;
  inset: 0;
  z-index: 9100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.rate-modal[hidden] {
  display: none;
}

.rate-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 7, 0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.rate-modal__box {
  position: relative;
  z-index: 1;
  background: #0b0b0b;
  border: 1px solid rgba(207, 152, 77, 0.28);
  border-radius: 20px;
  padding: 44px 40px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  animation: ratemodalIn 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes ratemodalIn {
  from { opacity: 0; transform: scale(0.94) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.rate-modal__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  color: var(--gold);
}

.rate-modal__icon svg {
  width: 100%;
  height: 100%;
}

.rate-modal__title {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 16px;
}

.rate-modal__body {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 28px;
}

.rate-modal__body strong {
  color: var(--gold);
  font-weight: 600;
}

.rate-modal__cta {
  width: 100%;
}

.rate-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(207, 152, 77, 0.35);
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.rate-modal__close:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.rate-modal__close svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 540px) {
  .rate-modal__box {
    padding: 36px 24px 28px;
  }
}

/* ==========================
   SHOWCASE RÉALISATION (pages piliers)
========================== */
.ville-showcase {
  position: relative;
  margin-top: 28px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.ville-showcase img {
  width: 100%;
  display: block;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
}

.ville-showcase__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 10, 10, 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.ville-showcase__badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #CF9844;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .ville-showcase__badge {
    font-size: 9px;
    padding: 5px 10px;
    gap: 5px;
    letter-spacing: 0.04em;
    bottom: 12px;
    left: 12px;
    white-space: nowrap;
  }
  .ville-showcase__badge::before {
    width: 5px;
    height: 5px;
  }
}

/* ── Partenaires ─────────────────────────────── */
.partner-detail { display: grid; grid-template-columns: 1fr 280px; gap: 48px; align-items: start; margin-top: 28px; }
@media (max-width: 860px) { .partner-detail { grid-template-columns: 1fr; } }

.partner-detail__kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; border-radius: 16px; overflow: hidden; }
.partner-detail__kpi { background: var(--color-bg); padding: 20px 18px; display: flex; flex-direction: column; gap: 4px; }
.partner-detail__kpi-value { font-size: 1.6rem; font-weight: 800; color: var(--color-accent); line-height: 1; }
.partner-detail__kpi-label { font-size: 0.78rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.05em; }

.btn--outline { background: transparent; border: 2px solid var(--color-text); color: var(--color-text); }
.btn--outline:hover { background: var(--color-text); color: var(--color-bg); }

.partner-logo-dark { background: #0a0a0a; border-radius: 12px; padding: 20px 28px; display: flex; align-items: center; justify-content: center; }
.partner-logo-dark img { height: 44px; object-fit: contain; filter: brightness(0) invert(1); }
.partner-logo-dark--card { border-radius: 12px 12px 0 0; padding: 28px 32px; }

.partner-logo-dark--hero { width: 100%; padding: 32px 48px; margin-bottom: 32px; border-radius: 16px; }
.partner-logo-dark--hero img { height: 64px; }

.partner-detail__photo { width: 100%; margin-top: 8px; border-radius: 12px; object-fit: cover; max-height: 180px; display: block; }

.card { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }

/* ── Metalit header ──────────────────────────── */
.metalit-header { display: flex; align-items: center; gap: 32px; }
.metalit-header__left { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
.metalit-header__photo { flex: 1; max-height: 160px; object-fit: cover; border-radius: 12px; min-width: 0; }
@media (max-width: 640px) { .metalit-header { flex-direction: column; } .metalit-header__photo { width: 100%; } }

.partner-logo-dark--inline { padding: 14px 24px; border-radius: 10px; display: inline-flex; align-items: center; }
.partner-logo-dark--inline img { height: 36px; filter: brightness(0) invert(1); object-fit: contain; }

/* ── Metalit KPIs ────────────────────────────── */
.metalit-kpis { display: flex; flex-direction: column; gap: 2px; border-radius: 12px; overflow: hidden; }
.metalit-kpi { background: var(--color-bg); padding: 14px 18px; display: flex; align-items: baseline; gap: 10px; }
.metalit-kpi__value { font-size: 1.25rem; font-weight: 800; color: var(--color-accent); white-space: nowrap; }
.metalit-kpi__label { font-size: 0.82rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.04em; }

/* =========================
   POST-SUBMIT BOX (global)
   ========================= */

.post-submit-box {
  margin: 0 0 28px;
  padding: 30px 26px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(247,245,241,0.96));
  border: 1px solid rgba(207,152,77,0.18);
  box-shadow: 0 18px 48px rgba(0,0,0,0.07), 0 2px 10px rgba(0,0,0,0.03);
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  filter: blur(6px);
  transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1), transform 0.55s cubic-bezier(0.22,1,0.36,1), filter 0.55s cubic-bezier(0.22,1,0.36,1);
}
.post-submit-box.is-visible { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
.post-submit-inner { max-width: 760px; margin: 0 auto; }
.post-submit-icon { display: flex; justify-content: center; align-items: center; margin-bottom: 14px; opacity: 0; transform: translateY(10px) scale(0.94); transition: opacity 0.45s cubic-bezier(0.22,1,0.36,1) 0.08s, transform 0.45s cubic-bezier(0.22,1,0.36,1) 0.08s; }
.post-submit-box.is-visible .post-submit-icon { opacity: 1; transform: translateY(0) scale(1); }
.post-submit-icon-svg { width: 34px; height: 34px; display: block; color: #CF984D; }
.post-submit-inner h3 { margin: 0 0 10px; font-size: clamp(1.35rem,2vw,1.7rem); opacity: 0; transform: translateY(12px); transition: opacity 0.45s cubic-bezier(0.22,1,0.36,1) 0.14s, transform 0.45s cubic-bezier(0.22,1,0.36,1) 0.14s; }
.post-submit-box.is-visible .post-submit-inner h3 { opacity: 1; transform: translateY(0); }
.post-submit-inner p { margin: 0 auto 18px; max-width: 62ch; color: #5b5b5b; line-height: 1.6; opacity: 0; transform: translateY(12px); transition: opacity 0.48s cubic-bezier(0.22,1,0.36,1) 0.2s, transform 0.48s cubic-bezier(0.22,1,0.36,1) 0.2s; }
.post-submit-box.is-visible .post-submit-inner p { opacity: 1; transform: translateY(0); }
.post-submit-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; opacity: 0; transform: translateY(12px); transition: opacity 0.5s cubic-bezier(0.22,1,0.36,1) 0.26s, transform 0.5s cubic-bezier(0.22,1,0.36,1) 0.26s; }
.post-submit-box.is-visible .post-submit-actions { opacity: 1; transform: translateY(0); }
.post-submit-actions .btn { background: #CF984D; color: #fff; border: none; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; }
.post-submit-actions .btn:hover { background: #b97f2f; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(207,152,77,0.25); }
.btn--primary-ocre { background: #CF984D; color: #fff; border: none; }
.btn--primary-ocre:hover { background: #b97f2f; }
@media (max-width: 720px) {
  .post-submit-box { padding: 22px 16px; border-radius: 18px; }
  .post-submit-icon-svg { width: 30px; height: 30px; }
  .post-submit-actions .btn { width: 100%; }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: #111;
  color: #f5f5f5;
  padding: 1.1rem 2rem;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-banner__icon { width: 52px; height: 52px; flex-shrink: 0; opacity: 0.9; }
.cookie-banner__text { flex: 1; min-width: 240px; }
.cookie-banner__title { font-weight: 600; font-size: 0.9rem; margin: 0 0 3px; color: #fff; }
.cookie-banner__desc { font-size: 0.8rem; color: #aaa; margin: 0; line-height: 1.5; }
.cookie-banner__desc a { color: #CF984D; text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
  line-height: 1;
}
.cookie-btn:hover { transform: translateY(-1px); }
.cookie-btn--refuse {
  background: transparent;
  color: #999;
  border: 1px solid rgba(255,255,255,0.18);
}
.cookie-btn--refuse:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
.cookie-btn--accept { background: #CF984D; color: #fff; }
.cookie-btn--accept:hover { background: #b97f2f; opacity: 1; }
@media (max-width: 600px) {
  .cookie-banner { padding: 1rem; }
  .cookie-banner__inner { gap: 0.75rem; }
  .cookie-banner__actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; padding: 0.6rem 0.75rem; }
}

/* ===== BLOG ===== */
.blog-main { padding: 60px 0 80px; }
.blog-container { max-width: 900px; }

.blog-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}
.blog-hero__text { flex: 1; }
.blog-hero__text h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 8px 0 16px; }
.blog-hero__desc { font-size: 1.05rem; color: var(--color-muted); max-width: 52ch; margin: 0; }
.blog-hero__brand { flex-shrink: 0; }
.blog-hero__logo { height: 200px; width: auto; display: block; }
@media (max-width: 700px) {
  .blog-hero { gap: 16px; }
  .blog-hero__logo { height: 100px; }
}

.blog-grid { display: grid; gap: 24px; }

.mag-section .section-head { margin-bottom: 36px; }
.mag-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.mag-card {
  display: block;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 24px 28px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}
.mag-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.09); transform: translateY(-2px); }
.mag-card__body { width: 100%; }
.mag-card__date { font-size: 0.78rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 8px; }
.mag-card__title { font-size: 1.05rem; font-weight: 700; margin: 0 0 10px; line-height: 1.35; }
.mag-card__desc { font-size: 0.88rem; color: var(--color-muted); margin: 0 0 16px; line-height: 1.6; }
.mag-card__link { font-size: 0.82rem; font-weight: 600; color: var(--color-accent); }
.mag-section__footer { text-align: center; margin-top: 40px; }
@media (max-width: 600px) {
  .mag-card { flex-direction: column; padding: 20px; gap: 16px; }
  .mag-card__body { flex: none; width: 100%; }
  .mag-card__img-wrap { flex: none; width: 100%; height: 160px; }
  .mag-card__img { object-fit: cover; }
}

.blog-card {
  display: flex;
  align-items: center;
  gap: 28px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 24px 28px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card__img-wrap { flex: 0 0 calc(30% - 28px); height: 160px; border-radius: 10px; overflow: hidden; }
.blog-card__body { flex: 1; min-width: 0; }
.blog-card__img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; background: #f5f5f5; transition: transform 0.3s; }
.blog-card:hover .blog-card__img { transform: scale(1.04); }
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.09); transform: translateY(-2px); }
.blog-card__date { font-size: 0.8rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 10px; }
.blog-card__title { font-size: 1.2rem; font-weight: 700; margin: 0 0 10px; line-height: 1.35; }
.blog-card__desc { font-size: 0.92rem; color: var(--color-muted); margin: 0 0 16px; line-height: 1.6; }
.blog-card__link { font-size: 0.85rem; font-weight: 600; color: var(--color-accent); }

.blog-back { display: inline-block; font-size: 0.85rem; color: var(--color-muted); text-decoration: none; margin-bottom: 24px; transition: color 0.2s; }
.blog-back:hover { color: var(--color-text); }

.blog-article__header { margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.blog-article__date { font-size: 0.8rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 12px; }
.blog-article__title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin: 0 0 14px; line-height: 1.25; }
.blog-article__desc { font-size: 1.05rem; color: var(--color-muted); margin: 0; line-height: 1.6; }

.prose { line-height: 1.8; font-size: 1.02rem; color: #2a2a2a; }
.prose h2 { font-size: 1.4rem; margin: 2em 0 0.6em; }
.prose h3 { font-size: 1.15rem; margin: 1.6em 0 0.5em; }
.prose p { margin: 0 0 1.2em; }
.prose ul, .prose ol { padding-left: 1.4em; margin: 0 0 1.2em; }
.prose li { margin-bottom: 0.4em; }
.prose strong { font-weight: 700; }
.prose a { color: var(--color-accent); text-decoration: underline; }
.prose img { max-width: 100%; height: auto; border-radius: 8px; margin: 1.6em 0; display: block; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.6em 0; font-size: 0.95rem; }
.prose th, .prose td { border: 1px solid #e0e0e0; padding: 8px 12px; text-align: left; }
.prose th { background: #f5f5f5; font-weight: 700; }
.prose tr:nth-child(even) td { background: #fafafa; }
.prose hr { border: none; border-top: 1px solid #e0e0e0; margin: 2.5em 0; }
.prose em { font-style: italic; color: var(--color-muted); font-size: 0.9rem; }
.article-split {
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 2.4em 0;
}
.article-split__quote {
  flex: 1;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--color-accent);
  border-left: 4px solid var(--color-accent);
  padding-left: 20px;
  margin: 0;
}
.article-split__img {
  flex-shrink: 0;
  width: 40%;
  height: auto;
  border-radius: 8px;
  display: block;
}
@media (max-width: 600px) {
  .article-split { flex-direction: column; }
  .article-split__img { width: 100%; }
}

.blog-article__cta {
  margin-top: 56px;
  padding: 36px;
  background: #f7f4ef;
  border-radius: 16px;
  text-align: center;
}
.blog-article__cta p { font-size: 1.05rem; margin: 0 0 20px; }

.article-conclusion {
  margin-top: 2.5em;
  padding: 28px 32px;
  background: #f7f4ef;
  border-left: 4px solid #CF984D;
  border-radius: 0 12px 12px 0;
  line-height: 1.8;
}

.article-conclusion strong {
  color: #1a1a1a;
  font-weight: 700;
}

.article-conclusion .accent {
  color: #CF984D;
  font-weight: 600;
}

@media (max-width: 640px) {
  .article-conclusion { padding: 20px 20px 20px 18px; }
  .blog-card { flex-direction: column; padding: 20px; gap: 16px; }
  .blog-card__img-wrap { width: 100%; height: 160px; }
  .blog-card__img { object-fit: cover; }
  .blog-article__cta { padding: 24px 20px; }
}

/* ======================================
   RECOURS TIMELINE (blog article)
   ====================================== */
.recours-compare {
  margin: 1.8em 0 2.2em;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e4ded7;
  font-size: 0.88rem;
}

.recours-compare__scenario {
  padding: 20px 24px 16px;
  background: #fafaf9;
}

.recours-compare__scenario + .recours-compare__scenario {
  border-top: 1px solid #e4ded7;
  background: #fffdf9;
}

.recours-compare__title {
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}

.recours-compare__title--before { color: #999; }
.recours-compare__title--after  { color: var(--gold); }

.recours-compare__axis {
  position: relative;
  height: 18px;
  margin-left: 142px;
  margin-bottom: 4px;
}

.recours-compare__axis span {
  position: absolute;
  font-size: 0.68rem;
  color: #bbb;
  transform: translateX(-50%);
  white-space: nowrap;
}

.recours-compare__axis span:first-child { transform: none; }
.recours-compare__axis span:last-child  { transform: translateX(-100%); }

.recours-compare__row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.recours-compare__row-label {
  width: 130px;
  flex-shrink: 0;
  font-size: 0.76rem;
  color: #666;
  text-align: right;
  line-height: 1.3;
}

.recours-compare__track {
  flex: 1;
  position: relative;
  height: 32px;
  background: #ececec;
  border-radius: 6px;
}

.recours-compare__bar {
  position: absolute;
  top: 0;
  height: 100%;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
}

.recours-compare__bar--g-old   { background: #aaa;           left: 0;   width: 33%; }
.recours-compare__bar--c-old   { background: #d4713a;        left: 33%; width: 67%; }
.recours-compare__bar--g-new   { background: #bbb;           left: 0;   width: 17%; }
.recours-compare__bar--c-new   { background: var(--gold);    left: 0;   width: 33%; }
.recours-compare__bar--r-admin { background: #6b8aad;        left: 0;   width: 67%; }

.recours-compare__footer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  margin-left: 142px;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
}

.recours-compare__footer--bad  { background: #fef1ee; color: #b93c2a; }
.recours-compare__footer--good { background: #edf8f1; color: #1d7a40; }

.recours-compare__note {
  margin: 8px 0 0 142px;
  font-size: 0.72rem;
  color: #999;
  font-style: italic;
}

@media (max-width: 640px) {
  .recours-compare__axis   { margin-left: 0; }
  .recours-compare__row    { flex-direction: column; gap: 2px; }
  .recours-compare__row-label { width: 100%; text-align: left; font-weight: 600; }
  .recours-compare__track  { flex: 0 0 28px; width: 100%; height: 28px; }
  .recours-compare__footer { margin-left: 0; }
  .recours-compare__note   { margin-left: 0; }
}

/* ======================================
   DOWNLOAD GATE MODAL
   ====================================== */
.download-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.download-gate-panel {
  position: relative;
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 32px 36px;
  max-width: 640px;
  width: 100%;
  box-shadow: 0 12px 48px rgba(0,0,0,0.18);
}

.download-gate-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-muted);
  padding: 0;
}

.download-gate-thumb {
  width: 160px;
  height: 120px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  flex-shrink: 0;
}

.download-gate-info {
  flex: 1;
}

.download-gate-msg {
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 0 20px;
  color: var(--color-text);
}

.download-gate-cta {
  width: 100%;
}

@media (max-width: 520px) {
  .download-gate-panel {
    flex-direction: column;
    padding: 28px 20px 24px;
    gap: 18px;
  }
  .download-gate-thumb {
    width: 100%;
    height: 140px;
  }
}

/* GéoRisques CTA block — articles de blog */
.georisques-cta {
  margin: 2em 0;
  padding: 24px 28px;
  background: #f7f4ef;
  border-left: 4px solid #CF984D;
  border-radius: 0 12px 12px 0;
}
.georisques-cta__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px;
}
.georisques-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.georisques-cta__body {
  font-size: 0.95rem;
  color: #3a3a3a;
  margin: 0 0 20px;
  line-height: 1.6;
}
.prose a.georisques-cta__btn {
  color: #0b0b0b;
  text-decoration: none;
}
@media (max-width: 640px) {
  .georisques-cta { padding: 18px 18px 18px 16px; }
}

/* ===== SECTION FABRICATION ATELIER — homepage ===== */
.fabrique-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "content media"
    "cta     media";
  gap: 32px 56px;
  padding: 16px 0;
}
.fabrique-split__content { grid-area: content; }
.fabrique-split__media   { grid-area: media; align-self: center; }
.fabrique-split__cta     { grid-area: cta; }
.fabrique-split__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.fabrique-split__content h2 {
  margin: 8px 0 16px;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.2;
}
.fabrique-split__intro {
  font-size: 1rem;
  line-height: 1.7;
  color: #3a3a3a;
  margin: 0 0 20px;
}
.fabrique-points {
  margin: 0 0 32px;
  padding: 0 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fabrique-points li {
  font-size: 0.95rem;
  color: #3a3a3a;
  line-height: 1.5;
}
.fabrique-split__cta {
  display: flex;
  justify-content: center;
}
.fabrique-split__cta .btn {
  text-align: center;
}
.fabrique-split__media {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #f0ede8;
}
.fabrique-split__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 860px) {
  .fabrique-split {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "media"
      "cta";
    gap: 24px;
  }
  .fabrique-split__media { aspect-ratio: 16 / 9; }
  .fabrique-split__cta { justify-content: center; }
}

/* ===== PAGE NOTRE MÉTHODE ===== */

/* Hero split — photo + texte */
.methode-hero-section {
  padding: 0;
  overflow: hidden;
  background: linear-gradient(to right, #000 0%, #0b0b0b 45%, #101010 100%) !important;
}
.methode-hero-split {
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 440px;
  align-items: center;
}
.methode-hero-split__img {
  height: 100%;
  min-height: 440px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.methode-hero-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.methode-hero-split__content {
  padding: 56px 40px 56px 48px;
}
.methode-hero-split__title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin: 8px 0 32px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.methode-hero-split__intro {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,.78);
  margin: 0 0 14px;
  max-width: 560px;
}

/* Grille 6 étapes */
.methode-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.methode-step-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.07);
  background: #fff;
  display: flex;
  flex-direction: column;
}
.methode-step-card__img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0ede8;
}
.methode-step-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.methode-step-card__num {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 999px;
}
.methode-step-card__body {
  padding: 20px 22px 24px;
  flex: 1;
}
.methode-step-card__body h3 {
  font-size: 1rem;
  margin: 0 0 8px;
}
.methode-step-card__body p {
  font-size: 0.88rem;
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0;
}

/* Structure fusionnée */
.methode-structure-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
.methode-structure-item {
  background: #fff;
  border-radius: 12px;
  padding: 24px 28px;
  border: 1px solid rgba(0,0,0,.07);
}
.methode-structure-item__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 6px;
}
.methode-structure-item h3 {
  font-size: 1rem;
  margin: 0 0 10px;
}
.methode-structure-item p {
  font-size: 0.9rem;
  color: #3a3a3a;
  line-height: 1.6;
  margin: 0;
}
.methode-structure-note {
  margin-top: 20px;
  font-size: 0.88rem;
  color: #555;
  font-style: italic;
  line-height: 1.6;
}
.methode-structure-note a,
.section__intro a[href="/nos-partenaires"] {
  color: var(--color-accent);
  text-decoration: underline;
  font-weight: 600;
}

/* Section "sur site" */
.methode-onsite {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 36px;
}
.methode-onsite__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.methode-onsite__photo {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.methode-onsite__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.methode-onsite__list {
  margin: 0;
  padding: 0 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.methode-onsite__list li {
  font-size: 0.95rem;
  color: #3a3a3a;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .methode-hero-split { grid-template-columns: 1fr; min-height: auto; }
  .methode-hero-split__img { min-height: 320px; }
  .methode-hero-split__content { padding: 40px 24px; }
  .methode-steps-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .methode-structure-duo { grid-template-columns: 1fr; }
  .methode-onsite { grid-template-columns: 1fr; }
  .methode-onsite__photos { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .methode-steps-grid { grid-template-columns: 1fr; }
  .methode-onsite__photos { grid-template-columns: 1fr 1fr; aspect-ratio: auto; }
  .methode-onsite__photo { aspect-ratio: 4 / 3; }
}

/* Map block — articles with embedded map (Leaflet ou Géoportail iframe) */
.map-block { margin: 2em 0; }
.map-block #pprif-map { height: 460px; border-radius: 8px; overflow: hidden; }
.map-iframe { width: 100%; height: 460px; border: none; border-radius: 8px; display: block; }
.map-caption { font-size: 0.85rem; color: var(--color-muted); margin: 8px 0 0; line-height: 1.5; font-style: italic; }
.map-caption a { color: var(--color-accent); text-decoration: underline; }
@media (max-width: 640px) {
  .map-block #pprif-map, .map-iframe { height: 320px; }
}
