/* ==========================================================================
   MB Énergies v2. Feuille de style bespoke.
   Dark theme, motif 3 feuilles (teal/orange/lime), pensé pour finition impeccable.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --teal: #1ba5b2;
  --teal-600: #17909b;
  --teal-050: #e6f6f8;
  --lime: #c1d848;
  --lime-600: #a9c231;
  --orange: #f9a03e;
  --orange-600: #ef8c1f;

  --ink: #0b0f1a;
  --ink-2: #0e1526;
  --slate: #161d31;
  --slate-2: #212a45;
  --slate-3: #2b3555;

  --fg: #eef1f8;
  --fg-soft: #c3cad9;
  --muted: #8b93a7;
  --line: rgba(255, 255, 255, 0.10);
  --line-soft: rgba(255, 255, 255, 0.06);

  --white: #ffffff;
  --card-ink: #131a2c;

  --container: 1200px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 8vw, 7rem);
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.75);
  --shadow-soft: 0 12px 30px -18px rgba(0, 0, 0, 0.6);

  --ff-display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  --ff-body: "Figtree", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--ff-body);
  background: var(--ink);
  color: var(--fg);
  line-height: 1.7;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 6px; }
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; }

/* ---------- Layout primitives ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--tint { background: var(--ink-2); }
.section--slate { background: var(--slate); }
.stack > * + * { margin-top: 1rem; }

.section-head { max-width: 52ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head.center { margin-inline: auto; text-align: center; }

.kicker {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--ff-body);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal);
}
.kicker::before { content: ""; width: 26px; height: 2px; background: currentColor; border-radius: 2px; }
.kicker.lime { color: var(--lime); }
.kicker.orange { color: var(--orange); }

.h2 { font-size: clamp(1.85rem, 3.6vw, 2.9rem); margin-top: 0.7rem; }
.lead { color: var(--fg-soft); font-size: clamp(1.05rem, 1.6vw, 1.2rem); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--orange);
  --btn-fg: #201200;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.9rem 1.5rem;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--ff-body); font-weight: 700; font-size: 1rem;
  border: 0; border-radius: 999px; cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  box-shadow: 0 10px 26px -12px rgba(249, 160, 62, 0.6);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(249, 160, 62, 0.7); background: var(--orange-600); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.15em; height: 1.15em; }

.btn--ghost {
  --btn-bg: rgba(255, 255, 255, 0.03); --btn-fg: var(--fg);
  border: 1.5px solid rgba(255, 255, 255, 0.26); box-shadow: none; backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(255, 255, 255, 0.4); box-shadow: none; }
.btn--sm { padding: 0.6rem 1.1rem; font-size: 0.92rem; }
.btn--teal { --btn-bg: var(--teal); --btn-fg: #04252a; box-shadow: 0 10px 26px -12px rgba(27, 165, 178, 0.55); }
.btn--teal:hover { background: var(--teal-600); box-shadow: 0 16px 34px -12px rgba(27, 165, 178, 0.65); }
.btn--white { --btn-bg: #fff; --btn-fg: #131a2c; box-shadow: var(--shadow-soft); }
.btn--white:hover { background: #eef1f8; }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

.reassure { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--muted); font-size: 0.92rem; }
.reassure b { color: var(--fg-soft); font-weight: 600; }
.reassure .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--lime); }

/* ---------- Header ---------- */
.topbar {
  background: #0a0e18; border-bottom: 1px solid var(--line-soft);
  font-size: 0.85rem; color: var(--fg-soft);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; }
.topbar a { color: var(--fg-soft); }
.topbar a:hover { color: var(--fg); }
.topbar__loc { display: inline-flex; align-items: center; gap: 0.5rem; }
.topbar__right { display: inline-flex; align-items: center; gap: 1.25rem; }
.topbar__right a { display: inline-flex; align-items: center; gap: 0.4rem; white-space: nowrap; }
.topbar__right a svg { flex: none; }
.topbar__right .sep { width: 1px; height: 16px; background: var(--line); }
@media (max-width: 720px) { .topbar__loc { display: none; } }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--slate) 88%, transparent);
  backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  transition: padding 0.2s ease, background 0.2s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 0.85rem; transition: padding 0.2s ease; }
