/* ==========================================================================
   VPC Plomberie Chauffage, Nozay
   Feuille de style unique, mobile first, sans dépendance.
   ========================================================================== */

/* ---------- Polices (Archivo, auto-hébergée et allégée) ---------- */
@font-face {
  font-family: "Archivo Text";
  src: url("../fonts/archivo-text.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo Display";
  src: url("../fonts/archivo-display.woff2") format("woff2");
  font-weight: 600 800;
  font-style: normal;
  font-display: swap;
}
/* Polices de secours calibrées (mesurées) pour limiter le décalage au chargement */
@font-face {
  font-family: "Archivo Text Fallback";
  src: local("Arial"), local("ArialMT"), local("Liberation Sans"), local("LiberationSans");
  font-weight: 400 500;
  size-adjust: 98%;
  ascent-override: 89.6%;
  descent-override: 21.4%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "Archivo Text Fallback";
  src: local("Arial Bold"), local("Arial-BoldMT"), local("Liberation Sans Bold"), local("LiberationSans-Bold");
  font-weight: 600 700;
  size-adjust: 98.5%;
  ascent-override: 89.1%;
  descent-override: 21.3%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "Archivo Display Fallback";
  src: local("Arial Bold"), local("Arial-BoldMT"), local("Liberation Sans Bold"), local("LiberationSans-Bold");
  font-weight: 600 800;
  size-adjust: 115.4%;
  ascent-override: 76.1%;
  descent-override: 18.2%;
  line-gap-override: 0%;
}

/* ---------- Variables ---------- */
:root {
  --navy-950: #061527;
  --navy-900: #0a1f36;
  --navy-800: #0d2a4a;
  --navy-700: #143a63;
  --navy-600: #1d4e82;
  --blue-600: #1f5fbf;
  --blue-500: #2f73d8;
  --blue-400: #5b95e8;
  --blue-200: #bcd3f3;
  --blue-100: #e6effb;
  --blue-50: #f2f7fd;
  --amber-500: #ffad1f;
  --amber-400: #ffbd3d;
  --amber-300: #ffd27a;
  --amber-100: #fff4de;
  --green-500: #22c55e;
  --green-600: #16a34a;

  --ink: #0b1d30;
  --text: #293a4c;
  --muted: #56687b;
  --line: #dfe6ee;
  --bg: #f3f6fa;

  --font-text: "Archivo Text", "Archivo Text Fallback", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Archivo Display", "Archivo Display Fallback", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
  --header-h: 64px;
  --shadow-lg: 0 32px 64px -24px rgb(6 21 39 / 0.5);
}
@media (min-width: 1024px) {
  :root { --header-h: 76px; }
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}
body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--navy-600); }
h1, h2, h3, h4, p { overflow-wrap: break-word; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 3px; }

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.icon { display: inline-block; width: 1em; height: 1em; max-width: none; flex: none; }
.sr-only { position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.nowrap { white-space: nowrap; }
.hide-sm { display: none; }
@media (min-width: 400px) { .hide-sm { display: inline; } }

.skip-link {
  position: absolute; left: 12px; top: -80px; z-index: 100;
  padding: 0.7rem 1rem; border-radius: 10px;
  background: var(--navy-900); color: #fff; font-weight: 700; text-decoration: none;
}
.skip-link:focus { top: 12px; }

.live-dot {
  position: relative; display: inline-block; flex: none;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--green-500);
  animation: live 2.2s ease-out infinite;
}
@keyframes live {
  0% { box-shadow: 0 0 0 0 rgb(34 197 94 / 0.55); }
  70%, 100% { box-shadow: 0 0 0 9px rgb(34 197 94 / 0); }
}

