/* ════════════════════════════════════════════════════════
   Black Diamond · Refonte v2 (multipage, FR/EN)
   ════════════════════════════════════════════════════════ */

:root {
  --teal-deep: #003748;
  --teal: #00465E;
  --teal-darker: #002030;
  --gold: #c4a577;
  --gold-soft: #b89a6d;
  --cream: #efe3cf;
  --cream-soft: #e8dcc6;
  --night: #0a0a0a;
  --white-warm: #f5f1e8;
  --serif: 'Cormorant Garamond', Garamond, serif;
  --sans: Helvetica, Arial, sans-serif;
  --tag: 11px;
  --ls-tag: 5px;
  --pad-x: 48px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* Lenis pilote le smooth scroll — pas de scroll-behavior natif (conflits) */
html { scroll-behavior: auto; }
html.lenis { height: auto; }
html.lenis body { height: auto; }
html.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
body {
  background: var(--teal-deep);
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.7;
  overflow-x: hidden;
  /* v85 : pointeur natif simple (demande Cristina) */
  cursor: auto;
  min-height: 100vh;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button { border: 0; background: 0; cursor: pointer; color: inherit; font: inherit; }

/* v85 : curseur custom désactivé — éléments rendus invisibles. */
.cursor-ring, .cursor-dot, .cursor-label,
#cursor-ring, #cursor-dot, #cursor-label { display: none !important; }

/* ───── Curseur retravaillé (DEPRECATED v85) ───── */
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
              height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
              background 0.4s ease, border-color 0.4s ease;
  mix-blend-mode: difference;
  backdrop-filter: invert(0.06);
}
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: opacity 0.3s;
}
.cursor-ring.hover {
  width: 100px; height: 100px;
  background: rgba(196, 165, 119, 0.1);
  border-color: var(--gold);
}
.cursor-ring.text {
  width: 90px; height: 90px;
  background: var(--gold);
  border-color: var(--gold);
}
.cursor-ring.text + .cursor-dot { opacity: 0; }
.cursor-ring.drag {
  width: 80px; height: 80px;
}
.cursor-label {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  font-family: var(--sans); font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--night);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  white-space: nowrap;
  font-weight: 500;
}
.cursor-label.visible { opacity: 1; }
@media (hover: none), (max-width: 768px) {
  .cursor-ring, .cursor-dot, .cursor-label { display: none; }
  body { cursor: auto; }
  button, a { cursor: pointer; }
}

/* ───── Page transition cinétique (3 bandes) ───── */
.page-trans {
  position: fixed; inset: 0;
  display: flex;
  pointer-events: none;
  z-index: 9500;
}
.trans-stripe {
  flex: 1;
  transform: scaleY(0);
  transform-origin: bottom center;
  will-change: transform;
}
.trans-stripe-1 { background: var(--teal-deep); }
.trans-stripe-2 { background: var(--teal); }
.trans-stripe-3 { background: var(--night); }
.page-trans.entering .trans-stripe {
  transform: scaleY(1);
  transition: transform 0.65s cubic-bezier(0.85, 0, 0.15, 1);
}
.page-trans.entering .trans-stripe-1 { transition-delay: 0s; }
.page-trans.entering .trans-stripe-2 { transition-delay: 0.06s; }
.page-trans.entering .trans-stripe-3 { transition-delay: 0.12s; }
.page-trans.exiting .trans-stripe {
  transform-origin: top center;
  transform: scaleY(0);
  transition: transform 0.65s cubic-bezier(0.85, 0, 0.15, 1);
}
.page-trans.exiting .trans-stripe-3 { transition-delay: 0s; }
.page-trans.exiting .trans-stripe-2 { transition-delay: 0.06s; }
.page-trans.exiting .trans-stripe-1 { transition-delay: 0.12s; }

/* ───── Theatre interlude (image cinématique pleine page) ───── */
.theatre {
  position: relative;
  height: 90vh; min-height: 600px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.theatre-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
}
.theatre-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(10, 10, 10, 0.65) 95%),
    linear-gradient(180deg, rgba(10,10,10,0.45) 0%, transparent 30%, transparent 70%, rgba(10,10,10,0.55) 100%);
}
.theatre-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 1100px;
  padding: 0 24px;
}
.theatre-rule-top, .theatre-rule-bottom {
  width: 48px; height: 1px;
  background: var(--gold); margin: 0 auto 28px;
  opacity: 0; transform: scaleX(0);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.theatre-rule-bottom { margin: 28px auto 0; }
.theatre.in .theatre-rule-top,
.theatre.in .theatre-rule-bottom { opacity: 1; transform: scaleX(1); }
.theatre-tag {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
  opacity: 0; transform: translateY(15px);
  transition: opacity 0.8s ease 0.1s, transform 0.8s ease 0.1s;
}
.theatre.in .theatre-tag { opacity: 1; transform: translateY(0); }
.theatre-quote {
  font-family: var(--serif); font-style: italic;
  font-weight: 300;
  font-size: clamp(34px, 5.5vw, 76px);
  line-height: 1.2; color: var(--cream);
  letter-spacing: -0.005em;
}
.theatre-quote .word {
  display: inline-block; margin-right: 0.22em;
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.theatre.in .theatre-quote .word { opacity: 1; transform: translateY(0); }
.theatre.in .theatre-quote .word:nth-child(1) { transition-delay: 0.2s; }
.theatre.in .theatre-quote .word:nth-child(2) { transition-delay: 0.25s; }
.theatre.in .theatre-quote .word:nth-child(3) { transition-delay: 0.30s; }
.theatre.in .theatre-quote .word:nth-child(4) { transition-delay: 0.35s; }
.theatre.in .theatre-quote .word:nth-child(5) { transition-delay: 0.40s; }
.theatre.in .theatre-quote .word:nth-child(6) { transition-delay: 0.45s; }
.theatre.in .theatre-quote .word:nth-child(7) { transition-delay: 0.50s; }
.theatre.in .theatre-quote .word:nth-child(8) { transition-delay: 0.55s; }
.theatre.in .theatre-quote .word:nth-child(9) { transition-delay: 0.60s; }
.theatre.in .theatre-quote .word:nth-child(10) { transition-delay: 0.65s; }
.theatre.in .theatre-quote .word:nth-child(11) { transition-delay: 0.70s; }
.theatre.in .theatre-quote .word:nth-child(12) { transition-delay: 0.75s; }

/* ───── Hero curtain mask reveal ───── */
.hero-curtain {
  position: absolute; inset: 0;
  background: var(--night); z-index: 1;
  transform-origin: bottom center;
  animation: curtain-rise 1.4s cubic-bezier(0.7, 0, 0.15, 1) 0.6s forwards;
}
@keyframes curtain-rise {
  from { transform: scaleY(1); }
  to { transform: scaleY(0); }
}

/* ───── Loader ───── */
.loader {
  position: fixed; inset: 0; background: var(--teal-deep);  /* v85 : bleu */
  z-index: 10000; display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, transform 1s ease;
}
.loader.gone { opacity: 0; pointer-events: none; transform: translateY(-100%); }
.loader-content { text-align: center; }
.loader-mark {
  font-family: var(--serif); font-style: italic;
  font-size: 64px; color: var(--cream);
  opacity: 0; animation: loader-fade 1.6s ease forwards;
}
/* Loader avec logo iso (lion + clé) */
.loader-mark-iso {
  display: block;
  width: auto;
  height: 140px;
  max-width: 70vw;
  margin: 0 auto;
  object-fit: contain;
  opacity: 0; animation: loader-fade 1.6s ease forwards;
}
@media (max-width: 768px) { .loader-mark-iso { height: 110px; } }
@media (max-width: 480px) { .loader-mark-iso { height: 90px; } }
.loader-bar {
  width: 0; height: 1px; background: var(--gold);
  margin: 20px auto 0; animation: loader-bar 1.6s ease forwards;
}
@keyframes loader-fade { 0%, 30% { opacity: 0; } 100% { opacity: 1; } }
@keyframes loader-bar { 0% { width: 0; } 100% { width: 200px; } }

/* ───── Header ───── */
.site-head {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 14px var(--pad-x);
  z-index: 100;
  /* v35 : voile permanent plus marqué + flou pour lisibilité menu + logos dès l'arrivée */
  background: linear-gradient(180deg, rgba(0, 32, 48, 0.78) 0%, rgba(0, 32, 48, 0.55) 70%, rgba(0, 32, 48, 0.25) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: padding 0.35s ease, background 0.35s ease, backdrop-filter 0.35s ease;
}
.site-head.scrolled {
  padding: 10px var(--pad-x);
  background: rgba(0, 32, 48, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.head-inner {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 32px;
}
.head-brand { display: flex; flex-direction: column; gap: 2px; align-items: flex-start; }
.brand-mark {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 22px; color: var(--cream); letter-spacing: 0.5px;
}
.brand-sub {
  font-family: var(--sans); font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); opacity: 0.85;
}
/* v35 : Logos header agrandis et plus lisibles */
.brand-logo {
  display: block;
  width: auto;
  max-height: 62px;
  max-width: 280px;
  height: auto;
  object-fit: contain;
  transition: opacity 0.3s, filter 0.3s;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}
/* v53 : taille uniforme pour tous les logos de section
   (alignée sur celle de l'architecture). On garde la couleur d'origine
   de chaque PNG et un drop-shadow pour la lisibilité sur fond hero. */
.brand-logo-main,
.brand-logo-conciergerie,
.brand-logo-location,
.brand-logo-architecture,
.brand-logo-immobilier {
  max-height: 92px;
  max-width: 380px;
  filter: drop-shadow(0 3px 14px rgba(0, 0, 0, 0.75))
          drop-shadow(0 1px 3px rgba(0, 0, 0, 0.6));
}
.brand-logo:hover { opacity: 0.85; }
@media (max-width: 1024px) {
  .brand-logo,
  .brand-logo-main, .brand-logo-conciergerie, .brand-logo-location,
  .brand-logo-architecture, .brand-logo-immobilier {
    max-height: 78px; max-width: 300px;
  }
}
@media (max-width: 768px) {
  .brand-logo,
  .brand-logo-main, .brand-logo-conciergerie, .brand-logo-location,
  .brand-logo-architecture, .brand-logo-immobilier {
    max-height: 64px; max-width: 250px;
  }
}
@media (max-width: 480px) {
  .brand-logo,
  .brand-logo-main, .brand-logo-conciergerie, .brand-logo-location,
  .brand-logo-architecture, .brand-logo-immobilier {
    max-height: 54px; max-width: 200px;
  }
}
.head-nav ul {
  display: flex; gap: 32px; list-style: none;
  font-family: var(--sans); font-size: var(--tag);
  letter-spacing: var(--ls-tag); text-transform: uppercase;
}
.head-nav li a {
  position: relative; color: var(--cream); padding: 4px 0;
  transition: color 0.25s ease;
}
.head-nav li a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.head-nav li a:hover { color: var(--gold); }
.head-nav li a:hover::after,
.head-nav li a.active::after { width: 100%; }
.head-nav li a.active { color: var(--gold); }

.head-tools { display: flex; justify-content: flex-end; align-items: center; gap: 14px; }
/* v140 : icônes sociaux dans le header */
.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  color: var(--cream);
  border: 1px solid rgba(196, 165, 119, 0.3);
  border-radius: 50%;
  transition: color 0.25s, border-color 0.25s, transform 0.25s;
}
.social-link:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-1px); }
.social-link svg { display: block; }
@media (max-width: 900px) {
  .social-link { width: 30px; height: 30px; }
  .social-link svg { width: 16px; height: 16px; }
}
.lang-switch {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--sans); font-size: var(--tag);
  letter-spacing: var(--ls-tag); text-transform: uppercase;
  color: var(--cream); padding: 8px 14px;
  border: 1px solid rgba(196, 165, 119, 0.3);
  transition: border 0.3s;
}
.lang-switch:hover { border-color: var(--gold); }
.lang-opt { opacity: 0.45; transition: opacity 0.25s; }
.lang-opt.active { opacity: 1; color: var(--gold); }
.lang-sep { opacity: 0.3; }
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; height: 28px;
  align-items: center; justify-content: center;
}
.menu-toggle span {
  display: block; width: 22px; height: 1px;
  background: var(--cream); transition: 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ───── Drawer ───── */
.drawer {
  position: fixed; inset: 0; background: var(--teal-deep);
  z-index: 99; transform: translateY(-100%);
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex; align-items: center; justify-content: center;
  padding: 100px var(--pad-x) 40px;
}
.drawer.open { transform: translateY(0); }
.drawer-inner { display: flex; flex-direction: column; gap: 22px; text-align: center; }
.drawer-link {
  font-family: var(--serif); font-style: italic; font-size: 32px;
  color: var(--cream); transition: color 0.25s;
}
.drawer-link:hover { color: var(--gold); }
.drawer-foot {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid rgba(196, 165, 119, 0.3);
  font-size: 14px; color: var(--cream-soft);
}

/* Header sur viewport intermédiaire (1280-1500px) : padding réduit + logo + nav densifiée */
@media (max-width: 1500px) and (min-width: 1281px) {
  :root { --pad-x: 36px; }
  .head-inner { gap: 24px; }
  .head-nav ul { gap: 22px; }
  .head-nav li a { letter-spacing: 3.5px; font-size: 10px; }
  .brand-logo-location { height: 44px; }
}

/* Passage en hamburger dès 1280px (laptops 13") pour éviter tout wrap nav */
@media (max-width: 1280px) {
  .head-inner { grid-template-columns: auto 1fr; gap: 16px; }
  .head-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .brand-logo-location { height: 42px; }
}

/* ───── Page transitions (subtle fade) ───── */
.page { opacity: 1; }
.page.entering {
  animation: page-enter 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes page-enter {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ───── Hero Quadriptyque (home : 4 piliers égaux) ───── */
.hero-quad {
  position: relative; height: 100vh; min-height: 700px;
  overflow: hidden; background: var(--night);
}
.quad-grid {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 1px; background: var(--gold);
}
.quad-panel {
  position: relative; cursor: pointer;
  background-size: cover; background-position: center;
  overflow: hidden; display: flex;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 48px;
  transition: filter 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  filter: brightness(0.55);
}
.quad-panel:hover { filter: brightness(0.85); }
.quad-panel::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(9, 55, 70, 0.92) 100%);
  transition: opacity 0.6s; z-index: 1;
}
.quad-panel:hover::before { opacity: 0.6; }
.quad-mask {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(9, 55, 70, 0.0) 0%, rgba(9, 55, 70, 0.85) 100%);
  z-index: 1; opacity: 0;
  transition: opacity 0.6s;
}
.quad-panel:hover .quad-mask { opacity: 1; }
.quad-content {
  position: relative; z-index: 2;
  color: var(--cream);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.quad-panel:hover .quad-content { transform: translateY(-12px); }
.quad-num {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; color: var(--gold);
  margin-bottom: 8px;
}
.quad-content h2 {
  font-family: var(--serif); font-style: italic;
  font-weight: 300; font-size: clamp(36px, 5vw, 60px);
  line-height: 1; color: var(--cream);
  margin-bottom: 14px;
}
.quad-link {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
  display: inline-block;
}
.quad-panel:hover .quad-link { opacity: 1; transform: translateY(0); }
.quad-badge {
  display: inline-block;
  font-family: var(--sans); font-size: 9px;
  letter-spacing: 3px; text-transform: uppercase;
  background: var(--gold); color: var(--night);
  padding: 4px 10px; margin-bottom: 10px;
}

/* Overlay center (titre + tagline) sur le quadriptyque */
.hero-overlay-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 3; pointer-events: none;
  text-align: center; padding: 24px;
}
.hero-brand-massive {
  font-family: var(--serif); font-style: italic;
  font-weight: 300;
  font-size: clamp(56px, 9vw, 140px); line-height: 1;
  color: var(--cream);
  margin-bottom: 18px;
  text-shadow: 0 8px 60px rgba(0, 0, 0, 0.5);
  /* v79 : visible par défaut (fix iOS). */
  opacity: 1;
  animation: rise 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s;
}
/* Hero home : logo iso (lion + clé) — DEPRECATED v35, conservé pour rétrocompat */
.hero-brand-iso {
  display: block;
  width: auto;
  height: clamp(160px, 17vw, 260px);
  max-width: 60vw;
  margin: 0 auto 22px;
  object-fit: contain;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.55));
  opacity: 0; transform: translateY(40px);
  animation: rise 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s forwards;
}
/* v35 : titre question en lieu et place du logo iso */
.hero-brand-question {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 1.05;
  color: var(--cream);
  margin: 0 auto 28px;
  text-align: center;
  max-width: 18ch;
  text-shadow: 0 8px 60px rgba(0, 0, 0, 0.6);
  /* v79 : visible par défaut (fix iOS) — l'animation 'rise' a un from→to explicite. */
  opacity: 1;
  animation: rise 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s;
}
@media (max-width: 900px) { .hero-brand-question { font-size: clamp(36px, 8vw, 64px); margin-bottom: 22px; } }
@media (max-width: 480px) { .hero-brand-question { font-size: clamp(30px, 9vw, 48px); } }
/* Halo doux derrière l'overlay center pour lisibilité du tagline */
.hero-overlay-center::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 60vmin; height: 60vmin;
  max-width: 640px; max-height: 640px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(9, 55, 70, 0.55) 0%, rgba(9, 55, 70, 0.0) 70%);
  z-index: -1;
  pointer-events: none;
}
.hero-tagline {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--gold);
  margin-bottom: 24px;
  /* v79 : visible par défaut (fix iOS). */
  opacity: 1;
  animation: rise 1s ease 1.0s;
}
.hero-sub-meta {
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--cream-soft);
  /* v79 : visible par défaut (fix iOS). */
  opacity: 1;
  animation: rise 1s ease 1.3s;
}

@media (max-width: 900px) {
  /* v82 : hero-quad mobile compact. Overlay center concis + 2×2 cards lumineuses
     pour tenir dans une seule vue mobile sans trop scroller. */
  .hero-quad { height: auto; min-height: 0; display: flex; flex-direction: column; }
  .quad-grid {
    position: relative;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 26vh);
    gap: 2px;
    padding: 0 12px 24px;
  }
  .quad-panel {
    padding: 14px 10px 18px;
    min-height: 26vh;
    filter: none;                            /* plus de brightness — photos lumineuses */
    align-items: flex-end; justify-content: center; text-align: center;
  }
  /* Gradient bas plus subtil — labels lisibles sans assombrir les photos */
  .quad-panel::before {
    background: linear-gradient(180deg, transparent 40%, rgba(9, 55, 70, 0.40) 70%, rgba(9, 55, 70, 0.88) 100%);
  }
  .quad-content h2 { font-size: clamp(20px, 5vw, 26px); margin-bottom: 4px; }
  .quad-num { font-size: 12px; margin-bottom: 3px; }
  .quad-link { font-size: 9px; letter-spacing: 3px; opacity: 1; transform: none; }
  .quad-badge { font-size: 8px; letter-spacing: 2px; padding: 3px 8px; margin-bottom: 5px; }
  .hero-overlay-center {
    position: relative; inset: auto;
    padding: 90px 24px 36px;                 /* compact — laisse les cards visibles */
    background: var(--teal-deep);
  }
  .hero-brand-question { max-width: 16ch; margin-bottom: 18px; }
  .hero-tagline { margin-bottom: 14px; }
  .hero-sub-meta { letter-spacing: 3px; }
  .hero-brand-massive { font-size: clamp(48px, 13vw, 88px); }
  .hero-brand-iso { height: clamp(140px, 28vw, 200px); }
  .hero-scroll-cue { display: none; }
}
@media (max-width: 480px) {
  /* iPhone / mobile portrait étroit — encore plus compact */
  .quad-grid { grid-template-rows: repeat(2, 22vh); gap: 2px; padding: 0 10px 20px; }
  .quad-panel { min-height: 22vh; padding: 12px 8px 16px; }
  .quad-content h2 { font-size: clamp(18px, 5.5vw, 22px); }
  .quad-num { font-size: 11px; }
  .hero-overlay-center { padding: 80px 18px 28px; }
  .hero-brand-question { max-width: 14ch; line-height: 1.1; margin-bottom: 14px; }
  .hero-tagline { margin-bottom: 10px; font-size: clamp(15px, 4vw, 18px); }
  .hero-sub-meta { font-size: 10px; letter-spacing: 2px; }
}

/* ───── Hero (subpages — classique) ───── */
.hero { position: relative; height: 100vh; min-height: 640px; overflow: hidden; background: var(--night); }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.08);
  animation: hero-park 14s ease infinite alternate;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    /* v144 : gradient gauche → garantir lisibilité sur les heros avec texte aligné à gauche
       (cas: photos rendus 3D / interieurs clairs sur lesquels le titre cream disparaissait) */
    linear-gradient(90deg, rgba(0, 28, 42, 0.75) 0%, rgba(0, 28, 42, 0.35) 45%, rgba(0, 28, 42, 0) 70%),
    /* v35 : vignette radiale centrale (renforcée v144 : 0.65 → 0.78) */
    radial-gradient(ellipse 60% 60% at center, rgba(0, 32, 48, 0.78) 0%, rgba(0, 32, 48, 0.0) 75%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(0, 70, 94, 0.55) 60%, rgba(0, 70, 94, 0.95) 100%);
}

/* ═════════ Carrousel hero (page /locations/) ═════════ */
.hero-carousel-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.6s ease-in-out;
  will-change: opacity, transform;
}
.hero-carousel-slide.is-active {
  opacity: 1;
  animation: hero-carousel-park 9s ease-out forwards;
  z-index: 1;
}
@keyframes hero-carousel-park {
  from { transform: scale(1.08); }
  to   { transform: scale(1.17); }
}
@keyframes hero-park { from { transform: scale(1.08); } to { transform: scale(1.17); } }
.hero-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
}
.hero-content-left {
  align-items: flex-start;
  justify-content: center;             /* centre verticalement */
  text-align: left;
  /* v67 : padding-left aligne le texte sur le 1er item du menu (CONCIERGERIE).
     Au-delà de 1280px (menu visible) on pousse à 22% pour matcher la position
     centrée du menu ; en-dessous (hamburger actif) on revient au var(--pad-x). */
  padding-top: 130px;
  padding-right: var(--pad-x);
  padding-bottom: 80px;
  padding-left: clamp(var(--pad-x), 22%, 380px);
  max-width: none;
  margin: 0;
  width: 100%;
  min-height: 100%;
}
/* Sous 1280px le menu passe en hamburger : on aligne le hero sur var(--pad-x) */
@media (max-width: 1280px) {
  .hero-content-left {
    padding-left: var(--pad-x);
  }
}
@media (max-width: 600px) {
  .hero-content-left {
    padding: 110px var(--pad-x) 60px;
  }
}

