/* ==========================================================================
   SISTERS HOME — Conciergerie privée & gestion locative, La Réunion
   Design system + composants
   --------------------------------------------------------------------------
   Sommaire
   01. Tokens
   02. Reset & base
   03. Typographie
   04. Layout & utilitaires
   05. Animations d'apparition
   06. Boutons & liens
   07. Préloader / curseur / transition de page
   08. Header & navigation
   09. Hero + barre de recherche en verre
   10. Cartes flottantes
   11. Sections éditoriales
   12. Statistiques
   13. Double parcours
   14. Services (chips + grille)
   15. Galerie & lightbox
   16. Témoignages
   17. Process
   18. Simulateur
   19. Formulaire multi-étapes
   20. Blog
   21. Bandeau CTA & footer
   22. Responsive
   23. Accessibilité / reduced motion
   ========================================================================== */

/* 01. TOKENS ============================================================== */
:root {
  /* Couleurs */
  --c-ivory: #fcfaf7;
  --c-cream: #f4efe7;
  --c-sand: #e9e1d4;
  --c-clay: #d9cdbc;
  --c-taupe: #9e8d79;
  --c-brown: #6e5943;
  --c-brown-d: #54432f;
  --c-espresso: #2e251c;
  --c-ink: #1c1713;
  --c-brass: #b99260;
  --c-brass-l: #d4b489;
  --c-white: #ffffff;

  --c-text: #3b3229;
  --c-text-soft: #7b6f62;
  --c-line: rgba(110, 89, 67, 0.16);
  --c-line-soft: rgba(110, 89, 67, 0.09);

  /* Typo */
  --f-display: "Cormorant Garamond", "Times New Roman", serif;
  --f-sans: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --fs-hero: clamp(2rem, 4.2vw, 4rem);
  --fs-h1: clamp(2.3rem, 5.2vw, 4.4rem);
  --fs-h2: clamp(1.95rem, 4vw, 3.4rem);
  --fs-h3: clamp(1.45rem, 2.4vw, 2.1rem);
  --fs-h4: clamp(1.15rem, 1.6vw, 1.4rem);
  --fs-body: clamp(0.975rem, 1.05vw, 1.06rem);
  --fs-small: 0.875rem;
  --fs-eyebrow: 0.7rem;

  /* Espacements */
  --sp-section: clamp(4.5rem, 9vw, 9rem);
  --sp-gutter: clamp(1.25rem, 4vw, 3.5rem);
  --maxw: 1320px;
  --maxw-narrow: 760px;

  /* Divers */
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 34px;
  --r-pill: 999px;

  --sh-sm: 0 2px 12px rgba(46, 37, 28, 0.06);
  --sh-md: 0 14px 40px -14px rgba(46, 37, 28, 0.18);
  --sh-lg: 0 32px 80px -30px rgba(46, 37, 28, 0.32);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);

  --header-h: 88px;
}

/* 02. RESET & BASE ======================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* `clip` (et non `hidden`) : n'établit pas de conteneur de défilement,
     donc ne casse ni le scroll fluide Lenis ni les positions sticky. */
  overflow-x: clip;
}
html.lenis-active { scroll-behavior: auto; }

body {
  margin: 0;
  background: var(--c-ivory);
  color: var(--c-text);
  font-family: var(--f-sans);
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

img, picture, video, canvas, svg { display: block; max-width: 100%; }
img { height: auto; background: var(--c-sand); }

input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--c-brown); color: var(--c-ivory); }

:focus-visible {
  outline: 2px solid var(--c-brown);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Scrollbar discrète */
@supports selector(::-webkit-scrollbar) {
  ::-webkit-scrollbar { width: 10px; }
  ::-webkit-scrollbar-track { background: var(--c-cream); }
  ::-webkit-scrollbar-thumb { background: var(--c-clay); border-radius: 99px; border: 3px solid var(--c-cream); }
  ::-webkit-scrollbar-thumb:hover { background: var(--c-taupe); }
}

/* 03. TYPOGRAPHIE ========================================================= */
h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--c-espresso);
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); font-family: var(--f-sans); font-weight: 400; letter-spacing: 0.01em; line-height: 1.35; }

p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

em, .italic { font-style: italic; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--f-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-brown);
  margin: 0 0 1.4rem;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
  flex: none;
}
.eyebrow--center::after {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
  flex: none;
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.65;
  color: var(--c-text-soft);
  font-weight: 300;
}

.muted { color: var(--c-text-soft); }
.serif { font-family: var(--f-display); }
.brass { color: var(--c-brass); }

/* Filet décoratif */
.rule {
  width: 62px;
  height: 1px;
  background: var(--c-brass);
  opacity: 0.6;
  margin: 1.6rem 0;
  border: 0;
}
.rule--center { margin-inline: auto; }

/* 04. LAYOUT & UTILITAIRES =============================================== */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--sp-gutter);
}
.wrap--narrow { max-width: var(--maxw-narrow); }
.wrap--wide { max-width: 1560px; }

.section { padding-block: var(--sp-section); position: relative; }
.section--tight { padding-block: clamp(3rem, 5.5vw, 5rem); }
.section--cream { background: var(--c-cream); }
.section--sand { background: var(--c-sand); }
.section--dark { background: var(--c-espresso); color: rgba(252, 250, 247, 0.78); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--c-ivory); }
.section--dark .eyebrow { color: var(--c-brass-l); }
.section--dark .lead { color: rgba(252, 250, 247, 0.7); }

.center { text-align: center; }
.center .eyebrow { margin-inline: auto; }
.center .rule { margin-inline: auto; }

