/* ============================================================
   JH HABITAT 66 MULTISERVICES — Design system
   Palette : navy profond + ambre chaud + papier
   Typo : Bricolage Grotesque (titres) + système (texte)
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  --navy-950: #0C1A2E;
  --navy-900: #101F33;
  --navy-800: #16283F;
  --navy-700: #1E3654;
  --navy-600: #2A4A6E;
  --navy-100: #E3EAF3;

  --amber-600: #B9770F;
  --amber-500: #E9A13B;
  --amber-400: #F2B95C;
  --amber-300: #F8D08A;
  --amber-100: #FBEED6;

  --paper: #FAF7F1;
  --white: #FFFFFF;
  --ink: #1C2128;
  --slate: #5B6572;
  --slate-light: #7C8694;
  --line: #E6DFD2;
  --success: #2F7D4F;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 2px rgba(16, 31, 51, .06), 0 4px 12px rgba(16, 31, 51, .05);
  --shadow: 0 6px 24px rgba(16, 31, 51, .10);
  --shadow-lg: 0 18px 48px rgba(16, 31, 51, .18);

  --container: 1160px;
  --header-h: 76px;

  --font-display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-700); text-decoration: none; }
a:hover { color: var(--amber-600); }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 4.4vw, 3.3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
:focus-visible {
  outline: 3px solid var(--amber-500);
  outline-offset: 2px;
  border-radius: 4px;
}
::selection { background: var(--amber-300); color: var(--navy-900); }

/* ---------- Utilitaires ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 28px);
}
.section { padding-block: clamp(56px, 7.5vw, 92px); }
.section-tight { padding-block: clamp(40px, 5vw, 60px); }
.section-paper { background: var(--paper); }
.section-navy { background: var(--navy-900); color: #C9D4E2; }
.section-navy h2, .section-navy h3 { color: var(--white); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber-600);
  margin-bottom: 14px;
}
.kicker::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--amber-500);
  border-radius: 2px;
}
.section-head { max-width: 680px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .kicker::before { display: none; }
.section-head.center .kicker { gap: 0; }
.section-head p { color: var(--slate); font-size: 1.05rem; margin-bottom: 0; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 14px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
  text-align: center;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--amber-500); color: var(--navy-900); box-shadow: 0 4px 14px rgba(233, 161, 59, .35); }
.btn-primary:hover { background: var(--amber-400); color: var(--navy-900); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(233, 161, 59, .45); }
.btn-navy { background: var(--navy-800); color: var(--white); }
.btn-navy:hover { background: var(--navy-700); color: var(--white); transform: translateY(-2px); }
.btn-outline { border-color: rgba(255,255,255,.55); color: var(--white); background: transparent; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); color: var(--white); transform: translateY(-2px); }
.btn-outline-dark { border-color: var(--navy-800); color: var(--navy-800); background: transparent; }
.btn-outline-dark:hover { background: var(--navy-800); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--navy-900); }
.btn-white:hover { background: var(--amber-100); color: var(--navy-900); transform: translateY(-2px); }
.btn-lg { padding: 17px 32px; font-size: 1.08rem; }
.btn-sm { padding: 10px 18px; font-size: .92rem; }
.btn-block { width: 100%; }
.btn-phone { background: var(--navy-800); color: var(--white); }
.btn-phone:hover { background: var(--navy-700); color: var(--amber-300); transform: translateY(-2px); }

/* ---------- Topbar ---------- */
.topbar { background: var(--navy-950); color: #A9B6C7; font-size: .84rem; }
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
  flex-wrap: wrap;
  padding-block: 6px;
}
.topbar-inner > span, .topbar-inner > a { display: inline-flex; align-items: center; gap: 7px; }
.topbar-inner svg { width: 14px; height: 14px; color: var(--amber-500); }
.topbar-inner a { color: #A9B6C7; }
.topbar-inner a:hover { color: var(--amber-300); }
.topbar-mail { margin-left: auto; }
@media (max-width: 760px) {
  .topbar-inner > .topbar-hours { display: none; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(16, 31, 51, .12); }
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { height: 58px; width: auto; }
.brand:hover { opacity: .9; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.main-nav > a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
  color: var(--navy-800);
  padding: 9px 14px;
  border-radius: 999px;
  transition: color .15s, background .15s;
}
.main-nav > a:hover { color: var(--amber-600); background: var(--amber-100); }
.main-nav > a.is-active { color: var(--amber-600); background: var(--amber-100); }
.header-actions { display: flex; align-items: center; gap: 10px; flex: none; }
.header-actions .btn { padding: 11px 20px; font-size: .95rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .header-actions .btn-primary { display: none; }
}
@media (max-width: 920px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 14px 16px 20px;
    margin: 0;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s var(--ease), transform .22s var(--ease);
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav > a { padding: 13px 16px; font-size: 1.05rem; border-radius: 10px; }
  .header-actions .btn-phone { display: none; }
}

/* ---------- Hero (accueil) ---------- */
.hero {
  position: relative;
  background: linear-gradient(120deg, var(--navy-950) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: #E7EDF5;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(233, 161, 59, .16) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: .35;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 161, 59, .22), transparent 65%);
  top: -180px; right: -140px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  padding-block: clamp(56px, 8vw, 104px);
}
.hero .kicker { color: var(--amber-300); }
.hero .kicker::before { background: var(--amber-500); }
.hero h1 { color: var(--white); margin-bottom: .35em; }
.hero h1 em { font-style: normal; color: var(--amber-400); }
.hero-lead { font-size: 1.13rem; color: #C6D2E0; max-width: 34em; margin-bottom: 28px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px 22px; color: #A9B6C7; font-size: .92rem; }
.hero-chips span { display: inline-flex; align-items: center; gap: 8px; }
.hero-chips svg { width: 17px; height: 17px; color: var(--amber-400); flex: none; }

.hero-visual { position: relative; }
.hero-visual .frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, .14);
  background: var(--navy-700);
  transform: rotate(1.5deg);
}
.hero-visual .frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.hero-badge {
  position: absolute;
  left: -18px; bottom: 26px;
  background: var(--white);
  color: var(--navy-900);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: rotate(-2deg);
}
.hero-badge .stars { color: var(--amber-500); display: flex; gap: 2px; }
.hero-badge .stars svg { width: 15px; height: 15px; }
.stars svg, .stars svg polygon, .stars svg path { fill: currentColor; }
.hero-badge strong { font-family: var(--font-display); font-size: 1.05rem; display: block; line-height: 1.2; }
.hero-badge small { color: var(--slate); font-size: .8rem; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 560px; }
  .hero-badge { left: 10px; }
}

/* ---------- Hero pages internes ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
  color: #E7EDF5;
  padding-block: clamp(44px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 161, 59, .20), transparent 65%);
  top: -160px; right: -120px;
}
.page-hero .container { position: relative; }
.page-hero .kicker { color: var(--amber-300); }
.page-hero .kicker::before { background: var(--amber-500); }
.page-hero h1 { color: var(--white); margin-bottom: .3em; }
.page-hero p { color: #C6D2E0; max-width: 640px; margin-bottom: 0; font-size: 1.08rem; }
.crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: #8FA0B5;
  margin-bottom: 16px;
}
.crumbs a { color: #8FA0B5; }
.crumbs a:hover { color: var(--amber-300); }
.crumbs svg { width: 12px; height: 12px; }

/* ---------- Bandeau réassurance ---------- */
.trust-bar { background: var(--navy-900); }
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-block: 26px;
}
.trust-item { display: flex; align-items: center; gap: 14px; color: #D8E1EC; }
.trust-item .ti-icon {
  width: 46px; height: 46px;
  flex: none;
  border-radius: 12px;
  background: rgba(233, 161, 59, .14);
  border: 1px solid rgba(233, 161, 59, .28);
  display: grid;
  place-items: center;
  color: var(--amber-400);
}
.trust-item .ti-icon svg { width: 22px; height: 22px; }
.trust-item strong { display: block; font-family: var(--font-display); font-size: .98rem; color: var(--white); line-height: 1.3; }
.trust-item span { font-size: .85rem; color: #93A3B8; }
@media (max-width: 900px) {
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .trust-bar-inner { grid-template-columns: 1fr; }
}

/* ---------- Cartes services ---------- */
.grid-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .grid-services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-services { grid-template-columns: 1fr; } }

.card-service {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s;
  position: relative;
}
.card-service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--amber-300);
}
.card-service .cs-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--navy-800);
  color: var(--amber-400);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.card-service .cs-icon svg { width: 26px; height: 26px; }