/* v35 : hero centré façon architecture-dinterieur référence */
.hero-content-center {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px var(--pad-x) 80px;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 100%;
}
.hero-title-center {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(40px, 5.5vw, 84px);
  line-height: 1.1;
  color: var(--cream);
  margin: 0 0 28px;
  max-width: 22ch;
  /* Pas de césure dans les heros */
  hyphens: none; -webkit-hyphens: none;
  word-wrap: normal; overflow-wrap: normal;
  opacity: 0; transform: translateY(40px);
  animation: rise 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.7s forwards;
  text-shadow: 0 8px 60px rgba(0, 0, 0, 0.5);
}
/* Sécurité générale : aucune césure sur tous les titres de hero */
.hero .hero-title,
.hero .hero-title-center,
.hero .hero-title-massive,
.hero .hero-subtitle,
.hero .hero-sub {
  hyphens: none !important;
  -webkit-hyphens: none !important;
  word-break: normal;
  overflow-wrap: normal;
}

/* v63 : tous les heros aligne le texte à gauche (sur le premier item du menu).
   Quand .hero-content-left contient un filet doré et un sous-titre (anciennement
   centrés), on les ré-aligne à gauche aussi pour que la composition reste cohérente. */
.hero-content-left .hero-divider {
  margin: 0 0 24px;        /* plus de margin auto qui re-centrerait le filet */
}
.hero-content-left .hero-title {
  /* Identique à hero-title-center mais aligné gauche */
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
}
.hero-content-left .hero-subtitle {
  text-align: left;
}
.hero-divider {
  display: block;
  width: 64px; height: 1px;
  background: var(--gold);
  margin: 0 auto 24px;
  opacity: 0;
  animation: fade 1s ease 1.15s forwards;
}
.hero-subtitle {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(16px, 1.6vw, 22px);
  color: var(--cream-soft);
  margin: 0;
  opacity: 0; transform: translateY(20px);
  animation: rise 1s ease 1.4s forwards;
}
@media (max-width: 768px) {
  .hero-content-center { padding: 110px var(--pad-x) 60px; }
  .hero-title-center { font-size: clamp(32px, 8vw, 52px); margin-bottom: 22px; }
  .hero-divider { margin-bottom: 18px; }
  .hero-subtitle { font-size: clamp(14px, 4vw, 18px); }
}

.hero-eyebrow {
  font-family: var(--sans); font-size: var(--tag);
  letter-spacing: var(--ls-tag); text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
  opacity: 0; transform: translateY(20px);
  animation: rise 1s ease 0.5s forwards;
}
.hero-eyebrow-new {
  display: inline-block; padding: 6px 14px;
  background: rgba(196, 165, 119, 0.15);
  border: 1px solid var(--gold); color: var(--gold);
}

.hero-title, .hero-title-massive {
  font-family: var(--serif); font-weight: 300;
  color: var(--cream); line-height: 1.0;
  margin-bottom: 32px;
}
.hero-title-massive { font-size: clamp(56px, 11vw, 160px); }
.hero-title-massive .line { display: block; opacity: 0; transform: translateY(80px); }
.hero-title-massive .line:nth-child(1) { animation: rise 1.2s cubic-bezier(0.2,0.8,0.2,1) 0.7s forwards; }
.hero-title-massive .line:nth-child(2) { animation: rise 1.2s cubic-bezier(0.2,0.8,0.2,1) 0.95s forwards; }
.hero-title-massive .line:nth-child(3) { animation: rise 1.2s cubic-bezier(0.2,0.8,0.2,1) 1.2s forwards; }
.hero-title-massive em { font-style: italic; font-weight: 300; color: var(--cream); }
.hero-title-massive strong { font-weight: 500; font-style: normal; color: var(--gold); letter-spacing: -0.02em; }

.hero-title { font-size: clamp(36px, 4.6vw, 78px); font-style: normal; line-height: 1.05; word-wrap: normal; overflow-wrap: normal; hyphens: none; -webkit-hyphens: none;
  /* v144 : text-shadow renforcé pour lisibilité sur fonds clairs */
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.7), 0 4px 12px rgba(0, 0, 0, 0.45), 0 1px 2px rgba(0, 0, 0, 0.55);
}
.hero-title em { font-style: italic; color: var(--cream); }
.hero-title span { display: block; color: var(--gold); font-style: italic; }
/* v144 : sous-titres avec text-shadow plus prononcé */
.hero-subtitle, .hero-sub, .hero-sub-left {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.55);
}

.hero-sub {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(17px, 1.7vw, 21px);
  color: var(--cream-soft); max-width: 620px; line-height: 1.55;
  margin: 0 auto 36px;
  opacity: 0; transform: translateY(20px);
  animation: rise 1s ease 1.6s forwards;
}
.hero-sub-left {
  margin: 0 0 36px;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--cream-soft); max-width: 580px; line-height: 1.55;
  opacity: 0; transform: translateY(20px);
  animation: rise 1s ease 1.2s forwards;
}

.hero-cta-row {
  display: flex; gap: 18px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: rise 1s ease 1.9s forwards;
  justify-content: center;
}
.hero-content-left .hero-cta-row { justify-content: flex-start; }

/* Scroll-cue : positionné sur l'axe central exact de la page (v83) */
.hero-scroll-cue {
  position: absolute; bottom: 28px;
  /* v83 : centrage robuste via inset-inline + margin auto (pas left:50% + translate
     qui peut décaler avec scrollbar / contexte de positionnement). */
  left: 0; right: 0;
  margin-left: auto; margin-right: auto;
  width: fit-content;
  z-index: 5;
  font-family: var(--sans); font-size: 9px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--cream);
  /* v79 : visible par défaut, animation = enhancement */
  opacity: 1;
  animation: fade 1s ease 2.4s;
  padding: 8px 14px;
  background: rgba(0, 32, 48, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 2px;
  text-align: center;
  pointer-events: none;
}
.hero-scroll-cue::after {
  content: ''; display: block; width: 1px; height: 28px;
  background: var(--gold); margin: 8px auto 0;
  animation: scroll-pulse 2s ease infinite;
}
/* v79 : keyframes 'rise' explicite from→to pour fonctionner même si l'état initial
   de l'élément est déjà visible (opacity:1). Évite que l'élément reste invisible
   sur iOS Safari quand l'animation se loupe (bfcache, restauration page). */
@keyframes rise {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade { to { opacity: 1; } }
@keyframes scroll-pulse { 0%,100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.5); opacity: 0.4; } }

.crumb {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--cream-soft); margin-bottom: 24px;
  opacity: 0; animation: fade 1s ease 0.6s forwards;
}
.crumb a:hover { color: var(--gold); }
.crumb span:first-of-type { margin: 0 8px; color: var(--gold); }

/* ───── Hero subpage hauteur réduite ───── */
/* Hero subpage : hauteur auto qui s'adapte au contenu — empêche tout overflow/chevauchement */
.hero-subpage {
  height: auto;
  min-height: 580px;
  max-height: 78vh;
  display: flex;
  flex-direction: column;
}

/* ───── Sections ───── */
section { position: relative; padding: 130px var(--pad-x); }
.container { max-width: 1320px; margin: 0 auto; }
.container-narrow { max-width: 820px; margin: 0 auto; }
.section-tag {
  font-family: var(--sans); font-size: var(--tag);
  letter-spacing: var(--ls-tag); text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.section-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.08; color: var(--cream);
  margin-bottom: 28px; max-width: 900px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title-sm {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15; color: var(--cream);
  margin-bottom: 28px;
}
.section-title-sm em { font-style: italic; color: var(--gold); }
.section-rule { width: 48px; height: 1px; background: var(--gold); margin: 36px 0; }

/* ───── Reveal anim ───── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* ───── Buttons ───── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px;
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 4px; text-transform: uppercase;
  border: 1px solid currentColor;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: translateY(101%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); z-index: -1;
}
.btn:hover::before { transform: translateY(0); }
.btn-gold { color: var(--gold); border-color: var(--gold); }
.btn-gold:hover { color: var(--night); }
.btn-ghost { color: var(--cream); border-color: var(--cream); }
.btn-ghost:hover { color: var(--night); }
.btn-gold-lg { color: var(--gold); border-color: var(--gold); padding: 20px 38px; font-size: 12px; }
.btn-gold-lg:hover { color: var(--night); }
.btn-link {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; color: var(--cream-soft);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px; transition: color 0.3s;
}
.btn-link:hover { color: var(--gold); }

/* ───── Marquee ───── */
.marquee {
  overflow: hidden; padding: 28px 0;
  border-top: 1px solid rgba(196, 165, 119, 0.18);
  border-bottom: 1px solid rgba(196, 165, 119, 0.18);
  background: var(--teal-darker);
}
.marquee-track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: marq 50s linear infinite;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px); color: var(--cream);
}
.marquee-track em { color: var(--gold); font-style: italic; }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ───── Manifest ───── */
.manifest { background: var(--teal); }
.manifest-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.manifest-text {
  font-family: var(--serif); font-size: 21px;
  line-height: 1.7; color: var(--cream-soft);
  margin-bottom: 40px;
}
.manifest-stats {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 32px; padding-top: 12px;
}
.stat { padding-top: 20px; border-top: 1px solid rgba(196, 165, 119, 0.3); }
.stat-num {
  font-family: var(--serif); font-style: italic;
  font-size: 52px; line-height: 1; color: var(--cream);
  margin-bottom: 8px;
}
.stat-lbl {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
}
@media (max-width: 900px) { .manifest-grid { grid-template-columns: 1fr; gap: 48px; } .manifest-stats { grid-template-columns: 1fr 1fr; } }

/* ───── Pillars ───── */
.pillars { background: var(--teal-deep); }
.pillars-head { margin-bottom: 64px; }
.pillars-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.pillar-card {
  position: relative; aspect-ratio: 4/3;
  overflow: hidden; cursor: pointer;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  border: 1px solid rgba(196, 165, 119, 0.18);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pillar-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  filter: brightness(0.45);
}
.pillar-card:hover .pillar-img {
  transform: scale(1.08); filter: brightness(0.3);
}
.pillar-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(9, 55, 70, 0.92) 100%);
  z-index: 1;
}
.pillar-num {
  position: absolute; top: 32px; right: 32px;
  font-family: var(--serif); font-style: italic;
  font-size: 28px; color: var(--gold); z-index: 2;
}
.pillar-meta {
  position: relative; z-index: 2;
  font-family: var(--sans); font-size: 9px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.pillar-meta-new {
  display: inline-block; padding: 5px 10px;
  background: rgba(196, 165, 119, 0.18);
  border: 1px solid var(--gold); color: var(--gold);
}
.pillar-name {
  position: relative; z-index: 2;
  font-family: var(--serif); font-style: italic;
  font-weight: 300; font-size: clamp(34px, 4vw, 52px);
  color: var(--cream); margin-bottom: 16px;
  line-height: 1.05;
}
.pillar-desc {
  position: relative; z-index: 2;
  font-size: 16px; line-height: 1.55;
  color: var(--cream-soft); max-width: 480px;
  margin-bottom: 20px;
}
.pillar-link {
  position: relative; z-index: 2;
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  align-self: flex-start;
}
@media (max-width: 900px) { .pillars-grid { grid-template-columns: 1fr; } .pillar-card { aspect-ratio: 5/4; padding: 28px; } }

/* ───── Testimonials ───── */
.testimonials { background: var(--teal); padding-top: 130px; padding-bottom: 130px; }
.testi-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 36px; margin-top: 64px;
}
.testi-card {
  border-top: 1px solid rgba(196, 165, 119, 0.3);
  padding-top: 28px;
}
.testi-card p {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; line-height: 1.55;
  color: var(--cream); margin-bottom: 28px;
}
.testi-card footer {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
}
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

/* ───── Territory ───── */
.territory { background: var(--teal-darker); }
.territory-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: center;
  margin-top: 64px;
}
.territory-list { list-style: none; }
.territory-list li {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(196, 165, 119, 0.18);
}
.city-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.territory-list strong {
  font-family: var(--serif); font-style: italic;
  font-weight: 400; font-size: 28px; color: var(--cream);
  flex: 1;
}
.territory-list em {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-style: normal;
}
.territory-map svg { width: 100%; height: auto; max-height: 480px; }
@media (max-width: 900px) { .territory-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ───── CTA ───── */
.cta-block { background: var(--night); padding: 140px var(--pad-x); }
.cta-block .container { text-align: center; }
.cta-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1; color: var(--cream);
  margin: 0 auto 40px; max-width: 880px;
}
.cta-title em { font-style: italic; color: var(--gold); }
.cta-row {
  display: flex; gap: 24px; flex-wrap: wrap;
  align-items: center; justify-content: center;
}

/* ═════════ Page CONCIERGERIE ═════════ */
.services-grid-section { background: var(--teal); }
.services-grid {
  display: flex; flex-direction: column; gap: 0;
  margin-top: 64px;
}
.service-row {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 48px; padding: 48px 0;
  border-top: 1px solid rgba(196, 165, 119, 0.2);
  align-items: start;
}
.service-row:last-child { border-bottom: 1px solid rgba(196, 165, 119, 0.2); }
.service-num {
  font-family: var(--serif); font-style: italic;
  font-size: 48px; color: var(--gold);
  line-height: 1;
}
.service-body h3 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--cream); margin-bottom: 16px;
}
.service-body p {
  font-size: 17px; line-height: 1.65;
  color: var(--cream-soft); max-width: 720px;
  margin-bottom: 22px;
}
.service-tags {
  display: flex; gap: 8px; flex-wrap: wrap; list-style: none;
}
.service-tags li {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); padding: 6px 12px;
  border: 1px solid rgba(196, 165, 119, 0.4);
  transition: background 0.3s, color 0.3s;
}
.service-tags li a { color: inherit; }
.service-tags li:has(a):hover { background: var(--gold); color: var(--night); }
.service-readmore {
  display: inline-block; margin-top: 22px;
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  transition: letter-spacing 0.3s;
}
.service-readmore:hover { letter-spacing: 5px; }

/* ───── Sub-page conciergerie ───── */
.subpage-intro { background: var(--teal); }
.intro-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 80px; align-items: center;
}
.intro-text p {
  font-family: var(--serif); font-size: 20px;
  line-height: 1.7; color: var(--cream-soft);
  margin-bottom: 22px;
}
.intro-media img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
@media (max-width: 900px) { .intro-grid { grid-template-columns: 1fr; gap: 48px; } }

.subservices-section { background: var(--teal-deep); }
.subservices-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin-top: 64px;
}
.subservice-card {
  position: relative;
  padding: 40px 36px 36px;
  border: 1px solid rgba(196, 165, 119, 0.25);
  background: rgba(9, 55, 70, 0.4);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  display: flex; flex-direction: column;
}
.subservice-card:hover {
  transform: translateY(-6px); border-color: var(--gold);
  background: var(--teal);
}

/* Variant: card avec image en background */
.subservice-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  padding: 0;
  background: var(--night);
  border-color: rgba(196, 165, 119, 0.3);
}
.subservice-card-img .subservice-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  filter: brightness(0.55);
}
.subservice-card-img:hover .subservice-img {
  transform: scale(1.06); filter: brightness(0.4);
}
.subservice-card-img .subservice-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(9, 55, 70, 0.93) 100%);
  z-index: 1;
}
.subservice-card-img .subservice-inner {
  position: relative; z-index: 2;
  padding: 36px 36px 32px;
  display: flex; flex-direction: column;
  height: 100%; justify-content: flex-end;
}
.subservice-card-img:hover {
  transform: translateY(-8px);
  background: var(--night);
  border-color: var(--gold);
}
.subservice-card-img .subservice-num {
  position: absolute; top: 28px; right: 32px;
  z-index: 2; margin-bottom: 0;
  font-size: 24px;
}
.subservice-card-img h3 { margin-bottom: 12px; }
.subservice-card-img p {
  max-height: 0; overflow: hidden;
  margin-bottom: 0;
  transition: max-height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), margin 0.5s;
}
.subservice-card-img:hover p {
  max-height: 200px; margin-bottom: 18px;
}
.subservice-num {
  font-family: var(--serif); font-style: italic;
  font-size: 20px; color: var(--gold);
  margin-bottom: 16px;
}
.subservice-card h3 {
  font-family: var(--serif); font-style: italic;
  font-weight: 300; font-size: clamp(26px, 3vw, 36px);
  color: var(--cream); margin-bottom: 14px;
}
.subservice-card p {
  font-size: 16px; line-height: 1.6;
  color: var(--cream-soft); margin-bottom: 24px;
  flex: 1;
}
.subservice-link {
  align-self: flex-start;
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
}
@media (max-width: 900px) { .subservices-grid { grid-template-columns: 1fr; } }

.included-section { background: var(--teal); }
.included-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-top: 64px;
  border-top: 1px solid rgba(196, 165, 119, 0.2);
}
.included-item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(196, 165, 119, 0.2);
  display: flex; align-items: flex-start; gap: 20px;
}
.included-item:nth-child(2n) { border-left: 1px solid rgba(196, 165, 119, 0.2); padding-left: 36px; }
.included-item:nth-child(2n+1) { padding-right: 36px; }
.included-check {
  flex-shrink: 0; width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic;
  color: var(--gold); font-size: 22px;
}
.included-text strong {
  display: block;
  font-family: var(--serif); font-style: italic;
  font-weight: 400; font-size: 20px;
  color: var(--cream); margin-bottom: 4px;
}
.included-text p {
  font-size: 14px; line-height: 1.5;
  color: var(--cream-soft);
}
@media (max-width: 700px) {
  .included-grid { grid-template-columns: 1fr; }
  .included-item:nth-child(2n) { border-left: 0; padding-left: 0; }
  .included-item:nth-child(2n+1) { padding-right: 0; }
}

.subpage-pricing { background: var(--teal-darker); }
.pricing-card {
  max-width: 720px; margin: 0 auto;
  padding: 64px 56px;
  border: 1px solid var(--gold);
  background: rgba(196, 165, 119, 0.06);
  text-align: center;
}
.pricing-card p {
  font-family: var(--serif); font-size: 20px;
  line-height: 1.6; color: var(--cream);
  margin-bottom: 28px;
}
@media (max-width: 600px) { .pricing-card { padding: 40px 28px; } }

/* ───── Parallax background utility ───── */
.parallax-bg { will-change: transform; }

/* ───── Scroll progress indicator ───── */
#scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 9000; pointer-events: none;
}

/* ───── Reduced motion ───── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .parallax-bg { transform: none !important; }
  /* v79 : si motion réduit, on force tous les éléments animés à être visibles d'emblée
     (sans translateY ni opacity 0) sinon ils restent invisibles avec durée 0.01ms. */
  .hero-eyebrow,
  .hero-title-massive .line,
  .hero-title-center,
  .hero-divider,
  .hero-subtitle,
  .hero-brand-question,
  .hero-brand-massive,
  .hero-tagline,
  .hero-sub-meta,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ───── Stats band (animated counters) ───── */
.stats-band {
  background: var(--gold); color: var(--night);
  padding: 80px var(--pad-x);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}
.stat-item {
  text-align: center;
  border-right: 1px solid rgba(10, 10, 10, 0.18);
  padding: 0 16px;
}
.stat-item:last-child { border-right: 0; }
.stat-num-big {
  font-family: var(--serif); font-style: italic;
  font-weight: 300; font-size: clamp(48px, 5vw, 78px);
  line-height: 1; color: var(--night);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.stat-lbl-band {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--night); opacity: 0.7;
  line-height: 1.5;
}
@media (max-width: 1000px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .stat-item { border-right: 0; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(10,10,10,0.18); }
  .stat-item:last-child { border-right: 0; grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: 0 !important; }
}

/* ───── Intro media caption ───── */
.intro-media { position: relative; }
.intro-media-caption {
  position: absolute; bottom: 18px; left: 18px; right: 18px;
  padding: 14px 18px;
  background: rgba(9, 55, 70, 0.85);
  backdrop-filter: blur(8px);
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--cream);
}

/* ───── Méthode (4 étapes) ───── */
.method-section { background: var(--teal-deep); }
.method-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; margin-top: 64px;
  position: relative;
}
.method-grid::before {
  content: ''; position: absolute;
  top: 16px; left: 0; right: 0;
  height: 1px; background: rgba(196, 165, 119, 0.3);
}
.method-step {
  position: relative; padding-top: 36px;
}
.method-step::before {
  content: ''; position: absolute;
  top: 12px; left: 0;
  width: 9px; height: 9px;
  background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 0 5px var(--teal-deep), 0 0 0 6px var(--gold);
}
.method-num {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; color: var(--gold); margin-bottom: 14px;
}
.method-step h4 {
  font-family: var(--serif); font-style: italic;
  font-weight: 400; font-size: 24px;
  color: var(--cream); margin-bottom: 12px;
}
.method-step p { font-size: 15px; line-height: 1.6; color: var(--cream-soft); }
@media (max-width: 900px) {
  .method-grid { grid-template-columns: 1fr 1fr; }
  .method-grid::before { display: none; }
}
@media (max-width: 600px) { .method-grid { grid-template-columns: 1fr; } }

/* ───── Cas d'usage (mini-stories) ───── */
.cases-section { background: var(--teal); }
.cases-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 28px; margin-top: 64px;
}
.case-card {
  background: rgba(9, 55, 70, 0.5);
  border: 1px solid rgba(196, 165, 119, 0.18);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s;
}
.case-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.case-img {
  width: 100%; aspect-ratio: 16/10;
  background-size: cover; background-position: center;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  filter: brightness(0.75);
}
.case-card:hover .case-img { transform: scale(1.06); filter: brightness(0.9); }
.case-body {
  padding: 32px 32px 36px;
  display: flex; flex-direction: column; flex: 1;
}
.case-day {
  font-family: var(--sans); font-size: 9px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(196, 165, 119, 0.3);
}
.case-card h4 {
  font-family: var(--serif); font-style: italic;
  font-weight: 400; font-size: 22px;
  color: var(--cream); margin-bottom: 14px;
}
.case-card p {
  font-size: 15px; line-height: 1.6;
  color: var(--cream-soft); flex: 1;
}
.case-result {
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid rgba(196, 165, 119, 0.18);
  font-family: var(--serif); font-style: italic;
  font-size: 16px; color: var(--gold);
}
@media (max-width: 900px) { .cases-grid { grid-template-columns: 1fr; } }