.grid { display: grid; gap: clamp(1.25rem, 2.4vw, 2.2rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.stack > * + * { margin-top: 1.1rem; }
.flow-lg > * + * { margin-top: 2.2rem; }

.section-head { max-width: 620px; margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }

/* Cadre photo blanc — signature de la marque */
.frame {
  background: var(--c-white);
  padding: clamp(10px, 1vw, 16px);
  box-shadow: var(--sh-md);
  position: relative;
}
.frame img { width: 100%; }

.media {
  position: relative;
  overflow: hidden;
  background: var(--c-sand);
}
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.media--3x4 { aspect-ratio: 3 / 4; }
.media--4x3 { aspect-ratio: 4 / 3; }
.media--1x1 { aspect-ratio: 1 / 1; }
.media--16x9 { aspect-ratio: 16 / 9; }
.media--21x9 { aspect-ratio: 21 / 9; }

/* Zoom doux au survol */
.zoom img { transition: transform 1.1s var(--ease); }
.zoom:hover img { transform: scale(1.055); }

/* 05. ANIMATIONS D'APPARITION =========================================== */
/* État initial posé en CSS pour éviter tout flash avant GSAP */
.js [data-anim] { opacity: 0; }
.js [data-anim="up"] { transform: translate3d(0, 34px, 0); }
.js [data-anim="fade"] { transform: none; }
.js [data-anim="left"] { transform: translate3d(-34px, 0, 0); }
.js [data-anim="right"] { transform: translate3d(34px, 0, 0); }
/* Sous ~1024px la gouttière devient plus étroite que le décalage de 34px :
   l'état initial déborderait horizontalement. On bascule ces entrées en
   vertical, ce qui supprime la cause au lieu de la masquer. */
@media (max-width: 1024px) {
  .js [data-anim="left"],
  .js [data-anim="right"] { transform: translate3d(0, 34px, 0); }
}
.js [data-anim="scale"] { transform: scale(0.94); }
.js [data-anim].is-in { opacity: 1; transform: none; }

/* Révélation par masque (images) */
.js .reveal-mask { clip-path: inset(0 0 100% 0); }

/* Lignes de titre masquées */
.line-mask { display: block; overflow: hidden; }
.line-mask > span { display: block; }

/* Bandeau défilant */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--c-line-soft);
  padding-block: 1.5rem;
  --marquee-duration: 34s;
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: 3.5rem;
  animation: marquee var(--marquee-duration) linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.6vw, 2.3rem);
  font-style: italic;
  color: var(--c-taupe);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 3.5rem;
}
.marquee__item::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-brass);
  flex: none;
}
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

/* 06. BOUTONS & LIENS ==================================================== */
.btn {
  --btn-bg: var(--c-brown);
  --btn-fg: var(--c-ivory);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75em;
  padding: 1.05em 2.2em;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid var(--btn-bg);
  border-radius: var(--r-pill);
  overflow: hidden;
  isolation: isolate;
  transition: color 0.45s var(--ease), border-color 0.45s var(--ease), transform 0.35s var(--ease), box-shadow 0.45s var(--ease);
  will-change: transform;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--c-espresso);
  transform: translate3d(0, 101%, 0);
  transition: transform 0.55s var(--ease);
}
.btn:hover { box-shadow: var(--sh-md); }
.btn:hover::before { transform: translate3d(0, 0, 0); }
.btn:active { transform: scale(0.975); }

.btn__arrow { transition: transform 0.45s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--c-brown);
  border-color: var(--c-line);
}
.btn--ghost::before { background: var(--c-brown); }
.btn--ghost:hover { color: var(--c-ivory); border-color: var(--c-brown); }

.btn--light {
  --btn-bg: var(--c-white);
  --btn-fg: var(--c-espresso);
}
.btn--light::before { background: var(--c-brown); }
.btn--light:hover { color: var(--c-ivory); }

.btn--brass {
  --btn-bg: var(--c-brass);
  --btn-fg: #fff;
  border-color: var(--c-brass);
}

.btn--sm { padding: 0.8em 1.55em; font-size: 0.64rem; letter-spacing: 0.2em; }
.btn--block { width: 100%; }

/* Lien souligné animé */
.link-u {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-brown);
  padding-bottom: 4px;
}
.link-u::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: right;
  transform: scaleX(1);
  transition: transform 0.5s var(--ease);
}
.link-u:hover::after { transform-origin: left; animation: link-swipe 0.6s var(--ease); }
@keyframes link-swipe {
  0% { transform: scaleX(1); transform-origin: right; }
  49% { transform: scaleX(0); transform-origin: right; }
  50% { transform: scaleX(0); transform-origin: left; }
  100% { transform: scaleX(1); transform-origin: left; }
}

/* 07. PRÉLOADER / CURSEUR / TRANSITION =================================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--c-cream);
}
.preloader__inner { text-align: center; }
.preloader__mark {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--c-espresso);
  letter-spacing: 0.02em;
  overflow: hidden;
  display: block;
}
.preloader__sub {
  display: block;
  margin-top: 0.9rem;
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--c-taupe);
}
.preloader__bar {
  width: min(220px, 46vw);
  height: 1px;
  margin: 1.9rem auto 0;
  background: var(--c-clay);
  position: relative;
  overflow: hidden;
}
.preloader__bar span {
  position: absolute;
  inset: 0;
  background: var(--c-brown);
  transform: scaleX(0);
  transform-origin: left;
}
.preloader.is-done { pointer-events: none; }

/* Curseur personnalisé (pointeur fin uniquement) */
.cursor,
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  will-change: transform;
}
.cursor {
  width: 38px;
  height: 38px;
  margin: -19px 0 0 -19px;
  border: 1px solid var(--c-brown);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), margin 0.35s var(--ease), background-color 0.35s var(--ease), opacity 0.3s;
}
.cursor-dot {
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  background: var(--c-brown);
  transition: opacity 0.3s;
}
.cursor.is-hover {
  width: 68px;
  height: 68px;
  margin: -34px 0 0 -34px;
  background: rgba(110, 89, 67, 0.09);
}
@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-dot { display: none !important; }
}

/* Voile de transition entre les pages */
.page-veil {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: var(--c-cream);
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}

/* 08. HEADER & NAVIGATION ================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: height 0.45s var(--ease), background-color 0.45s var(--ease), box-shadow 0.45s var(--ease), transform 0.5s var(--ease);
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(252, 250, 247, 0.82);
  backdrop-filter: blur(16px) saturate(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
  border-bottom: 1px solid var(--c-line-soft);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.header.is-stuck { --header-h: 70px; }
.header.is-stuck::before { opacity: 1; }
.header.is-hidden { transform: translate3d(0, -100%, 0); }

.header__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1560px;
  margin-inline: auto;
  padding-inline: var(--sp-gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  justify-self: center;
}
.logo__mark {
  width: 40px;
  height: 40px;
  flex: none;
  border: 1px solid var(--c-brass);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--c-brown);
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
}
.logo:hover .logo__mark { background: var(--c-brown); color: var(--c-ivory); }
.logo__txt { display: block; line-height: 1.05; }
.logo__name {
  display: block;
  font-family: var(--f-display);
  font-size: 1.32rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-espresso);
}
.logo__tag {
  display: block;
  font-size: 0.52rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--c-taupe);
  margin-top: 3px;
}

/* Nav desktop */
.nav { display: flex; align-items: center; gap: 2.1rem; }
.nav--right { justify-content: flex-end; }
.nav__link {
  position: relative;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-text);
  padding-block: 0.5rem;
  transition: color 0.35s var(--ease);
  white-space: nowrap;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--c-brown);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav__link:hover { color: var(--c-brown); }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