.card-service h3 { margin-bottom: .4em; }
.card-service p { color: var(--slate); font-size: .95rem; flex: 1; margin-bottom: 16px; }
.card-service .cs-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy-800);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.card-service .cs-link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.card-service:hover .cs-link svg { transform: translateX(4px); }
.card-service .cs-link:hover { color: var(--amber-600); }

/* ---------- Sections services alternées ---------- */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding-block: clamp(40px, 5vw, 64px);
}
.service-row + .service-row { border-top: 1px solid var(--line); }
.service-row.flip .service-media { order: 2; }
.service-row .service-media { order: 1; }
.service-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.service-media { position: relative; }
.service-media .sm-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(16, 31, 51, .82);
  color: var(--amber-300);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.service-body h2 { margin-bottom: .5em; }
.service-body > p { color: var(--slate); margin-bottom: 18px; }
.exemples { list-style: none; margin-bottom: 24px; }
.exemples li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-block: 7px;
  color: var(--ink);
  font-size: .98rem;
}
.exemples li::before {
  content: "";
  flex: none;
  width: 20px; height: 20px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--amber-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B9770F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}
.service-body .btn { margin-top: 4px; }
@media (max-width: 860px) {
  .service-row, .service-row.flip { grid-template-columns: 1fr; }
  .service-row.flip .service-media { order: 0; }
}