/* ───── Témoignage grand format avec background ───── */
.testimonial-large-section {
  background: var(--teal-darker);
  position: relative; overflow: hidden;
}
.testimonial-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.15; filter: blur(4px);
}
.testimonial-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5, 40, 49, 0.85) 0%, rgba(5, 40, 49, 0.95) 100%);
}
.testimonial-large-section .container { position: relative; z-index: 2; }
.testimonial-large {
  max-width: 940px; margin: 0 auto;
  text-align: center;
}
.testimonial-large-quote {
  font-family: var(--serif); font-style: italic;
  font-weight: 300; font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.4; color: var(--cream);
  margin-bottom: 40px;
}
.testimonial-large-quote::before { content: '"'; color: var(--gold); margin-right: 8px; }
.testimonial-large-quote::after { content: '"'; color: var(--gold); margin-left: 8px; }
.testimonial-large-author {
  display: inline-flex; align-items: center; gap: 18px;
  text-align: left;
}
.testimonial-large-author img {
  width: 64px; height: 64px;
  border-radius: 50%; object-fit: cover;
  filter: grayscale(0.3);
}
.testimonial-large-author strong {
  display: block; font-family: var(--serif);
  font-style: italic; font-weight: 400; font-size: 22px;
  color: var(--cream);
}
.testimonial-large-author span {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
}

/* ───── Garanties (5 promesses) ───── */
.promises-section { background: var(--teal); }
.promises-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-top: 64px;
  border-top: 1px solid rgba(196, 165, 119, 0.2);
  border-left: 1px solid rgba(196, 165, 119, 0.2);
}
.promise-card {
  padding: 36px;
  border-right: 1px solid rgba(196, 165, 119, 0.2);
  border-bottom: 1px solid rgba(196, 165, 119, 0.2);
}
.promise-num {
  font-family: var(--serif); font-style: italic;
  font-size: 28px; color: var(--gold); margin-bottom: 14px;
}
.promise-card h4 {
  font-family: var(--serif); font-style: italic;
  font-weight: 400; font-size: 22px;
  color: var(--cream); margin-bottom: 10px;
}
.promise-card p { font-size: 15px; line-height: 1.6; color: var(--cream-soft); }
@media (max-width: 700px) {
  .promises-grid { grid-template-columns: 1fr; border-left: 0; }
  .promise-card { border-right: 0; }
}

/* ───── Galerie photos (4 images, basique) ───── */
.gallery-section { background: var(--teal-deep); padding-bottom: 0; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; margin-top: 56px;
}
.gallery-grid img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.gallery-grid img:hover { transform: scale(1.04); }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }

/* ───── Galerie masonry asymétrique (8 images) ───── */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 10px; margin-top: 56px;
}
.gm-tile {
  position: relative; overflow: hidden;
  margin: 0; cursor: pointer;
}
.gm-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.gm-tile:hover img { transform: scale(1.06); }
.gm-tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(9, 55, 70, 0.85) 100%);
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--cream);
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s;
}
.gm-tile:hover figcaption { opacity: 1; transform: translateY(0); }
.gm-tile-tall { grid-row: span 2; }
.gm-tile-wide { grid-column: span 2; }
@media (max-width: 900px) {
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gm-tile-wide { grid-column: span 2; }
}
@media (max-width: 600px) {
  .gallery-masonry { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .gm-tile-tall { grid-row: span 1; }
  .gm-tile-wide { grid-column: span 1; }
}

/* ───── FAQ ───── */
.faq-section { background: var(--teal); }
.faq-list { margin-top: 56px; max-width: 920px; margin-left: auto; margin-right: auto; }
.faq-item {
  border-top: 1px solid rgba(196, 165, 119, 0.25);
  padding: 28px 0;
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1px solid rgba(196, 165, 119, 0.25); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--serif); font-style: italic;
  font-size: 24px; color: var(--cream);
  transition: color 0.3s;
}
.faq-q::after {
  content: '+';
  font-family: var(--serif); font-style: normal;
  color: var(--gold); font-size: 28px; font-weight: 300;
  margin-left: 18px;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-item:hover .faq-q { color: var(--gold); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding-top: 18px;
  font-size: 17px; line-height: 1.65; color: var(--cream-soft);
  max-width: 720px;
}

/* ════════════════════════════════════════════════
   COMPOSANTS CINÉTIQUES (sous-pages dynamiques)
   inspiration : 21st.dev, Aceternity, Framer ResidenceKit
   ════════════════════════════════════════════════ */

/* ───── HERO CINÉTIQUE ───── */
.hero-cinetic {
  position: relative; height: 100vh; min-height: 720px;
  overflow: hidden; background: var(--night);
  display: flex; align-items: center;
  padding: 0 var(--pad-x);
}
.hero-cinetic-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  animation: hero-park-deep 18s ease infinite alternate;
}
@keyframes hero-park-deep { from { transform: scale(1.06); } to { transform: scale(1.14); } }
.hero-cinetic-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(9, 55, 70, 0.45) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(9,55,70,0.75) 70%, rgba(5,40,49,0.95) 100%);
}
.hero-cinetic-content {
  position: relative; z-index: 2;
  max-width: 1320px; margin: 0 auto; width: 100%;
}
.hero-meta {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 36px;
  opacity: 0; transform: translateY(20px);
  animation: rise 1s ease 0.4s forwards;
}
.hero-meta-num {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: var(--gold);
}
.hero-meta-line {
  width: 60px; height: 1px;
  background: var(--gold); opacity: 0.6;
}
.hero-meta-tag {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--cream-soft);
}
.hero-cinetic-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.95; color: var(--cream);
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}
.hero-cinetic-title .word {
  display: inline-block; overflow: hidden;
  vertical-align: top; margin-right: 0.2em;
}
.hero-cinetic-title .word-inner {
  display: inline-block;
  transform: translateY(110%);
  animation: word-rise 1.1s cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
}
.hero-cinetic-title .word:nth-child(1) .word-inner { animation-delay: 0.7s; }
.hero-cinetic-title .word:nth-child(2) .word-inner { animation-delay: 0.9s; }
.hero-cinetic-title em { font-style: italic; color: var(--cream); }
@keyframes word-rise { to { transform: translateY(0); } }
.hero-cinetic-sub {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55; color: var(--cream-soft);
  max-width: 580px; margin-bottom: 48px;
  opacity: 0; transform: translateY(20px);
  animation: rise 1s ease 1.4s forwards;
}
.hero-cinetic-actions {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: rise 1s ease 1.7s forwards;
}
.btn-cinetic {
  position: relative;
  display: inline-flex; align-items: center; gap: 16px;
  padding: 18px 32px;
  border: 1px solid var(--gold); color: var(--gold);
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 4px; text-transform: uppercase;
  overflow: hidden;
  transition: color 0.4s ease;
}
.btn-cinetic::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.6, 0.05, 0.3, 0.95);
  z-index: -1;
}
.btn-cinetic:hover::before { transform: scaleX(1); }
.btn-cinetic:hover { color: var(--night); }
.btn-cinetic-arrow { transition: transform 0.4s ease; }
.btn-cinetic:hover .btn-cinetic-arrow { transform: translateX(6px); }
.hero-cinetic-phone {
  display: flex; flex-direction: column; gap: 4px;
}
.phone-label {
  font-family: var(--sans); font-size: 9px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--cream-soft); opacity: 0.7;
}
.phone-num {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: var(--cream);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.3s;
}
.phone-num:hover { color: var(--gold); }
.hero-cinetic-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  opacity: 0; animation: fade 1s ease 2.5s forwards;
}
.hero-scroll-tag {
  font-family: var(--sans); font-size: 9px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--cream-soft);
}
.hero-scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scroll-line-pulse 2.2s ease infinite;
}
@keyframes scroll-line-pulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.4); opacity: 0.4; }
}

/* ───── STATS CINÉTIQUES (slot machine) ───── */
.stats-cinetic { background: var(--cream); color: var(--night); padding: 100px var(--pad-x); }
.stats-cinetic-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.stat-cinetic {
  padding: 24px;
  border-left: 1px solid rgba(10, 10, 10, 0.12);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.stat-cinetic:first-child { border-left: 0; }
.stat-cinetic-num {
  font-family: var(--serif); font-style: italic;
  font-weight: 300; font-size: clamp(56px, 6vw, 92px);
  line-height: 0.95; color: var(--night);
  letter-spacing: -0.02em;
  display: inline-flex; align-items: baseline;
}
.stat-cinetic-num em {
  font-family: var(--sans); font-style: normal;
  font-size: 0.4em; margin-left: 0.1em;
  letter-spacing: 2px; text-transform: uppercase;
}
.stat-cinetic-lbl {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--night); opacity: 0.7;
  line-height: 1.6;
}
@media (max-width: 1000px) {
  .stats-cinetic-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cinetic { border-left: 0; border-top: 1px solid rgba(10,10,10,0.12); padding: 32px 16px; }
  .stat-cinetic:nth-child(odd) { border-left: 0; }
  .stat-cinetic:nth-child(even) { border-left: 1px solid rgba(10,10,10,0.12); }
  .stat-cinetic:nth-child(5) { grid-column: span 2; border-left: 0; }
}

/* ───── STICKY SCROLL REVEAL ───── */
.sticky-reveal {
  background: var(--teal-deep);
  padding: 140px var(--pad-x);
}
.sticky-reveal-header { margin-bottom: 100px; max-width: 900px; }
.sticky-reveal-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.sticky-reveal-images {
  position: sticky; top: 100px;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid rgba(196, 165, 119, 0.2);
}
.sticky-reveal-image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sticky-reveal-image.active {
  opacity: 1; transform: scale(1);
}
.sticky-reveal-content {
  display: flex; flex-direction: column; gap: 0;
}
.sr-item {
  min-height: 90vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 0;
  position: relative;
  transition: opacity 0.5s ease;
  opacity: 0.35;
}
.sr-item.is-active { opacity: 1; }
.sr-item-num {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(196, 165, 119, 0.3);
  width: fit-content;
}
.sr-item h3 {
  font-family: var(--serif); font-style: italic;
  font-weight: 300; font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05; color: var(--cream);
  margin-bottom: 22px;
}
.sr-item p {
  font-size: 18px; line-height: 1.65;
  color: var(--cream-soft); margin-bottom: 28px;
  max-width: 520px;
}
.sr-item-link {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  width: fit-content;
  transition: letter-spacing 0.3s;
}
.sr-item-link:hover { letter-spacing: 5px; }
@media (max-width: 900px) {
  .sticky-reveal-layout { grid-template-columns: 1fr; gap: 40px; }
  .sticky-reveal-images { position: relative; top: 0; aspect-ratio: 4/3; }
  .sr-item { min-height: auto; padding: 40px 0; opacity: 1; }
}

/* ───── CARDS STACK ───── */
.cards-stack-section { background: var(--teal); padding: 140px var(--pad-x); }
.cards-stack-header { margin-bottom: 80px; max-width: 900px; }
.cards-stack-intro {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; color: var(--cream-soft); margin-top: 14px;
}
.cards-stack-rail {
  position: relative;
}
.stack-card {
  position: sticky;
  top: calc(110px + var(--i) * 24px);
  background: var(--teal-deep);
  border: 1px solid rgba(196, 165, 119, 0.25);
  padding: 50px 56px;
  margin-bottom: 24px;
  display: grid; grid-template-columns: 100px 1fr 120px;
  gap: 48px; align-items: center;
  transform-origin: top center;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.stack-card-num {
  font-family: var(--serif); font-style: italic;
  font-size: 48px; color: var(--gold); line-height: 1;
}
.stack-card h3 {
  font-family: var(--serif); font-style: italic;
  font-weight: 300; font-size: clamp(28px, 3vw, 38px);
  color: var(--cream); margin-bottom: 12px;
}
.stack-card p {
  font-size: 16px; line-height: 1.6;
  color: var(--cream-soft);
}
.stack-card-day {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); text-align: right;
  padding-right: 12px;
  border-right: 2px solid var(--gold);
}
@media (max-width: 900px) {
  .stack-card {
    grid-template-columns: 1fr;
    padding: 32px 28px;
    top: 110px;
  }
  .stack-card-num { font-size: 36px; }
  .stack-card-day { text-align: left; border-right: 0; border-top: 1px solid var(--gold); padding-right: 0; padding-top: 10px; }
}

/* ───── HORIZONTAL SCROLL — Cas d'usage ───── */
.hscroll-section { background: var(--teal-darker); }
.hscroll-section .container { padding-top: 140px; }
.hscroll-header { margin-bottom: 80px; max-width: 900px; }
.hscroll-pin {
  position: relative;
  height: 320vh;
}
.hscroll-track {
  position: sticky; top: 0;
  height: 100vh;
  display: flex; align-items: center; gap: 32px;
  padding: 0 8vw;
  will-change: transform;
}
.hcase {
  flex: 0 0 80vw;
  max-width: 1100px;
  height: 70vh; min-height: 520px;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--teal);
  border: 1px solid rgba(196, 165, 119, 0.18);
  overflow: hidden;
}
.hcase-img {
  background-size: cover; background-position: center;
}
.hcase-body {
  padding: 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.hcase-day {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(196, 165, 119, 0.3);
}
.hcase h4 {
  font-family: var(--serif); font-style: italic;
  font-weight: 300; font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1; color: var(--cream);
  margin-bottom: 20px;
}
.hcase p {
  font-size: 17px; line-height: 1.65;
  color: var(--cream-soft);
  margin-bottom: 26px;
}
.hcase-result {
  font-family: var(--serif); font-style: italic;
  font-size: 19px; color: var(--gold);
  padding-top: 18px;
  border-top: 1px solid rgba(196, 165, 119, 0.3);
}
.hscroll-progress {
  position: absolute; bottom: 60px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 2px;
  background: rgba(196, 165, 119, 0.2);
}
.hscroll-progress-bar {
  width: 33%; height: 100%; background: var(--gold);
  transition: width 0.1s linear;
}
@media (max-width: 900px) {
  .hscroll-pin { height: auto; }
  .hscroll-track {
    position: relative; height: auto;
    flex-direction: column; padding: 0 var(--pad-x);
    gap: 40px;
  }
  .hcase {
    flex: 0 0 auto; width: 100%; height: auto;
    grid-template-columns: 1fr; min-height: 0;
  }
  .hcase-img { aspect-ratio: 16/10; }
  .hcase-body { padding: 36px 32px; }
  .hscroll-progress { display: none; }
}

/* ───── TÉMOIGNAGE CINÉMA ───── */
.testi-cinema {
  position: relative; overflow: hidden;
  padding: 200px var(--pad-x);
  background: var(--night);
}
.testi-cinema-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.25; filter: blur(2px);
  transform: scale(1.06);
}
.testi-cinema-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.7) 80%),
    linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.85) 100%);
}
.testi-cinema .container { position: relative; z-index: 2; }
.testi-cinema-content { max-width: 1100px; margin: 0 auto; text-align: center; }
.testi-cinema-stars {
  font-size: 18px; letter-spacing: 6px;
  color: var(--gold); margin-bottom: 36px;
}
.testi-cinema-quote {
  font-family: var(--serif); font-style: italic;
  font-weight: 300; font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.25; color: var(--cream);
  margin-bottom: 48px;
}
.testi-cinema-quote .word {
  display: inline-block;
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  margin-right: 0.2em;
}
.testi-cinema-quote.in .word { opacity: 1; transform: translateY(0); }
.testi-cinema-quote.in .word:nth-child(1) { transition-delay: 0.05s; }
.testi-cinema-quote.in .word:nth-child(2) { transition-delay: 0.10s; }
.testi-cinema-quote.in .word:nth-child(3) { transition-delay: 0.15s; }
.testi-cinema-quote.in .word:nth-child(4) { transition-delay: 0.20s; }
.testi-cinema-quote.in .word:nth-child(5) { transition-delay: 0.25s; }
.testi-cinema-quote.in .word:nth-child(6) { transition-delay: 0.30s; }
.testi-cinema-quote.in .word:nth-child(7) { transition-delay: 0.35s; }
.testi-cinema-quote.in .word:nth-child(8) { transition-delay: 0.40s; }
.testi-cinema-quote.in .word:nth-child(9) { transition-delay: 0.45s; }
.testi-cinema-quote.in .word:nth-child(10) { transition-delay: 0.50s; }
.testi-cinema-quote.in .word:nth-child(11) { transition-delay: 0.55s; }
.testi-cinema-quote.in .word:nth-child(12) { transition-delay: 0.60s; }
.testi-cinema-quote.in .word:nth-child(13) { transition-delay: 0.65s; }
.testi-cinema-quote.in .word:nth-child(14) { transition-delay: 0.70s; }
.testi-cinema-quote.in .word:nth-child(15) { transition-delay: 0.75s; }
.testi-cinema-quote.in .word:nth-child(16) { transition-delay: 0.80s; }
.testi-cinema-author {
  display: inline-flex; flex-direction: column; gap: 4px;
}
.testi-cinema-author strong {
  font-family: var(--serif); font-style: italic;
  font-weight: 400; font-size: 22px; color: var(--cream);
}
.testi-cinema-author span {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
}

/* ───── BENTO 3D TILT — Promesses ───── */
.bento-section { background: var(--teal); padding: 140px var(--pad-x); }
.bento-header { margin-bottom: 64px; max-width: 900px; }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.bento-tile {
  position: relative;
  background: var(--teal-darker);
  border: 1px solid rgba(196, 165, 119, 0.18);
  padding: 36px;
  min-height: 280px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: border-color 0.4s, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-style: preserve-3d;
}
.bento-tile-lg {
  grid-column: span 2;
  min-height: 320px;
}
.bento-tile:hover {
  border-color: var(--gold);
  background: var(--teal-deep);
}
.bento-tile-num {
  font-family: var(--serif); font-style: italic;
  font-size: 36px; color: var(--gold); line-height: 1;
  margin-bottom: 18px;
}
.bento-tile h4 {
  font-family: var(--serif); font-style: italic;
  font-weight: 400; font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15; color: var(--cream);
  margin-bottom: 14px;
}
.bento-tile p {
  font-size: 15px; line-height: 1.55;
  color: var(--cream-soft);
}
.tilt-card {
  will-change: transform;
}
.tilt-card > * {
  transform: translateZ(20px);
  transition: transform 0.4s;
}
@media (max-width: 900px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-tile-lg { grid-column: span 2; }
}
@media (max-width: 600px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-tile, .bento-tile-lg { grid-column: span 1; }
}

/* ───── GALERIE Marquee multi-vitesses ───── */
.gal-marquee-section { background: var(--teal-deep); padding: 140px 0 0; overflow: hidden; }
.gal-marquee-header { max-width: 900px; padding: 0 var(--pad-x); margin-bottom: 80px; }
.gal-marquee {
  display: flex; flex-direction: column; gap: 18px;
  padding-bottom: 140px;
}
.gal-marquee-row {
  display: flex; gap: 18px;
  width: max-content;
  animation: gal-marquee-anim calc(40s / var(--speed, 1)) linear infinite;
}
.gal-marquee-row img {
  height: 380px; width: auto;
  object-fit: cover;
  border: 1px solid rgba(196, 165, 119, 0.1);
  flex-shrink: 0;
}
.gal-marquee-reverse {
  animation-direction: reverse;
  margin-left: -100px;
}
@keyframes gal-marquee-anim {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .gal-marquee-row img { height: 240px; }
}

/* ════════════════════════════════════════════════════════
   PROPERTY MANAGEMENT — FICHE STRUCTURÉE
   Inspiration : B&B Italia, Vitra, Carl Hansen & Søn.
   Header de fiche + sidebar sticky + chapitres numérotés
   + galerie en grille 3×3 + table éditoriale fine.
   ════════════════════════════════════════════════════════ */

.page-pm-fiche {
  --fi-pad: clamp(28px, 5vw, 64px);
  --fi-maxw: 1480px;
  --fi-air: clamp(80px, 10vw, 140px);
  --fi-air-lg: clamp(120px, 14vw, 200px);
  --fi-border: rgba(196, 165, 119, 0.22);
}
.page-pm-fiche section,
.page-pm-fiche header { padding: 0; }

/* ───── HEADER FICHE ───── */
.fi-header {
  background: var(--teal-deep);
  padding: 140px var(--fi-pad) var(--fi-air) !important;
  border-bottom: 1px solid var(--fi-border);
}
.fi-header-grid {
  max-width: var(--fi-maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.fi-header-meta {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--cream-soft);
}
.fi-header-meta .crumb a:hover { color: var(--gold); }
.fi-header-meta .crumb-current { color: var(--gold); }
.fi-header-meta .crumb span { margin: 0 6px; opacity: 0.5; }
.fi-header-meta .crumb a + span,
.fi-header-meta .crumb span + a { opacity: 1; margin: 0; }
.fi-header-grid-cols {
  display: grid; grid-template-columns: 1fr;
  gap: 48px;
}
.fi-header-fig {
  margin: 0;
  grid-column: 1 / -1;
}
.fi-header-img {
  width: 100%; aspect-ratio: 21/9;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
}
.fi-header-imgcap {
  margin-top: 14px;
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--cream-soft); opacity: 0.7;
}
.fi-header-body {
  max-width: 920px;
  display: grid; grid-template-columns: auto 1fr;
  gap: 36px 56px;
  align-items: start;
}
@media (min-width: 1100px) {
  .fi-header-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: end;
  }
  .fi-header-meta {
    grid-column: 1 / -1;
  }
  .fi-header-fig {
    grid-column: 1 / 2;
  }
  .fi-header-body {
    grid-column: 2 / 3;
    display: block;
  }
}
.fi-no {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 28px;
  font-family: var(--serif); font-style: italic;
  color: var(--gold);
}
.fi-no-label { font-size: 14px; }
.fi-no-label sup { font-size: 0.7em; vertical-align: super; }
.fi-no-num { font-size: 42px; line-height: 1; }
.fi-tag {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--fi-border);
  width: fit-content;
}
.fi-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.05; color: var(--cream);
  letter-spacing: -0.015em;
  margin: 0 0 28px;
}
.fi-title em { font-style: italic; color: var(--gold); }
.fi-summary {
  font-family: var(--serif);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65; color: var(--cream-soft);
  margin: 0 0 40px; max-width: 580px;
}