/* Sous-menu */
.nav__item { position: relative; }
.nav__item--has-sub > .nav__link::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 0.55em;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.35s var(--ease);
}
.nav__item--has-sub:hover > .nav__link::before { transform: translateY(0) rotate(225deg); }
.sub {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 250px;
  padding: 0.9rem;
  margin-top: 0.6rem;
  background: rgba(252, 250, 247, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(-50%, 8px, 0);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}
.nav__item--has-sub:hover .sub,
.nav__item--has-sub:focus-within .sub {
  opacity: 1;
  visibility: visible;
  transform: translate3d(-50%, 0, 0);
}
.sub__link {
  display: block;
  padding: 0.6rem 0.85rem;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  border-radius: var(--r-sm);
  color: var(--c-text);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.sub__link:hover { background: var(--c-cream); color: var(--c-brown); padding-left: 1.15rem; }
.sub__link small { display: block; font-size: 0.66rem; color: var(--c-text-soft); letter-spacing: 0.01em; }

/* Réseaux sociaux */
.socials { display: flex; align-items: center; gap: 0.5rem; }
.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--c-line);
  border-radius: 50%;
  color: var(--c-brown);
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.socials a:hover { background: var(--c-brown); border-color: var(--c-brown); color: var(--c-ivory); transform: translateY(-2px); }
.socials svg { width: 15px; height: 15px; fill: currentColor; }

/* Burger */
.burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
  place-items: center;
  gap: 5px;
  flex-direction: column;
  justify-self: end;
}
.burger span {
  display: block;
  width: 17px;
  height: 1px;
  background: var(--c-espresso);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.burger.is-open span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-3px) rotate(-45deg); }

/* Menu mobile plein écran */
.menu {
  position: fixed;
  inset: 0;
  z-index: 890;
  background: var(--c-cream);
  padding: calc(var(--header-h) + 2rem) var(--sp-gutter) 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  clip-path: circle(0% at calc(100% - 46px) 44px);
  transition: clip-path 0.75s var(--ease);
  visibility: hidden;
}
.menu.is-open { clip-path: circle(150% at calc(100% - 46px) 44px); visibility: visible; }
.menu__list { list-style: none; margin: 0; padding: 0; }
.menu__list li { overflow: hidden; border-bottom: 1px solid var(--c-line-soft); }
.menu__link {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  padding: 0.85rem 0;
  font-family: var(--f-display);
  font-size: clamp(1.85rem, 8vw, 2.7rem);
  color: var(--c-espresso);
  transform: translateY(105%);
  transition: color 0.35s var(--ease);
}
.menu__link:hover { color: var(--c-brown); }
.menu__num {
  font-family: var(--f-sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--c-brass);
}
.menu__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: var(--c-text-soft);
}

/* 09. HERO + BARRE DE RECHERCHE ========================================== */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 1.1rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: var(--c-cream);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  position: relative;
}
.hero__cell { position: relative; overflow: hidden; background: var(--c-sand); }
.hero__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.14);
  will-change: transform;
}
.hero__cell--1 { aspect-ratio: 3 / 4; }
.hero__cell--2 { aspect-ratio: 3 / 4; }
.hero__cell--3 { aspect-ratio: 3 / 4; }
.hero__cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(46, 37, 28, 0.16) 0%, rgba(46, 37, 28, 0) 45%, rgba(46, 37, 28, 0.22) 100%);
  pointer-events: none;
}

/* Carte titre en surimpression */
.hero__card {
  position: absolute;
  left: clamp(0px, 3vw, 60px);
  bottom: clamp(28px, 8vw, 96px);
  z-index: 3;
  background: var(--c-white);
  padding: clamp(2rem, 3.6vw, 3.4rem) clamp(1.8rem, 4vw, 4rem);
  width: min(680px, 84vw);
  box-shadow: var(--sh-lg);
}
.hero__title {
  font-size: var(--fs-hero);
  line-height: 1.02;
  margin: 0;
  color: var(--c-espresso);
}
/* Dès qu'il y a la place, chaque vers du titre tient sur une seule ligne :
   c'est ce qui donne l'effet de révélation ligne par ligne au chargement. */
@media (min-width: 721px) {
  .hero__title .line-mask > span { white-space: nowrap; }
}
.hero__title em { color: var(--c-brown); }
.hero__sub {
  margin: 1.5rem 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--c-taupe);
}

/* Pastille flottante (réf. 4) */
.hero__pill {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.35rem 0.85rem 0.9rem;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-md);
  will-change: transform;
}
.hero__pill--rating { top: clamp(90px, 12vw, 150px); right: clamp(14px, 4vw, 70px); }
.hero__pill--occupancy { bottom: clamp(150px, 22vw, 260px); right: clamp(14px, 3vw, 40px); }
.hero__pill-ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-brown);
  color: var(--c-ivory);
  display: grid;
  place-items: center;
  flex: none;
}
.hero__pill-ico svg { width: 17px; height: 17px; }
.hero__pill-num {
  display: block;
  font-family: var(--f-display);
  font-size: 1.35rem;
  line-height: 1;
  color: var(--c-espresso);
}
.hero__pill-lbl {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  margin-top: 3px;
  white-space: nowrap;
}