/* ---------- Bandeau urgence ---------- */
.urgent-band {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.urgent-band::before {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 161, 59, .25), transparent 65%);
  right: -80px; top: -120px;
}
.urgent-band .ub-icon {
  width: 58px; height: 58px;
  flex: none;
  border-radius: 16px;
  background: var(--amber-500);
  color: var(--navy-900);
  display: grid;
  place-items: center;
}
.urgent-band .ub-icon svg { width: 30px; height: 30px; }
.urgent-band h3 { color: var(--white); margin: 0 0 4px; font-size: 1.5rem; }
.urgent-band p { color: #C6D2E0; margin: 0; }
.urgent-band .ub-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ---------- Étapes ---------- */
.grid-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
@media (max-width: 900px) { .grid-steps { grid-template-columns: 1fr; } }
.card-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
  counter-increment: step;
}
.card-step::before {
  content: "0" counter(step);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--amber-100);
  position: absolute;
  top: 14px; right: 22px;
  line-height: 1;
}
.card-step .cs-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--navy-800);
  color: var(--amber-400);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.card-step .cs-icon svg { width: 22px; height: 22px; }
.card-step h3 { margin-bottom: .35em; }
.card-step p { color: var(--slate); font-size: .95rem; margin: 0; }

/* ---------- Galerie réalisations ---------- */
.gallery {
  columns: 3;
  column-gap: 18px;
}
.gallery--4 { columns: 4; }
@media (max-width: 980px) { .gallery, .gallery--4 { columns: 2; } }
@media (max-width: 620px) { .gallery, .gallery--4 { columns: 1; } }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  display: block;
  border: 1px solid var(--line);
  background: var(--paper);
}
.gallery-item img {
  width: 100%;
  transition: transform .5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 34px 16px 14px;
  background: linear-gradient(transparent, rgba(16, 31, 51, .82));
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
  font-family: var(--font-display);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.gallery-item:hover figcaption, .gallery-item:focus-visible figcaption { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(8, 14, 24, .94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1000px, 92vw);
  max-height: 78vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.lightbox-caption {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: #D8E1EC;
  font-size: .95rem;
  text-align: center;
  max-width: 80vw;
}
.lb-btn {
  position: absolute;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.08);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .15s, transform .15s;
}
.lb-btn:hover { background: rgba(255,255,255,.2); transform: scale(1.06); }
.lb-btn svg { width: 20px; height: 20px; }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.06); }
@media (max-width: 620px) {
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
}

/* ---------- Témoignages ---------- */
.grid-testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 980px) { .grid-testimonials { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-testimonials { grid-template-columns: 1fr; } }
.card-testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.card-testimonial .qt {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--amber-100);
  color: var(--amber-600);
  display: grid;
  place-items: center;
}
.card-testimonial .qt svg { width: 20px; height: 20px; }
.card-testimonial blockquote { margin: 0; color: var(--ink); font-size: 1rem; flex: 1; }
.card-testimonial .stars { display: flex; gap: 3px; color: var(--amber-500); }
.card-testimonial .stars svg { width: 16px; height: 16px; }
.tt-author { border-top: 1px dashed var(--line); padding-top: 14px; display: flex; align-items: center; gap: 12px; }
.tt-avatar {
  width: 44px; height: 44px;
  flex: none;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--amber-400);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}
.tt-author strong { display: block; font-family: var(--font-display); font-size: .98rem; color: var(--navy-900); line-height: 1.25; }
.tt-author span { font-size: .82rem; color: var(--slate-light); }

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px;
  box-shadow: var(--shadow-sm);
}
.rating-badge .rb-num { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--navy-900); line-height: 1; }
.rating-badge .stars { display: flex; gap: 2px; color: var(--amber-500); }
.rating-badge .stars svg { width: 15px; height: 15px; }
.rating-badge small { color: var(--slate); font-size: .82rem; }