.fi-specs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0 0 40px;
  border-top: 1px solid var(--fi-border);
}
.fi-spec {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--fi-border);
  align-items: baseline;
}
.fi-spec:nth-child(odd) { border-right: 1px solid var(--fi-border); padding-right: 24px; }
.fi-spec:nth-child(even) { padding-left: 24px; }
.fi-spec dt {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
}
.fi-spec dd {
  font-family: var(--serif); font-size: 15px;
  color: var(--cream); line-height: 1.5;
}
@media (max-width: 700px) {
  .fi-specs { grid-template-columns: 1fr; }
  .fi-spec:nth-child(odd),
  .fi-spec:nth-child(even) { border-right: 0; padding: 18px 0; }
  .fi-spec { grid-template-columns: 110px 1fr; gap: 14px; }
}

.fi-cta {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
  padding: 16px 28px;
  border: 1px solid var(--gold);
  background: transparent;
  transition: background 0.3s ease, color 0.3s ease, gap 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fi-cta:hover {
  background: var(--gold);
  color: var(--night);
  gap: 22px;
}
.fi-cta-arr { transition: transform 0.4s ease; }
.fi-cta:hover .fi-cta-arr { transform: translateX(4px); }

/* ───── MAIN : sidebar + content ───── */
.fi-main {
  background: var(--teal-deep);
  position: relative;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(40px, 5vw, 80px);
  max-width: var(--fi-maxw);
  margin: 0 auto;
  padding: var(--fi-air-lg) var(--fi-pad);
}
@media (max-width: 1000px) {
  .fi-main { grid-template-columns: 1fr; gap: 0; padding: var(--fi-air) var(--fi-pad); }
  .fi-sidebar { display: none; }
}

/* ───── SIDEBAR sticky ───── */
.fi-sidebar {
  position: relative;
}
.fi-sidebar-inner {
  position: sticky;
  top: 110px;
  display: flex; flex-direction: column;
  gap: 32px;
}
.fi-sidebar-label {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--fi-border);
}
.fi-toc {
  display: flex; flex-direction: column;
  gap: 0;
}
.fi-toc-link {
  display: grid; grid-template-columns: 36px 1fr;
  align-items: baseline; gap: 14px;
  padding: 12px 0;
  position: relative;
  transition: color 0.3s ease, padding-left 0.3s ease;
  color: var(--cream-soft);
}
.fi-toc-link::before {
  content: ''; position: absolute;
  left: -16px; top: 50%;
  width: 8px; height: 1px;
  background: var(--gold);
  transform: translateY(-50%) scaleX(0);
  transform-origin: right center;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fi-toc-link.active {
  color: var(--cream);
  padding-left: 14px;
}
.fi-toc-link.active::before {
  transform: translateY(-50%) scaleX(1);
}
.fi-toc-link:hover { color: var(--gold); }
.fi-toc-num {
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--gold);
}
.fi-toc-name {
  font-family: var(--serif); font-style: italic;
  font-size: 17px;
}
.fi-sidebar-foot {
  padding-top: 24px;
  display: flex; flex-direction: column;
  gap: 8px;
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--cream-soft);
}
.fi-sidebar-foot-line {
  height: 1px; background: var(--fi-border); margin-bottom: 16px;
}
.fi-sidebar-phone {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; color: var(--gold);
  letter-spacing: normal; text-transform: none;
}

/* ───── CONTENT ───── */
.fi-content {
  min-width: 0;
}
.fi-chapter {
  padding: 0 0 var(--fi-air-lg);
  scroll-margin-top: 100px;
}
.fi-chapter-last { padding-bottom: 0; }
.fi-ch-head {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: baseline;
  padding-bottom: 32px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--fi-border);
}
.fi-ch-num {
  font-family: var(--serif); font-style: italic;
  font-size: 36px; color: var(--gold);
  line-height: 1;
}
.fi-ch-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1; color: var(--cream);
  letter-spacing: -0.005em;
}
.fi-ch-body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(40px, 5vw, 80px);
}
.fi-ch-body-full { grid-template-columns: 1fr; }
@media (max-width: 900px) {
  .fi-ch-body { grid-template-columns: 1fr; gap: 32px; }
}
.fi-col-text { max-width: 620px; }
.fi-col-text-wide { max-width: 820px; }
.fi-col-text p {
  font-family: var(--serif);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.7; color: var(--cream-soft);
  margin-bottom: 24px;
}
.fi-col-text p em { font-style: italic; color: var(--cream); }
.fi-pull {
  font-style: italic !important;
  color: var(--gold) !important;
  font-size: clamp(17px, 1.4vw, 21px) !important;
  border-left: 1px solid var(--gold);
  padding-left: 24px !important;
  margin-top: 32px;
}
.fi-pull em { color: var(--gold) !important; }

.fi-col-side {
  position: relative;
}
.fi-aside-block {
  padding: 24px;
  border: 1px solid var(--fi-border);
  background: rgba(9, 55, 70, 0.45);
}
.fi-aside-label {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--fi-border);
}
.fi-aside-list {
  list-style: none; padding: 0; margin: 0;
}
.fi-aside-list li {
  font-family: var(--serif); font-size: 16px;
  color: var(--cream); padding: 8px 0;
  position: relative; padding-left: 20px;
  border-bottom: 1px dotted rgba(196, 165, 119, 0.18);
}
.fi-aside-list li:last-child { border-bottom: 0; }
.fi-aside-list li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--gold);
}
.fi-aside-phone a, .fi-aside-mail a {
  font-family: var(--serif); color: var(--cream);
  transition: color 0.3s;
}
.fi-aside-phone a:hover, .fi-aside-mail a:hover { color: var(--gold); }
.fi-aside-phone, .fi-aside-mail, .fi-aside-addr {
  font-family: var(--serif); font-size: 16px;
  color: var(--cream); line-height: 1.5;
  margin: 0 0 12px;
}

/* ───── Méthode (chapitre 02 — liste numérotée) ───── */
.fi-method-list {
  list-style: none; padding: 0; margin: 32px 0 0;
  border-top: 1px solid var(--fi-border);
}
.fi-method-list li {
  display: grid;
  grid-template-columns: 40px 1fr 80px;
  gap: 24px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--fi-border);
}
.fi-method-num {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; color: var(--gold);
}
.fi-method-list h4 {
  font-family: var(--serif); font-style: italic;
  font-weight: 400; font-size: 22px;
  color: var(--cream); margin: 0 0 8px;
}
.fi-method-list p {
  font-family: var(--serif); font-size: 16px;
  line-height: 1.55; color: var(--cream-soft); margin: 0;
}
.fi-method-time {
  text-align: right;
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
}
@media (max-width: 700px) {
  .fi-method-list li { grid-template-columns: 30px 1fr; }
  .fi-method-time { grid-column: 2; text-align: left; margin-top: 6px; }
}

/* ───── Missions (chapitre 03 — table éditoriale) ───── */
.fi-missions {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--fi-border);
}
.fi-mission {
  border-bottom: 1px solid var(--fi-border);
}
.fi-mission .fi-mission {
  display: grid;
  grid-template-columns: 50px 220px 1fr 40px;
  gap: clamp(20px, 3vw, 56px);
  align-items: baseline;
  padding: 28px 0;
  cursor: pointer;
  position: relative;
  transition: padding 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fi-mission-num {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; color: var(--gold);
}
.fi-mission-name {
  font-family: var(--serif); font-style: italic;
  font-weight: 300; font-size: clamp(20px, 2vw, 26px);
  color: var(--cream); line-height: 1.2;
  transition: color 0.3s ease;
}
.fi-mission-desc {
  font-family: var(--serif); font-size: 16px;
  line-height: 1.55; color: var(--cream-soft);
}
.fi-mission-arr {
  text-align: right;
  font-family: var(--serif); font-size: 18px;
  color: var(--gold);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fi-mission > .fi-mission:hover { padding-left: 18px; }
.fi-mission > .fi-mission:hover .fi-mission-name { color: var(--gold); }
.fi-mission > .fi-mission:hover .fi-mission-arr { transform: translateX(10px); }
@media (max-width: 700px) {
  .fi-mission > .fi-mission {
    grid-template-columns: 30px 1fr 24px;
    gap: 14px;
  }
  .fi-mission-desc { grid-column: 2 / 4; }
}

/* ───── Engagements (chapitre 04 — table 2 colonnes) ───── */
.fi-commits {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--fi-border);
}
.fi-commit {
  display: grid; grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--fi-border);
}
.fi-commit:nth-child(odd) {
  border-right: 1px solid var(--fi-border);
  padding-right: 32px;
}
.fi-commit:nth-child(even) {
  padding-left: 32px;
}
.fi-commit dt {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
}
.fi-commit dd {
  font-family: var(--serif); font-size: 16px;
  line-height: 1.55; color: var(--cream);
}
@media (max-width: 900px) {
  .fi-commits { grid-template-columns: 1fr; }
  .fi-commit:nth-child(odd),
  .fi-commit:nth-child(even) {
    border-right: 0; padding: 24px 0;
  }
}
@media (max-width: 600px) {
  .fi-commit { grid-template-columns: 1fr; gap: 8px; }
}

/* ───── Galerie 3×3 ───── */
.fi-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.fi-gtile {
  margin: 0; position: relative; overflow: hidden;
  aspect-ratio: 4/5;
}
.fi-gtile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fi-gtile:hover img { transform: scale(1.05); }
.fi-gtile figcaption {
  position: absolute; left: 14px; bottom: 14px;
  font-family: var(--sans); font-size: 9px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--cream);
  background: rgba(9, 55, 70, 0.85);
  padding: 6px 10px;
  backdrop-filter: blur(6px);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
}
.fi-gtile:hover figcaption { opacity: 1; transform: translateY(0); }
@media (max-width: 900px) { .fi-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .fi-gallery { grid-template-columns: 1fr; } }

.fi-cta-end { margin-top: 36px; }

/* ════════════════════════════════════════════════════════
   PROPERTY MANAGEMENT — RAFFINEMENT (legacy fallback)
   ════════════════════════════════════════════════════════ */

.page-pm-raff {
  --rf-pad: clamp(28px, 6vw, 80px);
  --rf-maxw: 1280px;
  --rf-air-sm: clamp(80px, 12vw, 160px);
  --rf-air: clamp(120px, 16vw, 220px);
  --rf-air-lg: clamp(160px, 20vw, 280px);
}
.page-pm-raff section { padding: 0; }
.page-pm-raff .container,
.page-pm-raff .rf-lead-inner,
.page-pm-raff .rf-pull-inner,
.page-pm-raff .rf-missions-inner,
.page-pm-raff .rf-cta-inner {
  max-width: var(--rf-maxw);
  margin: 0 auto;
}

/* ───── HERO RAFFINÉ ───── */
.rf-hero {
  position: relative;
  height: 100vh; min-height: 720px;
  overflow: hidden;
  background: var(--night);
  color: var(--cream);
}
.rf-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  animation: rf-hero-zoom 26s ease infinite alternate;
}
@keyframes rf-hero-zoom { from { transform: scale(1.04); } to { transform: scale(1.10); } }
.rf-hero-curtain {
  position: absolute; inset: 0; z-index: 4;
  background: var(--night);
  transform-origin: top center;
  animation: rf-curtain 1.5s cubic-bezier(0.7, 0, 0.15, 1) 0.4s forwards;
}
@keyframes rf-curtain { from { transform: scaleY(1); } to { transform: scaleY(0); } }
.rf-hero-veil {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.45) 0%, transparent 28%, transparent 72%, rgba(5,40,49,0.78) 100%);
  pointer-events: none;
}
.rf-hero-content {
  position: relative; z-index: 3;
  height: 100%; width: 100%;
  max-width: var(--rf-maxw); margin: 0 auto;
  padding: 36px var(--rf-pad);
  display: flex; flex-direction: column; justify-content: space-between;
}
.rf-hero-top {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 24px;
  opacity: 0; animation: fade 1.2s ease 1.8s forwards;
}
.rf-hero-top .crumb,
.rf-hero-no {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--cream-soft);
}
.rf-hero-top .crumb a:hover { color: var(--gold); }
.crumb-sep { color: rgba(196, 165, 119, 0.5); margin: 0 4px; }
.rf-hero-top .crumb span:last-child { color: var(--gold); }
.rf-hero-no sup { font-size: 0.65em; vertical-align: super; }
.rf-hero-no-tag { color: var(--gold); }

.rf-hero-main {
  max-width: 900px;
}
.rf-hero-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(40px, 5.2vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 0 0 28px;
}
.rf-hero-title .rf-line {
  display: block; overflow: hidden;
}
.rf-hero-title .rf-line em {
  display: inline-block; font-style: italic;
  transform: translateY(110%);
  animation: rf-line-rise 1.3s cubic-bezier(0.18, 0.85, 0.12, 1) 2.0s forwards;
}
@keyframes rf-line-rise { to { transform: translateY(0); } }
.rf-hero-sub {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--cream-soft); max-width: 540px;
  line-height: 1.5;
  opacity: 0;
  animation: fade 1s ease 2.8s forwards;
}

.rf-hero-foot {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px;
  opacity: 0; animation: fade 1s ease 3.2s forwards;
}
.rf-hero-meta {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--cream-soft);
}
.rf-hero-scroll {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.rf-scroll-line {
  display: block; width: 1px; height: 42px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: rf-scroll-pulse 2.4s ease infinite;
}
@keyframes rf-scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(0.5); opacity: 0.4; }
}
.rf-scroll-lbl {
  font-family: var(--sans); font-size: 9px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--cream-soft);
}

/* ───── LEAD (paragraphe d'ouverture sobre) ───── */
.rf-lead {
  background: var(--teal-deep);
  padding: var(--rf-air) var(--rf-pad) !important;
}
.rf-lead-inner {
  max-width: 820px;
}
.rf-marker {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 56px;
}
.rf-lead-text {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.45; color: var(--cream);
  letter-spacing: -0.005em;
}
.rf-lead-text em { font-style: italic; color: var(--gold); }

/* ───── PHOTO PLEINE PAGE (frame) ───── */
.rf-frame {
  background: var(--teal-deep);
  padding: 0 0 var(--rf-air-sm) !important;
}
.rf-frame-fig {
  width: 100%; margin: 0;
  aspect-ratio: 21/9;
  overflow: hidden; position: relative;
}
.rf-frame-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.18);
  transition: transform 0.08s linear;
  will-change: transform;
}
.rf-frame-cap {
  display: flex; gap: 16px;
  padding: 18px var(--rf-pad) 0;
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  max-width: var(--rf-maxw); margin: 0 auto;
}
.rf-frame-cap-num { color: var(--gold); }
.rf-frame-cap-txt { color: var(--cream-soft); }

/* ───── SPLIT raffiné ───── */
.rf-split {
  background: var(--teal-deep);
  padding: var(--rf-air-sm) var(--rf-pad) !important;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  max-width: var(--rf-maxw); margin: 0 auto;
}
.rf-split-img-left .rf-split-media { order: 1; }
.rf-split-img-left .rf-split-text { order: 2; }
.rf-split-img-right .rf-split-media { order: 2; }
.rf-split-img-right .rf-split-text { order: 1; }
.rf-split-media { margin: 0; position: relative; overflow: hidden; }
.rf-split-media img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.rf-split.in .rf-split-media img { transform: scale(1); }
.rf-split-media::after {
  content: ''; position: absolute; inset: 0;
  background: var(--teal-darker);
  transform-origin: top center;
  transform: scaleY(1);
  transition: transform 1.1s cubic-bezier(0.7, 0, 0.15, 1);
}
.rf-split.in .rf-split-media::after { transform: scaleY(0); }
.rf-split-media figcaption {
  margin-top: 14px;
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--cream-soft); opacity: 0.7;
}
.rf-split-text { max-width: 500px; }
.rf-split-num {
  font-family: var(--serif); font-style: italic;
  font-size: 16px; color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(196, 165, 119, 0.3);
  width: 36px;
}
.rf-split-h {
  font-family: var(--serif); font-style: italic;
  font-weight: 300;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.1; color: var(--cream);
  letter-spacing: -0.005em;
  margin-bottom: 28px;
}
.rf-split-text p {
  font-family: var(--serif);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65; color: var(--cream-soft);
  margin-bottom: 22px;
}
.rf-split-text p em {
  font-style: italic; color: var(--cream);
}
.rf-split-pull {
  font-style: italic;
  color: var(--gold) !important;
  font-size: clamp(17px, 1.4vw, 20px) !important;
}
.rf-split-pull em { color: var(--gold) !important; }
@media (max-width: 900px) {
  .rf-split { grid-template-columns: 1fr; gap: 40px; }
  .rf-split-img-left .rf-split-media,
  .rf-split-img-right .rf-split-media { order: 0; }
  .rf-split-img-left .rf-split-text,
  .rf-split-img-right .rf-split-text { order: 1; }
  .rf-split-media img { aspect-ratio: 4/3; }
}

/* ───── CITATION sobre ───── */
.rf-pull {
  background: var(--teal-darker);
  padding: var(--rf-air) var(--rf-pad) !important;
  text-align: center;
}
.rf-pull-inner {
  max-width: 920px;
}
.rf-pull-quote {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.3; color: var(--cream);
  letter-spacing: -0.005em;
  position: relative;
}
.rf-pull-quote::before {
  content: '«'; color: var(--gold);
  font-style: normal;
  margin-right: 0.25em;
}
.rf-pull-quote::after {
  content: '»'; color: var(--gold);
  font-style: normal;
  margin-left: 0.25em;
}
.rf-pull-quote em { color: var(--gold); }

/* ───── MISSIONS (table éditoriale fine) ───── */
.rf-missions {
  background: var(--teal-deep);
  padding: var(--rf-air) var(--rf-pad) !important;
}
.rf-missions-head { max-width: 720px; margin-bottom: 80px; }
.rf-missions-title {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15; color: var(--cream);
  letter-spacing: -0.005em;
}
.rf-missions-list {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid rgba(196, 165, 119, 0.2);
}
.rf-mission {
  border-bottom: 1px solid rgba(196, 165, 119, 0.2);
}
.rf-mission-link {
  display: grid; grid-template-columns: 60px 1fr 40px;
  align-items: baseline; gap: clamp(20px, 4vw, 56px);
  padding: 32px 0;
  cursor: pointer;
  transition: padding 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
}
.rf-mission-link::before {
  content: ''; position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.rf-mission-link:hover { padding-left: 18px; }
.rf-mission-link:hover::before { width: 100%; }
.rf-mission-num {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; color: var(--gold);
}
.rf-mission-body {
  display: grid; grid-template-columns: minmax(0, 240px) 1fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: baseline;
}
.rf-mission-name {
  font-family: var(--serif); font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2; color: var(--cream);
  transition: color 0.3s ease;
}
.rf-mission-desc {
  font-family: var(--serif);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55; color: var(--cream-soft);
  max-width: 520px;
}
.rf-mission-arrow {
  text-align: right;
  font-family: var(--serif); font-size: 18px;
  color: var(--gold);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.rf-mission-link:hover .rf-mission-arrow { transform: translateX(10px); }
.rf-mission-link:hover .rf-mission-name { color: var(--gold); }
@media (max-width: 900px) {
  .rf-mission-link { grid-template-columns: 36px 1fr 24px; gap: 16px; padding: 24px 0; }
  .rf-mission-num { font-size: 14px; }
  .rf-mission-body { grid-template-columns: 1fr; gap: 6px; }
  .rf-mission-arrow { font-size: 14px; }
}

/* ───── CTA SOBRE ───── */
.rf-cta {
  background: var(--teal-deep);
  padding: var(--rf-air) var(--rf-pad) !important;
}
.rf-cta-inner {
  max-width: 720px;
  text-align: center;
}
.rf-cta-text {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.35; color: var(--cream);
  margin-bottom: 48px;
}
.rf-cta-text em { font-style: italic; color: var(--gold); }
.rf-cta-link {
  display: inline-block;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--cream);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
  transition: color 0.4s ease, letter-spacing 0.4s ease;
}
.rf-cta-link::after {
  content: '  →'; color: var(--gold); transition: margin-left 0.4s ease;
}
.rf-cta-link:hover { color: var(--gold); letter-spacing: 0.005em; }
.rf-cta-link:hover::after { margin-left: 8px; }
.rf-cta-sub {
  margin-top: 36px;
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--cream-soft);
}

@media (max-width: 768px) {
  .rf-frame-fig { aspect-ratio: 4/3; }
  .rf-hero-foot { flex-direction: column; align-items: flex-start; gap: 28px; }
}

/* ════════════════════════════════════════════════════════
   PROPERTY MANAGEMENT — BIG MOVES (obsolete, kept for fallback)
   ════════════════════════════════════════════════════════ */

.page-pm-big {
  --bm-pad: clamp(24px, 6vw, 80px);
  --bm-maxw: 1640px;
}
.page-pm-big section { padding: 0; }

/* ───── HERO MASSIF ───── */
.bm-hero {
  position: relative;
  height: 100vh; min-height: 700px;
  overflow: hidden;
  background: var(--night);
  color: var(--cream);
}
.bm-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  animation: bm-hero-zoom 22s ease infinite alternate;
}
@keyframes bm-hero-zoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.bm-hero-curtain {
  position: absolute; inset: 0; z-index: 4;
  background: var(--night);
  transform-origin: top center;
  animation: bm-curtain 1.6s cubic-bezier(0.7, 0, 0.15, 1) 0.4s forwards;
}
@keyframes bm-curtain { from { transform: scaleY(1); } to { transform: scaleY(0); } }
.bm-hero-veil {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.5) 0%, transparent 28%, transparent 60%, rgba(5,40,49,0.85) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.45) 0%, transparent 35%);
  pointer-events: none;
}
.bm-hero-content {
  position: relative; z-index: 3;
  height: 100%; width: 100%;
  max-width: var(--bm-maxw); margin: 0 auto;
  padding: 36px var(--bm-pad);
  display: flex; flex-direction: column; justify-content: space-between;
}
.bm-hero-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px;
  opacity: 0; animation: fade 1s ease 2.0s forwards;
}
.bm-hero-top .crumb {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--cream-soft);
}
.bm-hero-top .crumb a:hover { color: var(--gold); }
.bm-hero-top .crumb span:last-child { color: var(--gold); }
.bm-hero-stamp {
  display: flex; align-items: center; gap: 14px;
}
.bm-stamp-no {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; color: var(--gold);
}
.bm-stamp-no sup { font-size: 0.6em; vertical-align: super; }
.bm-stamp-num {
  font-family: var(--serif); font-style: italic;
  font-size: 32px; color: var(--gold);
  line-height: 1;
}
.bm-stamp-line {
  width: 28px; height: 1px; background: var(--gold);
}
.bm-stamp-tag {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--cream-soft);
}