/* Barre de recherche en verre */
.searchbar {
  position: relative;
  z-index: 5;
  margin-top: -46px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(26px) saturate(1.7);
  -webkit-backdrop-filter: blur(26px) saturate(1.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  padding: 0.55rem;
}
.searchbar__tabs {
  display: flex;
  gap: 0.3rem;
  padding: 0.3rem 0.3rem 0.75rem;
}
.searchbar__tab {
  position: relative;
  padding: 0.55em 1.35em;
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  border-radius: var(--r-pill);
  transition: color 0.35s var(--ease), background-color 0.35s var(--ease);
}
.searchbar__tab[aria-selected="true"] { color: var(--c-ivory); background: var(--c-brown); }

.searchbar__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: center;
  gap: 0.25rem;
}
.field {
  position: relative;
  padding: 0.6rem 1.15rem;
  border-radius: var(--r-lg);
  transition: background-color 0.35s var(--ease);
}
.field + .field::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 26px;
  background: var(--c-line);
}
.field:hover { background: rgba(255, 255, 255, 0.6); }
.field label {
  display: block;
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-brown);
  margin-bottom: 2px;
}
.field select,
.field input {
  width: 100%;
  border: 0;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--c-espresso);
  padding: 0;
  appearance: none;
  cursor: pointer;
}
.field select:focus, .field input:focus { outline: none; }
.field--select::after {
  content: "";
  position: absolute;
  right: 1.15rem;
  top: 58%;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--c-taupe);
  border-bottom: 1px solid var(--c-taupe);
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}
.searchbar__go {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--c-brown);
  color: var(--c-ivory);
  display: grid;
  place-items: center;
  justify-self: end;
  margin-right: 0.25rem;
  transition: background-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.searchbar__go:hover { background: var(--c-espresso); transform: scale(1.06); }
.searchbar__go svg { width: 19px; height: 19px; }

/* Indicateur de scroll */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-taupe);
  z-index: 6;
}
.scroll-cue__line {
  width: 1px;
  height: 42px;
  background: var(--c-clay);
  position: relative;
  overflow: hidden;
}
.scroll-cue__line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c-brown);
  animation: cue 2.2s var(--ease-io) infinite;
}
@keyframes cue {
  0% { transform: translateY(-100%); }
  55%, 100% { transform: translateY(100%); }
}

/* 10. CARTES FLOTTANTES ================================================== */
.floaters {
  position: relative;
  z-index: 5;
  margin-top: clamp(-70px, -5vw, -40px);
}
.floaters__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.9rem, 1.6vw, 1.5rem); }
.floater {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: clamp(1.6rem, 2.4vw, 2.3rem);
  background: var(--c-white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.floater:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.floater__ico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--c-cream);
  color: var(--c-brown);
  display: grid;
  place-items: center;
}
.floater__ico svg { width: 20px; height: 20px; }
.floater h3 { font-size: 1.32rem; margin: 0; }
.floater p { font-size: 0.885rem; color: var(--c-text-soft); line-height: 1.65; margin: 0; flex: 1; }

/* 11. SECTIONS ÉDITORIALES ============================================== */
.editorial { text-align: center; max-width: 760px; margin-inline: auto; }
.editorial h2 { margin-bottom: 0.35em; }
.editorial__kicker {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-brown);
  margin-bottom: 1.8rem;
}

/* Bloc image + texte alterné */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
}
.split--rev .split__media { order: 2; }
.split__body { max-width: 520px; }

/* Duo d'images décalées */
.duo { position: relative; }
.duo__b {
  position: absolute;
  right: -8%;
  bottom: -12%;
  width: 52%;
  z-index: 2;
}
.duo__badge {
  position: absolute;
  top: -26px;
  left: -26px;
  z-index: 3;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--c-brown);
  color: var(--c-ivory);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--f-display);
  font-size: 0.95rem;
  line-height: 1.25;
  padding: 1rem;
  box-shadow: var(--sh-md);
}
.duo__badge strong { display: block; font-size: 1.7rem; font-weight: 400; }

/* 12. STATISTIQUES ======================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
  text-align: center;
}
.stat { padding: clamp(1.2rem, 2vw, 2rem) 0.8rem; position: relative; }
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  height: 56%;
  width: 1px;
  background: var(--c-line);
}
.stat__num {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  line-height: 1;
  color: var(--c-brown);
  letter-spacing: -0.02em;
}
.stat__num sup { font-size: 0.42em; vertical-align: super; margin-left: 2px; }
.stat__lbl {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.63rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-text-soft);
}
.section--dark .stat + .stat::before { background: rgba(252, 250, 247, 0.14); }
.section--dark .stat__num { color: var(--c-brass-l); }
.section--dark .stat__lbl { color: rgba(252, 250, 247, 0.55); }

/* 13. DOUBLE PARCOURS ==================================================== */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2vw, 1.8rem); }
.path {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(420px, 56vw, 620px);
  padding: clamp(1.8rem, 3vw, 3.2rem);
  border-radius: var(--r-lg);
  overflow: hidden;
  color: var(--c-ivory);
  isolation: isolate;
}
.path__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.path__bg img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.path::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(28, 23, 19, 0) 28%, rgba(28, 23, 19, 0.55) 62%, rgba(28, 23, 19, 0.88) 100%);
  transition: opacity 0.6s var(--ease);
}
.path:hover .path__bg img { transform: scale(1.07); }
.path__tag {
  align-self: flex-start;
  padding: 0.5em 1.1em;
  margin-bottom: 1.2rem;
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--r-pill);
}
.path h3 { color: var(--c-ivory); font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 0.4rem; }
.path p { color: rgba(252, 250, 247, 0.8); font-size: 0.92rem; max-width: 42ch; }
.path__list {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.path__list li {
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  padding: 0.35em 0.85em;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--r-pill);
  color: rgba(252, 250, 247, 0.9);
}

/* 14. SERVICES =========================================================== */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: clamp(2rem, 3.5vw, 3.2rem);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.68em 1.35em;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  background: var(--c-white);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-pill);
  transition: color 0.35s var(--ease), background-color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.chip svg { width: 15px; height: 15px; }
.chip:hover { transform: translateY(-2px); border-color: var(--c-clay); }
.chip.is-active { background: var(--c-brown); border-color: var(--c-brown); color: var(--c-ivory); }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.8rem); }
.svc {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease), opacity 0.4s var(--ease);
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.svc.is-hidden { display: none; }
.svc__media { aspect-ratio: 4 / 3; overflow: hidden; }
.svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.svc:hover .svc__media img { transform: scale(1.06); }
.svc__body { padding: clamp(1.4rem, 2vw, 1.9rem); display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.svc__cat {
  font-size: 0.56rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-brass);
}
.svc h3 { font-size: 1.35rem; margin: 0; }
.svc p { font-size: 0.865rem; color: var(--c-text-soft); line-height: 1.65; margin: 0; flex: 1; }
.svc__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--c-line-soft);
  font-size: 0.7rem;
  color: var(--c-text-soft);
}
.svc__price { font-family: var(--f-display); font-size: 1.15rem; color: var(--c-brown); }