/* ---------- Boutons ---------- */
.btn {
  --h: 48px;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  min-height: var(--h); padding: 0.5rem 1.15rem;
  border: 2px solid transparent; border-radius: 12px;
  font-family: var(--font-text); font-size: 1rem; font-weight: 700; line-height: 1.15;
  text-align: center; text-decoration: none; cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn .icon { width: 1.25em; height: 1.25em; }
.btn:active { transform: translateY(1px); }
.btn--call {
  background: var(--amber-500); color: var(--navy-950);
  box-shadow: 0 10px 22px -12px rgb(255 173 31 / 0.95);
}
.btn--call:hover { background: var(--amber-400); transform: translateY(-1px); }
.btn--dark { background: var(--navy-800); color: #fff; }
.btn--dark:hover { background: var(--navy-700); }
.btn--ghost { background: rgb(255 255 255 / 0.06); border-color: rgb(255 255 255 / 0.3); color: #fff; }
.btn--ghost:hover { background: rgb(255 255 255 / 0.12); border-color: rgb(255 255 255 / 0.55); }
.btn--lg { --h: 56px; padding-inline: 1.5rem; font-size: 1.05rem; border-radius: 14px; }
.btn--block { width: 100%; }
.btn--outline { background: #fff; border-color: var(--navy-800); color: var(--navy-800); }
.btn--outline:hover { background: var(--navy-800); color: #fff; }
.btn[disabled] { opacity: 0.7; cursor: progress; }

/* ---------- En-tête ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 28px -22px rgb(10 31 54 / 0.6); }

.site-header__inner { display: flex; align-items: center; gap: 10px; height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; flex: none; }
.brand__mark { width: 36px; height: 36px; }
.brand__text { display: grid; line-height: 1; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; letter-spacing: -0.02em; }
.brand__tag { margin-top: 3px; font-size: 0.72rem; font-weight: 600; color: var(--muted); white-space: nowrap; }
.brand--light { color: #fff; }
.brand--light .brand__tag { color: #9fb3c8; }

.main-nav { display: none; }
.main-nav ul { display: flex; gap: 4px; margin: 0; padding: 0; list-style: none; }
.main-nav a {
  display: block; padding: 0.5rem 0.8rem; border-radius: 10px;
  color: var(--ink); font-weight: 600; font-size: 0.97rem; text-decoration: none;
  transition: background-color 0.15s ease;
}
.main-nav a:hover { background: var(--bg); }

.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.header-call { --h: 44px; padding: 0.4rem 0.8rem; gap: 0.45rem; }
.header-call__icon { display: grid; place-items: center; }
.header-call__text { display: none; }
.header-call__short { font-size: 0.97rem; }
.header-rdv { --h: 44px; padding: 0.4rem 0.8rem; gap: 0.45rem; font-size: 0.97rem; }

@media (max-width: 419px) {
  .brand__tag { display: none; }
  .header-rdv .icon { display: none; }
}
@media (max-width: 359px) {
  .header-call__short { display: none; }
}
@media (min-width: 1024px) {
  .brand__mark { width: 42px; height: 42px; }
  .brand__name { font-size: 1.5rem; }
  .brand__tag { font-size: 0.78rem; }
  .main-nav { display: block; margin-left: 20px; }
  .header-actions { gap: 10px; }
  .header-call { --h: 54px; padding: 0.35rem 1rem 0.35rem 0.4rem; gap: 0.7rem; border-radius: 14px; }
  .header-call__icon { width: 40px; height: 40px; border-radius: 10px; background: var(--navy-950); color: var(--amber-400); }
  .header-call__icon .icon { width: 22px; height: 22px; }
  .header-call__text { display: grid; text-align: left; line-height: 1.1; }
  .header-call__label { display: inline-flex; align-items: center; gap: 6px; font-size: 0.74rem; font-weight: 700; }
  .header-call__label .live-dot { width: 7px; height: 7px; }
  .header-call__number { font-family: var(--font-display); font-size: 1.12rem; font-weight: 800; letter-spacing: -0.01em; }
  .header-call__short { display: none; }
  .header-rdv { --h: 54px; padding-inline: 1.1rem; border-radius: 14px; }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .main-nav { margin-left: 12px; }
  .main-nav ul { gap: 0; }
  .main-nav a { padding-inline: 0.5rem; font-size: 0.9rem; }
  .header-call { --h: 50px; padding: 0.3rem 0.8rem 0.3rem 0.35rem; gap: 0.5rem; }
  .header-call__icon { width: 34px; height: 34px; }
  .header-call__icon .icon { width: 19px; height: 19px; }
  .header-call__number { font-size: 1rem; }
  .header-rdv { --h: 50px; padding-inline: 0.85rem; font-size: 0.93rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  padding: clamp(40px, 7vw, 96px) 0 clamp(56px, 8vw, 112px);
  color: #fff;
  background:
    radial-gradient(60rem 36rem at 92% -8%, rgb(47 115 216 / 0.42), transparent 62%),
    radial-gradient(46rem 30rem at -12% 112%, rgb(255 173 31 / 0.16), transparent 62%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
}
.hero__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 44px; align-items: center; }
@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr); gap: 64px; }
}

.hero__title {
  margin: 0 0 20px;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.15rem, 1.1rem + 3.2vw, 3.15rem);
  line-height: 1.05; letter-spacing: -0.028em;
  text-wrap: balance;
}
.hero__kicker {
  display: flex; align-items: center; gap: 0.65rem;
  margin-bottom: 18px;
  font-family: var(--font-text); font-weight: 600; letter-spacing: 0;
  font-size: clamp(0.92rem, 0.86rem + 0.25vw, 1.02rem);
  color: var(--amber-300);
}
.hero__lead { max-width: 37rem; margin: 0 0 30px; font-size: clamp(1.05rem, 1rem + 0.3vw, 1.2rem); color: #c6d4e4; }
.hero__cta { display: grid; gap: 12px; }
@media (min-width: 560px) {
  .hero__cta { display: flex; flex-wrap: wrap; }
}

.assurances {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 16px;
  margin: 30px 0 0; padding: 0; list-style: none;
  font-size: 0.95rem; font-weight: 600; color: #e6eef8;
}
.assurances li { display: flex; align-items: center; gap: 0.55rem; line-height: 1.25; }
.assurances .icon { width: 22px; height: 22px; color: var(--amber-400); }
@media (min-width: 560px) {
  .assurances { grid-template-columns: repeat(2, max-content); gap: 14px 36px; }
}

/* Carte "De quoi avez-vous besoin ?" */
.quick-card {
  position: relative;
  padding: 28px 18px 20px;
  border-radius: 24px;
  background: #fff; color: var(--ink);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 640px) { .quick-card { padding: 34px 30px 24px; } }
.quick-card__sticker {
  position: absolute; top: -22px; right: 14px;
  display: grid; place-content: center; gap: 1px;
  width: 84px; height: 84px; margin: 0;
  border-radius: 50%;
  background: var(--amber-500); color: var(--navy-950);
  line-height: 1; text-align: center;
  transform: rotate(9deg);
  box-shadow: 0 12px 24px -12px rgb(0 0 0 / 0.5);
}
.quick-card__sticker span { font-size: 0.66rem; font-weight: 700; }
.quick-card__sticker strong { font-family: var(--font-display); font-size: 1.32rem; font-weight: 800; letter-spacing: -0.02em; }
@media (min-width: 640px) {
  .quick-card__sticker { width: 98px; height: 98px; top: -26px; right: 22px; }
  .quick-card__sticker span { font-size: 0.74rem; }
  .quick-card__sticker strong { font-size: 1.55rem; }
}
.quick-card__title {
  margin: 0 0 6px; padding-right: 78px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.45rem; line-height: 1.15; letter-spacing: -0.02em;
}
.quick-card__sub { margin: 0 0 18px; padding-right: 60px; font-size: 0.95rem; color: var(--muted); }
@media (min-width: 640px) { .quick-card__sub { padding-right: 0; } }
.quick-card__grid { display: grid; gap: 10px; }
@media (min-width: 480px) { .quick-card__grid { grid-template-columns: 1fr 1fr; } }

.quick {
  position: relative;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 40px 12px 12px;
  border: 1.5px solid var(--line); border-radius: 16px;
  color: var(--ink); font-weight: 700; line-height: 1.25; text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
@media (min-width: 480px) {
  .quick { flex-direction: column; align-items: flex-start; min-height: 132px; padding: 16px; }
}
.quick:hover { border-color: var(--navy-700); transform: translateY(-2px); box-shadow: 0 14px 26px -18px rgb(10 31 54 / 0.55); }
.quick__icon { display: grid; place-items: center; flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--blue-100); color: var(--navy-700); }
.quick__icon .icon { width: 24px; height: 24px; }
.quick__label { padding-right: 4px; }
.quick__arrow { position: absolute; right: 14px; top: 50%; width: 18px; height: 18px; margin-top: -9px; color: var(--muted); transition: transform 0.15s ease; }
@media (min-width: 480px) { .quick__arrow { top: auto; bottom: 16px; margin-top: 0; } }
.quick:hover .quick__arrow { transform: translateX(3px); color: var(--ink); }
.quick--urgent { background: var(--amber-100); border-color: #ffd99a; }
.quick--urgent .quick__icon { background: var(--amber-500); color: var(--navy-950); }
.quick-card__foot { display: flex; align-items: center; justify-content: center; gap: 0.45rem; margin: 16px 0 0; font-size: 0.9rem; font-weight: 600; color: var(--muted); }
.quick-card__foot .icon { width: 18px; height: 18px; color: var(--green-600); }

/* ---------- Bandeau fournisseurs ---------- */
.suppliers { background: var(--navy-950); border-top: 1px solid rgb(255 255 255 / 0.07); color: #9fb3c8; }
.suppliers__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 32px; padding-block: 20px; text-align: center; }
.suppliers__label { margin: 0; font-size: 0.88rem; }
.suppliers__list { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; margin: 0; padding: 0; list-style: none; }
.suppliers__logo { display: grid; place-items: center; width: 132px; height: 68px; padding: 8px 12px; background: #fff; border-radius: 12px; box-shadow: 0 1px 3px rgb(6 21 39 / 0.3); font-family: var(--font-display); font-size: 0.82rem; font-weight: 700; color: var(--navy-900); text-align: center; }
.suppliers__logo img { max-width: 100%; max-height: 48px; width: auto; height: auto; }
@media (max-width: 560px) {
  .suppliers__logo { width: 116px; height: 60px; }
  .suppliers__logo img { max-height: 42px; }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(64px, 9vw, 112px); }
.section--tint { background: var(--bg); }
.section--dark {
  color: #fff;
  background:
    radial-gradient(52rem 32rem at 100% 0%, rgb(47 115 216 / 0.32), transparent 62%),
    var(--navy-900);
}
.section-head { max-width: 780px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.section-head--left { margin-inline: 0; text-align: left; }
.eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; margin: 0 0 12px; font-size: 0.92rem; font-weight: 700; color: var(--blue-600); }
.eyebrow::before { content: ""; width: 20px; height: 4px; border-radius: 2px; background: var(--amber-500); }
.eyebrow--light { color: var(--amber-300); }
.h2 {
  margin: 0 0 14px;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.8rem, 1.2rem + 2.2vw, 2.75rem); line-height: 1.1; letter-spacing: -0.024em;
  color: var(--ink); text-wrap: balance;
}
.section--dark .h2 { color: #fff; }
.h3 { margin: 0 0 8px; font-family: var(--font-display); font-weight: 700; font-size: 1.22rem; line-height: 1.2; letter-spacing: -0.012em; color: inherit; }
.lead { margin: 0; font-size: clamp(1.02rem, 0.98rem + 0.25vw, 1.15rem); color: var(--muted); }
.section--dark .lead { color: #c6d4e4; }
.lead a { font-weight: 700; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; }
@media (min-width: 700px) { .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; } }

.service-card {
  position: relative; display: flex; flex-direction: column;
  padding: 26px 24px 24px;
  border: 1px solid var(--line); border-radius: 20px;
  background: #fff; color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.service-card:hover { border-color: #c5d2e1; box-shadow: 0 22px 44px -30px rgb(10 31 54 / 0.5); transform: translateY(-3px); }
.service-card p { margin: 0 0 16px; color: var(--muted); }
.service-card__icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 18px; border-radius: 14px; background: var(--blue-100); color: var(--navy-700); }
.service-card__icon .icon { width: 28px; height: 28px; }
.service-card__link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: auto; font-weight: 700; color: var(--navy-600); text-decoration: none; }
.service-card__link::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.service-card__link .icon { width: 18px; height: 18px; transition: transform 0.15s ease; }
.service-card:hover .service-card__link .icon { transform: translateX(4px); }
.service-card--featured { border-color: transparent; background: linear-gradient(160deg, var(--navy-800), var(--navy-950)); color: #fff; }
.service-card--featured p { color: #c6d4e4; }
.service-card--featured .service-card__icon { background: var(--amber-500); color: var(--navy-950); }
.service-card--featured .checklist li { color: #e6eef8; }
.service-card--featured .checklist li::before { background-color: rgb(255 255 255 / 0.12); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m5 12.5 4.3 4.2L19 7' fill='none' stroke='%23ffbd3d' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.service-card--featured .btn { margin-top: auto; }

.tag { position: absolute; top: 24px; right: 22px; padding: 0.28rem 0.7rem; border-radius: 999px; font-size: 0.82rem; font-weight: 800; }
.tag--amber { background: var(--amber-500); color: var(--navy-950); }

.checklist { display: grid; gap: 8px; margin: 0 0 22px; padding: 0; list-style: none; }
.checklist li { position: relative; padding-left: 29px; font-size: 0.97rem; font-weight: 600; line-height: 1.4; color: var(--text); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 0.05em;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--blue-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m5 12.5 4.3 4.2L19 7' fill='none' stroke='%231d4e82' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* ---------- Salle de bain ---------- */
.sdb { display: grid; grid-template-columns: minmax(0, 1fr); gap: 40px; align-items: start; }
@media (min-width: 1024px) { .sdb { grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: 72px; align-items: center; } }
.steps { display: grid; gap: 12px; margin: 32px 0 0; padding: 0; list-style: none; }
@media (min-width: 640px) { .steps { grid-template-columns: 1fr 1fr; gap: 16px; } }
.step { display: flex; align-items: flex-start; gap: 14px; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.step__num { display: grid; place-items: center; flex: none; width: 36px; height: 36px; border-radius: 10px; background: var(--navy-800); color: #fff; font-family: var(--font-display); font-weight: 800; }
.step__title { margin: 3px 0 4px; font-family: var(--font-display); font-size: 1.06rem; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.step p { margin: 0; font-size: 0.95rem; line-height: 1.5; color: var(--muted); }

.budget-card { padding: 30px 24px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: 0 32px 64px -40px rgb(10 31 54 / 0.5); }
@media (min-width: 640px) { .budget-card { padding: 34px 32px; } }
.budget-card__eyebrow { margin: 0 0 6px; font-size: 0.88rem; font-weight: 700; color: var(--blue-600); }
.budget-card__title { margin: 0 0 12px; font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; letter-spacing: -0.02em; color: var(--ink); }
.budget-list { margin: 0 0 18px; padding: 0; list-style: none; }
.budget-list li { position: relative; display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 4px 12px; padding: 16px 0 26px; border-bottom: 1px dashed #cdd8e4; }
.budget-list li::before, .budget-list li::after { content: ""; position: absolute; left: 0; bottom: 12px; height: 6px; border-radius: 3px; }
.budget-list li::before { right: 0; background: var(--blue-100); }
.budget-list li::after { width: var(--w, 30%); background: linear-gradient(90deg, var(--blue-400), var(--navy-700)); }
.budget-list li:nth-child(1) { --w: 26%; }
.budget-list li:nth-child(2) { --w: 60%; }
.budget-list li:nth-child(3) { --w: 100%; }
.budget-list__name { font-weight: 700; color: var(--ink); }
.budget-list__price { font-size: 0.95rem; color: var(--muted); }
.budget-list__price strong { font-family: var(--font-display); font-size: 1.12rem; font-weight: 800; color: var(--ink); white-space: nowrap; }
.budget-card__note { margin: 0 0 20px; font-size: 0.88rem; color: var(--muted); }

/* ---------- Zone d'intervention ---------- */
.zone { display: grid; grid-template-columns: minmax(0, 1fr); gap: 40px; align-items: center; }
@media (min-width: 1024px) { .zone { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 72px; } }
.zone__text .lead { margin-bottom: 28px; }
.zone__points { display: grid; gap: 14px; margin: 0 0 30px; padding: 0; list-style: none; }
.zone__points li { display: flex; align-items: center; gap: 14px; line-height: 1.45; color: var(--text); }
.zone__points strong { color: var(--ink); }
.zone__icon { display: grid; place-items: center; flex: none; width: 42px; height: 42px; border-radius: 12px; background: var(--blue-100); color: var(--navy-700); }
.zone__icon .icon { width: 22px; height: 22px; }
.zone__cta { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 479px) { .zone__cta .btn { flex: 1 1 100%; } }

.idf-card { margin: 0; padding: clamp(14px, 3vw, 26px); border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: 0 32px 64px -44px rgb(10 31 54 / 0.45); }
.idf-map { width: 100%; max-width: 460px; height: auto; margin-inline: auto; }
.idf-sectors path, .idf-sectors circle { stroke: #fff; stroke-width: 4; stroke-linejoin: round; }
.idf-outer { fill: var(--blue-100); }
.idf-inner { fill: #c9dcf5; }
.idf-outer.idf-base { fill: #ffe3ad; }
.idf-paris { fill: var(--navy-800); }
.idf-codes text { font-family: var(--font-display); font-size: 24px; font-weight: 800; fill: var(--navy-700); text-anchor: middle; }
.idf-codes .idf-codes--sm { font-size: 20px; }
.idf-codes .idf-codes--paris { font-size: 22px; fill: #fff; }
.idf-codes .idf-paris-name { font-family: var(--font-text); font-size: 11px; font-weight: 600; fill: var(--blue-200); }
.idf-pin { fill: var(--amber-500); stroke: var(--navy-950); stroke-width: 1.5; }
.idf-pin-dot { fill: var(--navy-950); }
.idf-ripple { fill: none; stroke: #f59e0b; stroke-width: 2; vector-effect: non-scaling-stroke; opacity: 0; transform-box: fill-box; transform-origin: center; animation: idf-ripple 3.6s ease-out infinite; }
.idf-ripple--2 { animation-delay: 1.2s; }
.idf-ripple--3 { animation-delay: 2.4s; }
@keyframes idf-ripple { 0% { transform: scale(0.5); opacity: 0.8; } 100% { transform: scale(4.5); opacity: 0; } }
.idf-label rect { fill: var(--navy-800); }
.idf-label text { font-family: var(--font-text); font-size: 14px; font-weight: 700; fill: #fff; text-anchor: middle; }
.idf-legend ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px 18px; margin: 16px 0 0; padding: 16px 4px 0; border-top: 1px solid var(--line); list-style: none; font-size: 0.9rem; color: var(--text); }
.idf-legend li { display: flex; align-items: baseline; gap: 10px; }
.idf-legend b { min-width: 1.5em; font-family: var(--font-display); font-weight: 800; color: var(--navy-700); }
.idf-legend .is-base b { color: #b45309; }

/* ---------- Avis et garanties ---------- */
.reviews { display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; }
@media (min-width: 860px) { .reviews { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; } }
.review { display: flex; flex-direction: column; margin: 0; padding: 28px 24px 22px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.review__quote { width: 34px; height: 34px; margin-bottom: 14px; color: var(--amber-500); }
.review blockquote { flex: 1; margin: 0 0 20px; }
.review blockquote p { margin: 0; font-size: 1.06rem; line-height: 1.55; color: var(--ink); }
.review__author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); line-height: 1.3; }
.review__avatar { display: grid; place-items: center; flex: none; width: 42px; height: 42px; border-radius: 50%; background: var(--navy-800); color: #fff; font-family: var(--font-display); font-weight: 800; }
.review__author strong { display: block; color: var(--ink); }
.review__author strong + span { display: block; font-size: 0.88rem; color: var(--muted); }

.guarantees__title { margin: clamp(52px, 7vw, 80px) 0 24px; font-family: var(--font-display); font-size: clamp(1.35rem, 1.2rem + 0.6vw, 1.6rem); font-weight: 800; letter-spacing: -0.015em; text-align: center; color: var(--ink); }
.guarantees { display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; }
@media (min-width: 640px) { .guarantees { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .guarantees { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; } }
.guarantee { padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.guarantee h4 { margin: 14px 0 6px; font-family: var(--font-display); font-size: 1.08rem; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.guarantee p { margin: 0; font-size: 0.94rem; line-height: 1.5; color: var(--muted); }
.guarantee__icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--blue-100); color: var(--navy-700); }
.guarantee__icon .icon { width: 26px; height: 26px; }
.guarantee--highlight { border-color: transparent; background: var(--navy-800); }
.guarantee--highlight h4 { color: #fff; }
.guarantee--highlight p { color: #c6d4e4; }
.guarantee--highlight .guarantee__icon { background: var(--amber-500); color: var(--navy-950); }

/* ---------- Devis ---------- */
.devis { display: grid; grid-template-columns: minmax(0, 1fr); gap: 40px; align-items: start; }
@media (min-width: 1024px) { .devis { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 64px; } .devis__aside { position: sticky; top: calc(var(--header-h) + 32px); } }
.devis__aside .lead { margin-bottom: 28px; }
.process { display: grid; gap: 12px; margin: 0 0 28px; padding: 0; list-style: none; }
.process li { display: flex; align-items: center; gap: 14px; font-weight: 600; color: #e6eef8; }
.process span { display: grid; place-items: center; flex: none; width: 34px; height: 34px; border: 2px solid rgb(255 255 255 / 0.25); border-radius: 50%; font-family: var(--font-display); font-weight: 800; }
.urgent-box { display: flex; gap: 14px; padding: 20px; border: 1px solid rgb(255 173 31 / 0.35); border-radius: 18px; background: rgb(255 173 31 / 0.1); }
.urgent-box > .icon { width: 28px; height: 28px; margin-top: 2px; color: var(--amber-400); }
.urgent-box p { margin: 0; color: #dce7f3; }
.urgent-box .urgent-box__title { margin-bottom: 2px; font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; color: #fff; }
.urgent-box__phone { display: inline-block; margin-top: 6px; font-family: var(--font-display); font-size: 1.65rem; font-weight: 800; letter-spacing: -0.01em; color: var(--amber-400); text-decoration: none; white-space: nowrap; }
.urgent-box__phone:hover { text-decoration: underline; }

.form-card { padding: 26px 18px; border-radius: 24px; background: #fff; color: var(--ink); box-shadow: var(--shadow-lg); }
@media (min-width: 640px) { .form-card { padding: 34px 32px; } }
.form-card__title { margin: 0 0 18px; font-family: var(--font-display); font-size: 1.45rem; font-weight: 800; letter-spacing: -0.015em; }

.needs { margin: 0 0 18px; padding: 0; border: 0; min-width: 0; }
.needs legend { margin-bottom: 10px; padding: 0; font-size: 0.95rem; font-weight: 700; }
.needs__grid { display: flex; flex-wrap: wrap; gap: 8px; }
.need { position: relative; cursor: pointer; }
.need input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.need span { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.55rem 0.85rem; border: 1.5px solid var(--line); border-radius: 999px; background: #fff; font-size: 0.93rem; font-weight: 600; color: var(--text); transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease; }
.need .icon { width: 18px; height: 18px; color: var(--navy-600); }
.need:hover span { border-color: var(--navy-600); }
.need input:checked + span { border-color: var(--navy-800); background: var(--navy-800); color: #fff; }
.need input:checked + span .icon { color: var(--amber-400); }
.need input:focus-visible + span { outline: 3px solid var(--blue-400); outline-offset: 2px; }

.form-alert { display: flex; align-items: flex-start; gap: 10px; margin: 0 0 16px; padding: 12px 14px; border: 1px solid #ffd99a; border-radius: 12px; background: var(--amber-100); }
.form-alert .icon { width: 20px; height: 20px; margin-top: 2px; color: #b45309; }
.form-alert p { margin: 0; font-size: 0.93rem; font-weight: 600; }
.form-alert a { font-weight: 800; color: var(--navy-900); white-space: nowrap; }

.fields { display: grid; grid-template-columns: minmax(0, 1fr); gap: 14px 16px; }
@media (min-width: 640px) { .fields { grid-template-columns: 1fr 1fr; } .field--full { grid-column: 1 / -1; } }
.field label { display: block; margin-bottom: 6px; font-size: 0.93rem; font-weight: 600; }
.req { color: #c2410c; }
.optional { font-weight: 500; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 0.7rem 0.9rem;
  border: 1.5px solid #d3dce7; border-radius: 12px;
  background: #f8fafc; color: var(--ink); font-size: 1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  -webkit-appearance: none; appearance: none;
}
.field textarea { min-height: 100px; resize: vertical; line-height: 1.5; }
.field select { padding-right: 2.6rem; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6' fill='none' stroke='%2356687b' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; background-size: 18px; }
.field input::placeholder, .field textarea::placeholder { color: #8795a5; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--navy-600); background-color: #fff; box-shadow: 0 0 0 4px rgb(47 115 216 / 0.16); }
.field.has-error input { border-color: #dc2626; background-color: #fef2f2; }
.field__error { margin: 5px 0 0; font-size: 0.85rem; font-weight: 600; color: #b91c1c; }
.field__error:empty { display: none; }
.hp { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.quote-form .btn--block { margin-top: 22px; }
.form-status { margin: 12px 0 0; font-size: 0.95rem; font-weight: 600; text-align: center; }
.form-status:empty { display: none; }
.form-status.is-error { color: #b91c1c; }
.form-status a { white-space: nowrap; }
.form-legal { margin: 14px 0 0; font-size: 0.8rem; line-height: 1.5; text-align: center; color: var(--muted); }
.form-success { padding: 24px 8px; text-align: center; outline: 0; }
.form-success__icon { display: grid; place-items: center; width: 68px; height: 68px; margin: 0 auto 16px; border-radius: 50%; background: #dcfce7; color: #15803d; }
.form-success__icon .icon { width: 36px; height: 36px; }
.form-success__title { margin: 0 0 8px; font-family: var(--font-display); font-size: 1.55rem; font-weight: 800; }
.form-success p { max-width: 28rem; margin-inline: auto; color: var(--muted); }
.form-success a { font-weight: 700; white-space: nowrap; }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: minmax(0, 1fr); gap: 8px; }
@media (min-width: 1024px) {
  .faq { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 64px; align-items: start; }
  .faq .section-head { position: sticky; top: calc(var(--header-h) + 32px); margin-bottom: 0; }
}
.faq__list { display: grid; gap: 12px; }
.faq-item { padding: 0 20px; border: 1px solid var(--line); border-radius: 16px; background: #fff; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.faq-item[open] { border-color: #c5d2e1; box-shadow: 0 18px 36px -30px rgb(10 31 54 / 0.55); }
.faq-item summary { position: relative; padding: 18px 40px 18px 0; list-style: none; cursor: pointer; font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ""; position: absolute; right: 0; top: 50%; width: 26px; height: 26px; margin-top: -13px; border-radius: 50%; background: var(--blue-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' fill='none' stroke='%230d2a4a' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E") center / 13px no-repeat; transition: transform 0.2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0 0 18px; color: var(--muted); }
.faq-item a { font-weight: 600; }

/* ---------- Pied de page ---------- */
.site-footer { padding: 56px 0 0; background: var(--navy-950); color: #9fb3c8; font-size: 0.95rem; }
.site-footer__grid { display: grid; gap: 32px; }
@media (min-width: 640px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; } }
.site-footer__brand p { max-width: 24rem; margin: 16px 0 0; }
.site-footer__title { margin: 0 0 12px; font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: #fff; }
.site-footer__list { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.site-footer__list li { display: flex; align-items: center; gap: 8px; }
.site-footer__list .icon { width: 18px; height: 18px; color: var(--amber-400); }
.site-footer a { color: #dce7f3; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer__list a { display: inline-flex; align-items: center; gap: 8px; }
.site-footer__bottom { position: relative; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; margin-top: 44px; padding-top: 20px; padding-bottom: 96px; font-size: 0.85rem; }
.site-footer__bottom::before { content: ""; position: absolute; top: 0; left: var(--gutter); right: var(--gutter); height: 1px; background: rgb(255 255 255 / 0.1); }
@media (min-width: 1024px) { .site-footer__bottom { padding-bottom: 24px; } }
.site-footer__bottom p { margin: 0; }

/* ---------- Page équipe ---------- */
.page-hero {
  padding-block: clamp(44px, 7vw, 88px);
  color: #fff;
  background:
    radial-gradient(52rem 32rem at 92% -20%, rgb(47 115 216 / 0.34), transparent 62%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
}
.page-hero__title { margin: 0 0 14px; font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 1.3rem + 2.4vw, 3rem); line-height: 1.08; letter-spacing: -0.025em; text-wrap: balance; }
.page-hero__lead { max-width: 46rem; margin: 0; font-size: clamp(1.02rem, 0.98rem + 0.3vw, 1.18rem); color: #c6d4e4; }

.team { display: grid; grid-template-columns: minmax(0, 1fr); gap: 20px; }
@media (min-width: 760px) { .team { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .team { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; } }
.member {
  display: flex; flex-direction: column; align-items: center;
  padding: 30px 24px 28px;
  border: 1px solid var(--line); border-radius: 22px; background: #fff;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.member:hover { border-color: #c5d2e1; box-shadow: 0 22px 44px -30px rgb(10 31 54 / 0.5); transform: translateY(-3px); }
.member__photo { width: min(220px, 64%); height: auto; margin-bottom: 20px; border-radius: 50%; background: var(--blue-50); }
.member__name { margin: 0 0 8px; font-family: var(--font-display); font-size: 1.32rem; font-weight: 800; letter-spacing: -0.015em; color: var(--ink); }
.member__role { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 16px; padding: 0.3rem 0.85rem; border-radius: 999px; background: var(--blue-100); font-size: 0.88rem; font-weight: 700; color: var(--navy-700); }
.member__role::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--amber-500); }
.member__bio { margin: 0; color: var(--muted); line-height: 1.6; }

.team-cta { text-align: center; }
.team-cta .lead { max-width: 40rem; margin: 0 auto 28px; }
.team-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
@media (max-width: 479px) { .team-cta__actions .btn { flex: 1 1 100%; } }

/* ---------- Page simple (mentions légales, 404) ---------- */
.page { padding-block: clamp(48px, 7vw, 88px); }
.page .container { max-width: calc(820px + var(--gutter) * 2); }
.page h1 { margin: 0 0 12px; font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 1.4rem + 2vw, 2.8rem); line-height: 1.1; letter-spacing: -0.025em; color: var(--ink); }
.page h2 { margin: 40px 0 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; letter-spacing: -0.012em; color: var(--ink); }
.page p, .page li { color: var(--text); }
.page ul { padding-left: 1.2rem; }
.page .muted { color: var(--muted); }

/* ==========================================================================
   Page rendez-vous
   ========================================================================== */
.page-hero--compact { padding-block: clamp(40px, 5.5vw, 68px); }
.page-hero__note {
  display: flex; align-items: flex-start; gap: 10px;
  max-width: 46rem; margin: 20px 0 0; padding: 14px 16px;
  border: 1px solid rgb(255 255 255 / 0.16); border-radius: 14px;
  background: rgb(255 255 255 / 0.06);
  font-size: 0.95rem; color: #d7e3f1;
}
.page-hero__note .icon { flex: none; width: 20px; height: 20px; margin-top: 2px; color: var(--amber-400); }
.page-hero__note a { color: #fff; font-weight: 700; }

.section--tight { padding-block: clamp(40px, 6vw, 72px); }

.booking { display: grid; grid-template-columns: minmax(0, 1fr); gap: 24px; margin: 0; }
@media (min-width: 1024px) {
  .booking { grid-template-columns: minmax(0, 1fr) 340px; gap: 32px; align-items: start; }
}

.booking__steps { display: grid; grid-template-columns: minmax(0, 1fr); gap: 20px; }

.booking-step { min-width: 0; margin: 0; padding: 22px 20px 24px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
@media (min-width: 640px) { .booking-step { padding: 26px 26px 28px; } }
.booking-step__legend {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px; padding: 0;
  font-family: var(--font-display); font-size: 1.22rem; font-weight: 800;
  letter-spacing: -0.015em; color: var(--ink);
}
.booking-step__num {
  display: grid; place-items: center; flex: none;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--navy-800); color: #fff;
  font-size: 1rem; font-weight: 800;
}

/* ---------- Choix de la prestation ---------- */
.choice-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 12px; }
@media (min-width: 900px) { .choice-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.choice { display: block; min-width: 0; cursor: pointer; }
.choice input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.choice__body {
  display: flex; align-items: flex-start; gap: 12px; height: 100%;
  padding: 16px; border: 2px solid var(--line); border-radius: 16px;
  background: var(--blue-50);
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}
@media (min-width: 900px) { .choice__body { flex-direction: column; } }
.choice__icon {
  display: grid; place-items: center; flex: none;
  width: 42px; height: 42px; border-radius: 12px;
  background: #fff; border: 1px solid var(--line); color: var(--navy-700);
}
.choice__icon .icon { width: 22px; height: 22px; }
.choice__text { display: block; min-width: 0; }
.choice__title { display: block; font-family: var(--font-display); font-size: 1.02rem; font-weight: 700; color: var(--ink); }
.choice__sub { display: block; margin-top: 4px; font-size: 0.88rem; line-height: 1.45; color: var(--muted); }
.choice:hover .choice__body { border-color: var(--blue-200); }
.choice input:focus-visible + .choice__body { outline: 3px solid var(--blue-500); outline-offset: 2px; }
.choice input:checked + .choice__body {
  border-color: var(--navy-800); background: #fff;
  box-shadow: 0 18px 34px -26px rgb(10 31 54 / 0.55);
}
.choice input:checked + .choice__body .choice__icon { background: var(--amber-500); border-color: var(--amber-500); color: var(--navy-950); }

/* ---------- Jours et créneaux ---------- */
.slots__days {
  display: flex; gap: 10px;
  margin-bottom: 20px; padding-bottom: 6px;
  overflow-x: auto; scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  /* Le dernier jour s'estompe : on voit qu'il y en a d'autres a droite */
  mask-image: linear-gradient(90deg, #000 calc(100% - 44px), transparent);
}
@media (prefers-reduced-motion: reduce) { .slots__days { scroll-behavior: auto; } }
.day {
  display: grid; flex: none; gap: 1px;
  min-width: 78px; padding: 10px 12px;
  border: 2px solid var(--line); border-radius: 14px;
  background: #fff; color: var(--text);
  font-family: var(--font-text); text-align: center;
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}
.day:hover { border-color: var(--blue-200); }
.day:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 2px; }
.day__weekday { font-size: 0.82rem; font-weight: 600; color: var(--muted); text-transform: capitalize; }
.day__num { font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; line-height: 1.1; color: var(--ink); }
.day__count { font-size: 0.72rem; font-weight: 600; color: var(--muted); }
.day.is-active { border-color: var(--navy-800); background: var(--navy-800); }
.day.is-active .day__weekday, .day.is-active .day__count { color: #bcd3f3; }
.day.is-active .day__num { color: #fff; }

.slots__day-label { margin: 0 0 12px; font-weight: 700; color: var(--ink); }
.slots__day-label::first-letter { text-transform: uppercase; }
.slots__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 10px; }
.slot { display: block; min-width: 0; cursor: pointer; }
.slot input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.slot span {
  display: grid; place-items: center;
  padding: 14px 10px;
  border: 2px solid var(--line); border-radius: 14px;
  background: var(--blue-50);
  font-weight: 700; color: var(--ink);
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}
.slot:hover span { border-color: var(--blue-200); }
.slot input:focus-visible + span { outline: 3px solid var(--blue-500); outline-offset: 2px; }
.slot input:checked + span { border-color: var(--navy-800); background: var(--navy-800); color: #fff; }

.slots__hint { margin: 16px 0 0; font-size: 0.88rem; color: var(--muted); }
.slots__state { margin: 0; color: var(--muted); }

.slots__fallback { padding: 18px; border: 1px solid #ffd99a; border-radius: 16px; background: var(--amber-100); }
.slots__fallback p { margin: 0 0 10px; color: var(--text); }
.slots__fallback-title { font-weight: 700; color: var(--ink); }
.slots__fallback-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }

/* ---------- Coordonnées ---------- */
.field-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 14px 16px; }
@media (min-width: 640px) { .field-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.field-grid .field { margin: 0; min-width: 0; }
.field--wide { grid-column: 1 / -1; }
.field__note { font-weight: 500; color: var(--muted); }
.field input.is-invalid, .field textarea.is-invalid { border-color: #dc2626; background-color: #fef2f2; }

/* ---------- Récapitulatif ---------- */
.booking-summary { min-width: 0; }
.booking-summary__inner {
  padding: 22px 20px 24px;
  border: 1px solid var(--line); border-radius: 20px; background: var(--bg);
}
@media (min-width: 1024px) {
  .booking-summary__inner { position: sticky; top: calc(var(--header-h) + 16px); }
}
.booking-summary__title { margin: 0 0 16px; font-family: var(--font-display); font-size: 1.12rem; font-weight: 800; color: var(--ink); }
.booking-summary__list { margin: 0 0 16px; }
.booking-summary__list > div { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line); }
.booking-summary__list > div:first-child { border-top: 0; padding-top: 0; }
.booking-summary__list dt { flex: none; font-size: 0.9rem; color: var(--muted); }
.booking-summary__list dd { margin: 0; font-weight: 700; text-align: right; color: var(--ink); }
.booking-summary__list dd.is-empty { font-weight: 600; color: var(--muted); }
.booking-summary__note { margin: 0 0 18px; font-size: 0.88rem; line-height: 1.5; color: var(--muted); }
.booking-summary__status { margin: 14px 0 0; font-size: 0.92rem; font-weight: 600; color: var(--muted); }
.booking-summary__status:empty { display: none; }
.booking-summary__status.is-error { color: #b91c1c; }
.booking-summary__legal { margin: 14px 0 0; font-size: 0.8rem; line-height: 1.5; color: var(--muted); }

/* ---------- Confirmation ---------- */
.booking-done {
  max-width: 44rem; margin: 0 auto; padding: 32px 24px 34px;
  border: 1px solid var(--line); border-radius: 22px; background: #fff;
  text-align: center;
}
.booking-done:focus { outline: 0; }
.booking-done__mark {
  display: grid; place-items: center;
  width: 62px; height: 62px; margin: 0 auto 18px;
  border-radius: 50%; background: var(--green-500); color: #fff;
}
.booking-done__mark .icon { width: 32px; height: 32px; }
.booking-done__title { margin: 0 0 10px; font-family: var(--font-display); font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem); font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.booking-done__lead { margin: 0 0 24px; font-size: 1.08rem; color: var(--text); }
.booking-done__list { margin: 0 0 22px; text-align: left; }
.booking-done__list > div { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px 16px; padding: 12px 0; border-top: 1px solid var(--line); }
.booking-done__list dt { color: var(--muted); }
.booking-done__list dd { margin: 0; font-weight: 700; text-align: right; color: var(--ink); }
.booking-done__note { margin: 0 0 24px; font-size: 0.92rem; line-height: 1.55; color: var(--muted); }

.process--center { max-width: 38rem; margin-inline: auto; text-align: left; }

/* ==========================================================================
   Chatbot
   ========================================================================== */
.chat-launcher {
  position: fixed; z-index: 60;
  right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom));
  display: inline-flex; align-items: center; gap: 10px;
  height: 58px; padding: 0 20px 0 15px;
  border: 0; border-radius: 999px;
  background: var(--navy-800); color: #fff;
  font-family: var(--font-text); font-size: 1rem; font-weight: 700;
  box-shadow: 0 18px 38px -14px rgb(6 21 39 / 0.7), inset 0 0 0 1px rgb(255 255 255 / 0.1);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}
.chat-launcher:hover { background: var(--navy-700); transform: translateY(-2px); }
.chat-launcher__icon { position: relative; display: grid; place-items: center; }
.chat-launcher__icon .icon { width: 27px; height: 27px; }
.chat-launcher__icon::after { content: ""; position: absolute; top: -1px; right: -3px; width: 10px; height: 10px; border: 2px solid var(--navy-800); border-radius: 50%; background: var(--green-500); }
@media (max-width: 639px) {
  .chat-launcher { width: 58px; padding: 0; justify-content: center; }
  .chat-launcher__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
}
.chat-launcher.is-hidden { opacity: 0; transform: scale(0.85); pointer-events: none; }
.chat-launcher__badge { position: absolute; top: -4px; right: -4px; display: grid; place-items: center; min-width: 22px; height: 22px; padding: 0 6px; border: 2px solid #fff; border-radius: 999px; background: #e5484d; color: #fff; font-size: 0.75rem; font-weight: 800; line-height: 1; animation: chat-pop 0.3s ease-out both; }

.chat-teaser {
  position: fixed; z-index: 60;
  right: max(16px, env(safe-area-inset-right)); bottom: calc(max(16px, env(safe-area-inset-bottom)) + 70px);
  width: min(300px, calc(100vw - 32px));
  padding: 14px 40px 14px 16px;
  border-radius: 18px 18px 6px 18px;
  background: #fff; color: var(--ink);
  font-size: 0.95rem; line-height: 1.4;
  box-shadow: 0 24px 50px -18px rgb(6 21 39 / 0.45), 0 0 0 1px var(--line);
  animation: chat-pop 0.35s ease-out both;
}
.chat-teaser strong { display: block; margin-bottom: 2px; font-family: var(--font-display); }
.chat-teaser__open { all: unset; position: absolute; inset: 0; border-radius: inherit; cursor: pointer; }
.chat-teaser__open:focus-visible { outline: 3px solid var(--blue-400); }
.chat-teaser__close { position: absolute; top: 8px; right: 8px; display: grid; place-items: center; width: 28px; height: 28px; border: 0; border-radius: 8px; background: transparent; color: var(--muted); cursor: pointer; }
.chat-teaser__close:hover { background: var(--bg); color: var(--ink); }
.chat-teaser__close .icon { width: 16px; height: 16px; }

.chat-panel {
  position: fixed; z-index: 70;
  right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom));
  display: flex; flex-direction: column;
  width: min(400px, calc(100vw - 32px)); height: min(640px, calc(100vh - 32px));
  border-radius: 22px; overflow: hidden;
  background: #fff; color: var(--ink);
  box-shadow: 0 36px 90px -24px rgb(6 21 39 / 0.6), 0 0 0 1px rgb(10 31 54 / 0.06);
  transform-origin: bottom right;
  animation: chat-pop 0.24s ease-out both;
}
@supports (height: 100dvh) { .chat-panel { height: min(640px, calc(100dvh - 32px)); } }
@media (max-width: 560px) {
  .chat-panel { inset: 0; width: 100%; height: 100%; border-radius: 0; }
}
@keyframes chat-pop { from { opacity: 0; transform: translateY(12px) scale(0.97); } to { opacity: 1; transform: none; } }

.chat-header { display: flex; align-items: center; gap: 12px; padding: 12px 12px 12px 16px; padding-top: max(12px, env(safe-area-inset-top)); background: var(--navy-900); color: #fff; }
.chat-header__avatar { position: relative; flex: none; width: 40px; height: 40px; }
.chat-header__avatar svg { width: 40px; height: 40px; }
.chat-header__avatar::after { content: ""; position: absolute; right: -2px; bottom: -2px; width: 12px; height: 12px; border: 2px solid var(--navy-900); border-radius: 50%; background: var(--green-500); }
.chat-header__text { min-width: 0; line-height: 1.25; }
.chat-header__title { margin: 0; font-family: var(--font-display); font-size: 1.02rem; font-weight: 700; }
.chat-header__sub { margin: 0; font-size: 0.8rem; color: #a9bbcf; }
.chat-header__actions { display: flex; gap: 6px; margin-left: auto; }
.chat-icon-btn { display: grid; place-items: center; width: 40px; height: 40px; border: 0; border-radius: 12px; background: rgb(255 255 255 / 0.09); color: #fff; cursor: pointer; text-decoration: none; transition: background-color 0.15s ease; }
.chat-icon-btn:hover { background: rgb(255 255 255 / 0.16); }
.chat-icon-btn .icon { width: 21px; height: 21px; }
.chat-icon-btn--call { background: var(--amber-500); color: var(--navy-950); }
.chat-icon-btn--call:hover { background: var(--amber-400); }

.chat-log { flex: 1; display: flex; flex-direction: column; gap: 8px; padding: 18px 14px 10px; overflow-y: auto; overscroll-behavior: contain; background: var(--bg); }
.msg { max-width: 86%; padding: 10px 14px; border-radius: 18px; font-size: 0.95rem; line-height: 1.45; overflow-wrap: anywhere; animation: msg-in 0.2s ease-out both; }
.msg p { margin: 0; }
.msg p + p { margin-top: 6px; }
.msg--bot { align-self: flex-start; border: 1px solid var(--line); border-bottom-left-radius: 6px; background: #fff; color: var(--ink); }
.msg--user { align-self: flex-end; border-bottom-right-radius: 6px; background: var(--navy-800); color: #fff; }
.msg a { font-weight: 700; color: var(--navy-600); }
.msg--typing { display: inline-flex; gap: 4px; padding: 14px 16px; }
.msg--typing i { width: 7px; height: 7px; border-radius: 50%; background: #94a3b8; animation: typing 1s ease-in-out infinite; }
.msg--typing i:nth-child(2) { animation-delay: 0.15s; }
.msg--typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: 0.5; } 30% { transform: translateY(-4px); opacity: 1; } }
@keyframes msg-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.msg-card { align-self: flex-start; width: 86%; padding: 12px; border: 1px solid var(--line); border-radius: 18px; background: #fff; animation: msg-in 0.2s ease-out both; }
.msg-card .btn { --h: 46px; width: 100%; }
.msg-card__note { margin: 8px 2px 0; font-size: 0.82rem; color: var(--muted); }
.msg-summary { margin: 6px 0 0; padding: 0; list-style: none; font-size: 0.9rem; }
.msg-summary li { padding: 3px 0; border-top: 1px dashed var(--line); }
.msg-summary li:first-child { border-top: 0; }
.msg-summary b { font-weight: 700; }

.chat-quick { display: flex; flex-wrap: wrap; gap: 6px; padding: 8px 14px 6px; background: var(--bg); }
.chat-quick:empty { display: none; }
.chip { padding: 0.5rem 0.85rem; border: 1.5px solid var(--navy-700); border-radius: 999px; background: #fff; color: var(--navy-800); font-size: 0.9rem; font-weight: 600; line-height: 1.2; cursor: pointer; transition: background-color 0.15s ease, color 0.15s ease; animation: msg-in 0.2s ease-out both; }
.chip:hover { background: var(--navy-800); color: #fff; }
.chip--primary { border-color: var(--amber-500); background: var(--amber-500); color: var(--navy-950); }
.chip--primary:hover { border-color: var(--amber-400); background: var(--amber-400); color: var(--navy-950); }

.chat-form { display: flex; gap: 8px; padding: 10px 12px; border-top: 1px solid var(--line); background: #fff; }
.chat-form input { flex: 1; min-width: 0; height: 46px; padding: 0 14px; border: 1.5px solid #d3dce7; border-radius: 12px; background: #f8fafc; color: var(--ink); font-size: 1rem; }
.chat-form input:focus { outline: 0; border-color: var(--navy-600); background: #fff; box-shadow: 0 0 0 4px rgb(47 115 216 / 0.14); }
.chat-form button { display: grid; place-items: center; flex: none; width: 46px; height: 46px; border: 0; border-radius: 12px; background: var(--navy-800); color: #fff; cursor: pointer; }
.chat-form button:hover { background: var(--navy-700); }
.chat-form button .icon { width: 21px; height: 21px; }
.chat-foot { margin: 0; padding: 0 12px max(8px, env(safe-area-inset-bottom)); background: #fff; font-size: 0.72rem; text-align: center; color: var(--muted); }

/* ---------- Mouvement réduit ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