.bm-hero-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(80px, 18vw, 280px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  color: var(--cream);
  margin: 0;
}
.bm-hero-title .bm-word {
  display: block; overflow: hidden;
}
.bm-hero-title .bm-word em {
  display: inline-block;
  font-style: italic;
  transform: translateY(105%);
  animation: bm-word-rise 1.3s cubic-bezier(0.18, 0.85, 0.12, 1) forwards;
}
.bm-hero-title .bm-word:nth-child(1) em { animation-delay: 2.1s; }
.bm-hero-title .bm-word:nth-child(2) em {
  animation-delay: 2.3s;
  color: var(--gold);
}
@keyframes bm-word-rise { to { transform: translateY(0); } }

.bm-hero-foot {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px;
  opacity: 0; animation: fade 1s ease 3.0s forwards;
}
.bm-hero-tag {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--cream-soft); max-width: 480px;
  line-height: 1.3;
}
.bm-hero-scroll {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
}
.bm-hero-scroll-arrow {
  font-size: 18px;
  animation: bm-arrow-bob 1.8s ease-in-out infinite;
}
@keyframes bm-arrow-bob {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(8px); opacity: 0.5; }
}

/* ───── LEAD éditorial ───── */
.bm-lead {
  background: var(--teal-deep);
  padding: clamp(120px, 18vw, 240px) var(--bm-pad) !important;
}
.bm-lead-inner {
  max-width: 1100px; margin: 0 auto;
}
.bm-lead-marker {
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 64px;
}
.bm-lead-text {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(32px, 4.2vw, 64px);
  line-height: 1.18; color: var(--cream);
  letter-spacing: -0.015em;
  margin-bottom: 40px;
}
.bm-lead-text em { font-style: italic; color: var(--gold); }
.bm-lead-text-sm {
  font-size: clamp(24px, 3vw, 44px) !important;
  color: var(--cream-soft) !important;
  font-style: italic;
}

/* ───── SHOW-STOPPER : Text-over-image mix-blend ───── */
.bm-textimage {
  position: relative;
  height: 90vh; min-height: 700px;
  overflow: hidden;
  background: var(--night);
  display: flex; align-items: center; justify-content: center;
}
.bm-textimage-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
}
.bm-textimage-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(10,10,10,0.4) 30%, rgba(10,10,10,0.75) 100%);
}
.bm-textimage-stack {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(80px, 14vw, 220px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--cream);
  mix-blend-mode: difference;
}
.bm-textimage-word {
  display: block;
  overflow: hidden;
}
.bm-textimage:hover .bm-textimage-word {
  letter-spacing: -0.02em;
}
.bm-textimage-word {
  transition: letter-spacing 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.bm-textimage-stack-tight {
  gap: 24px;
}
.bm-textimage-stack-tight .bm-textimage-word {
  font-size: clamp(120px, 24vw, 360px);
  font-style: normal; font-weight: 300;
  font-family: var(--serif);
  letter-spacing: -0.05em;
  color: var(--gold);
  mix-blend-mode: normal;
  text-shadow: 0 4px 60px rgba(0,0,0,0.5);
}
.bm-textimage-sup {
  font-size: 0.5em; vertical-align: super;
}
.bm-textimage-num-lbl {
  font-family: var(--sans); font-size: 12px;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--cream);
  mix-blend-mode: normal;
}
.bm-textimage-caption {
  position: absolute; bottom: 36px; right: 36px;
  z-index: 3;
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--cream-soft);
}

/* ───── MARQUEE GÉANT ───── */
.bm-marquee {
  background: var(--teal-deep);
  padding: clamp(60px, 8vw, 100px) 0;
  overflow: hidden;
  border-top: 1px solid rgba(196, 165, 119, 0.15);
  border-bottom: 1px solid rgba(196, 165, 119, 0.15);
}
.bm-marquee-track {
  display: flex; align-items: center; gap: 0.6em;
  width: max-content;
  animation: bm-marq 32s linear infinite;
  font-family: var(--serif); font-style: italic;
  font-weight: 300;
  font-size: clamp(60px, 16vw, 240px);
  color: rgba(239, 227, 207, 0.06);
  line-height: 0.9;
  letter-spacing: -0.03em;
  -webkit-text-stroke: 1px rgba(196, 165, 119, 0.55);
}
.bm-marquee-track em {
  font-style: italic;
  transition: color 0.4s;
}
.bm-marquee-track .bm-dot {
  color: var(--gold);
  -webkit-text-stroke: 0;
  font-size: 0.5em;
}
.bm-marquee:hover .bm-marquee-track em {
  color: var(--gold);
  -webkit-text-stroke: 0;
}
@keyframes bm-marq {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ───── PAUSE CINÉMA scroll-driven scale ───── */
.bm-pause {
  position: relative;
  padding: clamp(80px, 14vw, 200px) var(--bm-pad) !important;
  background: var(--teal-deep);
}
.bm-pause-frame {
  position: relative;
  width: 100%;
  max-width: 1320px; margin: 0 auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--night);
}
.bm-pause-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.25);
  transition: transform 0.1s linear;
  will-change: transform;
}
.bm-pause-cap {
  margin-top: 24px;
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--cream-soft);
  text-align: right;
  max-width: 1320px;
  margin-left: auto; margin-right: auto;
}

/* ───── CTA MASSIF (show-stopper) ───── */
.bm-cta {
  background: var(--night);
  padding: clamp(160px, 22vw, 320px) var(--bm-pad) !important;
  text-align: center;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.bm-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 100%, rgba(196, 165, 119, 0.15) 0%, transparent 60%);
}
.bm-cta > * { position: relative; z-index: 2; }
.bm-cta-marker {
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 48px;
}
.bm-cta-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(64px, 11vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 72px;
}
.bm-cta-line {
  display: block; overflow: hidden;
}
.bm-cta-italic {
  font-style: italic;
  color: var(--gold);
}
.bm-cta-action {
  display: inline-flex; align-items: center; gap: 24px;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--cream);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gold);
  transition: gap 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.3s;
}
.bm-cta-action:hover {
  gap: 36px;
  color: var(--gold);
}
.bm-cta-arrow {
  color: var(--gold);
  font-style: normal;
  transition: transform 0.4s ease;
}
.bm-cta-action:hover .bm-cta-arrow { transform: translateX(8px); }
.bm-cta-sub {
  margin-top: 48px;
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--cream-soft);
}

/* ────── Mobile big moves ────── */
@media (max-width: 768px) {
  .bm-hero-top { flex-direction: column; }
  .bm-hero-foot { flex-direction: column; align-items: flex-start; gap: 32px; }
  .bm-textimage { height: 70vh; min-height: 500px; }
  .bm-textimage-caption { bottom: 18px; right: 18px; left: 18px; text-align: left; }
  .bm-marquee { padding: 40px 0; }
}

/* ════════════════════════════════════════════════════════
   PROPERTY MANAGEMENT — ATELIER OUVERT (CINÉTIQUE MODERNE)
   Format éditorial + composants 2026 : tracing beam, sparkles,
   clip-path reveal, image cursor preview, marquee gradient mesh
   ════════════════════════════════════════════════════════ */

/* ───── Tracing beam vertical scroll-driven ───── */
.pm-trace {
  position: fixed; top: 0; left: 28px;
  width: 4px; height: 100vh;
  z-index: 50; pointer-events: none;
  opacity: 0;
  animation: trace-fade 1s ease 1.5s forwards;
}
@keyframes trace-fade { to { opacity: 1; } }
.pm-trace-fill {
  transition: stroke-dashoffset 0.18s linear;
}
@media (max-width: 900px) { .pm-trace { display: none; } }

/* ───── Sparkles dorés (hero) ───── */
.pm-sparkles {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
}
.sparkle {
  position: absolute;
  left: var(--x); top: var(--y);
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px 2px rgba(196, 165, 119, 0.5);
  opacity: 0;
  animation: sparkle-pulse 4s ease-in-out var(--d) infinite;
}
@keyframes sparkle-pulse {
  0%, 100% { opacity: 0; transform: scale(0.3); }
  50%      { opacity: 0.95; transform: scale(1.2); }
}

/* ───── Background gradient mesh animé ───── */
.pm-mesh-bg {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  background:
    radial-gradient(circle at 20% 30%, rgba(196, 165, 119, 0.16) 0%, transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(196, 165, 119, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(196, 165, 119, 0.10) 0%, transparent 40%);
  background-size: 200% 200%;
  animation: mesh-drift 20s ease-in-out infinite alternate;
  mix-blend-mode: screen;
}
@keyframes mesh-drift {
  0%   { background-position: 0% 0%, 100% 100%, 50% 50%; }
  100% { background-position: 100% 50%, 0% 50%, 70% 30%; }
}

/* ───── Image hover preview (suit le curseur) ───── */
.hover-preview {
  /* v89 : désactivé — l'image preview qui suivait le curseur n'a plus de sens
     depuis qu'on est revenus au curseur natif (demande Cristina). */
  display: none !important;
  position: fixed; top: 0; left: 0;
  width: 280px; height: 360px;
  pointer-events: none; z-index: 9990;
  transform: translate(-50%, -50%) scale(0.8) rotate(-3deg);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.hover-preview img {
  width: 100%; height: 100%; object-fit: cover;
}
.hover-preview.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(2deg);
}
@media (max-width: 900px) { .hover-preview { display: none; } }

/* ───── Marquee mots-clés italique ───── */
.pm-marquee {
  background: var(--teal-deep);
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px solid rgba(196, 165, 119, 0.15);
  border-bottom: 1px solid rgba(196, 165, 119, 0.15);
}
.pm-marquee-track {
  display: flex; gap: 1.5em;
  white-space: nowrap;
  width: max-content;
  animation: pm-marq 36s linear infinite;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(28px, 4vw, 56px);
  color: rgba(239, 227, 207, 0.18);
}
.pm-marquee-track em {
  font-style: italic;
  color: rgba(196, 165, 119, 0.55);
  transition: color 0.3s;
}
.pm-marquee:hover .pm-marquee-track em { color: var(--gold); }
.pm-marquee-reverse .pm-marquee-track { animation-direction: reverse; }
@keyframes pm-marq {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ───── Pause cinéma : clip-path mask reveal ───── */
.pm-pause-mask {
  position: absolute; inset: 0; z-index: 1;
  background: var(--gold);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  animation: pause-mask-slide 1.2s cubic-bezier(0.85, 0, 0.15, 1) forwards;
  animation-play-state: paused;
}
.pm-pause.in .pm-pause-mask {
  animation-play-state: running;
}
@keyframes pause-mask-slide {
  0%   { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
  50%  { clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%); }
  50.001% { clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); }
  100% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); opacity: 0; }
}

/* ───── Split-media : clip-path reveal au scroll ───── */
.split-media {
  overflow: hidden;
  position: relative;
}
.split-media::after {
  content: ''; position: absolute; inset: 0;
  background: var(--teal-darker);
  transform-origin: top center;
  transform: scaleY(1);
  transition: transform 1.1s cubic-bezier(0.7, 0, 0.15, 1);
  z-index: 2;
}
.split.in .split-media::after {
  transform: scaleY(0);
}
.split-img-right .split-media::after { transform-origin: top center; }
.split-media img {
  transform: scale(1.15);
  transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.split.in .split-media img {
  transform: scale(1);
}

/* ───── Text reveal split lines (titres h2 dans splits) ───── */
.split-text h2 {
  overflow: hidden;
}
.split-text h2 .line-wrap {
  display: block; overflow: hidden;
}
.split-text h2 .line-inner {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 1s cubic-bezier(0.2, 0.85, 0.2, 1);
}
.split.in .split-text h2 .line-inner {
  transform: translateY(0);
}

/* Adjust mission-link to add gold highlight bar on hover */
.pm-mission-link {
  position: relative;
}
.pm-mission-link::before {
  content: ''; position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pm-mission-link:hover::before { width: 100%; }

/* Ensure mesh BG stays behind content */
.page-pm-edito > section,
.page-pm-edito > .pm-marquee {
  position: relative; z-index: 1;
}

/* ════════════════════════════════════════════════════════
   PROPERTY MANAGEMENT — ATELIER OUVERT
   Format éditorial split alternant, animations minimales
   Inspiration : Loro Piana, Aesop, The Gentleman's Journal
   ════════════════════════════════════════════════════════ */

.page-pm-edito {
  --edito-pad: 8vw;
  --max-w: 1440px;
}
.page-pm-edito section { padding: 0; }

/* ───── Hero plein écran ───── */
.pm-hero {
  position: relative;
  height: 100vh; min-height: 720px;
  overflow: hidden; background: var(--night);
  color: var(--cream);
}
.pm-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  animation: hero-park-slow 22s ease infinite alternate;
}
@keyframes hero-park-slow { from { transform: scale(1.04); } to { transform: scale(1.10); } }
.pm-hero-curtain {
  position: absolute; inset: 0; z-index: 3;
  background: var(--night);
  transform-origin: top center;
  animation: pm-curtain-up 1.5s cubic-bezier(0.7, 0, 0.15, 1) 0.4s forwards;
}
@keyframes pm-curtain-up { from { transform: scaleY(1); } to { transform: scaleY(0); } }
.pm-hero-grain {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, transparent 28%, transparent 72%, rgba(5,40,49,0.88) 100%);
  pointer-events: none;
}
.pm-hero-content {
  position: relative; z-index: 2;
  height: 100%; width: 100%;
  max-width: var(--max-w); margin: 0 auto;
  padding: 40px var(--edito-pad);
  display: flex; flex-direction: column; justify-content: space-between;
}
.pm-hero-top {
  display: flex; justify-content: space-between; align-items: baseline;
  opacity: 0; animation: fade 1s ease 1.8s forwards;
}
.pm-hero-top .crumb {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--cream-soft);
  margin-bottom: 0;
}
.pm-hero-top .crumb a:hover { color: var(--gold); }
.pm-hero-top .crumb span:last-child { color: var(--gold); }
.pm-hero-num {
  font-family: var(--serif); font-style: italic;
  font-size: 26px; color: var(--gold);
}
.pm-hero-num .sup {
  font-size: 0.55em; vertical-align: super;
  margin-left: 1px;
}
.pm-hero-main {
  max-width: 1100px;
}
.pm-hero-tag {
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 36px;
  opacity: 0; animation: fade 1s ease 1.9s forwards;
}
.pm-hero-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(64px, 11vw, 180px);
  line-height: 0.95; color: var(--cream);
  letter-spacing: -0.025em;
  margin-bottom: 36px;
}
.pm-hero-title .pm-line {
  display: block; overflow: hidden;
}
.pm-hero-title .pm-line em {
  display: inline-block; font-style: italic;
  transform: translateY(110%);
  animation: pm-line-rise 1.2s cubic-bezier(0.2, 0.85, 0.2, 1) 2.0s forwards;
}
.pm-hero-title .pm-line:nth-child(2) {
  font-style: normal;
  transform: translateY(110%);
  animation: pm-line-rise 1.2s cubic-bezier(0.2, 0.85, 0.2, 1) 2.15s forwards;
  color: var(--gold);
}
@keyframes pm-line-rise { to { transform: translateY(0); } }
.pm-hero-sub {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--cream-soft); max-width: 600px;
  opacity: 0; animation: fade 1s ease 2.6s forwards;
}
.pm-hero-bottom {
  display: flex; justify-content: space-between; align-items: flex-end;
  opacity: 0; animation: fade 1s ease 2.9s forwards;
}
.pm-hero-meta {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--cream-soft);
}
.pm-hero-cue {
  display: flex; align-items: center; gap: 18px;
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
}
.pm-hero-cue-line {
  width: 64px; height: 1px; background: var(--gold);
  transition: width 0.4s ease;
}
.pm-hero-cue:hover .pm-hero-cue-line { width: 88px; }

/* ───── Intro éditoriale ───── */
.pm-intro {
  background: var(--teal-deep);
  padding: 180px var(--edito-pad) !important;
}
.pm-intro-inner {
  max-width: 880px; margin: 0 auto; text-align: center;
}
.pm-intro-marker {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 56px;
  position: relative; display: inline-block;
  padding: 0 24px;
}
.pm-intro-marker::before,
.pm-intro-marker::after {
  content: ''; position: absolute; top: 50%;
  width: 36px; height: 1px; background: var(--gold);
  opacity: 0.5;
}
.pm-intro-marker::before { right: 100%; }
.pm-intro-marker::after { left: 100%; }
.pm-intro-lead {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.45; color: var(--cream);
}
.pm-intro-lead em { font-style: italic; color: var(--gold); }

/* ───── Split alterning ───── */
.split {
  background: var(--teal-deep);
  padding: 160px var(--edito-pad) !important;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 120px);
  align-items: center;
  max-width: var(--max-w); margin: 0 auto;
}
.split-img-left .split-media { order: 1; }
.split-img-left .split-text { order: 2; }
.split-img-right .split-media { order: 2; }
.split-img-right .split-text { order: 1; }
.split-media {
  margin: 0;
  position: relative;
}
.split-media img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover;
  filter: brightness(0.92);
  transition: filter 0.6s ease;
}
.split-media:hover img { filter: brightness(1); }
.split-media figcaption {
  margin-top: 16px;
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--cream-soft); opacity: 0.7;
}
.split-text {
  max-width: 540px;
}
.split-num {
  font-family: var(--serif); font-style: italic;
  font-size: 28px; color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(196, 165, 119, 0.3);
  width: fit-content;
}
.split-text h2 {
  font-family: var(--serif); font-style: italic;
  font-weight: 300;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1.05; color: var(--cream);
  margin-bottom: 36px;
  letter-spacing: -0.005em;
}
.split-text p {
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.7; color: var(--cream-soft);
  margin-bottom: 24px;
}
.split-text p em {
  font-style: italic; color: var(--cream);
}
.split-text-soft {
  font-style: italic !important;
  color: var(--gold) !important;
  font-size: clamp(20px, 1.7vw, 23px) !important;
}
.split-text-soft em { color: var(--gold) !important; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 48px; padding: 100px var(--edito-pad) !important; }
  .split-img-left .split-media,
  .split-img-right .split-media { order: 0; }
  .split-img-left .split-text,
  .split-img-right .split-text { order: 1; }
  .split-media img { aspect-ratio: 4/3; }
}

/* ───── Pause cinéma ───── */
.pm-pause {
  position: relative;
  height: 88vh; min-height: 620px;
  overflow: hidden;
  background: var(--night);
}
.pm-pause-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
}
.pm-pause::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.18) 0%, transparent 30%, transparent 70%, rgba(10,10,10,0.55) 100%);
}
.pm-pause-cap {
  position: absolute; bottom: 36px; left: 36px;
  z-index: 2;
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--cream-soft);
  background: rgba(9, 55, 70, 0.55);
  padding: 10px 16px;
  backdrop-filter: blur(8px);
}
@media (max-width: 768px) { .pm-pause { height: 60vh; min-height: 440px; } }

/* Pause finale avec citation */
.pm-pause-final { background: var(--night); }
.pm-pause-final .pm-pause-bg {
  filter: brightness(0.6);
}
.pm-pause-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(10,10,10,0.75) 90%);
}
.pm-pause-quote {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 var(--edito-pad);
  max-width: 1100px; margin: 0 auto;
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.25; color: var(--cream);
}
.pm-pause-quote em { font-style: italic; color: var(--gold); }
.pm-quote-mark {
  display: inline-block; font-style: normal;
  color: var(--gold); font-size: 0.8em;
  margin: 0 0.15em;
  vertical-align: -0.05em;
}

/* ───── Missions (liste éditoriale sobre) ───── */
.pm-missions {
  background: var(--teal);
  padding: 180px var(--edito-pad) !important;
}
.pm-missions-inner {
  max-width: var(--max-w); margin: 0 auto;
}
.pm-missions-head {
  max-width: 780px; margin-bottom: 100px;
}
.pm-missions-tag {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
}
.pm-missions-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05; color: var(--cream);
}
.pm-missions-title em { font-style: italic; color: var(--gold); }
.pm-missions-list {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid rgba(196, 165, 119, 0.25);
}
.pm-mission {
  border-bottom: 1px solid rgba(196, 165, 119, 0.25);
}
.pm-mission-link {
  display: grid; grid-template-columns: 90px 1fr 60px;
  align-items: center; gap: clamp(20px, 4vw, 60px);
  padding: 44px 0;
  cursor: pointer;
  transition: padding 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pm-mission-link:hover { padding-left: 24px; }
.pm-mission-num {
  font-family: var(--serif); font-style: italic;
  font-size: 32px; color: var(--gold);
}
.pm-mission-body {
  display: grid; grid-template-columns: minmax(0, 280px) 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: baseline;
}
.pm-mission-name {
  font-family: var(--serif); font-style: italic;
  font-weight: 300;
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.1; color: var(--cream);
  transition: color 0.3s ease;
}
.pm-mission-desc {
  font-family: var(--serif);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6; color: var(--cream-soft);
  max-width: 580px;
}
.pm-mission-arrow {
  text-align: right;
  font-family: var(--serif); font-size: 28px;
  color: var(--gold);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pm-mission-link:hover .pm-mission-arrow { transform: translateX(12px); }
.pm-mission-link:hover .pm-mission-name { color: var(--gold); }
@media (max-width: 900px) {
  .pm-mission-link { grid-template-columns: 50px 1fr 30px; gap: 16px; padding: 28px 0; }
  .pm-mission-num { font-size: 22px; }
  .pm-mission-body { grid-template-columns: 1fr; gap: 8px; }
  .pm-mission-arrow { font-size: 20px; }
}

/* ───── CTA sobre ───── */
.pm-cta {
  background: var(--teal-deep);
  padding: 160px var(--edito-pad) !important;
}
.pm-cta-inner {
  max-width: 780px; margin: 0 auto;
  text-align: center;
}
.pm-cta-text {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.25; color: var(--cream);
  margin-bottom: 56px;
}
.pm-cta-text em { font-style: italic; color: var(--gold); }
.pm-cta-link {
  display: inline-block; position: relative;
  font-family: var(--serif); font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--cream);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold);
  transition: color 0.4s ease, padding-bottom 0.4s ease;
}
.pm-cta-link::after {
  content: ' →'; color: var(--gold);
  transition: margin-left 0.4s ease;
}
.pm-cta-link:hover {
  color: var(--gold);
  padding-bottom: 14px;
}
.pm-cta-link:hover::after { margin-left: 8px; }
.pm-cta-sub {
  margin-top: 44px;
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--cream-soft);
}