/* Liste de prestations façon index */
.svc-list { border-top: 1px solid var(--c-line); }
.svc-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(1.3rem, 2.4vw, 2rem) 0;
  border-bottom: 1px solid var(--c-line);
  position: relative;
  transition: padding-left 0.5s var(--ease);
}
.svc-row:hover { padding-left: 1.1rem; }
.svc-row__num { font-size: 0.65rem; letter-spacing: 0.2em; color: var(--c-brass); }
.svc-row__title { font-family: var(--f-display); font-size: clamp(1.3rem, 2.2vw, 1.85rem); color: var(--c-espresso); }
.svc-row__desc { font-size: 0.86rem; color: var(--c-text-soft); margin-top: 0.35rem; max-width: 62ch; }
.svc-row__arrow {
  width: 42px;
  height: 42px;
  border: 1px solid var(--c-line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--c-brown);
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease);
  flex: none;
}
.svc-row:hover .svc-row__arrow { background: var(--c-brown); color: var(--c-ivory); transform: rotate(-45deg); }

/* 15. GALERIE & LIGHTBOX ================================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: clamp(0.6rem, 1.2vw, 1rem);
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-sm);
  cursor: pointer;
  background: var(--c-sand);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(46, 37, 28, 0.25);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.gallery__item:hover::after { opacity: 1; }
.gallery__cap {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.gallery__item:hover .gallery__cap { opacity: 1; transform: none; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9995;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(28, 23, 19, 0.93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--r-sm);
  transform: scale(0.94);
  transition: transform 0.55s var(--ease);
  background: transparent;
}
.lightbox.is-open img { transform: scale(1); }
.lightbox__cap {
  position: absolute;
  bottom: clamp(1rem, 3vw, 2.2rem);
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(252, 250, 247, 0.75);
  text-align: center;
}
.lightbox__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(252, 250, 247, 0.28);
  color: var(--c-ivory);
  display: grid;
  place-items: center;
  transition: background-color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.lightbox__btn:hover { background: rgba(252, 250, 247, 0.14); border-color: rgba(252, 250, 247, 0.6); }
.lightbox__btn--prev { left: clamp(0.5rem, 2vw, 2rem); }
.lightbox__btn--next { right: clamp(0.5rem, 2vw, 2rem); }
.lightbox__close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); transform: none; }

/* 16. TÉMOIGNAGES ======================================================== */
.testis { position: relative; }
.testi {
  display: none;
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
}
.testi.is-active { display: block; }
.testi__quote {
  font-family: var(--f-display);
  font-size: clamp(1.35rem, 2.7vw, 2.15rem);
  line-height: 1.4;
  font-style: italic;
  color: var(--c-espresso);
  margin: 0 0 2rem;
}
.testi__who { display: flex; align-items: center; justify-content: center; gap: 0.9rem; }
.testi__av { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testi__name { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-brown); }
.testi__role { font-size: 0.72rem; color: var(--c-text-soft); }
.stars { display: flex; gap: 3px; justify-content: center; margin-bottom: 1.5rem; color: var(--c-brass); }
.stars svg { width: 14px; height: 14px; fill: currentColor; }

.testi-nav { display: flex; align-items: center; justify-content: center; gap: 0.6rem; margin-top: 2.6rem; }
.testi-dot {
  width: 30px;
  height: 2px;
  background: var(--c-clay);
  border-radius: 2px;
  transition: background-color 0.4s var(--ease), width 0.4s var(--ease);
}
.testi-dot.is-active { background: var(--c-brown); width: 52px; }

/* 17. PROCESS ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 2.4vw, 2.4rem); position: relative; }
.steps::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--c-line);
}
.step { position: relative; text-align: center; }
.step__num {
  width: 54px;
  height: 54px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 1.15rem;
  color: var(--c-brown);
  position: relative;
  z-index: 2;
  transition: background-color 0.45s var(--ease), color 0.45s var(--ease), transform 0.45s var(--ease);
}
.step:hover .step__num { background: var(--c-brown); color: var(--c-ivory); transform: translateY(-4px); }
.step h4 { margin-bottom: 0.5rem; font-family: var(--f-display); font-size: 1.25rem; font-weight: 300; }
.step p { font-size: 0.85rem; color: var(--c-text-soft); line-height: 1.65; }

/* 18. SIMULATEUR ========================================================= */
.sim {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: clamp(1.6rem, 3.5vw, 3.5rem);
  align-items: start;
}
.sim__panel {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3vw, 2.8rem);
  box-shadow: var(--sh-md);
}
.sim__field + .sim__field { margin-top: 1.7rem; }
.sim__label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.63rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-brown);
  margin-bottom: 0.75rem;
}
.sim__value { font-family: var(--f-display); font-size: 1.15rem; letter-spacing: 0; text-transform: none; color: var(--c-espresso); }

.seg { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.seg button {
  flex: 1 1 auto;
  min-width: 74px;
  padding: 0.72em 0.9em;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--c-text-soft);
  background: var(--c-cream);
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.seg button:hover { border-color: var(--c-clay); }
.seg button.is-on { background: var(--c-brown); color: var(--c-ivory); }

/* Curseur natif stylé */
.range { width: 100%; appearance: none; height: 2px; background: var(--c-clay); border-radius: 2px; margin: 1.15rem 0 0; }
.range::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-brown);
  border: 3px solid var(--c-white);
  box-shadow: var(--sh-sm);
  cursor: grab;
  transition: transform 0.25s var(--ease);
}
.range::-webkit-slider-thumb:active { transform: scale(1.15); cursor: grabbing; }
.range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-brown);
  border: 3px solid var(--c-white);
  box-shadow: var(--sh-sm);
  cursor: grab;
}
.range::-moz-range-track { height: 2px; background: var(--c-clay); border-radius: 2px; }

