/* ============================================================
   Desens Plomberie — V3 (dark mode classe)
   Palette : noir + blanc + touches de bleu (pictos, boutons, glows)
   ============================================================ */

:root {
  /* Accents bleus — la touche signature (inchangée pour les pleins) */
  --blue:      #1d5fbf;   /* boutons, fonds pleins, accents */
  --blue-dark: #164a96;
  --blue-light:#4f93ff;   /* texte/picto bleu sur fond sombre (lisibilité) */
  --blue-sky:  #38bdf8;

  /* Neutres dark */
  --bg:       #0b0d11;    /* fond principal (noir) */
  --bg-soft:  #11141a;    /* sections alternées (ex-blanches) */
  --surface:  #171b22;    /* cartes */
  --surface-2:#1e232c;    /* éléments surélevés */
  --ink:      #eef1f6;    /* texte principal (blanc cassé) */
  --heading:  #ffffff;    /* titres */
  --muted:    #9aa4b2;    /* texte secondaire */
  --muted-2:  #6d7886;
  --border:   rgba(255, 255, 255, .09);
  --border-2: rgba(255, 255, 255, .14);
  --shadow:   0 18px 44px -18px rgba(0, 0, 0, .72);
  --shadow-sm:0 6px 20px -8px rgba(0, 0, 0, .6);
  --radius:   16px;
  --radius-sm:11px;
  --maxw:     1160px;
  --font:     'Inter', system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); color: var(--ink); background: var(--bg); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; letter-spacing: -.02em; color: var(--heading); }
.center { text-align: center; }
.ico { width: 1.1em; height: 1.1em; fill: currentColor; flex: none; }

/* ---------- Header flottant (pilule glassmorphism) ---------- */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 16px 0 0; }
.navbar {
  display: flex; align-items: center; gap: 18px;
  padding: 9px 9px 9px 20px;
  background: rgba(16, 19, 26, .72);
  border: 1px solid var(--border);
  border-radius: 100px;
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  box-shadow: 0 12px 34px -16px rgba(0, 0, 0, .55), inset 0 1px 0 rgba(255, 255, 255, .06);
  transition: background .3s, box-shadow .3s, border-color .3s;
}
.header.scrolled .navbar {
  background: rgba(16, 19, 26, .85);
  border-color: var(--border-2);
  box-shadow: 0 16px 42px -14px rgba(0, 0, 0, .6), inset 0 1px 0 rgba(255, 255, 255, .07);
}

.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand__logo { width: 40px; height: 40px; object-fit: contain; }
.brand__text { font-weight: 700; font-size: 1.05rem; letter-spacing: .03em; text-transform: uppercase; color: var(--ink); }
.brand__text strong { color: var(--blue-light); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav__link { font-size: .94rem; font-weight: 600; color: var(--muted); transition: color .2s; position: relative; }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -5px; height: 2px; width: 0; background: var(--blue-light); transition: width .25s; }
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { width: 100%; }