.site-header.is-condensed .container { padding-block: 0.5rem; }
.brand { display: inline-flex; align-items: center; gap: 0.55rem; }
.brand__mark { height: 44px; width: auto; transition: height 0.2s ease; }
.site-header.is-condensed .brand__mark { height: 37px; }
.brand__text { font-family: var(--ff-display); font-weight: 500; font-size: 1.5rem; color: #fff; letter-spacing: -0.01em; line-height: 1; }
.brand__text b { font-weight: 800; }

.nav { display: flex; align-items: center; gap: 1.9rem; }
.nav a { font-weight: 600; font-size: 0.98rem; color: var(--fg-soft); position: relative; padding-block: 0.3rem; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--teal); border-radius: 2px; transition: width 0.2s ease; }
.nav a:hover { color: var(--fg); }
.nav a:hover::after { width: 100%; }
.header-cta { display: inline-flex; align-items: center; gap: 1.1rem; }
.header-phone { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; color: var(--fg); white-space: nowrap; }
.header-phone svg { width: 1.05em; height: 1.05em; color: var(--orange); }

.nav-toggle { display: none; background: transparent; border: 1.5px solid var(--line); border-radius: 12px; padding: 0.5rem 0.6rem; cursor: pointer; }
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 960px) {
  .nav, .header-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.is-open {
    display: flex; position: absolute; inset: 100% 0 auto 0; flex-direction: column; align-items: flex-start;
    gap: 0.4rem; padding: 1rem var(--gutter) 1.4rem; background: var(--slate); border-bottom: 1px solid var(--line);
  }
  .nav.is-open a { width: 100%; padding: 0.6rem 0; border-bottom: 1px solid var(--line-soft); }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: radial-gradient(120% 90% at 85% -10%, rgba(27,165,178,0.16), transparent 55%), radial-gradient(90% 80% at 5% 0%, rgba(249,160,62,0.10), transparent 50%), var(--ink); }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, var(--ink) 100%); pointer-events: none; }
.hero .container { position: relative; z-index: 2; max-width: 1000px; padding-block: clamp(3rem, 6vw, 4.75rem); }
.hero__title { font-size: clamp(2.3rem, 5.2vw, 4rem); font-weight: 800; }
.hero__title .u { color: var(--teal); position: relative; white-space: nowrap; }
.hero__title .u::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0.06em; height: 0.12em; background: linear-gradient(90deg, var(--teal), var(--lime)); border-radius: 4px; opacity: 0.55; }
.hero__title-sub { display: block; margin-top: 0.55rem; font-size: 0.42em; font-weight: 600; line-height: 1.35; color: var(--fg-soft); letter-spacing: 0.005em; }
.hero__lead { margin-top: 1.25rem; max-width: 46ch; color: var(--fg-soft); font-size: clamp(1.08rem, 1.7vw, 1.28rem); }
.hero__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.25rem; }
.hero__chips { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.9rem; background: rgba(255,255,255,0.045); border: 1px solid var(--line); border-radius: 999px; font-size: 0.9rem; color: var(--fg-soft); }
.chip svg { width: 1.05em; height: 1.05em; color: var(--lime); }
.chip .stars { color: var(--orange); letter-spacing: 1px; }
/* Les deux pastilles Avis restent solidaires: elles passent à la ligne ensemble, jamais l'une sans l'autre */
.chip-pair { display: inline-flex; flex-wrap: wrap; gap: 0.6rem; }
.chip--link { text-decoration: none; transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease; }
.chip--link:hover { color: var(--fg); border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.09); }
.chip__bilik {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  width: 1.15rem; height: 1.15rem; border-radius: 5px; background: var(--teal);
  color: #fff; font-family: var(--ff-display); font-weight: 800; font-size: 0.78rem; line-height: 1;
}

.hero__media { position: relative; }
.hero__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--line); }
.hero__badge {
  position: absolute; left: -1.2rem; bottom: 1.4rem; background: var(--white); color: var(--card-ink);
  padding: 0.85rem 1.1rem; border-radius: 16px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 0.7rem;
}
.hero__badge .n { font-family: var(--ff-display); font-weight: 800; font-size: 1.5rem; line-height: 1; color: var(--teal); }
.hero__badge .txt { font-size: 0.82rem; line-height: 1.3; color: #48506a; font-weight: 600; }
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero__media { max-width: 460px; }
}