.sim__result {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  background: var(--c-espresso);
  color: var(--c-ivory);
  border-radius: var(--r-lg);
  padding: clamp(1.8rem, 3vw, 2.8rem);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.sim__result::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 146, 96, 0.32) 0%, rgba(185, 146, 96, 0) 70%);
  pointer-events: none;
}
.sim__result h3 { color: var(--c-ivory); font-size: 1.3rem; }
.sim__big {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  line-height: 1;
  color: var(--c-brass-l);
  letter-spacing: -0.02em;
  margin: 0.4rem 0 0.2rem;
}
.sim__big small { font-size: 0.3em; letter-spacing: 0.1em; color: rgba(252, 250, 247, 0.55); }
.sim__hint { font-size: 0.78rem; color: rgba(252, 250, 247, 0.55); }
.sim__breakdown { list-style: none; margin: 1.8rem 0; padding: 1.5rem 0 0; border-top: 1px solid rgba(252, 250, 247, 0.14); }
.sim__breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  font-size: 0.85rem;
  color: rgba(252, 250, 247, 0.72);
}
.sim__breakdown li b { font-weight: 400; color: var(--c-ivory); font-family: var(--f-display); font-size: 1.05rem; }
.sim__breakdown li.is-total { border-top: 1px solid rgba(252, 250, 247, 0.14); margin-top: 0.5rem; padding-top: 1rem; }
.sim__bar { height: 5px; border-radius: 99px; background: rgba(252, 250, 247, 0.12); overflow: hidden; margin-top: 1.2rem; }
.sim__bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--c-brass), var(--c-brass-l)); border-radius: 99px; transition: width 0.8s var(--ease); }

/* 19. FORMULAIRE MULTI-ÉTAPES =========================================== */
.wizard {
  background: var(--c-white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  overflow: hidden;
}
.wizard__head { padding: clamp(1.5rem, 2.6vw, 2.2rem) clamp(1.5rem, 3vw, 2.8rem) 0; }
.wizard__steps { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 1.3rem; flex-wrap: wrap; }
.wizard__step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-taupe);
  transition: color 0.4s var(--ease);
}
.wizard__step b {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
  display: grid;
  place-items: center;
  font-weight: 400;
  font-size: 0.65rem;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.wizard__step.is-on { color: var(--c-brown); }
.wizard__step.is-on b { background: var(--c-brown); border-color: var(--c-brown); color: var(--c-ivory); }
.wizard__step.is-done b { background: var(--c-cream); border-color: var(--c-clay); color: var(--c-brown); }
.wizard__sep { flex: 1; min-width: 12px; height: 1px; background: var(--c-line); }
.wizard__progress { height: 2px; background: var(--c-cream); border-radius: 2px; overflow: hidden; }
.wizard__progress span { display: block; height: 100%; width: 25%; background: var(--c-brown); transition: width 0.6s var(--ease); }

.wizard__body { padding: clamp(1.6rem, 3vw, 2.8rem); position: relative; }
.wpane { display: none; }
.wpane.is-active { display: block; }
.wpane h3 { font-size: 1.55rem; margin-bottom: 0.4rem; }
.wpane > p { color: var(--c-text-soft); font-size: 0.9rem; margin-bottom: 1.8rem; }

.opts { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0.7rem; }
.opt {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.15rem 1.25rem;
  text-align: left;
  background: var(--c-ivory);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-md);
  transition: border-color 0.35s var(--ease), background-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.opt:hover { transform: translateY(-3px); border-color: var(--c-clay); }
.opt.is-on { border-color: var(--c-brown); background: var(--c-cream); }
.opt.is-on::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--c-brown);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fcfaf7' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.opt strong { font-weight: 400; font-family: var(--f-display); font-size: 1.15rem; color: var(--c-espresso); }
.opt span { font-size: 0.76rem; color: var(--c-text-soft); line-height: 1.5; }

/* Champs de formulaire */
.f-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.f-field { position: relative; }
.f-field--full { grid-column: 1 / -1; }
.f-field label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-brown);
  margin-bottom: 0.5rem;
}
.f-field input,
.f-field select,
.f-field textarea {
  width: 100%;
  padding: 0.95em 1.1em;
  background: var(--c-ivory);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-md);
  font-size: 0.92rem;
  font-weight: 300;
  transition: border-color 0.35s var(--ease), background-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.f-field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.f-field input:focus,
.f-field select:focus,
.f-field textarea:focus {
  outline: none;
  border-color: var(--c-brown);
  background: var(--c-white);
  box-shadow: 0 0 0 4px rgba(110, 89, 67, 0.08);
}
.f-field input:user-invalid { border-color: #b4553f; }
.f-err { display: block; font-size: 0.72rem; color: #b4553f; margin-top: 0.4rem; min-height: 1em; }

.check { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.78rem; color: var(--c-text-soft); line-height: 1.55; }
.check input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--c-brown); flex: none; }

.wizard__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.1rem, 2vw, 1.5rem) clamp(1.6rem, 3vw, 2.8rem);
  border-top: 1px solid var(--c-line-soft);
  background: var(--c-ivory);
}
.wizard__count { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-taupe); }

.wizard__done { display: none; text-align: center; padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2.8rem); }
.wizard__done.is-active { display: block; }
.wizard__done .tick {
  width: 74px;
  height: 74px;
  margin: 0 auto 1.6rem;
  border-radius: 50%;
  background: var(--c-cream);
  color: var(--c-brown);
  display: grid;
  place-items: center;
}
.wizard__done .tick svg { width: 30px; height: 30px; }

/* 20. BLOG =============================================================== */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.4vw, 2.2rem); }
.post { display: flex; flex-direction: column; gap: 1rem; }
.post__media { overflow: hidden; border-radius: var(--r-sm); aspect-ratio: 4 / 3; }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.post:hover .post__media img { transform: scale(1.06); }
.post__meta { display: flex; align-items: center; gap: 0.7rem; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-brass); }
.post__meta span:not(:last-child)::after { content: ""; display: inline-block; width: 3px; height: 3px; border-radius: 50%; background: var(--c-clay); margin-left: 0.7rem; vertical-align: middle; }
.post h3 { font-size: 1.42rem; margin: 0; transition: color 0.35s var(--ease); }
.post:hover h3 { color: var(--c-brown); }
.post p { font-size: 0.87rem; color: var(--c-text-soft); margin: 0; }

.post--feature { grid-column: span 2; grid-row: span 2; }
.post--feature .post__media { aspect-ratio: 16 / 10; }
.post--feature h3 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); }