.nav__cta { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .94rem; color: #fff; background: var(--blue); padding: 11px 19px; border-radius: 100px; transition: background .2s, transform .2s; white-space: nowrap; }
.nav__cta:hover { background: var(--blue-dark); transform: translateY(-1px); color: #fff; }
.nav__cta svg { width: 16px; height: 16px; fill: currentColor; }
.nav__cta--mobile { display: none; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: 2px; }
.burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.burger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity: 0; }
.burger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---------- Boutons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--font); font-weight: 700; font-size: 1rem; padding: 14px 26px; border-radius: 999px; cursor: pointer; border: 1.5px solid transparent; transition: background .2s, color .2s, transform .2s, border-color .2s; white-space: nowrap; }
.btn--block { width: 100%; }
.btn--primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--border-2); }
.btn--outline:hover { border-color: var(--blue-light); color: var(--blue-light); }

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 124px 0 80px; background: linear-gradient(160deg, #0a1426 0%, #0b0d11 56%, #0a0f18 100%); overflow: hidden; }

/* Fond "eau" animé (nappes bleues + caustiques) */
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, #000 82%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 82%, transparent 100%); }
.water { position: absolute; inset: 0; overflow: hidden; }
.water__blob { position: absolute; border-radius: 50%; filter: blur(52px); opacity: .62; mix-blend-mode: screen; will-change: transform; }
.water__blob--1 { width: 540px; height: 540px; left: -90px; top: -120px; background: radial-gradient(circle, rgba(56, 189, 248, .6), transparent 70%); animation: drift1 15s ease-in-out infinite; }
.water__blob--2 { width: 680px; height: 680px; right: -160px; top: 4%; background: radial-gradient(circle, rgba(29, 95, 191, .55), transparent 70%); animation: drift2 19s ease-in-out infinite; }
.water__blob--3 { width: 500px; height: 500px; left: 34%; bottom: -180px; background: radial-gradient(circle, rgba(79, 70, 229, .48), transparent 70%); animation: drift3 17s ease-in-out infinite; }
.water__caustics { position: absolute; inset: -12%; width: 124%; height: 124%; opacity: .3; mix-blend-mode: screen; pointer-events: none; will-change: transform; animation: caustics 22s linear infinite; }
/* Photo réelle intégrée à droite, en fondu vers l'eau */
.hero__photo {
  position: absolute; top: 0; right: 0; height: 100%; width: 52%; z-index: 1;
  object-fit: cover; object-position: center; pointer-events: none; opacity: .92;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 50%), linear-gradient(180deg, #000 68%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 50%), linear-gradient(180deg, #000 68%, transparent 100%);
  -webkit-mask-composite: source-in; mask-composite: intersect;
}
/* Reflet qui balaie la surface */
.water::after { content: ""; position: absolute; inset: -20%; pointer-events: none; mix-blend-mode: screen;
  background: linear-gradient(112deg, transparent 34%, rgba(120, 200, 255, .12) 50%, transparent 66%);
  animation: sheen 10s ease-in-out infinite; }
@keyframes drift1 {
  0%   { transform: translate(0, 0) scale(1); }
  30%  { transform: translate(130px, 70px) scale(1.22); }
  60%  { transform: translate(70px, 150px) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes drift2 {
  0%   { transform: translate(0, 0) scale(1); }
  35%  { transform: translate(-120px, 80px) scale(1.15); }
  65%  { transform: translate(-50px, -40px) scale(1.25); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes drift3 {
  0%   { transform: translate(0, 0) scale(1); }
  30%  { transform: translate(80px, -70px) scale(1.2); }
  60%  { transform: translate(-60px, -30px) scale(1.08); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes caustics {
  0%   { transform: translate(-4%, -3%) scale(1.1); }
  50%  { transform: translate(4%, 4%) scale(1.28); }
  100% { transform: translate(-4%, -3%) scale(1.1); }
}
@keyframes sheen {
  0%, 100% { transform: translateX(-45%); }
  50%      { transform: translateX(45%); }
}

/* Voile de lisibilité sombre par-dessus le carrousel (texte clair lisible) */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(100deg, rgba(8, 10, 14, .95) 0%, rgba(8, 10, 14, .82) 30%, rgba(8, 10, 14, .45) 56%, rgba(8, 10, 14, .14) 82%, rgba(8, 10, 14, 0) 100%);
}
.hero::after {
  content: ""; position: absolute; z-index: 1; right: -120px; top: -100px; width: 520px; height: 520px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(79, 147, 255, .18), transparent 70%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__content { max-width: 600px; }
.kicker { display: inline-block; font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-light); background: rgba(79, 147, 255, .12); padding: 7px 14px; border-radius: 999px; margin-bottom: 22px; }
.hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); margin-bottom: 20px; }
.hero__lead { font-size: 1.16rem; color: var(--muted); max-width: 520px; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Puces de réassurance (compactes, sous les boutons) */
.hero__chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero__chips li { display: inline-flex; align-items: center; gap: 7px; font-size: .9rem; font-weight: 600; color: var(--ink);
  background: rgba(255, 255, 255, .05); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid var(--border-2); padding: 8px 14px; border-radius: 999px; }
.hero__chips svg { width: 15px; height: 15px; color: var(--blue-light); flex: none; }

/* ---------- Sections ---------- */
.section { padding: 92px 0; position: relative; overflow: hidden; }
.section > .container { position: relative; z-index: 1; }

/* ---------- Showcase rénovation (mise en avant) ---------- */
.section--showcase {
  background: linear-gradient(160deg, #0e1726 0%, var(--bg) 62%);
  border-block: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.section--showcase::after {
  content: ""; position: absolute; top: -180px; left: -140px; width: 600px; height: 600px;
  pointer-events: none; z-index: 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 147, 255, .14), transparent 70%);
}
.section--showcase > .container { position: relative; z-index: 1; }
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.showcase__text .eyebrow { margin-bottom: 14px; }
.showcase__text h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 16px; }
.showcase__text > p { color: var(--muted); font-size: 1.08rem; margin-bottom: 18px; }
.showcase__team { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; color: var(--ink); margin-bottom: 26px; }
.showcase__team svg { width: 22px; height: 22px; color: var(--blue-light); flex: none; }
.showcase__trades { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.trade { display: flex; gap: 14px; align-items: flex-start; padding: 22px 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .25s, border-color .25s; }
.trade:hover { transform: translateY(-3px); border-color: var(--blue-light); }
.trade__ico { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: rgba(79, 147, 255, .12); color: var(--blue-light); flex: none; }
.trade__ico svg { width: 24px; height: 24px; }
.trade h3 { font-size: 1.05rem; margin-bottom: 5px; color: var(--ink); }
.trade p { font-size: .9rem; color: var(--muted); line-height: 1.5; }

/* ---------- Réalisations (carrousel défilant) ---------- */
.section--gallery { overflow: hidden; }
.marquee {
  margin-top: 6px; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.marquee__track { display: flex; width: max-content; animation: marquee 60s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.shot {
  flex: none; margin-right: 18px; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow); background: var(--surface);
}
.shot img { height: 360px; width: auto; display: block; object-fit: cover; cursor: zoom-in; transition: transform .4s ease; }
.shot:hover img { transform: scale(1.04); }

/* ---------- Avis Google (carrousel défilant) ---------- */
.revues { overflow: hidden; margin-top: 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%); }
.revues__track { display: flex; width: max-content; animation: marquee-rev 90s linear infinite; }
.revues:hover .revues__track { animation-play-state: paused; }
@keyframes marquee-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.revue { flex: none; width: 350px; margin-right: 18px; display: flex; flex-direction: column; gap: 13px;
  padding: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.revue__stars { color: #f5a623; letter-spacing: 2px; font-size: .95rem; }
.revue__text { color: var(--ink); font-size: .95rem; line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
.revue__author { display: flex; align-items: center; gap: 11px; margin-top: auto; }
.revue__avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--blue); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: .95rem; flex: none; }
.revue__who { display: flex; flex-direction: column; line-height: 1.3; }
.revue__name { font-weight: 700; font-size: .9rem; color: var(--ink); }
.revue__src { font-size: .78rem; color: var(--muted-2); }
.revues + .container { margin-top: 36px; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 24px; background: rgba(5, 7, 10, .92);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transition: opacity .28s ease, visibility .28s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__stage { max-width: min(1100px, 92vw); max-height: 86vh; display: flex; }
.lightbox__img {
  max-width: 100%; max-height: 86vh; width: auto; height: auto; display: block;
  border-radius: 12px; box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .8);
  transform: scale(.96); transition: transform .28s ease;
}
.lightbox.open .lightbox__img { transform: scale(1); }
.lightbox__close, .lightbox__nav {
  flex: none; display: grid; place-items: center; cursor: pointer; color: #fff;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%; transition: background .2s, transform .2s; line-height: 1;
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--blue); transform: scale(1.05); }
.lightbox__nav { width: 52px; height: 52px; font-size: 2rem; }
.lightbox__close { position: absolute; top: 18px; right: 18px; width: 46px; height: 46px; font-size: 1.8rem; }
@media (max-width: 700px) {
  .lightbox { padding: 12px; }
  .lightbox__nav { width: 42px; height: 42px; font-size: 1.6rem; position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; }
  .lightbox__nav:hover { transform: translateY(-50%) scale(1.05); }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
  .lightbox__stage { max-width: 100%; }
}

/* Texture : quadrillage de points bleutés en fond de section */
.section--light {
  background-color: var(--bg-soft);
  background-image: radial-gradient(circle, rgba(79, 147, 255, .08) 1.5px, transparent 1.7px);
  background-size: 22px 22px;
  position: relative; overflow: hidden;
}
.section--light::after {
  content: ""; position: absolute; top: -180px; right: -140px; width: 520px; height: 520px;
  pointer-events: none; z-index: 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 147, 255, .09), transparent 70%);
}
.section--light > .container { position: relative; z-index: 1; }
.section__head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.eyebrow { display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 12px; }
.eyebrow--light { color: #7fb6ff; }
.section__head h2, .section h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
.section__head h2 { margin-bottom: 14px; }
.section__sub { color: var(--muted); font-size: 1.06rem; }
.stars { color: #f5a623; letter-spacing: 2px; }

/* ---------- Cartes ---------- */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.grid { display: grid; gap: 20px; }
.grid--services { grid-template-columns: repeat(4, 1fr); }
.service { padding: 26px 24px; border-left: 3px solid transparent; transition: border-color .25s, transform .25s, box-shadow .25s; }
.service:hover { border-left-color: var(--blue-light); transform: translateY(-3px); box-shadow: var(--shadow); }
.service__ico { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 13px; background: rgba(79, 147, 255, .12); color: var(--blue-light); margin-bottom: 16px; transition: background .25s, color .25s, transform .25s; }
.service__ico svg { width: 26px; height: 26px; }
.service:hover .service__ico { background: var(--blue); color: #fff; transform: translateY(-2px) rotate(-4deg); }
.service h3 { font-size: 1.12rem; margin-bottom: 8px; color: var(--ink); }
.service p { color: var(--muted); font-size: .95rem; }

/* ---------- Steps ---------- */
.grid--steps { grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 22px; box-shadow: var(--shadow-sm); }
.step__num { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--blue); color: #fff; font-weight: 800; font-size: 1.2rem; margin-bottom: 16px; box-shadow: 0 8px 20px -8px rgba(29, 95, 191, .8); }
.step h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--ink); }
.step p { color: var(--muted); font-size: .93rem; }

/* ---------- Avis ---------- */
.grid--avis { grid-template-columns: repeat(3, 1fr); margin-bottom: 40px; }
.avis { padding: 28px 26px; display: flex; flex-direction: column; gap: 14px; }
.avis .stars { font-size: 1.05rem; }
.avis blockquote { color: var(--ink); font-size: 1rem; line-height: 1.7; }
.avis figcaption { color: var(--muted-2); font-size: .9rem; font-weight: 700; margin-top: auto; }

/* ---------- Zone ---------- */
.zone__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.zone__text h2 { margin: 14px 0 16px; }
.zone__text .btn { margin-top: 14px; }
.zone__card { display: grid; place-items: center; align-content: center; gap: 18px; padding: 34px; background: linear-gradient(160deg, var(--surface), var(--bg-soft)); }
.zone__map-svg { width: 100%; max-width: 320px; height: auto; display: block; }
.zone__outline { fill: rgba(79, 147, 255, .06); stroke: var(--blue-light); stroke-width: 3; stroke-linejoin: round; }
.zone__dot { fill: var(--blue-light); }
.zone__dot-core { fill: #fff; }
.zone__dot-pulse { fill: var(--blue-light); transform-box: fill-box; transform-origin: center; animation: zonePulse 2.4s ease-out infinite; }
@keyframes zonePulse { 0% { transform: scale(1); opacity: .5; } 70% { transform: scale(2.6); opacity: 0; } 100% { opacity: 0; } }
.zone__label { font-weight: 700; color: var(--ink); letter-spacing: .03em; }

/* ---------- FAQ ---------- */
.faq__container { max-width: 800px; }
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 2px 22px; box-shadow: var(--shadow-sm); }
.faq__item[open] { border-color: var(--blue-light); }
.faq__item summary { list-style: none; cursor: pointer; font-weight: 700; font-size: 1.04rem; color: var(--ink); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.5rem; color: var(--blue-light); line-height: 1; transition: transform .3s; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--muted); padding: 0 0 20px; }

/* ---------- Contact ---------- */
.section--contact {
  background-color: #0a1320; color: #dbe5f2;
  background-image: radial-gradient(circle, rgba(79, 147, 255, .07) 1.5px, transparent 1.7px);
  background-size: 22px 22px;
  position: relative; overflow: hidden;
}
.section--contact::after {
  content: ""; position: absolute; top: -160px; left: -120px; width: 560px; height: 560px;
  pointer-events: none; z-index: 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, .14), transparent 70%);
}
.section--contact > .container { position: relative; z-index: 1; }
.section--contact h2 { color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.contact-info h2 { margin: 6px 0 14px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.contact-info > p { color: #b6c6dd; margin-bottom: 26px; }
.contact-list { display: flex; flex-direction: column; gap: 12px; }
.contact-item { display: flex; align-items: center; gap: 15px; padding: 15px 17px; border-radius: var(--radius-sm); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); transition: background .2s; }
.contact-item:hover { background: rgba(255,255,255,.1); }
.contact-item svg { width: 24px; height: 24px; fill: #38bdf8; flex: none; }
.contact-item strong { display: block; color: #fff; }
.contact-item small { color: #9fb3cf; font-size: .85rem; }

.form { padding: 30px; display: flex; flex-direction: column; gap: 15px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field span { font-size: .85rem; font-weight: 600; color: var(--muted); }
.field input, .field textarea { font-family: var(--font); font-size: .98rem; color: var(--ink); background: var(--surface-2); border: 1.5px solid var(--border-2); border-radius: 10px; padding: 12px 14px; transition: border-color .2s, box-shadow .2s; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue-light); box-shadow: 0 0 0 3px rgba(79, 147, 255, .18); }
.form__note { font-size: .85rem; color: var(--muted-2); text-align: center; }
.form__note a { color: var(--blue-light); font-weight: 600; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form__status { font-size: .9rem; text-align: center; font-weight: 600; min-height: 0; }
.form__status:empty { display: none; }
.form__status.is-ok { color: #4ade80; }
.form__status.is-error { color: #f87171; }

/* ---------- Footer ---------- */
.footer { background: #070a0f; color: #b6c6dd; padding-top: 56px; border-top: 1px solid var(--border); }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer__logo { width: 56px; height: 56px; object-fit: contain; margin-bottom: 14px; }
.footer__brand p { font-size: .94rem; max-width: 340px; }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer__col a { display: block; color: #9fb3cf; font-size: .93rem; padding: 5px 0; transition: color .2s; }
.footer__col a:hover { color: var(--blue-light); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; justify-content: space-between; gap: 14px; font-size: .85rem; color: #8294ab; }

/* ---------- FAB ---------- */
.fab { position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; display: none; place-items: center; background: var(--blue); box-shadow: var(--shadow); }
.fab svg { width: 25px; height: 25px; fill: #fff; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  /* Navigation : bascule en menu burger flottant (évite le débordement de la pilule) */
  .nav { position: fixed; top: 82px; left: 16px; right: 16px; flex-direction: column; gap: 0; background: rgba(16, 19, 26, .97); backdrop-filter: blur(16px) saturate(150%); -webkit-backdrop-filter: blur(16px) saturate(150%); border: 1px solid var(--border-2); border-radius: 18px; padding: 8px 22px 18px; transform: translateY(-12px); opacity: 0; visibility: hidden; transition: opacity .28s, transform .28s, visibility .28s; align-items: stretch; box-shadow: var(--shadow); }
  .nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav__link { padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav__link::after { display: none; }
  .nav__cta { display: none; }
  .nav__cta--mobile { display: inline-flex; justify-content: center; margin-top: 14px; }
  .burger { display: flex; }
  .fab { display: grid; }

  .grid--services { grid-template-columns: repeat(3, 1fr); }
  .hero__photo { display: none; }
  .showcase { grid-template-columns: 1fr; gap: 34px; }
  .zone__inner { grid-template-columns: 1fr; gap: 32px; }
  .grid--steps { grid-template-columns: repeat(2, 1fr); }
  .grid--avis { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .grid--steps { grid-template-columns: 1fr; }
  .grid--services { grid-template-columns: 1fr 1fr; }
  .showcase__trades { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .section { padding: 66px 0; }
  .shot img { height: 260px; }
  .revue { width: 82vw; max-width: 340px; }
  .hero { min-height: 86vh; }
  .hero__content { max-width: 100%; }
  .hero::before { background: linear-gradient(180deg, rgba(8, 10, 14, .95) 0%, rgba(8, 10, 14, .78) 45%, rgba(8, 10, 14, .4) 100%); }
}
@media (max-width: 400px) {
  .grid--services { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