/* leaf trio decoration */
.leaves { display: inline-flex; gap: 2px; }
.leaves svg { width: 1em; height: 1em; }

/* ---------- Services (signature) ---------- */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
@media (max-width: 900px) { .services__grid { grid-template-columns: 1fr; } }

/* Elegant even-wash cards, centered composition (reprise de l'ancien site). */
.svc {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  min-height: 33rem; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 2.75rem 1.75rem; isolation: isolate; border: 1px solid var(--line);
  color: #fff; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc__img { position: absolute; inset: 0; z-index: -2; }
.svc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.svc:hover .svc__img img { transform: scale(1.05); }
/* Even, saturated colour wash. Image stays subtly visible; a faint vertical shade adds depth without going dark. */
.svc__overlay { position: absolute; inset: 0; z-index: -1; }
.svc--teal .svc__overlay { background: linear-gradient(175deg, color-mix(in srgb, var(--teal) 87%, transparent), color-mix(in srgb, #0a636b 92%, transparent)); }
.svc--orange .svc__overlay { background: linear-gradient(175deg, color-mix(in srgb, #ef8f1c 85%, transparent), color-mix(in srgb, #a8520b 93%, transparent)); }
.svc--lime .svc__overlay { background: linear-gradient(175deg, color-mix(in srgb, #90aa26 88%, transparent), color-mix(in srgb, #58681a 94%, transparent)); }

.svc__icon { width: 98px; height: 100px; display: grid; place-items: center; margin-bottom: 1.3rem; }
.svc__icon svg { width: 66px; height: 66px; color: #fff; filter: drop-shadow(0 3px 12px rgba(0,0,0,0.28)); }
.svc__icon img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 3px 12px rgba(0,0,0,0.28)); }
.svc__title { font-size: clamp(1.55rem, 2.2vw, 1.9rem); color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,0.4); }
.svc__sub { margin-top: 0.6rem; font-weight: 600; color: rgba(255,255,255,0.94); line-height: 1.55; text-shadow: 0 1px 10px rgba(0,0,0,0.35); }
/* Scannable stacked list, one prestation per line (reprise ancien site). */
.svc__list { list-style: none; margin: 0.9rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.svc__list li { font-weight: 600; color: #fff; text-shadow: 0 1px 10px rgba(0,0,0,0.38); }
.svc__link { margin-top: 1.6rem; display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; color: #fff; opacity: 0.96; }
.svc__link svg { width: 1em; height: 1em; transition: transform 0.2s ease; }
.svc:hover .svc__link svg { transform: translateX(4px); }

/* ---------- Team ---------- */
.team__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
@media (max-width: 860px) { .team__grid { grid-template-columns: 1fr; } }
.team__media { position: relative; }
.team__media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.team__media .ph-note { position: absolute; bottom: 0.8rem; right: 0.8rem; background: rgba(11,15,26,0.82); color: var(--muted); font-size: 0.72rem; padding: 0.3rem 0.6rem; border-radius: 8px; border: 1px solid var(--line); }
/* Portrait collage of the team: show every face, no crop, capped height, centered */
.team__media--collage img { aspect-ratio: auto; width: auto; height: auto; max-width: 100%; max-height: 560px; margin: 0 auto; display: block; }
@media (max-width: 860px) { .team__media--collage img { max-height: 72vh; } }
.stats { display: flex; flex-wrap: wrap; gap: 1.35rem 2rem; margin-top: 1.75rem; }
.stat .num { font-family: var(--ff-display); font-weight: 800; font-size: 2.2rem; line-height: 1; color: var(--teal); }
.stat:nth-child(2) .num { color: var(--orange); }
.stat:nth-child(3) .num { color: var(--lime); }
.stat:nth-child(4) .num { color: var(--teal); }
.stat .lab { color: var(--muted); font-size: 0.92rem; margin-top: 0.35rem; }
.stat--link { text-decoration: none; display: block; transition: transform 0.2s ease; }
.stat--link:hover { transform: translateY(-2px); }
.stat--link:hover .lab { color: var(--fg-soft); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Dépannage strip ---------- */
.depan { background: linear-gradient(120deg, var(--slate-2), var(--slate)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.75rem, 4vw, 3rem); display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
@media (max-width: 820px) { .depan { grid-template-columns: 1fr; } }
.depan__list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem 1.25rem; margin-top: 0.5rem; }
@media (max-width: 480px) { .depan__list { grid-template-columns: 1fr; } }
.depan__list li { list-style: none; display: flex; align-items: center; gap: 0.65rem; color: var(--fg-soft); }
.depan__list svg { width: 1.1em; height: 1.1em; color: var(--teal); flex: none; }
.depan__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.depan__note { margin-top: 1.5rem; display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.92rem; color: var(--muted); max-width: 42ch; }
.depan__note svg { width: 1.45em; height: 1.45em; color: var(--orange); flex: none; margin-top: 0.05rem; }

/* ---------- Certifications ---------- */
.certs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem 1.25rem; max-width: 680px; margin-inline: auto; }
.cert { display: flex; flex-direction: column; align-items: center; gap: 0.7rem; text-align: center; }
@media (max-width: 560px) { .certs { grid-template-columns: repeat(2, 1fr); } }
.cert__logo { aspect-ratio: 1 / 1; width: 100%; max-width: 158px; margin-inline: auto; display: grid; place-items: center; background: #fff; border-radius: 18px; padding: 1.15rem; }
.cert__logo img { max-height: 88px; max-width: 100%; width: auto; object-fit: contain; }
.cert__logo.placeholder { background: #fff; color: #2b3555; font-family: var(--ff-display); font-weight: 700; letter-spacing: 0.01em; font-size: 0.95rem; }
.cert small { color: var(--muted); font-size: 0.8rem; }

/* ---------- Réalisations ---------- */
.real__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 900px) { .real__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .real__grid { gap: 0.75rem; } .real { aspect-ratio: 4 / 5; } }
.real {
  position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 3 / 4;
  display: flex; align-items: flex-end; padding: 1.1rem; border: 1px solid var(--line);
  background: var(--slate-2); isolation: isolate;
}
.real img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.real::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 35%, rgba(6,9,16,0.88) 100%); }
.real:hover img { transform: scale(1.07); }
.real__tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); }
.real__cap { display: block; margin-top: 0.3rem; font-weight: 600; font-size: 0.95rem; color: #fff; }

/* ---------- Avis ---------- */
.avis__widget { background: var(--slate); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1rem, 3vw, 1.75rem); }
.avis__gcard {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.9rem 1.25rem; margin-top: 1.25rem;
  background: var(--slate); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1rem, 2.5vw, 1.5rem) clamp(1rem, 3vw, 1.75rem);
}
.avis__gcard-g { width: 2.1rem; height: 2.1rem; flex: none; }
.avis__gcard-body { flex: 1 1 16rem; }
.avis__gcard-score { font-size: 1.05rem; color: var(--fg); display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.45rem; }
.avis__gcard-score .stars { color: var(--orange); letter-spacing: 1px; font-size: 1.15rem; }
.avis__gcard-score b { font-family: var(--ff-display); font-weight: 800; }
.avis__gcard-body span { display: block; margin-top: 0.25rem; color: var(--muted); font-size: 0.92rem; }
.avis__leave { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem 1rem; margin-top: 1.25rem; }
.avis__leave-txt { color: var(--muted); font-size: 0.95rem; }

/* ---------- Zone ---------- */
.zone__wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
@media (max-width: 820px) { .zone__wrap { grid-template-columns: 1fr; } }
/* Animated radar: Lyon au centre, balayage lent, communes qui apparaissent/disparaissent. */
.zone__radar { position: relative; aspect-ratio: 1 / 1; max-width: 460px; margin-inline: auto; width: 100%; }
.zone__radar .ring { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.08); pointer-events: none; }
.zone__radar .ring.r1 { inset: 0; border-color: rgba(27,165,178,0.18); }
.zone__radar .ring.r2 { inset: 18%; border-color: rgba(27,165,178,0.14); }
.zone__radar .ring.r3 { inset: 36%; border-color: rgba(27,165,178,0.12); }
.radar__sweep { position: absolute; inset: 0; border-radius: 50%; overflow: hidden; z-index: 0; -webkit-mask: radial-gradient(circle, #000 99%, transparent 100%); mask: radial-gradient(circle, #000 99%, transparent 100%); }
.radar__sweep::before { content: ""; position: absolute; inset: -20%; background: conic-gradient(from 0deg, transparent 0deg, rgba(27,165,178,0.16) 42deg, rgba(27,165,178,0.02) 74deg, transparent 90deg); animation: radarSpin 9s linear infinite; }
.radar__center { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); text-align: center; z-index: 3; }
.radar__dot { display: block; width: 14px; height: 14px; border-radius: 50%; background: var(--orange); margin: 0 auto 0.55rem; box-shadow: 0 0 0 5px rgba(249,160,62,0.18); animation: radarPulse 2.6s ease-in-out infinite; }
.radar__center strong { font-family: var(--ff-display); font-size: 1.5rem; color: #fff; }
.radar__center small { display: block; color: var(--muted); font-size: 0.9rem; margin-top: 0.15rem; }
.radar__cities { list-style: none; margin: 0; padding: 0; position: absolute; inset: 0; z-index: 2; }
.radar__cities li {
  position: absolute; left: var(--x); top: var(--y); transform: translate(-50%, -50%) scale(0.92);
  font-size: 0.84rem; color: var(--fg-soft); background: var(--slate-2); border: 1px solid var(--line);
  padding: 0.32rem 0.72rem; border-radius: 999px; white-space: nowrap; opacity: 0;
  animation: cityCycle 8s ease-in-out infinite; animation-delay: var(--d);
}
@keyframes radarSpin { to { transform: rotate(360deg); } }
@keyframes radarPulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(249,160,62,0.22); } 50% { box-shadow: 0 0 0 11px rgba(249,160,62,0.04); } }
@keyframes cityCycle {
  0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
  12%, 58% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  74% { opacity: 0; transform: translate(-50%, -50%) scale(0.94); }
}
@media (prefers-reduced-motion: reduce) {
  .radar__sweep::before { animation: none; }
  .radar__dot { animation: none; }
  .radar__cities li { animation: none; opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.cities { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.cities span { font-size: 0.88rem; color: var(--fg-soft); background: rgba(255,255,255,0.04); border: 1px solid var(--line); padding: 0.35rem 0.75rem; border-radius: 999px; }
.zone__cta { margin-top: 1.5rem; color: var(--muted); }
.zone__cta a { color: var(--teal); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Contact ---------- */
.contact__wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
@media (max-width: 900px) { .contact__wrap { grid-template-columns: 1fr; } }
.contact__info .cline { display: flex; align-items: flex-start; gap: 0.85rem; padding: 1rem 0; border-bottom: 1px solid var(--line-soft); }
.contact__info .cline svg { width: 1.3em; height: 1.3em; color: var(--teal); flex: none; margin-top: 0.15rem; }
.contact__info .cline b { display: block; font-family: var(--ff-body); }
.contact__info .cline span { color: var(--fg-soft); }
.contact__info .cline a { color: var(--fg); font-weight: 700; }
.contact__person { display: flex; align-items: center; gap: 1.15rem; padding-bottom: 1.4rem; margin-bottom: 0.4rem; border-bottom: 1px solid var(--line-soft); }
.contact__person img { width: 112px; height: 112px; border-radius: 50%; object-fit: cover; object-position: center 22%; border: 3px solid var(--line); box-shadow: var(--shadow-soft); flex: none; }
.contact__person b { display: block; font-family: var(--ff-body); font-size: 1.15rem; color: var(--fg); }
.contact__person span { color: var(--muted); font-size: 0.95rem; }

.form { background: var(--slate); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2.25rem); box-shadow: var(--shadow-soft); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.field label { font-size: 0.88rem; font-weight: 600; color: var(--fg-soft); }
.field .opt { color: var(--muted); font-weight: 400; }
.field input, .field textarea, .field select {
  background: #0e1424; border: 1px solid var(--line); border-radius: 12px;
  padding: 0.8rem 0.95rem; color: var(--fg); transition: border-color 0.18s ease, box-shadow 0.18s ease;
  width: 100%; font-family: inherit;
}
.field select { appearance: none; -webkit-appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%238b93a7' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.4rem; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(27,165,178,0.18); }
.field textarea { min-height: 120px; resize: vertical; }
.consent { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.86rem; color: var(--muted); margin-bottom: 1.1rem; }
.consent input { margin-top: 0.2rem; accent-color: var(--teal); width: 18px; height: 18px; flex: none; }
.consent a { color: var(--lime); text-decoration: underline; }
.form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; justify-content: space-between; }
/* Un statut vide ne dessine rien. Des qu'il porte un message, il devient un bandeau visible :
   une ligne de 0.9rem sous un formulaire long passait inapercue (retour client du 28/08). */
.form__status { font-size: 0.9rem; }
.form__status:not(:empty) {
  display: block; margin-top: 1.1rem; padding: 0.85rem 1.05rem; border-radius: 14px;
  font-size: 0.95rem; font-weight: 600; line-height: 1.5;
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.04); color: var(--fg-soft);
}
.form__status.ok:not(:empty) { color: var(--lime); background: rgba(193, 216, 72, 0.12); border-color: rgba(193, 216, 72, 0.4); }
.form__status.err:not(:empty) { color: #ffb4b4; background: rgba(255, 110, 110, 0.12); border-color: rgba(255, 110, 110, 0.4); }

/* ---------- Confirmation d'envoi ---------- */
/* Remplace le formulaire pour que l'accuse de reception soit impossible a manquer. */
.form-ok {
  background: var(--slate); border: 1px solid rgba(193, 216, 72, 0.35); border-radius: var(--radius-lg);
  padding: clamp(1.9rem, 4vw, 3rem) clamp(1.4rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-soft); text-align: center; outline: none;
}
.form-ok[hidden] { display: none; }
.form-ok__badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 78px; height: 78px; border-radius: 50%; margin-bottom: 1.35rem;
  background: rgba(193, 216, 72, 0.14); border: 2px solid var(--lime); color: var(--lime);
  box-shadow: 0 0 0 10px rgba(193, 216, 72, 0.07);
}
.form-ok__badge svg { width: 38px; height: 38px; }
.form-ok__title {
  font-family: var(--ff-display); font-weight: 700; letter-spacing: -0.02em; color: var(--fg);
  font-size: clamp(1.5rem, 3.2vw, 2rem); line-height: 1.2; margin-bottom: 0.7rem;
}
.form-ok__lead { color: var(--fg-soft); font-size: 1.02rem; max-width: 44ch; margin: 0 auto; }
.form-ok__lines {
  list-style: none; padding: 0; display: grid; gap: 0.75rem;
  margin: 1.8rem auto 1.9rem; max-width: 46ch; text-align: left;
}
.form-ok__lines li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  color: var(--fg-soft); font-size: 0.95rem; line-height: 1.55;
  background: rgba(255, 255, 255, 0.035); border: 1px solid var(--line-soft);
  border-radius: 14px; padding: 0.8rem 1rem;
}
.form-ok__lines svg { width: 1.25em; height: 1.25em; color: var(--teal); flex: none; margin-top: 0.15rem; }
.form-ok__lines a { color: var(--fg); font-weight: 700; white-space: nowrap; }
.form-ok:not([hidden]) .form-ok__badge { animation: okPop 0.45s cubic-bezier(0.2, 1.25, 0.4, 1) both; }
.form-ok:not([hidden]) .form-ok__title,
.form-ok:not([hidden]) .form-ok__lead,
.form-ok:not([hidden]) .form-ok__lines,
.form-ok:not([hidden]) .btn { animation: okRise 0.5s ease 0.08s both; }
@keyframes okPop { from { opacity: 0; transform: scale(0.6); } to { opacity: 1; transform: scale(1); } }
@keyframes okRise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .form-ok:not([hidden]) .form-ok__badge,
  .form-ok:not([hidden]) .form-ok__title,
  .form-ok:not([hidden]) .form-ok__lead,
  .form-ok:not([hidden]) .form-ok__lines { animation: none; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--slate); border-top: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand .brand { margin-bottom: 1rem; }
.footer__brand .brand__mark { height: 42px; }
.footer__brand p { color: var(--muted); font-size: 0.92rem; max-width: 34ch; }
.footer__grid h4 { font-family: var(--ff-body); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--teal); margin-bottom: 0.9rem; font-weight: 700; }
.footer__grid ul { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
.footer__grid a, .footer__grid li { color: var(--fg-soft); font-size: 0.94rem; }
.footer__grid a:hover { color: var(--fg); }
.footer__bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line-soft); display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between; color: var(--muted); font-size: 0.82rem; }

/* ---------- Reveal on scroll (progressive enhancement) ---------- */
/* Hidden state only applies when JS is active, so no-JS/slow-JS never hides content. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* ---------- Utilities ---------- */
.mt-2 { margin-top: 1.25rem; } .mt-3 { margin-top: 2rem; }
.text-lime { color: var(--lime); } .text-teal { color: var(--teal); } .text-orange { color: var(--orange); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- Services extra line ---------- */
.services__more { margin-top: 1.75rem; text-align: center; color: var(--fg-soft); font-size: 1rem; }
.services__more strong { color: var(--fg); }

/* ---------- Contact: prefer to call ---------- */
.form__callphone { margin: 0 0 1.35rem; font-size: 0.95rem; color: var(--fg-soft); }
.form__callphone a { color: var(--orange); font-weight: 700; white-space: nowrap; }

/* ---------- Mobile sticky call bar ---------- */
.sticky-call { display: none; }
@media (max-width: 820px) {
  .sticky-call {
    display: flex; align-items: center; justify-content: center; gap: 0.55rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    background: var(--orange); color: #201200; text-decoration: none;
    font-family: var(--ff-body); font-weight: 800; font-size: 1.06rem;
    padding: 0.95rem 1rem; padding-bottom: calc(0.95rem + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -12px 28px -14px rgba(0, 0, 0, 0.75);
  }
  .sticky-call svg { width: 1.25em; height: 1.25em; }
  body { padding-bottom: 68px; }
}
/* On small phones the sticky call bar + hero CTAs cover contact, so declutter the header button */
@media (max-width: 560px) { .header-cta .btn { display: none; } }

/* Tidy the hero actions + trust chips on phones (full-width, aligned, no ragged wrap) */
@media (max-width: 640px) {
  .hero__actions { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .hero__actions .btn { width: 100%; }
  .hero__actions .reassure { margin-top: 0.35rem; }
  .hero__chips { flex-direction: column; align-items: stretch; gap: 0.5rem; }
  .hero__chips .chip { width: 100%; justify-content: flex-start; }
  .chip-pair { flex-direction: column; gap: 0.5rem; }
  .depan__actions { flex-direction: column; align-items: stretch; }
  .depan__actions .btn { width: 100%; }
}

/* ---------- Pages légales (mentions légales, confidentialité) ---------- */
.legal { background: var(--ink); padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(3rem, 7vw, 5rem); }
.legal .container { max-width: 760px; }
.legal__back { display: inline-block; margin-bottom: 1.5rem; color: var(--muted); font-size: 0.92rem; }
.legal__back:hover { color: var(--teal); }
.legal h1 { margin-bottom: 0.75rem; }
.legal__lead { color: var(--fg-soft); font-size: 1.08rem; }
.legal h2 {
  font-family: var(--ff-display); font-weight: 700; font-size: 1.22rem; color: var(--fg);
  margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid var(--line-soft);
}
.legal p, .legal li { color: var(--fg-soft); line-height: 1.72; }
.legal p { margin-top: 0.85rem; }
.legal ul { margin: 0.85rem 0 0; padding-left: 1.15rem; display: flex; flex-direction: column; gap: 0.45rem; }
.legal b { color: var(--fg); font-weight: 700; }
.legal a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--lime); }
.legal + .site-footer .footer__bottom { border-top: 0; }