/* Side nav (entre sous-pages) */
.sidenav-section { background: var(--teal-deep); padding-top: 0; }
.sidenav {
  padding: 48px 0;
  border-top: 1px solid rgba(196, 165, 119, 0.2);
  display: flex; justify-content: space-between; align-items: center; gap: 32px;
}
.sidenav-prev, .sidenav-next {
  display: flex; flex-direction: column; gap: 4px;
  transition: color 0.3s;
}
.sidenav-next { text-align: right; }
.sidenav-tag {
  font-family: var(--sans); font-size: 9px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
}
.sidenav-title {
  font-family: var(--serif); font-style: italic;
  font-size: 24px; color: var(--cream);
  transition: color 0.3s;
}
.sidenav-prev:hover .sidenav-title,
.sidenav-next:hover .sidenav-title { color: var(--gold); }
@media (max-width: 700px) { .sidenav { flex-direction: column; gap: 24px; } .sidenav-next { text-align: center; } .sidenav-prev { text-align: center; } }

@media (max-width: 700px) {
  .service-row { grid-template-columns: 1fr; gap: 16px; }
  .service-num { font-size: 32px; }
}

.packs-section { background: var(--teal-deep); }
.packs-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 28px; margin-top: 64px;
}
.pack {
  position: relative;
  border: 1px solid rgba(196, 165, 119, 0.3);
  padding: 40px 32px;
  background: rgba(9, 55, 70, 0.5);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pack:hover { transform: translateY(-6px); border-color: var(--gold); }
.pack-featured {
  background: var(--teal);
  border-color: var(--gold);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}
.pack-badge {
  position: absolute; top: 0; right: 0;
  background: var(--gold); color: var(--night);
  font-family: var(--sans); font-size: 9px;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 8px 14px;
}
.pack-name {
  font-family: var(--serif); font-style: italic;
  font-weight: 400; font-size: 36px;
  color: var(--cream); margin-bottom: 8px;
}
.pack-tag {
  font-family: var(--serif); font-style: italic;
  font-size: 15px;
  color: var(--cream-soft); margin-bottom: 18px;
}
/* v108 — Prix forfaits */
.pack-price {
  font-family: var(--serif); color: var(--cream);
  margin-bottom: 28px; padding-bottom: 24px;
  border-bottom: 1px solid rgba(196, 165, 119, 0.3);
  line-height: 1;
}
.pack-price-currency {
  font-family: var(--sans); font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--cream-soft); margin-right: 6px;
  vertical-align: middle;
}
.pack-price-amount {
  font-family: var(--serif); font-style: italic;
  font-size: 56px; font-weight: 400;
  color: var(--cream);
}
.pack-price-suffix {
  font-family: var(--serif); font-size: 28px;
  color: var(--cream-soft); margin-left: 2px;
  vertical-align: top;
}
.pack-featured .pack-price-amount { color: var(--gold); }

.pack-list { list-style: none; }
.pack-list li {
  padding: 10px 0;
  font-size: 15px; color: var(--cream-soft);
  border-bottom: 1px solid rgba(196, 165, 119, 0.1);
  position: relative; padding-left: 18px;
}
.pack-list li::before {
  content: '+'; position: absolute; left: 0;
  color: var(--gold);
  top: 10px;
}
/* v108 — Notes en italique sous certains items */
.pack-list .pack-note {
  display: block;
  font-family: var(--serif); font-style: italic;
  font-size: 13px; color: rgba(196, 165, 119, 0.85);
  margin-top: 6px; line-height: 1.5;
  padding-left: 12px;
  border-left: 2px solid rgba(196, 165, 119, 0.3);
}
.packs-note {
  text-align: center; margin-top: 40px;
  font-family: var(--serif); font-style: italic;
  font-size: 16px; color: var(--cream-soft);
}
@media (max-width: 900px) { .packs-grid { grid-template-columns: 1fr; } }

/* ═════════ Page LOCATIONS ═════════ */
.rent-banner {
  background: var(--gold); color: var(--night);
  padding: 56px var(--pad-x);
}
.rent-banner-inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: center;
}
.rent-banner-inner .btn-gold-lg {
  color: var(--night); border-color: var(--night);
  background: transparent;
}
.rent-banner-inner .btn-gold-lg::before { background: var(--night); }
.rent-banner-inner .btn-gold-lg:hover { color: var(--gold); }
.rent-banner-tag {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--night); opacity: 0.7;
  margin-bottom: 12px;
}
.rent-banner-title {
  font-family: var(--serif); font-style: italic;
  font-weight: 300; font-size: clamp(28px, 3.5vw, 42px);
  color: var(--night); margin-bottom: 14px;
}
.rent-banner-text {
  font-family: var(--serif); font-size: 17px;
  line-height: 1.55; color: var(--night); max-width: 600px;
}
.rent-banner-text strong { color: var(--night); font-weight: 500; }
@media (max-width: 900px) {
  .rent-banner-inner { grid-template-columns: 1fr; gap: 28px; }
}
.catalogue-note {
  text-align: center; margin-top: 56px;
  font-family: var(--serif); font-style: italic;
  font-size: 17px; color: var(--cream-soft);
}
.catalogue-note a {
  color: var(--gold); border-bottom: 1px solid var(--gold);
}
.rentals-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}
@media (max-width: 1000px) { .rentals-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) { .rentals-grid { grid-template-columns: 1fr; } }

.filter-bar-section { background: var(--teal-deep); padding: 100px var(--pad-x) 0; }
.filter-bar {
  display: flex; gap: 12px; flex-wrap: wrap;
  border-bottom: 1px solid rgba(196, 165, 119, 0.2);
  padding-bottom: 24px;
}
.filter-chip {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--cream); padding: 10px 18px;
  border: 1px solid rgba(196, 165, 119, 0.3);
  transition: all 0.3s;
}
.filter-chip:hover, .filter-chip.active {
  background: var(--gold); color: var(--night); border-color: var(--gold);
}

.rentals-section { background: var(--teal-deep); padding-top: 60px; }
/* v35 : intro façon "Projets" de la référence architecture-dinterieur */
.rentals-intro { background: var(--teal-deep); padding: 100px var(--pad-x) 40px; }
.rentals-intro-block { display: flex; flex-direction: column; align-items: center; text-align: center; }
.rentals-intro-title {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(36px, 4.4vw, 64px); line-height: 1;
  color: var(--cream); margin: 0 0 22px;
}
.rentals-intro-divider {
  display: block; width: 56px; height: 1px;
  background: var(--gold); margin: 0 auto 22px;
}
.rentals-intro-eyebrow {
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 36px;
}
.rentals-section--long .rentals-intro-eyebrow { margin-bottom: 12px; }
.rental-card {
  display: flex; flex-direction: column;
  background: var(--teal); cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.rental-card:hover { transform: translateY(-8px); }
.rental-media {
  position: relative; overflow: hidden;
  aspect-ratio: 16/10;
}
.rental-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.rental-card:hover .rental-media img { transform: scale(1.06); }
.rental-badge {
  position: absolute; top: 18px; left: 18px;
  font-family: var(--sans); font-size: 9px;
  letter-spacing: 3px; text-transform: uppercase;
  background: rgba(0, 32, 48, 0.85);
  color: var(--cream); padding: 7px 12px;
  backdrop-filter: blur(6px);
}
.rental-body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.rental-loc {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.rental-name {
  font-family: var(--serif); font-style: italic;
  font-weight: 400; font-size: 30px;
  color: var(--cream); margin-bottom: 14px;
  line-height: 1.15;
}
.rental-tagline {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
  color: var(--cream-soft);
  opacity: 0.85;
  margin: 0 0 22px;
}
.rental-meta {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--cream-soft);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(196, 165, 119, 0.18);
}
.rental-meta span:last-child { color: inherit; margin-left: 0; }
.rental-meta-sep { color: var(--gold); opacity: 0.5; }
.rental-cta {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  transition: letter-spacing 0.3s;
}
.rental-card:hover .rental-cta { letter-spacing: 5px; }

/* Badge LOUÉ (location longue durée) */
.rental-badge-loue {
  background: rgba(180, 60, 60, 0.9);
  color: #fff;
}

/* Section longue durée — variante visuelle */
.rentals-section--long {
  padding-top: 100px;
  padding-bottom: 100px;
  background: var(--teal-deep);
}

.rental-services { background: var(--teal); }
.rental-services-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px; margin-top: 64px;
}
.rental-service {
  padding-top: 24px;
  border-top: 1px solid rgba(196, 165, 119, 0.3);
}
.rental-service strong {
  display: block;
  font-family: var(--serif); font-style: italic;
  font-weight: 400; font-size: 24px;
  color: var(--cream); margin-bottom: 14px;
}
.rental-service p { font-size: 15px; line-height: 1.6; color: var(--cream-soft); }
@media (max-width: 900px) { .rental-services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .rental-services-grid { grid-template-columns: 1fr; } }

/* ═════════ Page ARCHITECTURE ═════════ */
.cristina { background: var(--teal); }
.cristina-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.cristina-media img { aspect-ratio: 3/4; object-fit: cover; width: 100%; }
.cristina-body p {
  font-family: var(--serif); font-size: 19px;
  line-height: 1.7; color: var(--cream-soft);
  margin-bottom: 22px;
}
.cristina-sign {
  margin-top: 32px;
  font-family: var(--serif); font-style: italic;
  font-size: 26px; color: var(--gold);
}
@media (max-width: 900px) { .cristina-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ═════════ v35 : Architecture refondue sur modèle production ═════════ */
.cristina-ref { background: rgb(12, 64, 81); padding: 120px var(--pad-x); }
.cristina-ref .cristina-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  max-width: 1100px;
  margin: 0 auto;
  gap: 100px;
  align-items: center;
}
.cristina-ref .cristina-media img { aspect-ratio: 1/1; width: 320px; height: 320px; object-fit: cover; display: block; }
.cristina-name {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(32px, 3.6vw, 48px);
  color: var(--cream);
  margin: 0 0 18px;
}
.cristina-divider {
  display: block; width: 56px; height: 1px;
  background: var(--gold); margin-bottom: 28px;
}
.cristina-ref .cristina-body p {
  font-family: var(--serif); font-size: 17px;
  line-height: 1.7; color: var(--cream-soft);
  margin-bottom: 22px; font-style: normal;
}
/* 2 colonnes maintenues jusqu'à 1024px : photo réduite à 240px pour rentrer */
@media (max-width: 1024px) {
  .cristina-ref { padding: 100px var(--pad-x); }
  .cristina-ref .cristina-grid { grid-template-columns: 240px 1fr; gap: 60px; max-width: 880px; }
  .cristina-ref .cristina-media img { width: 240px; height: 240px; }
}
/* Bascule en 1 colonne seulement à partir de 700px (vraies tablettes/mobiles) */
@media (max-width: 700px) {
  .cristina-ref { padding: 70px var(--pad-x); }
  .cristina-ref .cristina-grid { grid-template-columns: 1fr; gap: 36px; }
  .cristina-ref .cristina-media { display: flex; justify-content: center; }
  .cristina-ref .cristina-media img { width: 220px; height: 220px; }
  .cristina-name { text-align: center; }
  .cristina-divider { margin-left: auto; margin-right: auto; }
  .cristina-ref .cristina-body { text-align: center; }
}

/* Projets — section référence */
.projects-ref { background: var(--teal-deep); padding: 120px var(--pad-x); }
.projects-ref .container { max-width: 1100px; }
.projects-ref-head { text-align: center; margin-bottom: 56px; }
.projects-ref-title {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(40px, 4.6vw, 64px);
  color: var(--cream); margin: 0 0 24px;
}
.projects-ref-divider {
  display: block; width: 64px; height: 1px;
  background: var(--gold); margin: 0 auto;
}
.projects-ref-eyebrow {
  text-align: center;
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold);
  margin: 64px 0 36px;
}
.projects-ref-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.project-ref-tile {
  position: relative;
  cursor: pointer; display: block;
  background: transparent;
}
.project-ref-img {
  position: relative;
  width: 100%; aspect-ratio: 1/1;
  background-size: cover; background-position: center;
  background-color: var(--teal);
  overflow: hidden;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.project-ref-tile:hover .project-ref-img { transform: scale(1.02); }
.project-ref-badge {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  background: rgba(0, 32, 48, 0.75);
  border: 1px solid rgba(196, 165, 119, 0.5);
  padding: 8px 14px;
  z-index: 2;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
/* Caption sous l'image (style référence prod) */
.project-ref-caption {
  margin-top: 14px;
  padding: 0 4px;
}
.project-ref-name {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--cream);
  margin: 0 0 4px;
  line-height: 1.3;
}
.project-ref-sub {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(196, 165, 119, 0.7);
  margin: 0;
}
/* 2 colonnes maintenues jusqu'à 600px pour la grille projets */
@media (max-width: 600px) {
  .projects-ref { padding: 80px var(--pad-x); }
  .projects-ref-grid { grid-template-columns: 1fr; gap: 20px; }
  .projects-ref-eyebrow { margin: 48px 0 28px; }
}

/* ═════════ v39 : Template Projet individuel ═════════ */
.hero-projet { position: relative; }
.projet-eyebrow {
  position: absolute; top: 110px; left: 0; right: 0;
  z-index: 5;
  font-family: var(--sans); font-size: 12px;
  letter-spacing: 6px; text-transform: uppercase;
  color: rgba(196, 165, 119, 0.9);
  text-align: center;
}
.projet-specs { background: var(--teal); padding: 60px var(--pad-x); }
.projet-specs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; max-width: 1100px; margin: 0 auto;
  text-align: center;
}
.projet-spec-lbl {
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.projet-spec-val {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--cream);
}
.projet-description { background: var(--teal-deep); padding: 100px var(--pad-x); }
.projet-description-text {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.7;
  color: var(--cream);
  text-align: center;
  max-width: 880px; margin: 0 auto;
}
.projet-gallery { background: var(--teal); padding: 120px var(--pad-x); }
.projet-gallery .container { max-width: 1200px; }
.projet-gallery-head { text-align: center; margin-bottom: 64px; }
.projet-gallery-title {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(36px, 4.4vw, 64px);
  color: var(--cream); margin: 0;
}
.projet-gallery-block { margin-bottom: 80px; text-align: center; }
.projet-gallery-block-title {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(28px, 3vw, 44px);
  color: var(--cream); margin: 0 0 14px;
}
.projet-gallery-block-sub {
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 40px;
}
.projet-gallery-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.projet-gallery-grid:has(> .projet-gallery-img:only-child) { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }
.projet-gallery-img {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  background-color: var(--teal-deep);
}
@media (max-width: 900px) {
  .projet-specs-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .projet-gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .projet-eyebrow { top: 100px; font-size: 10px; letter-spacing: 4px; }
  .projet-specs { padding: 40px var(--pad-x); }
  .projet-specs-grid { grid-template-columns: 1fr; gap: 24px; }
  .projet-description { padding: 70px var(--pad-x); }
  .projet-gallery { padding: 80px var(--pad-x); }
  .projet-gallery-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* CTA Discutons */
.discutons-block { background: rgb(12, 64, 81); padding: 130px var(--pad-x); }
.discutons-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.discutons-eyebrow {
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 36px;
}
.discutons-quote {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.4;
  color: var(--cream);
  margin: 0 0 48px;
}
.btn-outline-cream {
  display: inline-block;
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--cream);
  padding: 18px 38px;
  border: 1px solid var(--cream);
  transition: all 0.3s ease;
  background: transparent;
}
.btn-outline-cream:hover {
  background: var(--cream); color: var(--night);
  border-color: var(--cream);
}
@media (max-width: 768px) {
  .discutons-block { padding: 80px var(--pad-x); }
  .discutons-quote { font-size: clamp(20px, 5.5vw, 28px); margin-bottom: 36px; }
}

.process { background: var(--teal-deep); }
.process-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 24px; margin-top: 64px;
}
.process-step {
  padding-top: 24px;
  border-top: 1px solid rgba(196, 165, 119, 0.3);
}
.step-num {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; color: var(--gold); margin-bottom: 16px;
}
.process-step h4 {
  font-family: var(--serif); font-weight: 400;
  font-size: 22px; color: var(--cream); margin-bottom: 12px;
}
.process-step p { font-size: 14px; line-height: 1.6; color: var(--cream-soft); }
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .process-grid { grid-template-columns: 1fr; } }

.projects-grid-section { background: var(--teal); }
.projects-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 64px;
}
.project-tile {
  position: relative; aspect-ratio: 1/1; overflow: hidden;
  cursor: pointer;
}
.project-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
/* v88 : aucune animation hover sur les 4 cartes missions PM (demande Cristina) */
.project-tile::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(9, 55, 70, 0.55) 80%, rgba(9, 55, 70, 0.92) 100%);
  z-index: 1;
  pointer-events: none;
}
.project-info {
  position: absolute;
  left: 0; right: 0; bottom: 22px;
  padding: 0 20px;
  text-align: center;
  z-index: 2;
  opacity: 1;
}
.project-status {
  display: block;
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.project-info h4 {
  font-family: var(--serif); font-style: italic;
  font-weight: 300; font-size: clamp(22px, 2.4vw, 30px);
  color: var(--cream);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
@media (max-width: 700px) { .projects-grid { grid-template-columns: 1fr; } }

/* ═════════ Page BOUTIQUE ═════════ */
.boutique-concept { background: var(--teal); }
.concept-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.concept-text p { font-size: 18px; line-height: 1.7; color: var(--cream-soft); margin-bottom: 18px; }
.concept-media img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
@media (max-width: 900px) { .concept-grid { grid-template-columns: 1fr; gap: 48px; } }

.boutique-cats { background: var(--teal-deep); }
.cats-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 24px; margin-top: 64px;
}
.cat-card {
  padding: 32px 24px;
  border: 1px solid rgba(196, 165, 119, 0.25);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cat-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.cat-num {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; color: var(--gold); margin-bottom: 18px;
}
.cat-card h4 {
  font-family: var(--serif); font-weight: 400;
  font-size: 24px; color: var(--cream); margin-bottom: 12px;
}
.cat-card p { font-size: 14px; line-height: 1.55; color: var(--cream-soft); }
@media (max-width: 900px) { .cats-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .cats-grid { grid-template-columns: 1fr; } }

.boutique-info { background: var(--teal); }
.info-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
}
.info-block {
  padding-top: 24px;
  border-top: 1px solid rgba(196, 165, 119, 0.3);
}
.info-tag {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.info-block p {
  font-family: var(--serif); font-size: 18px;
  line-height: 1.55; color: var(--cream); margin-bottom: 12px;
}
@media (max-width: 900px) { .info-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .info-grid { grid-template-columns: 1fr; } }

/* ═════════ Page BIENS ═════════ */
.biens-tabs-section { background: var(--teal-deep); }
.biens-tabs {
  display: flex; gap: 12px; margin-bottom: 48px;
}
.biens-tab {
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--cream); padding: 14px 24px;
  border: 1px solid rgba(196, 165, 119, 0.3);
  transition: all 0.3s;
}
.biens-tab.active {
  background: var(--gold); color: var(--night); border-color: var(--gold);
}
.biens-pane[hidden] { display: none; }
.biens-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}
.bien-card {
  background: var(--teal);
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.bien-card:hover { transform: translateY(-6px); }
.bien-media { aspect-ratio: 4/3; overflow: hidden; }
.bien-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
.bien-card:hover .bien-media img { transform: scale(1.06); }
.bien-body { padding: 24px 28px 32px; }
.bien-status {
  display: inline-block;
  font-family: var(--sans); font-size: 9px;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 5px 10px; margin-bottom: 14px;
}
.bien-status-vente { background: var(--gold); color: var(--night); }
.bien-status-loc { background: var(--cream); color: var(--night); }
.bien-name {
  font-family: var(--serif); font-style: italic;
  font-weight: 400; font-size: 26px;
  color: var(--cream); margin-bottom: 6px;
}
.bien-loc {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--cream-soft); margin-bottom: 14px;
}
.bien-stats {
  display: flex; gap: 8px; flex-wrap: wrap;
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--cream-soft); padding-top: 14px;
  border-top: 1px solid rgba(196, 165, 119, 0.2);
}
.bien-stats span:last-child { color: var(--gold); margin-left: auto; }
@media (max-width: 900px) { .biens-grid { grid-template-columns: 1fr; } }

.biens-support { background: var(--teal); }
.support-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px; margin-top: 64px;
}
.support-step {
  padding-top: 24px;
  border-top: 1px solid rgba(196, 165, 119, 0.3);
}
.support-step strong {
  display: block;
  font-family: var(--serif); font-style: italic;
  font-weight: 400; font-size: 24px;
  color: var(--cream); margin-bottom: 14px;
}
.support-step p { font-size: 15px; line-height: 1.6; color: var(--cream-soft); }
@media (max-width: 900px) { .support-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .support-grid { grid-template-columns: 1fr; } }

/* ═════════ Page ABOUT ═════════ */
.about-story { background: var(--teal); }
.story-col p {
  font-family: var(--serif); font-size: 22px;
  line-height: 1.7; color: var(--cream-soft);
  margin-bottom: 28px;
}

.team-section { background: var(--teal-deep); }
.team-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 28px; margin-top: 64px;
}
.team-card {
  text-align: center;
}
.team-photo {
  aspect-ratio: 3/4;
  background-size: cover; background-position: center;
  margin-bottom: 24px;
  filter: grayscale(0.4) brightness(0.85);
  transition: filter 0.5s;
}
.team-card:hover .team-photo { filter: grayscale(0) brightness(1); }
.team-card h4 {
  font-family: var(--serif); font-style: italic;
  font-weight: 400; font-size: 24px;
  color: var(--cream); margin-bottom: 8px;
}
.team-role {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
}
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr 1fr; } }

.values { background: var(--teal); }
.values-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px; margin-top: 64px;
}
.value {
  padding-top: 24px;
  border-top: 1px solid rgba(196, 165, 119, 0.3);
}
.value strong {
  display: block;
  font-family: var(--serif); font-style: italic;
  font-weight: 400; font-size: 32px;
  color: var(--gold); margin-bottom: 14px;
}
.value p { font-size: 16px; line-height: 1.6; color: var(--cream-soft); }
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr 1fr; } }