/* Article */
.article { max-width: 720px; margin-inline: auto; }
.article__hero { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.article h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-top: 2.4rem; }
.article h3 { font-size: 1.35rem; margin-top: 1.9rem; }
.article p { font-size: 1.03rem; line-height: 1.85; }
.article ul, .article ol { padding-left: 1.2rem; margin-bottom: 1.5rem; }
.article li { margin-bottom: 0.6rem; line-height: 1.75; }
.article blockquote {
  margin: 2.2rem 0;
  padding: 1.6rem 0 1.6rem 2rem;
  border-left: 2px solid var(--c-brass);
  font-family: var(--f-display);
  font-size: 1.32rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--c-espresso);
}
.article__note {
  background: var(--c-cream);
  border-radius: var(--r-md);
  padding: clamp(1.3rem, 2.4vw, 2rem);
  margin: 2.2rem 0;
  font-size: 0.92rem;
}
.article__note strong { color: var(--c-brown); }

/* Barre de progression de lecture */
.readbar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--c-brass);
  z-index: 950;
}

/* 21. CTA & FOOTER ======================================================= */
.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
  isolation: isolate;
  text-align: center;
  color: var(--c-ivory);
}
.cta-band__bg { position: absolute; inset: 0; z-index: -2; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(28, 23, 19, 0.72), rgba(28, 23, 19, 0.82));
}
.cta-band h2 { color: var(--c-ivory); }
.cta-band p { color: rgba(252, 250, 247, 0.76); max-width: 54ch; margin-inline: auto; }
.cta-band .eyebrow { color: var(--c-brass-l); }

.footer { background: var(--c-espresso); color: rgba(252, 250, 247, 0.66); padding-top: clamp(3.5rem, 6vw, 5.5rem); font-size: 0.88rem; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: clamp(1.8rem, 3vw, 3rem); padding-bottom: clamp(2.5rem, 4vw, 3.5rem); }
.footer h4 {
  font-family: var(--f-sans);
  font-size: 0.63rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--c-brass-l);
  margin-bottom: 1.3rem;
  font-weight: 400;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 0.6rem; }
.footer a { transition: color 0.3s var(--ease), padding-left 0.3s var(--ease); }
.footer a:hover { color: var(--c-brass-l); }
.footer ul a:hover { padding-left: 6px; }
.footer .logo__name { color: var(--c-ivory); }
.footer .logo__tag { color: var(--c-brass-l); }
.footer .logo__mark { border-color: rgba(185, 146, 96, 0.6); color: var(--c-brass-l); }
.footer .socials a { border-color: rgba(252, 250, 247, 0.18); color: rgba(252, 250, 247, 0.8); }
.footer .socials a:hover { background: var(--c-brass); border-color: var(--c-brass); color: var(--c-espresso); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  justify-content: space-between;
  align-items: center;
  padding-block: 1.6rem;
  border-top: 1px solid rgba(252, 250, 247, 0.1);
  font-size: 0.76rem;
  color: rgba(252, 250, 247, 0.42);
}

/* Newsletter */
.nl { display: flex; gap: 0.5rem; margin-top: 1rem; }
.nl input {
  flex: 1;
  min-width: 0;
  padding: 0.85em 1.1em;
  background: rgba(252, 250, 247, 0.06);
  border: 1px solid rgba(252, 250, 247, 0.16);
  border-radius: var(--r-pill);
  color: var(--c-ivory);
  font-size: 0.85rem;
}
.nl input::placeholder { color: rgba(252, 250, 247, 0.4); }
.nl input:focus { outline: none; border-color: var(--c-brass); }
.nl button {
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 50%;
  background: var(--c-brass);
  color: var(--c-espresso);
  display: grid;
  place-items: center;
  transition: background-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.nl button:hover { background: var(--c-brass-l); transform: scale(1.06); }

/* Bouton WhatsApp flottant */
.wa {
  position: fixed;
  right: clamp(14px, 2.4vw, 26px);
  bottom: clamp(14px, 2.4vw, 26px);
  z-index: 880;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.7);
  transform: scale(0);
  transition: transform 0.45s var(--ease), box-shadow 0.35s var(--ease);
}
.wa.is-in { transform: scale(1); }
.wa:hover { transform: scale(1.09); }
.wa svg { width: 26px; height: 26px; fill: currentColor; }

/* Fil d'ariane / entête de page interne */
.phead {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(3rem, 6vw, 5.5rem));
  padding-bottom: clamp(2.6rem, 5vw, 4.5rem);
  background: var(--c-cream);
  overflow: hidden;
}
.phead__deco {
  position: absolute;
  top: -12%;
  right: -6%;
  width: min(460px, 44vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 146, 96, 0.14) 0%, rgba(185, 146, 96, 0) 70%);
  pointer-events: none;
}
.crumb { display: flex; gap: 0.55rem; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-taupe); margin-bottom: 1.5rem; }
.crumb a:hover { color: var(--c-brown); }
.crumb span { color: var(--c-clay); }

/* Accordéon FAQ */
.acc { border-top: 1px solid var(--c-line); }
.acc__item { border-bottom: 1px solid var(--c-line); }
.acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.1rem, 2vw, 1.6rem) 0;
  text-align: left;
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 1.9vw, 1.4rem);
  color: var(--c-espresso);
  transition: color 0.35s var(--ease);
}
.acc__btn:hover { color: var(--c-brown); }
.acc__ico { position: relative; width: 16px; height: 16px; flex: none; }
.acc__ico::before,
.acc__ico::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1px;
  background: var(--c-brown);
  transition: transform 0.45s var(--ease);
}
.acc__ico::after { transform: rotate(90deg); }
.acc__item.is-open .acc__ico::after { transform: rotate(0deg); }
.acc__panel { overflow: hidden; height: 0; }
.acc__panel > div { padding-bottom: 1.6rem; color: var(--c-text-soft); font-size: 0.92rem; max-width: 70ch; }