/* ---------- CTA final ---------- */
.final-cta {
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
  color: #D8E1EC;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 161, 59, .22), transparent 65%);
  top: -160px; left: -120px;
}
.final-cta h2 { color: var(--white); }
.final-cta p { color: #C6D2E0; max-width: 560px; margin-inline: auto; margin-bottom: 26px; }
.final-cta .fc-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow-sm);
}
.form-card h2 { margin-bottom: .3em; }
.form-card .form-intro { color: var(--slate); margin-bottom: 22px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--navy-800); }
.form-field label .req { color: var(--amber-600); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body);
  font-size: .98rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--amber-500);
  box-shadow: 0 0 0 3px rgba(233, 161, 59, .22);
  background: var(--white);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .83rem; color: var(--slate-light); margin-top: 14px; }
.form-actions { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.form-success {
  display: none;
  background: #EAF6EF;
  border: 1px solid #B9DFC9;
  color: var(--success);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: .95rem;
  margin-top: 18px;
}
.form-success.show { display: block; }

.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow .2s, transform .2s;
}
.contact-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.contact-card .cc-icon {
  width: 46px; height: 46px;
  flex: none;
  border-radius: 12px;
  background: var(--navy-800);
  color: var(--amber-400);
  display: grid;
  place-items: center;
}
.contact-card .cc-icon svg { width: 22px; height: 22px; }
.contact-card h3 { font-size: 1.02rem; margin: 0 0 2px; }
.contact-card p { color: var(--slate); font-size: .93rem; margin: 0; }
.contact-card a.strong { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--navy-900); }
.contact-card a.strong:hover { color: var(--amber-600); }
.contact-card .cc-hours { list-style: none; font-size: .93rem; color: var(--slate); }
.contact-card .cc-hours li { display: flex; justify-content: space-between; gap: 14px; padding-block: 2px; }
.contact-card .cc-hours li span:last-child { color: var(--ink); font-weight: 600; }

.map-wrap {
  margin-top: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  line-height: 0;
}
.map-wrap iframe { width: 100%; height: 380px; border: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin-inline: auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-chevron {
  width: 30px; height: 30px;
  flex: none;
  border-radius: 50%;
  background: var(--amber-100);
  color: var(--amber-600);
  display: grid;
  place-items: center;
  transition: transform .25s var(--ease);
}
.faq-item summary .faq-chevron svg { width: 16px; height: 16px; }
.faq-item[open] summary .faq-chevron { transform: rotate(180deg); }
.faq-item .faq-body { padding: 0 22px 18px; color: var(--slate); font-size: .96rem; }
.faq-item .faq-body p { margin: 0; }

/* ---------- Mentions légales ---------- */
.legal { max-width: 780px; }
.legal h2 { font-size: 1.3rem; margin-top: 34px; }
.legal p, .legal li { color: var(--slate); }
.legal ul { padding-left: 20px; margin-bottom: 1.1em; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--navy-700); text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: #93A3B8; font-size: .94rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 48px);
  padding-block: clamp(44px, 6vw, 72px) 36px;
}
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: .02em;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: #93A3B8; transition: color .15s, padding-left .15s; }
.footer-col a:hover { color: var(--amber-300); padding-left: 3px; }
.footer-brand img { height: 64px; width: auto; margin-bottom: 14px; }
.footer-brand p { margin-bottom: 16px; line-height: 1.6; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact svg { width: 17px; height: 17px; color: var(--amber-500); flex: none; margin-top: 3px; }
.footer-contact a { color: #D8E1EC; font-weight: 600; }
.footer-contact a:hover { color: var(--amber-300); }
.social-row { display: flex; gap: 10px; margin-top: 6px; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.16);
  display: grid;
  place-items: center;
  color: #C6D2E0;
  transition: background .15s, color .15s, transform .15s;
}
.social-row a:hover { background: var(--amber-500); color: var(--navy-900); transform: translateY(-2px); padding-left: 0; }
.social-row svg { width: 19px; height: 19px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 18px;
  font-size: .83rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom a { color: #93A3B8; }
.footer-bottom a:hover { color: var(--amber-300); }

/* ---------- Animations d'apparition ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Accessibilité ---------- */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--navy-900);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  transition: top .2s;
}
.skip-link:focus { top: 12px; color: var(--white); }

/* ---------- CTA mobile (menu) ---------- */
.mobile-cta { display: none; }
@media (max-width: 920px) {
  .mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }
  .mobile-cta .btn { width: 100%; }
}

/* ---------- Bouton WhatsApp flottant ---------- */
.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, .55);
  color: #fff;
}
.whatsapp-fab svg { width: 30px; height: 30px; }
@media (max-width: 620px) {
  .whatsapp-fab { right: 14px; bottom: 14px; width: 54px; height: 54px; }
}