/* ═════════ Page CONTACT ═════════ */
.contact-main { background: var(--teal); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
.contact-info { display: flex; flex-direction: column; gap: 36px; }
.contact-block {
  padding-top: 20px;
  border-top: 1px solid rgba(196, 165, 119, 0.3);
}
.contact-block p {
  font-family: var(--serif); font-size: 19px;
  line-height: 1.55; color: var(--cream);
  margin-bottom: 12px;
}
.contact-block a:hover { color: var(--gold); }
.contact-block .tiny {
  display: block;
  font-family: var(--sans); font-size: 9px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-top: 2px;
}
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.form-tag {
  font-family: var(--sans); font-size: var(--tag);
  letter-spacing: var(--ls-tag); text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label {
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: transparent;
  border: 0; border-bottom: 1px solid rgba(196, 165, 119, 0.35);
  padding: 14px 0;
  color: var(--cream);
  font-family: var(--serif); font-size: 18px;
  outline: 0;
  transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}
.contact-form textarea { resize: vertical; }
.contact-form button { align-self: flex-start; margin-top: 14px; }
.form-note {
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--cream-soft);
}
/* v97 — feedback formulaire contact (succès / erreur) */
.form-feedback {
  padding: 18px 22px;
  border-radius: 4px;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 4px;
  animation: bd-form-fade-in .5s ease both;
}
.form-feedback-success {
  background: rgba(196, 165, 119, 0.12);
  border-left: 3px solid var(--gold);
  color: var(--cream);
}
.form-feedback-error {
  background: rgba(180, 60, 60, 0.12);
  border-left: 3px solid #b43c3c;
  color: var(--cream);
}
.form-feedback small { display: block; margin-top: 6px; font-size: 12px; opacity: .7; }
@keyframes bd-form-fade-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* v99 — Bannière cookies (RGPD) ─────────────────────────── */
.bd-cookie-banner {
  position: fixed;
  z-index: 9999;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 720px;
  margin: 0 auto;
  background: rgba(15, 28, 46, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(196, 165, 119, 0.25);
  border-radius: 6px;
  padding: 20px 24px;
  color: var(--cream, #f4ecde);
  font-family: var(--serif, Georgia, serif);
  font-size: 14px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .45s ease, transform .45s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
}
.bd-cookie-banner.bd-cookie-show {
  opacity: 1;
  transform: translateY(0);
}
.bd-cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.bd-cookie-text {
  flex: 1;
  min-width: 240px;
  margin: 0;
}
.bd-cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.bd-cookie-btn {
  background: transparent;
  color: var(--cream, #f4ecde);
  border: 1px solid rgba(196, 165, 119, 0.5);
  padding: 10px 22px;
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s ease;
  border-radius: 2px;
}
.bd-cookie-btn:hover {
  background: rgba(196, 165, 119, 0.12);
  border-color: var(--gold, #c4a577);
}
.bd-cookie-accept {
  background: var(--gold, #c4a577);
  color: var(--night, #0f1c2e);
  border-color: var(--gold, #c4a577);
}
.bd-cookie-accept:hover {
  background: #d4b687;
  border-color: #d4b687;
}
@media (max-width: 600px) {
  .bd-cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px 18px;
  }
  .bd-cookie-actions {
    width: 100%;
    justify-content: stretch;
  }
  .bd-cookie-btn {
    flex: 1;
    padding: 12px 16px;
  }
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ═════════ Footer ═════════ */
.site-foot {
  background: var(--night);
  padding: 100px var(--pad-x) 40px;
  border-top: 1px solid rgba(196, 165, 119, 0.15);
}
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(196, 165, 119, 0.18);
}
.foot-mark {
  font-family: var(--serif); font-style: italic;
  font-size: 36px; color: var(--cream); margin-bottom: 16px;
}
.foot-baseline {
  font-family: var(--serif); font-style: italic;
  font-size: 16px; color: var(--cream-soft); max-width: 320px;
}
.foot-tag {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.foot-col ul { list-style: none; }
.foot-col li, .foot-col p {
  font-size: 14px; color: var(--cream-soft);
  padding: 5px 0; line-height: 1.6;
}
.foot-col a:hover { color: var(--gold); }
.foot-bottom {
  display: flex; justify-content: space-between;
  padding-top: 28px;
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--cream-soft);
}
.foot-bottom a:hover { color: var(--gold); }
@media (max-width: 900px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .foot-bottom { flex-direction: column; gap: 12px; }
}
@media (max-width: 600px) {
  .foot-grid { grid-template-columns: 1fr; }
}

/* ═════════ Mobile global ═════════ */
@media (max-width: 768px) {
  :root { --pad-x: 24px; }
  section { padding: 80px var(--pad-x); }
  .cta-block { padding: 100px var(--pad-x); }
  .hero-title { font-size: clamp(28px, 8vw, 42px); line-height: 1.1; margin-bottom: 24px; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 3px; margin-bottom: 14px; }
  .hero-sub-left { font-size: 14px; max-width: 100%; margin-bottom: 24px; }
  .hero-content-left { padding: 100px var(--pad-x) 50px; }
  .hero-bien .hero-content-left { padding: 100px var(--pad-x) 50px; }
  .hero-subpage { min-height: 500px; max-height: none; padding: 0; }
  .crumb { font-size: 9px; letter-spacing: 2px; }
  /* Header mobile : fond plus net pour lisibilité */
  .site-head {
    background: rgba(0, 32, 48, 0.75);
    backdrop-filter: blur(8px);
  }
  .site-head.scrolled { background: rgba(0, 70, 94, 0.95); }
  /* Container global */
  .container { padding: 0 var(--pad-x); }
}

/* ═════════ Mobile portrait (≤ 480px) ═════════ */
@media (max-width: 480px) {
  :root { --pad-x: 18px; }
  .hero-title { font-size: clamp(26px, 9vw, 36px); }
  .brand-logo-location { height: 36px; }
  .hero-content-left { padding: 90px var(--pad-x) 40px; }
}

/* ═════════ Page Bien Single — Hero + Widget RoomRaccoon ═════════ */
.hero-bien { min-height: 80vh; }
.hero-bien .hero-content-left { max-width: 1100px; }
.hero-bien .hero-title { margin-bottom: 36px; }

.bd-rr-widget {
  background: rgba(0, 70, 94, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 24px 28px;
  border: 1px solid rgba(196, 165, 119, 0.4);
  margin-top: 24px;
  max-width: 920px;
}
.bd-rr-widget-hero { margin-top: 36px; max-width: 1100px; }
.bd-rr-widget-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: end;
}
.bd-rr-widget-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--cream-soft, #efe3cf);
  line-height: 1.2;
  flex: 1 1 220px;
  min-width: 200px;
}
.bd-rr-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bd-rr-field label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold, #c4a577);
}
.bd-rr-field input[type="date"] {
  padding: 10px 14px;
  border: 1px solid rgba(196, 165, 119, 0.4);
  border-radius: 0;
  font-size: 15px;
  background: var(--teal-deep);
  color: var(--cream-soft, #efe3cf);
  font-family: 'Cormorant Garamond', serif;
  min-width: 150px;
}
.bd-rr-widget .rr-go {
  background: var(--gold, #c4a577);
  color: #0a0a0a;
  padding: 14px 28px;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  border: 1px solid var(--gold, #c4a577);
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}
.bd-rr-widget .rr-go:hover {
  /* v148 : hover lisible — texte cream sur fond sombre, bordure dorée */
  background: rgba(15, 28, 46, 0.75);
  color: var(--cream, #f4ecde);
  border-color: var(--gold, #c4a577);
}

/* v147 : titre sur 1 ligne PUIS dates + bouton sur la ligne d'en-dessous
   Label force la wrap en prenant 100% de la largeur — pas de 1-liner trop tassé */
.bd-rr-widget-hero .bd-rr-widget-row,
.bd-rr-widget-bottom-wrap .bd-rr-widget-row {
  flex-wrap: wrap;
  align-items: end;
  gap: 14px 16px;
}
.bd-rr-widget-hero .bd-rr-widget-label,
.bd-rr-widget-bottom-wrap .bd-rr-widget-label {
  flex: 0 0 100%;
  min-width: 0;
  margin-bottom: 0;
}
.bd-rr-widget-hero .bd-rr-field,
.bd-rr-widget-bottom-wrap .bd-rr-field {
  flex: 0 0 auto;
}
.bd-rr-widget-hero .bd-rr-field input[type="date"],
.bd-rr-widget-bottom-wrap .bd-rr-field input[type="date"] {
  min-width: 140px;
  max-width: 180px;
}
/* v149 : Bouton compact "Vérifier →" sur la MÊME ligne que les dates
   Hauteur = input (h ~40px) — pas d'agrandissement vertical */
.bd-rr-widget-hero .rr-go,
.bd-rr-widget-bottom-wrap .rr-go {
  flex: 0 0 auto;
  align-self: flex-end;
  height: 40px;
  padding: 0 26px;
  font-size: 11px;
  letter-spacing: 0.18em;
  line-height: 40px;
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* v146 : widget RR en bas de la page bien, pleine largeur */
.bd-rr-widget-bottom-wrap {
  margin-top: 32px;
}
.bd-rr-widget-bottom-wrap .bd-rr-widget {
  max-width: none;
  width: 100%;
  margin-top: 0;
}

/* v146 : sous 600px, dates en pleine largeur (1 par ligne) */
@media (max-width: 600px) {
  .bd-rr-widget-hero .bd-rr-field,
  .bd-rr-widget-bottom-wrap .bd-rr-field {
    flex: 1 1 100%;
  }
  .bd-rr-widget-hero .bd-rr-field input[type="date"],
  .bd-rr-widget-bottom-wrap .bd-rr-field input[type="date"] {
    max-width: none;
  }
  .bd-rr-widget-hero .rr-go,
  .bd-rr-widget-bottom-wrap .rr-go {
    flex: 1 1 100%;
    min-width: 0;
  }
}

/* ═════════ Bien content section ═════════ */
.bien-content { padding: 80px var(--pad-x); }
.bien-content-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.bien-content .wp-block-image img { width: 100%; height: auto; }

/* Galerie custom (échappe au layout flex WP block) */
.bd-bien-gallery {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 48px 0;
}
.bd-bien-photo {
  margin: 0;
  overflow: hidden;
  background: var(--teal-darker);
  position: relative;
  /* Optimise le rendu : le navigateur skip la peinture des éléments hors viewport */
  content-visibility: auto;
  contain-intrinsic-size: 320px 240px;
}
.bd-bien-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.bd-bien-photo:hover img {
  transform: scale(1.04);
}

.bien-content .bd-bien-meta {
  font-size: 18px;
  color: var(--gold, #c4a577);
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

/* Caractéristiques clés (chambres · sdb · capacité · m²) en grille */
.bd-bien-features {
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(196, 165, 119, 0.25);
  border-bottom: 1px solid rgba(196, 165, 119, 0.25);
}
.bd-bien-features li {
  padding: 26px 18px;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.3px;
  color: var(--cream-soft, #efe3cf);
  border-right: 1px solid rgba(196, 165, 119, 0.18);
}
.bd-bien-features li:last-child { border-right: none; }

/* Blocs de contenu (Composition / Inclus / Conditions) */
.bd-bien-block {
  margin: 48px 0;
  padding: 32px 36px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 2px solid var(--gold, #c4a577);
}
.bd-bien-block-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  color: var(--gold, #c4a577);
  margin: 0 0 22px;
  letter-spacing: 0.3px;
}
.bd-bien-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 32px;
}
.bd-bien-list li {
  padding-left: 18px;
  position: relative;
  font-size: 15px;
  line-height: 1.6;
  color: var(--cream-soft, #efe3cf);
}
.bd-bien-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 6px; height: 6px;
  background: var(--gold, #c4a577);
  border-radius: 50%;
}
.bd-bien-block-inclus {
  background: rgba(196, 165, 119, 0.08);
  border-left-color: var(--gold, #c4a577);
}
.bd-bien-block-conditions {
  background: rgba(255, 255, 255, 0.03);
  border-left-color: rgba(196, 165, 119, 0.6);
}
.bd-bien-block-conditions .bd-bien-list { grid-template-columns: 1fr; }
.bd-bien-block-conditions .bd-bien-list li { font-size: 14px; opacity: 0.85; }

/* v145 : grille 2 colonnes "Conditions" + "Offre Expérience Hôtel" sur les pages biens */
.bd-bien-conditions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.bd-bien-conditions-grid > .bd-bien-block { margin: 0; }
@media (max-width: 900px) {
  .bd-bien-conditions-grid { grid-template-columns: 1fr; gap: 16px; }
}
.bd-bien-block-experience {
  background: rgba(196, 165, 119, 0.06);
  border-left-color: var(--gold, #c4a577);
  display: flex;
  flex-direction: column;
}
.bd-bien-experience-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--cream-soft, #d8cdb5);
  margin: 0 0 24px;
  opacity: 0.92;
}
.bd-bien-pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 13px 24px;
  margin-top: auto;
  background: var(--gold, #c4a577);
  color: var(--night, #0f1c2e);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold, #c4a577);
  border-radius: 2px;
  transition: background 0.3s ease, color 0.3s ease;
}
.bd-bien-pdf-link:hover {
  background: transparent;
  color: var(--gold, #c4a577);
}
.bd-bien-pdf-link svg { flex-shrink: 0; }

/* Laptop 13" (901–1366px) — densifie sans casser ; min-width évite de polluer mobile */
@media (max-width: 1366px) and (min-width: 901px) {
  .hero-title { font-size: clamp(34px, 4.4vw, 58px); line-height: 1.08; }
  .hero-eyebrow { margin-bottom: 18px; }
  .hero-sub-left { font-size: 15px; margin-bottom: 28px; }
  .hero-bien .hero-content-left { max-width: 920px; padding: 120px var(--pad-x) 60px; }
  .hero-content-left { max-width: 1100px; padding: 120px var(--pad-x) 60px; }
  .hero-subpage { min-height: 560px; max-height: none; }
  .bd-rr-widget { padding: 20px 22px; }
  .bd-rr-widget-label { font-size: 19px; flex-basis: 240px; }
  .bd-rr-field input[type="date"] { min-width: 130px; padding: 9px 12px; font-size: 14px; }
  .bd-rr-widget .rr-go { padding: 12px 22px; font-size: 10px; }
  .bd-bien-features li { padding: 22px 12px; font-size: 16px; }
  .bd-bien-block { padding: 28px 28px; }
  .bd-bien-list { gap: 8px 24px; }
}

/* Tablette grande (901–1100px) */
@media (max-width: 1100px) and (min-width: 901px) {
  .bd-bien-list { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero-title { font-size: clamp(30px, 7vw, 48px); }
  .hero-content-left { padding: 110px var(--pad-x) 60px; }
  .hero-bien .hero-content-left { padding: 110px var(--pad-x) 60px; }
  .hero-subpage { min-height: 520px; max-height: none; padding: 0; }
  .bd-rr-widget-row { flex-direction: column; align-items: stretch; }
  .bd-rr-field input[type="date"] { min-width: 0; width: 100%; }
  .bd-bien-gallery { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .bd-bien-photo img { height: 260px; }
  .bd-bien-features { grid-template-columns: repeat(2, 1fr); }
  .bd-bien-features li:nth-child(2) { border-right: none; }
  .bd-bien-features li:nth-child(-n+2) { border-bottom: 1px solid rgba(196, 165, 119, 0.18); }
  .bd-bien-list { grid-template-columns: 1fr; }
  .bd-bien-block { padding: 26px 22px; }
}
@media (max-width: 600px) {
  .bd-bien-gallery { grid-template-columns: 1fr; gap: 12px; }
  .bd-bien-photo img { height: 240px; }
  .bd-bien-features { grid-template-columns: 1fr; }
  .bd-bien-features li { border-right: none; border-bottom: 1px solid rgba(196, 165, 119, 0.18); }
  .bd-bien-features li:last-child { border-bottom: none; }
}

/* ════════════════════════════════════════════════════════
   v44 — Template Projet (Architecture)
   Reproduction layout validé : prod blackdiamondconcierge.ch/projet-01-en-cours/
   ════════════════════════════════════════════════════════ */

/* ───── Hero projet : même base que hero-subpage mais hauteur réduite ───── */
.bd-projet-hero { min-height: 70vh; }
.bd-projet-hero .hero-title-center { font-size: clamp(36px, 4.8vw, 72px); }

/* ───── Bande specs : 4 colonnes Lieu / Surface / Année / Type ───── */
.bd-projet-specs {
  background: var(--teal);
  padding: 64px 0;
  border-top: 1px solid rgba(196, 165, 119, 0.18);
  border-bottom: 1px solid rgba(196, 165, 119, 0.18);
}
.bd-projet-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.bd-projet-spec-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.bd-projet-spec-value {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--cream);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .bd-projet-specs { padding: 48px 0; }
  .bd-projet-specs-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 480px) {
  .bd-projet-specs-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ───── Description : citation italique centrée ───── */
.bd-projet-description {
  background: var(--teal-deep);
  padding: 100px 0;
}
.bd-projet-description-text {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.55;
  color: var(--cream);
}
@media (max-width: 768px) {
  .bd-projet-description { padding: 72px 0; }
}

/* ─── v114 : Contenu Elementor éditable sur les pages projet ───
 * Section qui wrap tout le contenu Elementor (specs + description + galleries).
 * Le styling masonry des galleries Elementor vient de .bd-elementor-gallery-section
 * (même règle que la galerie boutique, plus bas dans ce fichier).
 */
.bd-projet-elementor-content {
  background: var(--teal-deep);
}
/* Style headings Elementor pour matcher Black Diamond */
.bd-projet-elementor-content .elementor-heading-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
}
/* Eyebrow doré (class CSS "bd-eyebrow" à mettre sur le widget Heading dans Elementor) */
.bd-projet-elementor-content .elementor-widget.bd-eyebrow .elementor-heading-title,
.bd-projet-elementor-content .bd-eyebrow .elementor-heading-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--gold);
  text-align: center;
  margin-bottom: 8px;
}
/* Label spec en caps doré (class CSS "bd-spec-label" sur Heading dans Elementor) */
.bd-projet-elementor-content .bd-spec-label .elementor-heading-title {
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  text-align: center;
}
/* Valeur spec italique cream (class CSS "bd-spec-value" sur Heading) */
.bd-projet-elementor-content .bd-spec-value .elementor-heading-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.4;
  color: var(--cream);
  text-align: center;
}
/* Titre de section (galerie) — class "bd-section-title" sur Heading */
.bd-projet-elementor-content .bd-section-title .elementor-heading-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(32px, 4vw, 56px);
  text-align: center;
  color: var(--cream);
  margin-bottom: 16px;
}
/* Description italique grande sur fond teal */
.bd-projet-elementor-content .bd-description .elementor-widget-text-editor,
.bd-projet-elementor-content .elementor-widget-text-editor.bd-description {
  text-align: center;
}
.bd-projet-elementor-content .bd-description p,
.bd-projet-elementor-content .elementor-widget-text-editor.bd-description p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.55;
  color: var(--cream);
  max-width: 920px;
  margin: 0 auto;
}

/* ───── Eyebrow + titre + filet pour les sections galerie ───── */
.bd-projet-gallery-head {
  text-align: center;
  margin-bottom: 56px;
}
.bd-projet-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.bd-projet-gallery-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(32px, 4vw, 56px);
  color: var(--cream);
  line-height: 1.15;
  margin: 0 0 22px;
}
/* v117 : Variantes Elementor (Heading widgets avec class CSS bd-projet-eyebrow / bd-projet-gallery-title)
   v120 : !important pour overrider les styles globaux Elementor */
.elementor-widget.bd-projet-eyebrow .elementor-heading-title,
.bd-projet-eyebrow.elementor-widget-heading .elementor-heading-title,
.bd-projet-eyebrow .elementor-heading-title {
  font-family: var(--serif) !important;
  font-style: italic !important;
  font-weight: 300 !important;
  font-size: 18px !important;
  color: var(--gold) !important;
  letter-spacing: 0.5px;
  text-align: center !important;
  margin-bottom: 8px;
}
.elementor-widget.bd-projet-gallery-title .elementor-heading-title,
.bd-projet-gallery-title.elementor-widget-heading .elementor-heading-title,
.bd-projet-gallery-title .elementor-heading-title {
  font-family: var(--serif) !important;
  font-style: italic !important;
  font-weight: 300 !important;
  font-size: clamp(32px, 4vw, 56px) !important;
  color: var(--cream) !important;
  line-height: 1.15 !important;
  text-align: center !important;
  margin: 0 0 32px !important;
  position: relative;
  padding-bottom: 22px;
}
/* Filet doré sous le titre (replace le bd-projet-divider PHP) */
.elementor-widget.bd-projet-gallery-title .elementor-heading-title::after,
.bd-projet-gallery-title .elementor-heading-title::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 1px;
  background: var(--gold);
}
/* v125 : cache les widgets Image marqués bd-projet-ba-before/-after dans la section Elementor.
   Les images sont extraites par PHP et rendues dans le composant slider drag custom plus haut.
   v127 : cache aussi la SECTION qui les contient (sinon trou visuel en frontend). */
.bd-elementor-gallery-section .bd-projet-ba-before,
.bd-elementor-gallery-section .bd-projet-ba-after,
.bd-elementor-gallery-section .elementor-widget.bd-projet-ba-before,
.bd-elementor-gallery-section .elementor-widget.bd-projet-ba-after {
  display: none !important;
}
/* Cache la SECTION entière qui contient ces widgets (utilise :has, supporté Chrome 105+/Safari 15.4+/Firefox 121+) */
.bd-elementor-gallery-section .elementor-section:has(.bd-projet-ba-before),
.bd-elementor-gallery-section .elementor-section:has(.bd-projet-ba-after),
.bd-elementor-gallery-section .bd-projet-ba-section-em {
  display: none !important;
}

/* v134 : sections Elementor vidées par bd_render_content_filtered (aucun widget restant) */
.bd-empty-em-section {
  display: none !important;
}

/* Espacement entre 2 galleries successives (entre 2 sections Elementor consécutives) */
.bd-elementor-gallery-section .elementor-section + .elementor-section {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .bd-elementor-gallery-section .elementor-section + .elementor-section {
    margin-top: 48px;
  }
}
.bd-projet-divider {
  display: block;
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════
   Slider AVANT / APRÈS — poignée curseur gauche-droite
   (réplique du widget qi_addons_for_elementor_before_after)
   ═══════════════════════════════════════════════════════ */
.bd-projet-ba-section {
  background: var(--teal-deep);
  padding: 100px 0;
}
.bd-ba {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 2px;
  background: var(--teal-darker);
  user-select: none;
  cursor: ew-resize;
  touch-action: pan-y;
}
.bd-ba-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}
.bd-ba-clip {
  position: absolute;
  inset: 0;
  width: var(--bd-ba-pos, 50%);
  overflow: hidden;
  will-change: width;
}
.bd-ba-clip .bd-ba-img {
  width: 100vw;          /* rendu pleine largeur dans le clip */
  max-width: 1180px;
  height: 100%;
}
@media (max-width: 1240px) {
  .bd-ba-clip .bd-ba-img { width: 100vw; max-width: none; }
}

/* Ligne verticale de séparation */
.bd-ba-divider-line {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--bd-ba-pos, 50%);
  width: 2px;
  background: var(--cream);
  transform: translateX(-1px);
  pointer-events: none;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.35);
}

/* Poignée ronde au milieu de la ligne */
.bd-ba-handle {
  position: absolute;
  top: 50%;
  left: var(--bd-ba-pos, 50%);
  width: 56px; height: 56px;
  margin-left: -28px; margin-top: -28px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: ew-resize;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  z-index: 3;
  transition: transform 0.25s ease, background 0.25s ease;
}
.bd-ba-handle:hover { transform: translate(0, 0) scale(1.08); }
.bd-ba-arrow {
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.bd-ba-arrow-left  { border-right: 8px solid var(--teal-deep); }
.bd-ba-arrow-right { border-left:  8px solid var(--teal-deep); }

/* Étiquettes AVANT / APRÈS aux coins */
.bd-ba-tag {
  position: absolute;
  top: 24px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(0, 32, 48, 0.62);
  padding: 8px 14px;
  border: 1px solid rgba(196, 165, 119, 0.45);
  backdrop-filter: blur(4px);
  z-index: 2;
  pointer-events: none;
}
.bd-ba-tag-before { left: 24px; }
.bd-ba-tag-after  { right: 24px; }

@media (max-width: 768px) {
  .bd-projet-ba-section { padding: 72px 0; }
  .bd-ba { aspect-ratio: 4 / 3; }
  .bd-ba-handle { width: 48px; height: 48px; margin-left: -24px; margin-top: -24px; }
  .bd-ba-tag { font-size: 9px; letter-spacing: 3px; padding: 6px 10px; }
  .bd-ba-tag-before { left: 14px; top: 14px; }
  .bd-ba-tag-after  { right: 14px; top: 14px; }
}

/* ═══════════════════════════════════════════════════════
   Galeries masonry 3 colonnes (style pinterest gallery prod)
   ═══════════════════════════════════════════════════════ */
.bd-projet-gallery-section {
  background: var(--teal-deep);
  padding: 100px 0;
}
.bd-projet-gallery-section + .bd-projet-gallery-section {
  padding-top: 0;            /* enchainement plus serré */
}
.bd-projet-masonry {
  column-count: 3;
  column-gap: 14px;
}
.bd-projet-tile {
  break-inside: avoid;
  margin: 0 0 14px;
  overflow: hidden;
  background: var(--teal-darker);
  position: relative;
}
.bd-projet-tile img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
              filter 0.5s ease;
  filter: brightness(0.96);
}
.bd-projet-tile:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}
@media (max-width: 960px) {
  .bd-projet-masonry { column-count: 2; column-gap: 10px; }
  .bd-projet-tile { margin-bottom: 10px; }
  .bd-projet-gallery-section { padding: 72px 0; }
}
@media (max-width: 560px) {
  .bd-projet-masonry { column-count: 1; }
}

/* ───── CTA final (Et chez vous ? / On en parle / bouton) ───── */
.bd-projet-cta {
  background: var(--teal);
  padding: 110px 0;
  border-top: 1px solid rgba(196, 165, 119, 0.18);
}
.bd-projet-cta-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.bd-projet-cta-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.1;
  color: var(--cream);
  margin: 0 0 24px;
}
.bd-projet-cta .bd-projet-divider { margin: 0 auto 28px; }
.bd-projet-cta-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.3;
  color: var(--cream);
  margin: 0 0 40px;
}
@media (max-width: 768px) {
  .bd-projet-cta { padding: 80px 0; }
}

/* ════════════════════════════════════════════════════════
   v46 — Lightbox photo + navigation projet précédent/suivant
   ════════════════════════════════════════════════════════ */

/* ───── Tuile cliquable (bouton transparent autour de l'image) ───── */
.bd-projet-tile-btn {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;            /* curseur custom (gold ring) gère le hover */
  position: relative;
  overflow: hidden;
}
.bd-projet-tile-btn img {
  width: 100%;
  height: auto;
  display: block;
}
.bd-projet-tile-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 32, 48, 0);
  transition: background 0.4s ease;
  pointer-events: none;
}
.bd-projet-tile-btn:hover::after { background: rgba(0, 32, 48, 0.18); }
.bd-projet-tile-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ───── Navigation projet précédent / suivant (bas de page) ───── */
.bd-projet-nav {
  background: var(--teal-deep);
  padding: 90px 0;
  border-top: 1px solid rgba(196, 165, 119, 0.18);
  border-bottom: 1px solid rgba(196, 165, 119, 0.18);
}
.bd-projet-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.bd-projet-nav-link {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 36px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(196, 165, 119, 0.20);
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.bd-projet-nav-link:hover {
  background: rgba(196, 165, 119, 0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.bd-projet-nav-empty {
  background: transparent;
  border: 1px dashed rgba(196, 165, 119, 0.10);
  pointer-events: none;
}
.bd-projet-nav-arrow {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 44px;
  line-height: 1;
  color: var(--gold);
  flex-shrink: 0;
}
.bd-projet-nav-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.bd-projet-nav-prev { text-align: left; }
.bd-projet-nav-next { text-align: right; justify-content: flex-end; }
.bd-projet-nav-next .bd-projet-nav-body { align-items: flex-end; }
.bd-projet-nav-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}
.bd-projet-nav-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.25;
  color: var(--cream);
}
@media (max-width: 768px) {
  .bd-projet-nav { padding: 60px 0; }
  .bd-projet-nav-grid { grid-template-columns: 1fr; gap: 14px; }
  .bd-projet-nav-link { padding: 24px 22px; gap: 16px; }
  .bd-projet-nav-arrow { font-size: 32px; }
  .bd-projet-nav-empty { display: none; }
}

/* ════════════════════════════════════════════════════════
   Lightbox plein écran (clic photo → overlay + prev/next)
   ════════════════════════════════════════════════════════ */
.bd-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 12, 18, 0.94);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
  cursor: pointer;
}
.bd-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, visibility 0s linear 0s;
}
.bd-lightbox-stage {
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.bd-lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.bd-lightbox.is-open .bd-lightbox-img {
  opacity: 1;
  transform: scale(1);
}
.bd-lightbox-close,
.bd-lightbox-prev,
.bd-lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  border: 1px solid rgba(196, 165, 119, 0.35);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 300;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  z-index: 2;
}
.bd-lightbox-close:hover,
.bd-lightbox-prev:hover,
.bd-lightbox-next:hover {
  background: rgba(196, 165, 119, 0.18);
  border-color: var(--gold);
}
.bd-lightbox-close {
  top: 24px; right: 24px;
  width: 52px; height: 52px;
  font-size: 30px;
  line-height: 1;
}
.bd-lightbox-prev,
.bd-lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  font-size: 38px;
  line-height: 1;
}
.bd-lightbox-prev { left: 24px; }
.bd-lightbox-next { right: 24px; }
.bd-lightbox-prev:hover { transform: translateY(-50%) translateX(-4px); }
.bd-lightbox-next:hover { transform: translateY(-50%) translateX(4px); }
.bd-lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(0, 12, 18, 0.5);
  padding: 8px 16px;
  border: 1px solid rgba(196, 165, 119, 0.30);
}
@media (max-width: 768px) {
  .bd-lightbox-close { top: 14px; right: 14px; width: 44px; height: 44px; font-size: 24px; }
  .bd-lightbox-prev,
  .bd-lightbox-next { width: 44px; height: 44px; font-size: 28px; }
  .bd-lightbox-prev { left: 12px; }
  .bd-lightbox-next { right: 12px; }
  .bd-lightbox-counter { bottom: 14px; font-size: 10px; letter-spacing: 3px; }
}

/* Empêche le scroll du body quand la lightbox est ouverte */
body.bd-lightbox-open { overflow: hidden; }

/* ════════════════════════════════════════════════════════
   v64 — Page Biens : empty state "À vendre" + CTA "Vous avez un bien à vendre ?"
   ════════════════════════════════════════════════════════ */

/* État vide "Aucun bien à vendre" */
.biens-empty {
  text-align: center;
  padding: 64px 24px 56px;
  border: 1px solid rgba(196, 165, 119, 0.25);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 32px;
}
.biens-empty-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 18px;
}
.biens-empty-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.2;
  color: var(--cream);
  margin: 0 auto 22px;
  max-width: 720px;
}
.biens-empty-text {
  max-width: 640px;
  margin: 0 auto 32px;
  color: var(--cream-soft);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
}