/* Tarifs */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); align-items: stretch; }
.plan {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  background: var(--c-white);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-lg);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.plan--hero { background: var(--c-espresso); border-color: var(--c-espresso); color: rgba(252, 250, 247, 0.75); }
.plan--hero h3, .plan--hero .plan__price { color: var(--c-ivory); }
.plan--hero .plan__price b { color: var(--c-brass-l); }
.plan--hero li { color: rgba(252, 250, 247, 0.75); }
.plan--hero li::before { color: var(--c-brass-l); }
.plan__badge {
  align-self: flex-start;
  font-size: 0.55rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0.4em 0.9em;
  border-radius: var(--r-pill);
  background: var(--c-brass);
  color: #fff;
}
.plan h3 { font-size: 1.6rem; margin: 0; }
.plan__price { font-family: var(--f-display); font-size: 1rem; color: var(--c-text-soft); }
.plan__price b { font-size: 2.6rem; font-weight: 400; color: var(--c-brown); letter-spacing: -0.02em; }
.plan ul { list-style: none; margin: 0.6rem 0 1.4rem; padding: 0; flex: 1; }
.plan li { position: relative; padding-left: 1.6rem; margin-bottom: 0.7rem; font-size: 0.87rem; line-height: 1.6; }
.plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 5px;
  border-left: 1px solid var(--c-brass);
  border-bottom: 1px solid var(--c-brass);
  transform: rotate(-45deg);
}

/* Bloc de contact */
.contact-info { display: grid; gap: 1.6rem; }
.ci {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--c-line-soft);
}
.ci:last-child { border-bottom: 0; padding-bottom: 0; }
.ci__ico {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  background: var(--c-cream);
  color: var(--c-brown);
  display: grid;
  place-items: center;
}
.ci__ico svg { width: 18px; height: 18px; }
.ci h4 { font-size: 0.63rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--c-brown); margin-bottom: 0.35rem; }
.ci p, .ci a { font-size: 0.95rem; color: var(--c-text); }
.ci a:hover { color: var(--c-brown); }

/* Carte stylisée */
.map-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  filter: grayscale(0.55) sepia(0.18) contrast(0.96);
  box-shadow: var(--sh-md);
  min-height: 340px;
  background: var(--c-sand);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* Notifications */
.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 9997;
  transform: translate(-50%, 130%);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1.5rem;
  background: var(--c-espresso);
  color: var(--c-ivory);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-lg);
  font-size: 0.85rem;
  transition: transform 0.55s var(--ease);
  max-width: min(92vw, 460px);
}
.toast.is-in { transform: translate(-50%, 0); }
.toast svg { width: 18px; height: 18px; color: var(--c-brass-l); flex: none; }

/* Lien d'évitement */
.skip {
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translate(-50%, -160%);
  z-index: 9999;
  padding: 0.7em 1.4em;
  background: var(--c-espresso);
  color: var(--c-ivory);
  border-radius: var(--r-pill);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease);
}
.skip:focus { transform: translate(-50%, 0); }

/* 22. RESPONSIVE ========================================================= */
@media (max-width: 1180px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .hero__pill--occupancy { display: none; }
}

@media (max-width: 1024px) {
  :root { --header-h: 74px; }
  /* Sous 1024px, le header se réduit au logo + burger : le reste vit
     dans le menu plein écran, sinon la barre déborde sur petit mobile. */
  .nav--left,
  .nav--right .nav__link,
  .nav--right .btn,
  .nav--right .socials { display: none; }
  .nav--right { gap: 0.8rem; }
  .burger { display: flex; }
  .header__inner { grid-template-columns: auto 1fr auto; }
  .logo { justify-self: start; }
  .nav--right { justify-self: end; }

  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .svc-grid, .posts, .steps, .plans, .floaters__grid { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .post--feature { grid-column: span 2; grid-row: auto; }
  .sim { grid-template-columns: 1fr; }
  .sim__result { position: static; }
  .paths { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .split__body { max-width: none; }
  .searchbar__row { grid-template-columns: repeat(2, 1fr); }
  .searchbar__go { grid-column: 1 / -1; width: 100%; border-radius: var(--r-pill); height: 54px; justify-self: stretch; margin: 0.4rem 0 0; }
  .field + .field::before { display: none; }
  .hero__cell--3 { display: none; }
  .hero__grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  :root { --header-h: 68px; }
  .logo__mark { width: 34px; height: 34px; font-size: 0.8rem; }
  .logo__name { font-size: 1.05rem; letter-spacing: 0.12em; }
  .logo__tag { font-size: 0.46rem; letter-spacing: 0.24em; }

  .grid--2, .grid--3, .grid--4,
  .svc-grid, .posts, .steps, .plans, .floaters__grid,
  .opts, .f-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat + .stat::before { display: none; }
  .stat:nth-child(n + 3) { border-top: 1px solid var(--c-line); }
  .post--feature { grid-column: auto; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__cell--2 { display: none; }
  .hero__cell--1 { aspect-ratio: 4 / 5; }
  .hero__card {
    position: static;
    max-width: none;
    margin-top: -40px;
    margin-inline: auto;
    width: calc(100% - 24px);
  }
  /* La carte titre passe en flux : les pastilles n'ont plus d'ancrage sûr. */
  .hero__pill { display: none; }
  .searchbar { margin-top: 1.5rem; border-radius: var(--r-lg); }
  .searchbar__row { grid-template-columns: 1fr; gap: 0.15rem; }
  .searchbar__tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.3rem; }
  .searchbar__tab { font-size: 0.56rem; letter-spacing: 0.1em; padding: 0.72em 0.4em; text-align: center; }
  .scroll-cue { display: none; }

  .floaters { margin-top: 0; }
  .duo__b { position: static; width: 100%; margin-top: 0.9rem; }
  .duo__badge { width: 92px; height: 92px; font-size: 0.78rem; top: -14px; left: -10px; }
  .duo__badge strong { font-size: 1.3rem; }

  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }

  .svc-row { grid-template-columns: 1fr auto; gap: 1rem; }
  .svc-row__num { display: none; }

  .footer__top { grid-template-columns: 1fr; }
  .wizard__steps .wizard__step span { display: none; }
  .wizard__foot { flex-direction: column-reverse; align-items: stretch; }
  .wizard__foot .btn { width: 100%; }
  .wizard__count { text-align: center; }
  .lightbox__btn--prev { left: 6px; }
  .lightbox__btn--next { right: 6px; }
}

/* 23. ACCESSIBILITÉ / REDUCED MOTION ==================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .js [data-anim] { opacity: 1 !important; transform: none !important; }
  .js .reveal-mask { clip-path: none !important; }
  .menu__link { transform: none !important; }
  .hero__cell img { transform: none !important; }
  .marquee__track { animation: none !important; }
  .cursor, .cursor-dot { display: none !important; }
}

@media print {
  .header, .footer, .wa, .preloader, .cursor, .cursor-dot, .scroll-cue, .searchbar { display: none !important; }
  body { background: #fff; }
}