/* Carte CTA "Vous avez un bien à vendre ?" */
.biens-sell-cta {
  background: linear-gradient(180deg, rgba(196, 165, 119, 0.08) 0%, rgba(196, 165, 119, 0.03) 100%);
  border: 1px solid rgba(196, 165, 119, 0.35);
  padding: 64px 48px;
  text-align: center;
}
.biens-sell-cta-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 18px;
}
.biens-sell-cta-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.2;
  color: var(--cream);
  margin: 0 auto 22px;
  max-width: 820px;
}
.biens-sell-cta-title em {
  font-style: italic;
  color: var(--cream);
}
.biens-sell-cta-text {
  max-width: 700px;
  margin: 0 auto 36px;
  color: var(--cream-soft);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
}
.biens-sell-cta-row {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* Status "Loué" (badge similaire à .bien-status-loc mais teinté différemment) */
.bien-status-loue {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(196, 165, 119, 0.5);
  color: var(--gold);
  background: rgba(0, 0, 0, 0.25);
  margin-bottom: 14px;
}
.bien-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--cream-soft);
  margin: 6px 0 12px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .biens-empty,
  .biens-sell-cta { padding: 48px 24px; }
  .biens-sell-cta-row { flex-direction: column; gap: 16px; }
}

/* ════════════════════════════════════════════════════════
   v69 — page-extra-content : conteneur pour le contenu WP/Elementor
   ajouté en complément de la mise en page hardcodée des templates custom
   ════════════════════════════════════════════════════════ */
.page-extra-content {
  background: var(--teal-deep);
  padding: 80px 0;
  color: var(--cream);
}
.page-extra-content .container {
  max-width: 1100px;
}
.page-extra-content h2,
.page-extra-content h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  margin: 0 0 24px;
}
.page-extra-content p {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 18px;
  color: var(--cream-soft);
}
@media (max-width: 768px) {
  .page-extra-content { padding: 56px 0; }
}

/* ════════════════════════════════════════════════════════
   v70 — Galerie WP (Gutenberg) sur page Boutique
   Force la galerie native WP à s'afficher en masonry 3 colonnes
   identique à .bd-projet-masonry. Le JS attache la lightbox.
   ════════════════════════════════════════════════════════ */

.bd-wp-boutique-gallery .wp-block-gallery,
.bd-wp-boutique-gallery .gallery {
  display: block !important;        /* annule grid/flex natif */
  column-count: 3;
  column-gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.bd-wp-boutique-gallery .wp-block-gallery .wp-block-image,
.bd-wp-boutique-gallery .wp-block-gallery figure,
.bd-wp-boutique-gallery .gallery .gallery-item {
  break-inside: avoid;
  margin: 0 0 14px !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
  background: var(--teal-darker);
  position: relative;
  display: block;
  page-break-inside: avoid;
}
.bd-wp-boutique-gallery .wp-block-gallery .wp-block-image img,
.bd-wp-boutique-gallery .gallery .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  cursor: zoom-in;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
              filter 0.5s ease;
  filter: brightness(0.96);
}
.bd-wp-boutique-gallery .wp-block-gallery .wp-block-image:hover img,
.bd-wp-boutique-gallery .gallery .gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}
.bd-wp-boutique-gallery .wp-block-gallery figcaption,
.bd-wp-boutique-gallery .gallery .gallery-caption { display: none; }

@media (max-width: 960px) {
  .bd-wp-boutique-gallery .wp-block-gallery,
  .bd-wp-boutique-gallery .gallery { column-count: 2; column-gap: 10px; }
  .bd-wp-boutique-gallery .wp-block-gallery .wp-block-image,
  .bd-wp-boutique-gallery .gallery .gallery-item { margin-bottom: 10px !important; }
}
@media (max-width: 560px) {
  .bd-wp-boutique-gallery .wp-block-gallery,
  .bd-wp-boutique-gallery .gallery { column-count: 1; }
}

/* ════════════════════════════════════════════════════════
   v71 — Templates par défaut (page.php / single.php) pour Elementor
   ════════════════════════════════════════════════════════ */
.bd-default-page,
.bd-default-single { background: var(--teal-deep); min-height: 60vh; }
.bd-page-content { padding: 80px 0 120px; }
.bd-page-content .container { max-width: 900px; }
.bd-page-content h2,
.bd-page-content h3,
.bd-page-content h4 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  margin: 32px 0 16px;
}
.bd-page-content h2 { font-size: clamp(28px, 3vw, 40px); line-height: 1.15; }
.bd-page-content h3 { font-size: clamp(22px, 2.4vw, 30px); }
.bd-page-content p {
  color: var(--cream-soft);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.bd-page-content a { color: var(--gold); text-decoration: underline; }
.bd-page-content ul,
.bd-page-content ol { color: var(--cream-soft); margin: 0 0 18px 24px; }
.bd-page-content li { margin-bottom: 8px; }
.bd-page-content img,
.bd-page-content .wp-block-image img {
  max-width: 100%;
  height: auto;
  margin: 24px 0;
}
@media (max-width: 768px) {
  .bd-page-content { padding: 56px 0 80px; }
}

/* ════════════════════════════════════════════════════════
   v92 — Galerie boutique éditable depuis Elementor
   Force le rendu du widget "Galerie d'images" en masonry 3-col
   identique à .bd-projet-masonry. JS attache la lightbox.
   ════════════════════════════════════════════════════════ */

/* Cible : la galerie Elementor OU la galerie Gutenberg native */
.bd-elementor-gallery-section .elementor-image-gallery .gallery,
.bd-elementor-gallery-section .gallery,
.bd-elementor-gallery-section .wp-block-gallery,
.bd-elementor-gallery-section .elementor-gallery__container {
  display: block !important;
  column-count: 3;
  column-gap: 14px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}

.bd-elementor-gallery-section .gallery-item,
.bd-elementor-gallery-section .elementor-image-gallery .gallery-item,
.bd-elementor-gallery-section .wp-block-gallery .wp-block-image,
.bd-elementor-gallery-section .wp-block-gallery figure,
.bd-elementor-gallery-section .elementor-gallery-item {
  break-inside: avoid;
  page-break-inside: avoid;
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 0 14px !important;
  padding: 0 !important;
  overflow: hidden;
  background: var(--teal-darker);
  position: relative;
  border: none !important;
}

.bd-elementor-gallery-section .gallery-item img,
.bd-elementor-gallery-section .elementor-image-gallery .gallery-item img,
.bd-elementor-gallery-section .wp-block-gallery img,
.bd-elementor-gallery-section .elementor-gallery-item img {
  width: 100% !important;
  height: auto !important;
  display: block;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  cursor: zoom-in;
  filter: brightness(0.96);
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
              filter 0.5s ease;
}
.bd-elementor-gallery-section .gallery-item:hover img,
.bd-elementor-gallery-section .wp-block-gallery .wp-block-image:hover img,
.bd-elementor-gallery-section .elementor-gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

/* Cache toutes les captions ou textes éventuels */
.bd-elementor-gallery-section figcaption,
.bd-elementor-gallery-section .gallery-caption,
.bd-elementor-gallery-section .elementor-gallery-item__title,
.bd-elementor-gallery-section .elementor-gallery-item__description {
  display: none !important;
}

@media (max-width: 960px) {
  .bd-elementor-gallery-section .elementor-image-gallery .gallery,
  .bd-elementor-gallery-section .gallery,
  .bd-elementor-gallery-section .wp-block-gallery,
  .bd-elementor-gallery-section .elementor-gallery__container {
    column-count: 2;
    column-gap: 10px;
  }
  .bd-elementor-gallery-section .gallery-item,
  .bd-elementor-gallery-section .wp-block-gallery .wp-block-image,
  .bd-elementor-gallery-section .elementor-gallery-item {
    margin-bottom: 10px !important;
  }
}
@media (max-width: 560px) {
  .bd-elementor-gallery-section .elementor-image-gallery .gallery,
  .bd-elementor-gallery-section .gallery,
  .bd-elementor-gallery-section .wp-block-gallery,
  .bd-elementor-gallery-section .elementor-gallery__container {
    column-count: 1;
  }
}

/* ═══════════════════════════════════════════════════════════════
   v151 — PAGES LÉGALES (Mentions légales, Confidentialité)
   ═══════════════════════════════════════════════════════════════ */
.page-legal .hero-legal {
  min-height: 40vh;
  background: linear-gradient(135deg, var(--teal-deep, #0f1c2e) 0%, #0a3340 100%);
}
.page-legal .hero-legal .hero-overlay {
  background: linear-gradient(90deg, rgba(0,0,0,0.4), transparent);
}
.page-legal .legal-content {
  padding: 80px 0 120px;
  background: var(--cream, #f4ecde);
  color: var(--teal-deep, #0f1c2e);
}
.page-legal .legal-inner {
  max-width: 820px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
}
.page-legal .legal-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  color: var(--teal-deep);
  margin: 40px 0 14px;
  letter-spacing: -0.01em;
}
.page-legal .legal-inner h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 20px;
  margin: 28px 0 10px;
  color: var(--gold-dark, #8b6f3f);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.page-legal .legal-inner p { margin: 0 0 14px; }
.page-legal .legal-inner ul {
  padding-left: 22px;
  margin: 0 0 18px;
}
.page-legal .legal-inner ul li { margin-bottom: 6px; }
.page-legal .legal-inner a {
  color: var(--gold-dark, #8b6f3f);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-legal .legal-inner a:hover { color: var(--teal-deep); }
.page-legal .legal-inner strong { font-weight: 600; }

@media (max-width: 768px) {
  .page-legal .legal-content { padding: 50px 0 80px; }
  .page-legal .legal-inner { font-size: 14px; padding: 0 22px; }
  .page-legal .legal-inner h2 { font-size: 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   v152 — PAGE PRESS KIT
   ═══════════════════════════════════════════════════════════════ */
.page-press-kit .hero-press-kit {
  min-height: 50vh;
  background: linear-gradient(135deg, var(--teal-deep, #0f1c2e) 0%, #082530 60%, #0f1c2e 100%);
}
.page-press-kit .hero-press-kit .hero-overlay {
  background: linear-gradient(90deg, rgba(0,0,0,0.45), transparent);
}
.page-press-kit .press-section { padding: 70px 0; }
.page-press-kit .press-section + .press-section { padding-top: 0; }
.page-press-kit .press-about { background: var(--cream, #f4ecde); color: var(--teal-deep); }
.page-press-kit .press-logos { background: var(--cream-soft, #efe3cf); color: var(--teal-deep); }
.page-press-kit .press-content { background: var(--cream, #f4ecde); color: var(--teal-deep); padding-top: 0; padding-bottom: 0; }
.page-press-kit .press-content:empty { display: none; }
.page-press-kit .press-contact {
  background: var(--teal-deep, #0f1c2e);
  color: var(--cream, #f4ecde);
}
.page-press-kit .press-inner {
  max-width: 980px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
}
.page-press-kit .press-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}
.page-press-kit .press-intro {
  max-width: 720px;
  margin: 0 0 32px;
  color: rgba(15, 28, 46, 0.78);
}
.page-press-kit .press-inner a {
  color: var(--gold-dark, #8b6f3f);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-press-kit .press-contact a { color: var(--gold, #c4a577); }

/* Facts grid */
.press-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid rgba(15, 28, 46, 0.15);
}
.press-fact-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark, #8b6f3f);
  margin-bottom: 8px;
}
.press-fact-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--teal-deep);
}

/* Logos grid */
.press-logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.press-logo-card-featured {
  grid-column: 1 / -1;
}
.press-logo-card-featured .press-logo-preview {
  padding: 80px 60px;
  min-height: 300px;
}
.press-logo-card-featured .press-logo-preview img {
  max-width: 50%;
  max-height: 200px;
}
.press-logo-card {
  background: #fff;
  border: 1px solid rgba(15, 28, 46, 0.1);
  display: flex;
  flex-direction: column;
}
.press-logo-preview {
  background: var(--card-bg, #0f1c2e);
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}
.press-logo-preview img {
  max-width: 70%;
  max-height: 140px;
  object-fit: contain;
}
.press-logo-meta {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-top: 1px solid rgba(15, 28, 46, 0.08);
}
.press-logo-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--teal-deep);
}
.press-logo-dl {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 10px 18px;
  background: var(--gold, #c4a577);
  color: #0a0a0a !important;
  text-decoration: none !important;
  border: 1px solid var(--gold, #c4a577);
  white-space: nowrap;
  transition: background 0.25s, color 0.25s;
}
.press-logo-dl:hover {
  background: var(--teal-deep);
  color: var(--cream, #f4ecde) !important;
}

/* Contact block */
.press-contact-inner h2 { color: var(--cream, #f4ecde); }
.press-contact-block {
  margin-top: 22px;
  font-size: 16px;
  line-height: 2;
}
.press-contact-block strong {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--gold, #c4a577);
}

@media (max-width: 1024px) {
  .press-logos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .page-press-kit .press-section { padding: 50px 0; }
  .page-press-kit .press-inner { padding: 0 22px; font-size: 14px; }
  .page-press-kit .press-inner h2 { font-size: 28px; }
  .press-facts { grid-template-columns: repeat(2, 1fr); }
  .press-logos-grid { grid-template-columns: 1fr; }
  .press-logo-preview { padding: 40px 30px; min-height: 170px; }
  .press-logo-card-featured .press-logo-preview { padding: 50px 30px; min-height: 200px; }
  .press-logo-card-featured .press-logo-preview img { max-width: 70%; max-height: 140px; }
  .press-logo-meta { flex-direction: column; align-items: flex-start; }
}
