/* ============================================================
   VILLA LOUISE — Feuille de styles principale
   Direction: pierre gris-vert + sage + terra, Fraunces + Jost
   v2.1
============================================================ */

/* ============================================================
   TOKENS
============================================================ */
:root {
  --pierre:       #E8EAE4;
  --pierre-fonce: #DDE0DA;
  --sage:         #96b9ae;
  --sage-sec:     #8b998f;
  --nuit:         #1E2820;
  --encre:        #2A2018;
  --encre-moyen:  #6E6258;
  --terra:        #C4906A;   /* accent chaud — parcimonie */
  --sage-fonce:   #6b9b8f;   /* sage assombri — labels lisibles sur fond clair */
  --blanc:        #F8F7F3;
  --galerie-gap:  3px;

  --f-titre: 'Fraunces', Georgia, serif;
  --f-corps: 'Jost', system-ui, sans-serif;
  --f-script: 'Pinyon Script', cursive;
  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/*
 * overflow-x sur html (pas body) : sur certains navigateurs, overflow-x:hidden sur body
 * rogne les position:fixed en bord d’écran — dont le badge reCAPTCHA v3.
 */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--pierre);
  color: var(--encre);
  font-family: var(--f-corps);
  font-weight: 400;
  line-height: 1.72;
}

/* Grain papier très léger */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9998;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }

/* <picture> : même logique que les <img> (menu plein écran, hero, footer, futures galeries) */
picture {
  display: block;
  max-width: 100%;
}
picture > img {
  display: block;
  max-width: 100%;
}

/* Menu : le média remplit la colonne photo (l’<img> est en position absolue) */
.menu-photo > picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

a { text-decoration: none; color: inherit; }
sup { font-size: 0.6em; vertical-align: super; }

/* ============================================================
   UTILITAIRES
============================================================ */
.label {
  display: block;
  font-family: var(--f-corps);
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--sage-fonce);
}

/* Fraunces optical size max — contraste de fût maximum sur grands titres */
.display {
  font-family: var(--f-titre);
  font-variation-settings: 'opsz' 144;
  font-weight: 300; font-style: italic;
  line-height: 1.0;
  color: var(--encre);
}

.titre-s {
  font-family: var(--f-titre);
  font-variation-settings: 'opsz' 72;
  font-weight: 300;
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  line-height: 1.1; color: var(--encre);
}
.titre-s em { font-style: italic; }

.lien-fleche {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--encre); position: relative;
}
.lien-fleche::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0; width: 0; height: 1px;
  background: var(--sage);
  transition: width 0.45s var(--ease);
}
.lien-fleche:hover::after { width: 100%; }
.lien-fleche svg { flex-shrink: 0; }

/* Utilitaires cadrage image (background-position) */
.bg-pos-left { background-position: 25% center !important; }
.bg-pos-center { background-position: center center !important; }
.bg-pos-right { background-position: 75% center !important; }
.bg-pos-top { background-position: center 30% !important; }
.bg-pos-bottom { background-position: center 70% !important; }

/* ============================================================
   ANIMATIONS AU SCROLL
============================================================ */

/* Clip-path reveal — les titres montent depuis un masque */
.cr { overflow: hidden; }
.cr-inner {
  display: block;
  transform: translateY(105%);
  transition: transform 1.1s var(--ease);
}
.cr.visible .cr-inner { transform: translateY(0); }

/* Fade-up standard */
.fu {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.95s var(--ease), transform 0.95s var(--ease);
}
.fu.visible { opacity: 1; transform: none; }

/* Delays */
.d1 { transition-delay: 0.12s; }
.d2 { transition-delay: 0.24s; }
.d3 { transition-delay: 0.36s; }
.d4 { transition-delay: 0.50s; }

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 130;
  padding: 28px 52px;
  display: flex; align-items: center; justify-content: space-between;
  transition: padding 0.4s var(--ease), background 0.5s var(--ease);
  /* Permet aux éléments sous la nav (hero) de rester cliquables
     tout en conservant l'interactivité des boutons/liens de la nav. */
  pointer-events: none;
}
.nav * { pointer-events: auto; }
.nav.scrolled {
  background: rgba(232, 234, 228, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px 52px;
  border-bottom: 1px solid rgba(150,185,174,0.2);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  opacity: 0; transform: translateY(-5px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.nav.scrolled .nav-logo { opacity: 1; transform: none; pointer-events: auto; }
.nav-logo img {
  display: block;
  height: 90px;
  width: auto;
}

.nav-droite { display: flex; align-items: center; gap: 26px; }

.nav-reserver {
  font-size: 0.63rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: white; border: 1px solid rgba(255,255,255,0.5); padding: 8px 22px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.nav.scrolled .nav-reserver { color: var(--encre); border-color: var(--sage); }
.nav-reserver:hover { background: var(--sage); color: white !important; border-color: var(--sage) !important; }

.nav-lang {
  font-size: 0.63rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); cursor: pointer; transition: color 0.3s;
}
.nav.scrolled .nav-lang { color: var(--encre-moyen); }
.nav-lang:hover { color: var(--sage); }

.nav-burger {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; gap: 5px; padding: 4px;
}
.nav-burger span {
  display: block; width: 24px; height: 1px; background: white;
  transition: background 0.3s, transform 0.4s var(--ease), opacity 0.3s;
  transform-origin: center;
}
.nav.scrolled .nav-burger span { background: var(--encre); }
.nav-burger.active span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); background: var(--encre) !important; }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); background: var(--encre) !important; }

/* Nav sur fond clair — chambres, fiches, pages intérieures */
.nav.nav-clair .nav-lang { color: var(--encre-moyen); }
.nav.nav-clair .nav-lang:hover { color: var(--sage); }
.nav.nav-clair .nav-reserver { color: var(--encre); border-color: var(--sage); }
.nav.nav-clair .nav-reserver:hover { background: var(--sage); color: white; }

/* ============================================================
   MENU FULLSCREEN
============================================================ */
.menu {
  position: fixed; inset: 0; z-index: 120;
  background: #eeefe9;
  display: grid; grid-template-rows: 1fr auto;
  opacity: 0; pointer-events: none;
  transition: opacity 0.7s var(--ease);
}
.menu.active { opacity: 1; pointer-events: all; }

/* Sortie : on garde un voile opaque (évite de revoir l'ancienne page) */
.menu.closing { opacity: 1; pointer-events: none; }
.menu-corps, .menu-barre { transition: opacity 0.55s var(--ease); }
.menu.closing .menu-corps,
.menu.closing .menu-barre { opacity: 0; }

.nav.menu-open {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom-color: transparent !important;
}
.nav.menu-open .nav-logo,
.nav.menu-open .nav-droite {
  opacity: 0;
  pointer-events: none;
}
.nav.menu-open .nav-burger {
  pointer-events: auto;
}

.menu-corps {
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.menu-liens {
  padding: 100px 64px 60px;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid rgba(150,185,174,0.24);
}

.menu-nav { list-style: none; }
.menu-nav li { overflow: hidden; }

.menu-nav li a {
  display: block;
  font-family: var(--f-titre);
  font-variation-settings: 'opsz' 72;
  font-weight: 300; font-style: normal;
  font-size: clamp(2rem, 3.1vw, 2.8rem);
  color: #2f241c;
  padding: 10px 0;
  border-bottom: 1px solid rgba(150,185,174,0.24);
  transform: translateY(110%);
  transition: transform 0.7s var(--ease), color 0.3s, padding-left 0.3s var(--ease);
}

.menu.active .menu-nav li:nth-child(1) a { transform: none; transition-delay: 0.06s; }
.menu.active .menu-nav li:nth-child(2) a { transform: none; transition-delay: 0.12s; }
.menu.active .menu-nav li:nth-child(3) a { transform: none; transition-delay: 0.18s; }
.menu.active .menu-nav li:nth-child(4) a { transform: none; transition-delay: 0.24s; }
.menu.active .menu-nav li:nth-child(5) a { transform: none; transition-delay: 0.30s; }
.menu.active .menu-nav li:nth-child(6) a { transform: none; transition-delay: 0.36s; }
.menu-nav li a:hover { color: var(--sage); padding-left: 10px; }

.menu-photo {
  position: relative; overflow: hidden;
  /* Fond de secours pendant le chargement de l’image */
  background: var(--pierre);
  transform: scale(1.04); transform-origin: center;
  transition: transform 0.9s var(--ease);
}
/* ↓ Remplacer background par url('images/villa-louise-2021-54.jpg') center/cover */
.menu.active .menu-photo { transform: scale(1); transition-delay: 0.12s; }

.menu-photo-overlay {
  position: absolute; inset: 0;
  background: transparent;
}

.menu-photo-caption {
  position: absolute; bottom: 40px; left: 36px;
  font-family: var(--f-titre);
  font-variation-settings: 'opsz' 16;
  font-style: italic; font-size: 0.95rem;
  color: rgba(42,32,24,0.62); line-height: 1.6;
}

.menu-barre {
  padding: 20px 64px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(150,185,174,0.24);
  opacity: 0; transition: opacity 0.5s 0.4s;
}
.menu.active .menu-barre { opacity: 1; }

.menu-barre-adresse {
  font-size: 0.75rem; color: var(--encre-moyen);
  letter-spacing: 0.06em; font-weight: 400; line-height: 1.6;
}
.menu-barre-droite { display: flex; align-items: center; gap: 36px; }

.menu-barre-tel {
  font-size: 0.8rem; color: var(--encre);
  letter-spacing: 0.04em; font-weight: 400; transition: color 0.3s;
  white-space: nowrap;
}
.menu-barre-tel:hover { color: var(--sage); }

.menu-barre-reserver {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--encre); border: 1px solid rgba(150,185,174,0.5); padding: 8px 20px;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}
.menu-barre-reserver:hover { background: var(--sage); color: white; }

@media (max-width: 640px) {
  /* Évite le passage tel + CTA sur 2 lignes sous ~640px */
  .menu-barre-droite { gap: 18px; flex-wrap: nowrap; }
  .menu-barre-tel { font-size: 0.76rem; }
  .menu-barre-reserver { font-size: 0.58rem; letter-spacing: 0.16em; padding: 7px 14px; }
}

.menu-barre-lang { display: flex; gap: 10px; }
.menu-social { display: flex; align-items: center; gap: 8px; }
.menu-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  color: var(--encre-moyen);
  border: 1px solid rgba(150,185,174,0.32);
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.menu-social a:hover {
  color: var(--sage);
  border-color: rgba(150,185,174,0.65);
  background: rgba(150,185,174,0.08);
}
.menu-social svg { width: 13px; height: 13px; fill: currentColor; }
.menu-lang-btn {
  background: none; border: 1px solid rgba(150,185,174,0.2);
  color: var(--encre-moyen);
  font-family: var(--f-corps); font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 5px 14px; cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}
.menu-lang-btn.active, .menu-lang-btn:hover { color: var(--sage); border-color: var(--sage); }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative; height: 100vh; height: 100svh; min-height: 680px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: -8% 0;
  will-change: transform;
}

.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: heroBgZoom 9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform-origin: center center;
}

@keyframes heroBgZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(185deg,
    rgba(20,28,20,0.25) 0%,
    rgba(15,22,15,0.10) 38%,
    rgba(10,16,12,0.55) 100%
  );
}

.hero-contenu {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
}

.hero-etoiles {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 36px;
  opacity: 0; animation: fadeIn 1s var(--ease) 0.4s forwards;
}
.hero-etoiles svg { width: 12px; height: 12px; fill: var(--sage); opacity: 0.85; }

.hero-titre {
  font-family: var(--f-titre);
  font-variation-settings: 'opsz' 144;
  font-weight: 300;
  font-size: clamp(5.5rem, 12vw, 11.5rem);
  letter-spacing: 0.04em;
  color: white; line-height: 0.88;
  opacity: 0; animation: fadeUp 1.4s var(--ease) 0.55s forwards;
}
.hero-titre em { font-style: italic; }

.hero-lieu {
  font-size: 0.68rem; letter-spacing: 0.38em; text-transform: uppercase;
  color: rgba(255,255,255,0.68); margin: 18px 0 52px;
  opacity: 0; animation: fadeUp 1s var(--ease) 1s forwards;
}

.hero-logo {
  width: clamp(340px, 40vw, 650px);
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.18));
  height: auto;
  margin: 0 auto 44px;
  opacity: 0;
  animation: fadeUp 1.6s var(--ease) 0.6s forwards;
}

.hero-filet {
  width: 1px; height: 44px; margin: 0 auto 30px;
  background: rgba(150,185,174,0.5);
  opacity: 0; animation: fadeIn 1s 1.3s forwards;
}

.hero-citation {
  font-family: var(--f-titre);
  font-variation-settings: 'opsz' 20;
  font-style: italic; font-weight: 400;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.6; max-width: 520px; margin: 0 auto;
  opacity: 0; animation: fadeUp 1.1s var(--ease) 1.5s forwards;
}
.hero-citation-auteur {
  display: block;
  margin-top: 0.9rem;
  font-family: var(--f-corps);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
}
.hero-citation-auteur em {
  font-family: var(--f-titre);
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0.02em;
}

.hero-scroll {
  position: absolute; bottom: 42px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 11px;
  color: rgba(255,255,255,0.82);
  font-size: 0.57rem; letter-spacing: 0.24em; text-transform: uppercase;
  opacity: 0; animation: fadeIn 1s 2.2s forwards;
}
.hero-scroll-track {
  width: 1px; height: 50px; background: rgba(255,255,255,0.38);
  position: relative; overflow: hidden;
}
.hero-scroll-track::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%;
  background: rgba(150,185,174,0.95);
  animation: scrollLine 2s ease-in-out 2.4s infinite;
}

/* ============================================================
   SECTION ARRIVÉE
============================================================ */
.arrivee {
  display: grid; grid-template-columns: 5fr 7fr;
  max-width: 1380px; margin: 0 auto;
  padding: 130px 0 0 80px;
  overflow: hidden;
}

.arrivee-texte {
  padding: 48px 80px 100px 0;
  display: flex; flex-direction: column; justify-content: center;
}
.arrivee-label { margin-bottom: 28px; }
.arrivee-titre { margin-bottom: 38px; }

.arrivee-citation {
  font-family: var(--f-titre);
  font-variation-settings: 'opsz' 20;
  font-style: italic; font-weight: 300;
  font-size: 1.1rem; line-height: 1.7; color: var(--encre);
  border-left: 2px solid var(--terra);
  padding-left: 20px; margin-bottom: 28px;
}

.arrivee-prose {
  font-size: 0.95rem; line-height: 1.9;
  color: var(--encre-moyen); margin-bottom: 14px;
}
.arrivee-lien { margin-top: 22px; }

.arrivee-photo {
  position: relative; min-height: 600px;
  /* ↓ Remplacer par url('images/villa-louise-2021-57.jpg') center/cover */
  background: linear-gradient(150deg, #6a9462 0%, #527840 45%, #3e5c30 100%);
  overflow: visible;
}

.arrivee-legende {
  position: absolute; bottom: -1px; left: -32px;
  background: var(--pierre);
  border-left: 2px solid var(--terra);
  padding: 16px 22px;
  font-family: var(--f-titre);
  font-variation-settings: 'opsz' 14;
  font-style: italic; font-size: 0.85rem;
  color: var(--encre-moyen); max-width: 290px;
  box-shadow: -6px 6px 28px rgba(42,32,24,0.07);
}

/* ============================================================
   NID STATEMENT — colombes qui s'approchent, Pinyon Script sage
============================================================ */
.nid-statement {
  padding: 90px 0 28px;
  overflow: hidden;
}

.nid-inner {
  display: flex; align-items: center; justify-content: center;
  padding: 0 80px;
}

.nid-aile {
  display: flex; align-items: center; flex: 1;
}
.nid-aile.r { flex-direction: row-reverse; }

.nid-trait-line {
  flex: 1; height: 1px;
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.16,1,0.3,1) 0.8s,
              opacity 0.6s ease 0.8s;
}
.nid-aile .nid-trait-line {
  background: linear-gradient(to right, rgba(150,185,174,0.45), transparent);
}
.nid-aile.r .nid-trait-line {
  transform-origin: right center;
  background: linear-gradient(to left, rgba(150,185,174,0.45), transparent);
}
.nid-statement.visible .nid-trait-line {
  transform: scaleX(1);
  opacity: 1;
}

/* Phrase en Fraunces italique, couleur sage */
.nid-phrase {
  font-family: var(--f-titre);
  font-variation-settings: 'opsz' 72;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 2.4rem);
  color: var(--encre);
  white-space: nowrap;
  padding: 0 28px;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s var(--ease) 0.9s, transform 1s var(--ease) 0.9s;
}
.nid-statement.visible .nid-phrase {
  opacity: 1; transform: translateY(0);
}

/* Colombes — entrée depuis les côtés */
.colombe-g,
.colombe-d { flex-shrink: 0; }

.colombe-g {
  opacity: 0;
  transform: translateX(-50px) translateY(6px);
}
.colombe-d {
  opacity: 0;
  transform: translateX(50px) translateY(6px);
}

.nid-statement.visible .colombe-g {
  animation: colombeArriveG 1.5s cubic-bezier(0.16,1,0.3,1) 0.05s forwards,
             colombeFlotte   5.5s ease-in-out 1.8s infinite;
}
.nid-statement.visible .colombe-d {
  animation: colombeArriveD 1.5s cubic-bezier(0.16,1,0.3,1) 0.05s forwards,
             colombeFlotteD  5.5s ease-in-out 2.4s infinite;
}

/* ============================================================
   CHAMBRES CAROUSEL
============================================================ */
.chambres { padding: 16px 0 56px; overflow: hidden; }

.chambres-entete {
  padding: 0 80px;
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 52px;
}
.chambres-label { margin-bottom: 14px; }
.chambres-lien-all { color: var(--encre-moyen); transition: color 0.3s; }
.chambres-lien-all:hover { color: var(--sage); }

.chambres-wrap {
  padding-left: 80px;
  overflow-x: auto; scrollbar-width: none;
  cursor: grab; user-select: none;
}
.chambres-wrap::-webkit-scrollbar { display: none; }
.chambres-wrap:active { cursor: grabbing; }

.chambres-track {
  display: flex; gap: 28px;
  width: max-content; padding-right: 80px;
}

.chambre-card { width: 440px; flex-shrink: 0; }

.chambre-img {
  height: 265px; position: relative; overflow: hidden; background: #b0b8b0;
}
.chambre-img img,
.chambre-img picture > img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.chambre-card:hover .chambre-img img,
.chambre-card:hover .chambre-img picture > img { transform: scale(1.05); }

.chambre-img-degrade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(26,22,16,0.55) 100%);
}

.chambre-badge {
  position: absolute; top: 18px; left: 18px;
  background: rgba(232,234,228,0.93); padding: 4px 11px;
  font-size: 0.58rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--sage-fonce); font-weight: 500;
}

.chambre-info { padding: 16px 2px; }

.chambre-vue {
  display: block; font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--sage-fonce);
  font-weight: 500; margin-bottom: 5px;
}

.chambre-nom {
  font-family: var(--f-titre);
  font-variation-settings: 'opsz' 24;
  font-weight: 400; font-style: italic;
  font-size: 1.28rem; color: var(--encre); margin-bottom: 14px;
}

.chambre-pied {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(150,185,174,0.2); padding-top: 13px;
}

.chambre-prix { font-size: 0.82rem; color: var(--encre-moyen); }
.chambre-prix strong {
  font-family: var(--f-titre);
  font-variation-settings: 'opsz' 20;
  font-size: 1.08rem; font-weight: 400; color: var(--encre);
}

.chambre-decouvrir {
  font-size: 0.6rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--encre);
  font-weight: 500; display: flex; align-items: center; gap: 8px;
  transition: color 0.3s; position: relative;
}
.chambre-decouvrir::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--sage);
  transition: width 0.35s var(--ease);
}
.chambre-card:hover .chambre-decouvrir { color: var(--sage); }
.chambre-card:hover .chambre-decouvrir::after { width: 100%; }

/* CTA Réserver */
.chambres-cta {
  padding: 0px 0 72px;
  display: flex; align-items: center;
}

.chambres-cta-trait {
  flex: 1; height: 1px;
  background: rgba(150,185,174,0.35);
}

.chambres-cta-btn {
  flex-shrink: 0;
  display: inline-block;
  font-family: var(--f-corps);
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--encre);
  border: 1px solid var(--sage);
  padding: 16px 48px;
  margin: 0 52px;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
.chambres-cta-btn:hover {
  background: var(--sage);
  color: white;
}

/* ============================================================
   SECTION ÂME — salon pleine largeur
============================================================ */
.ame {
  position: relative; height: 72vh; min-height: 520px;
  margin: 20px 0; overflow: hidden;
}

.ame-bg {
  position: absolute; inset: -10% 0;
  /* ↓ Remplacer par url('images/villa-louise-2026-4.jpg') center/cover */
  background: linear-gradient(130deg, #c0a070 0%, #a07848 40%, #785838 70%, #5a4030 100%);
  will-change: transform;
}

.ame-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg,
    rgba(18,12,8,0.78) 0%,
    rgba(18,12,8,0.52) 38%,
    rgba(18,12,8,0.08) 100%
  );
}

.ame-contenu {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 80px; max-width: 640px;
}

.ame-label { margin-bottom: 20px; }
.ame-label .label { color: rgba(150,185,174,0.8); }

.ame-titre {
  font-family: var(--f-titre);
  font-variation-settings: 'opsz' 72;
  font-weight: 300;
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  color: white; line-height: 1.08; margin-bottom: 24px;
}
.ame-titre em { font-style: italic; }

.ame-prose {
  color: rgba(255,255,255,0.68); font-size: 0.93rem;
  line-height: 1.88; max-width: 440px; font-weight: 400; margin-bottom: 36px;
}

.ame-lien {
  color: white;
  border-bottom: 1px solid rgba(150,185,174,0.4); padding-bottom: 4px;
  transition: color 0.3s, border-color 0.3s;
}
.ame-lien:hover { color: var(--sage); border-color: var(--sage); }

/* ============================================================
   SERVICES — bande horizontale 4 colonnes
============================================================ */
.services {
  padding: 72px 80px 80px;
  border-top: 1px solid rgba(150,185,174,0.18);
  max-width: 1540px; margin: 0 auto;
}

.services-titre-wrap {
  margin-bottom: 48px;
}

/* Grille 4 colonnes */
.services-grille-b {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(150,185,174,0.15);
}

.services-cta-wrap{
  margin-top: 2.2rem;
  display: flex;
  justify-content: flex-end;
}

.service-card {
  overflow: hidden; background: var(--pierre);
  display: flex; flex-direction: column;
}

.service-photo-wrap {
  overflow: hidden; height: 160px;
}

.service-photo-img {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transition: transform 0.8s var(--ease);
}
.service-card:hover .service-photo-img { transform: scale(1.05); }

.service-texte {
  padding: 18px 24px 22px;
  position: relative; flex: 1;
}
.service-texte::after {
  content: ''; position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--sage);
  transition: width 0.5s var(--ease);
}
.service-card:hover .service-texte::after { width: 100%; }

.service-nom {
  font-family: var(--f-titre);
  font-variation-settings: 'opsz' 24;
  font-weight: 400; font-style: italic;
  font-size: 1.15rem; color: var(--encre); margin-bottom: 6px;
}

.service-desc {
  font-size: 0.82rem; color: var(--encre-moyen);
  line-height: 1.72; font-weight: 400;
}

/* ============================================================
   VINS LOUISE PERRIN
============================================================ */
.vins {
  background: #2c4a42;
  display: grid; grid-template-columns: 1fr 1fr;
}

.vins-texte { padding: 100px 80px; }
.vins-label { margin-bottom: 20px; }

.vins-titre {
  font-family: var(--f-titre);
  font-variation-settings: 'opsz' 72;
  font-weight: 300;
  font-size: clamp(2.2rem, 3.5vw, 3.3rem);
  color: rgba(245,242,236,0.9); line-height: 1.1; margin: 0 0 26px;
}
.vins-titre em { font-style: italic; }

.vins-prose {
  color: rgba(245,242,236,0.5); font-size: 0.93rem;
  line-height: 1.88; font-weight: 400; margin-bottom: 40px;
}

.vins-lien { color: var(--sage); }
.vins-lien:hover { color: rgba(245,242,236,0.8); }
.vins-lien::after { background: var(--sage); }

.vins-visuel {
  position: relative; min-height: 520px;
  background: linear-gradient(140deg, #24201a 0%, #161210 50%, #2e2618 100%);
  overflow: hidden;
}

.vins-visuel-photo {
  position: absolute; inset: 0;
  background-image:url('images/cave-louise-perrin.jpg');background-image:image-set(url('images/cave-louise-perrin.avif') type('image/avif'),url('images/cave-louise-perrin.webp') type('image/webp'),url('images/cave-louise-perrin.jpg') type('image/jpeg'));background-position:center;background-size:cover;background-repeat:no-repeat;
}

.vins-citation {
  position: absolute; bottom: 36px; left: 36px; right: 36px;
  font-family: var(--f-titre);
  font-variation-settings: 'opsz' 18;
  font-style: italic; font-weight: 300;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  color: rgba(150,185,174,0.6); line-height: 1.6;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: #0d0c0a;
  padding: 68px 80px 44px;
  border-top: 1px solid rgba(150,185,174,0.2);
}

.footer-colombes {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 60px;
}
.footer-colombes-trait {
  flex: 1; height: 1px; max-width: 100px;
  background: rgba(150,185,174,0.2);
}
.footer-colombes-paire {
  display: flex; align-items: flex-end; gap: 4px; padding: 0 24px;
}

.footer-grille {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px; margin-bottom: 48px;
}

.footer-marque-nom {
  font-family: var(--f-titre);
  font-variation-settings: 'opsz' 24;
  font-style: italic; font-weight: 300;
  font-size: 1.5rem; color: rgba(245,242,236,0.94); margin-bottom: 6px;
}
.footer-marque-logo {
  display: block;
  width: min(320px, 100%);
  height: auto;
  margin-bottom: 25px;
}

.footer-marque-lieu {
  font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(150,185,174,0.92); margin-bottom: 18px;
}

.footer-marque-desc {
  font-size: 0.9rem; color: rgba(245,242,236,0.58);
  line-height: 1.28; font-weight: 400;
  max-width: 320px;
}

.footer-col-titre {
  font-family: var(--f-titre);
  font-variation-settings: 'opsz' 16;
  font-style: italic; font-weight: 300;
  font-size: 1rem; color: rgba(245,242,236,0.8); margin-bottom: 16px;
}

.footer-liens { list-style: none; display: flex; flex-direction: column; gap: 3px; }
.footer-liens a {
  font-size: 0.84rem; color: rgba(245,242,236,0.56);
  line-height: 1.24;
  font-weight: 400; transition: color 0.3s;
}
.footer-liens a:hover { color: rgba(150,185,174,0.95); }

.footer-contact {
  font-size: 0.84rem; color: rgba(245,242,236,0.56);
  line-height: 1.52; font-weight: 400;
}
.footer-contact a { transition: color 0.3s; }
.footer-contact a:hover { color: rgba(150,185,174,0.95); }
.footer-resa-accroche {
  font-family: var(--f-titre);
  font-variation-settings: 'opsz' 20;
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.35;
  color: rgba(245,242,236,0.86);
  margin-bottom: 12px;
}
.footer-resa-texte {
  font-size: 0.82rem;
  line-height: 1.48;
  color: rgba(245,242,236,0.56);
  margin-bottom: 16px;
}
.footer-resa-btn {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.92);
  border: 1px solid rgba(150,185,174,0.48);
  padding: 9px 16px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.footer-resa-btn:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: #0d0c0a;
}

.footer-bas {
  border-top: 1px solid rgba(150,185,174,0.2); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}

.footer-copy {
  font-size: 0.72rem; color: rgba(245,242,236,0.72); letter-spacing: 0.05em;
}
.footer-copy a { transition: color 0.3s; }
.footer-copy a:hover { color: white; }

.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 0.72rem; color: rgba(245,242,236,0.72); transition: color 0.3s;
}
.footer-legal a:hover { color: white; }

/* ============================================================
   KEYFRAMES
============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes scrollLine {
  0%   { top: -100%; }
  100% { top: 110%; }
}
@keyframes colombeArriveG {
  from { opacity: 0; transform: translateX(-50px) translateY(6px); }
  to   { opacity: 1; transform: translateX(0) translateY(0); }
}
@keyframes colombeArriveD {
  from { opacity: 0; transform: translateX(50px) translateY(6px); }
  to   { opacity: 1; transform: translateX(0) translateY(0); }
}
@keyframes colombeFlotte {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  30%      { transform: translateY(-9px) rotate(-1.5deg); }
  60%      { transform: translateY(-5px) rotate(0.5deg); }
}
@keyframes colombeFlotteD {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  30%      { transform: translateY(-7px) rotate(1.5deg); }
  60%      { transform: translateY(-11px) rotate(-0.5deg); }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .arrivee { grid-template-columns: 1fr; padding: 80px 48px 0; }
  .arrivee-texte { padding: 0 0 48px; }
  .arrivee-photo { min-height: 420px; }
  .arrivee-legende { left: 0; }

  .nid-statement { padding: 52px 0 32px; }
  .nid-phrase { font-size: clamp(1.5rem, 3vw, 2rem); padding: 0 20px; white-space: normal; text-align: center; }
  .nid-inner { padding: 0 32px; }
  .colombe-g svg, .colombe-d svg { width: 80px; height: 68px; }

  .services { padding: 60px 48px 64px; }
  .services-grille-b { grid-template-columns: 1fr 1fr; }
  .services-cta-wrap { justify-content: flex-start; }
  .service-photo-wrap { height: 130px; }

  .vins { grid-template-columns: 1fr; }
  .vins-texte { padding: 80px 48px; }
  .vins-visuel { min-height: 340px; }

  .footer-grille { grid-template-columns: 1fr 1fr; }

  .nav { padding: 22px 36px; }
  .nav.scrolled { padding: 13px 36px; }

  .chambres-entete,
  .chambres-wrap { padding-left: 48px; }
  .chambres-track { padding-right: 48px; }
  .ame-contenu { padding: 0 48px; }

  .menu-corps { grid-template-columns: 1fr; }
  .menu-photo { display: none; }
  .menu-liens { padding: 100px 48px 60px; }
  .menu-barre { padding: 18px 48px; }
}

@media (max-width: 768px) {
  /* H1 hero : conserver une vraie présence (cohérent avec les H2) */
  .hero-titre { font-size: clamp(3.2rem, 12.8vw, 5.2rem); }
  .nid-statement { padding: 52px 24px; }
  .nid-phrase { font-size: 1.3rem; padding: 0 12px; white-space: normal; text-align: center; }
  .colombe-g svg, .colombe-d svg { width: 65px; height: 55px; }
  .footer-grille {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .footer-grille > div {
    width: min(460px, 100%);
    margin: 0 auto;
  }
  .footer-grille > div:nth-child(2) { display: none; } /* Cache navigation footer mobile */
  .footer-resa-accroche,
  .footer-resa-texte { display: none; } /* Cache argumentaire long mobile */
  .footer-resa-btn {
    display: block;
    width: fit-content;
    margin: 4px auto 0;
  }
  .footer-marque-logo {
    width: min(280px, 86vw);
    margin: 0 auto 18px;
  }
  .footer-marque-desc,
  .footer-contact,
  .footer-col-titre { text-align: center; }
  .footer-marque-desc,
  .footer-contact { margin-left: auto; margin-right: auto; }
  /* Centre aussi les liens (évite l’effet “bloc centré mais contenu à gauche”) */
  .footer-contact a { display: inline-block; }
  .footer-bas { flex-direction: column; gap: 12px; align-items: center; }
  .footer-legal { order: 1; }
  .footer-copy { order: 2; }
  .footer-legal { justify-content: center; }
  .nav { padding: 18px 24px; }
  .nav.scrolled { padding: 11px 24px; }
  /* Pages intérieures : sur mobile, avant scroll on garde la nav en blanc (lisible sur photos) */
  .nav.nav-clair:not(.scrolled) .nav-lang { color: rgba(255,255,255,0.65); }
  .nav.nav-clair:not(.scrolled) .nav-lang:hover { color: var(--sage); }
  .nav.nav-clair:not(.scrolled) .nav-reserver { color: white; border-color: rgba(255,255,255,0.5); }
  .nav.nav-clair:not(.scrolled) .nav-reserver:hover { background: var(--sage); color: white; border-color: var(--sage); }
  /* Exception : page Chambres (pas de hero en mobile → fond clair) */
  .page-chambres .nav.nav-clair:not(.scrolled) .nav-lang { color: var(--encre-moyen); }
  .page-chambres .nav.nav-clair:not(.scrolled) .nav-reserver { color: var(--encre); border-color: var(--sage); }
  .page-chambres .nav.nav-clair:not(.scrolled) .nav-burger span { background: var(--encre); }
  /* Nav mobile : évite que le logo invisible rogne le CTA */
  .nav:not(.scrolled) .nav-logo { max-width: 0; overflow: hidden; }
  .nav.scrolled .nav-logo { max-width: 240px; overflow: visible; }
  .nav-logo img { height: 70px; }
  .nav-droite { gap: 14px; }
  .nav-reserver { padding: 7px 14px; letter-spacing: 0.16em; }
  .chambres-entete, .chambres-wrap { padding-left: 24px; }
  .chambres-track { padding-right: 24px; }
  .chambre-card { width: 320px; }
  .chambre-img { height: 200px; }
  .services, .vins-texte { padding: 52px 24px; }
  .services-grille-b { grid-template-columns: 1fr 1fr; }
  .services-cta-wrap { justify-content: flex-start; }
  .service-photo-wrap { height: 120px; }
  .arrivee { padding: 60px 24px 0; }
  .ame-contenu { padding: 0 24px; }
  footer { padding: 56px 24px 36px; }
  .menu-liens { padding: 90px 32px 48px; }
  .menu-barre { padding: 16px 32px; flex-wrap: wrap; gap: 14px; }
}

/* ============================================================
   PAGE : CHAMBRES & SUITES — Le Guéridon
============================================================ */
.ch-hero {
  background: var(--pierre);
  padding: 9.5rem 80px 5rem;
  position: relative; overflow: hidden;
}
.ch-hero-ghost {
  position: absolute; right: 72px; bottom: -0.15em;
  font-family: var(--f-titre); font-size: clamp(140px, 19vw, 260px);
  font-weight: 300; font-variation-settings: 'opsz' 144;
  color: var(--encre); opacity: 0.038; line-height: 1;
  pointer-events: none; user-select: none; letter-spacing: -0.04em;
}
.ch-hero-label { margin-bottom: 1.4rem; }
.ch-hero-titre {
  font-family: var(--f-titre); font-variation-settings: 'opsz' 144;
  font-weight: 300; font-size: clamp(52px, 8vw, 108px);
  line-height: 0.96; color: var(--encre); margin: 0 0 2.4rem;
  letter-spacing: -0.01em;
}
.ch-hero-titre em { font-style: italic; color: var(--encre-moyen); }
.ch-hero-desc {
  font-size: clamp(0.9rem, 1.1vw, 1rem); color: var(--encre-moyen);
  max-width: 52ch; line-height: 1.82; font-weight: 400;
}
.gueridon { display: flex; align-items: flex-start; background: var(--pierre); }
.gueridon-visuel {
  position: sticky; top: 0; width: 52%; height: 100vh;
  flex-shrink: 0;
  background: var(--nuit); overflow: hidden;
}
.gueridon-photo-zone { position: absolute; inset: 0; }
.gueridon-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.65s ease, transform 1s ease;
  transform: scale(1.03); will-change: opacity, transform;
}
.gueridon-photo.active { opacity: 1; transform: scale(1); }
.gueridon-info-zone {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 4rem 2.6rem 2rem;
  background: linear-gradient(to top,
    rgba(10,14,10,0.82) 0%,
    rgba(10,14,10,0.45) 55%,
    transparent 100%
  );
}
.gueridon-info-zone::before {
  content: ''; display: block; width: 22px; height: 1px;
  background: var(--sage); opacity: 0.5; margin-bottom: 0.75rem;
}
.gueridon-info-etiquette, .gueridon-info-nom, .gueridon-info-prix { transition: opacity 0.25s ease; }
.gueridon-info-zone.transitioning .gueridon-info-etiquette,
.gueridon-info-zone.transitioning .gueridon-info-nom,
.gueridon-info-zone.transitioning .gueridon-info-prix { opacity: 0; }
.gueridon-info-etiquette {
  display: block; font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.72); margin-bottom: 0.35rem;
}
.gueridon-info-nom {
  display: block; font-family: var(--f-titre); font-weight: 300;
  font-variation-settings: 'opsz' 144; font-style: italic;
  font-size: clamp(17px, 1.8vw, 24px); color: rgba(255,255,255,0.86); line-height: 1.15;
}
.gueridon-info-prix {
  display: block; font-size: 0.75rem; font-weight: 300;
  color: rgba(255,255,255,0.78); margin-top: 0.45rem; letter-spacing: 0.04em;
}
.gueridon-liste { flex: 1; min-width: 0; border-left: 1px solid rgba(150,185,174,0.18); padding-bottom: 30vh; }

/* Bloc titre intégré en tête de colonne droite */
.gueridon-header {
  position: relative;
  padding: 8rem 2.6rem 3.5rem 3rem;
  border-bottom: 1px solid rgba(150,185,174,0.18);
  overflow: hidden;
}
.gueridon-header .ch-hero-ghost {
  position: absolute;
  right: 32px; bottom: -0.1em;
  font-family: var(--f-titre);
  font-size: clamp(100px, 14vw, 200px);
  font-weight: 300; font-variation-settings: 'opsz' 144;
  color: var(--encre); opacity: 0.038; line-height: 1;
  pointer-events: none; user-select: none; letter-spacing: -0.04em;
}
.gueridon-header .ch-hero-titre {
  margin: 1rem 0 1.6rem;
  font-size: clamp(36px, 5.5vw, 78px);
}
.gueridon-header .ch-hero-desc {
  max-width: 44ch;
}

/* Entrées compactes — CORRECTIONS TYPO INCLUSES */
.chambre-entree {
  position: relative; padding: 1.8rem 2.4rem 1.8rem 3rem;
  min-height: clamp(17.5rem, 28vh, 20.5rem);
  display: flex; flex-direction: column;
  border-bottom: 1px solid rgba(150,185,174,0.18);
  transition: background 0.4s ease, box-shadow 0.4s ease; overflow: hidden;
}
.chambre-entree::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--terra);
  /* Filet visible au repos */
  transform: scaleY(1); opacity: 0.35;
  transition: opacity 0.4s ease;
}
.chambre-entree.active::before, .chambre-entree:hover::before { opacity: 1; }
.chambre-entree:hover { background: rgba(150,185,174,0.075); }
.chambre-entree.active {
  background: rgba(150,185,174,0.18);
  box-shadow: inset 0 0 0 1px rgba(150,185,174,0.3);
}
.chambre-entree:hover:not(.active) {
  box-shadow: inset 0 0 0 1px rgba(150,185,174,0.16);
}
.chambre-entree.active .chambre-entree-etiquette { color: #6d9689; }
.chambre-entree.active .chambre-entree-prix strong { color: var(--terra); }
.chambre-num {
  position: absolute; top: 0.1rem; right: 1.6rem;
  font-family: var(--f-titre); font-size: clamp(70px, 8vw, 100px);
  font-weight: 300; font-variation-settings: 'opsz' 144;
  /* Ghost plus visible */
  color: var(--encre); opacity: 0.07;
  line-height: 1; pointer-events: none; user-select: none;
}
.chambre-entree-etiquette {
  display: block; font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.17em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 0.55rem;
}
/* Titres chambre plus grands et plus présents */
.chambre-entree-nom {
  font-family: var(--f-titre); font-weight: 300;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.06; color: var(--encre); margin: 0 0 0.9rem; max-width: 20ch;
}
.chambre-entree-nom em { font-style: italic; }
/* Description en 400 — plus de corps */
.chambre-entree-desc {
  font-size: 0.9rem; font-weight: 400;
  color: var(--encre-moyen); line-height: 1.62;
  max-width: 50ch; margin-bottom: 1rem;
}
.chambre-photo-mobile {
  display: none; width: 100%; aspect-ratio: 3/2;
  background-size: cover; background-position: center; margin-bottom: 1.2rem;
}
.chambre-entree-pied { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.chambre-entree-pied { margin-top: auto; padding-top: 0.55rem; }
.chambre-specs { display: flex; gap: 0.45rem; flex-wrap: wrap; }
.chambre-spec {
  font-size: 0.65rem; font-weight: 400; letter-spacing: 0.06em;
  color: var(--encre-moyen); opacity: 0.78; padding: 0.18rem 0.5rem;
  border: 1px solid rgba(150,185,174,0.42); border-radius: 2px; white-space: nowrap;
  transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}
.chambre-entree:hover .chambre-spec,
.chambre-entree.active .chambre-spec {
  opacity: 0.95;
  border-color: rgba(150,185,174,0.6);
  background-color: rgba(150,185,174,0.07);
}
.chambre-entree.active .chambre-spec {
  border-color: rgba(150,185,174,0.72);
  background-color: rgba(150,185,174,0.1);
}
.chambre-entree-droite { display: flex; align-items: center; gap: 1.6rem; flex-shrink: 0; }
.chambre-entree-prix { font-size: 0.8rem; font-weight: 400; color: var(--encre-moyen); white-space: nowrap; }
.chambre-entree-prix strong { font-weight: 500; font-size: 1.04rem; color: var(--encre); transition: color 0.3s ease; }
.chambre-entree:hover .chambre-entree-prix strong { color: var(--terra); }
.chambre-detail-lien {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--encre); text-decoration: none; position: relative; padding-bottom: 3px;
}
.chambre-detail-lien::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 1px; background: var(--sage);
  transform: scaleX(0); transform-origin: left center; transition: transform 0.36s ease;
}
.chambre-detail-lien:hover::after,
.chambre-entree.active .chambre-detail-lien::after { transform: scaleX(1); }
.chambre-detail-lien svg { transition: transform 0.3s ease; }
.chambre-detail-lien:hover svg { transform: translateX(4px); }
.chambre-entree:hover .chambre-detail-lien svg { transform: translateX(2px); }
.chambre-badge-type {
  display: block; width: fit-content; font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--terra);
  border: 1px solid rgba(196,144,106,0.32); padding: 0.15rem 0.5rem;
  border-radius: 2px; margin-bottom: 0.6rem;
}

/* Infos pratiques */
.ch-infos {
  background: var(--pierre-fonce);
  padding: 6rem 80px 5rem;
  border-top: 1px solid rgba(150,185,174,0.18);
}
.ch-infos-titre { font-family: var(--f-titre); font-weight: 400; font-variation-settings: 'opsz' 72; font-style: italic; font-size: clamp(22px, 2.2vw, 30px); color: var(--encre); margin: 0 0 2.8rem; }
.ch-infos-grille { display: grid; grid-template-columns: repeat(4,1fr); gap: 2.8rem 2rem; }
.ch-info-item { border-top: 1px solid rgba(150,185,174,0.46); padding-top: 1.05rem; }
.ch-info-label { display: block; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #6f988b; margin-bottom: 0.48rem; }
.ch-info-valeur { font-size: 0.92rem; font-weight: 400; color: var(--encre); line-height: 1.62; }

/* CTA */
.ch-cta { background: var(--nuit); padding: 5.5rem 80px; display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.ch-cta-label { display: block; font-size: 0.62rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(150,185,174,0.55); margin-bottom: 1.2rem; }
.ch-cta-titre { font-family: var(--f-titre); font-weight: 300; font-variation-settings: 'opsz' 144; font-style: italic; font-size: clamp(28px, 3.8vw, 50px); color: rgba(255,255,255,0.88); line-height: 1.1; margin: 0 0 1.4rem; }
.ch-cta-sous { font-size: 0.87rem; font-weight: 300; color: rgba(255,255,255,0.36); line-height: 1.78; max-width: 44ch; }
.ch-cta-droite { flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 1rem; }
.ch-cta-btn { display: inline-block; font-size: 0.72rem; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; color: var(--nuit); background: rgba(150,185,174,0.82); padding: 1.1rem 2.6rem; text-decoration: none; transition: background 0.3s ease, transform 0.3s ease; white-space: nowrap; }
.ch-cta-btn:hover { background: var(--sage); transform: translateY(-2px); }
.ch-cta-tel { font-size: 0.78rem; font-weight: 300; color: rgba(255,255,255,0.28); text-decoration: none; letter-spacing: 0.04em; transition: color 0.3s ease; }
.ch-cta-tel:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   PAGE : FICHE CATÉGORIE CHAMBRE
============================================================ */

/* Hero split : photo 58% gauche / contenu 42% droite */
.fiche-hero {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
}

.fiche-hero-photo {
  width: 58%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: var(--pierre);
}
.fiche-hero-photo-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 8s ease;
}
.fiche-hero:hover .fiche-hero-photo-bg { transform: scale(1.03); }

/* Contraste léger — hero Chambre Village (plafond très clair) */
.fiche-hero--village .fiche-hero-photo::after{
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  background: linear-gradient(135deg,
    rgba(10,14,10,0.38) 0%,
    rgba(10,14,10,0.12) 26%,
    rgba(10,14,10,0.00) 54%
  );
}


/* Badge "X chambres dans cette catégorie" sur la photo */
.fiche-photo-badge {
  position: absolute; bottom: 2rem; left: 2rem;
  background: rgba(30, 40, 32, 0.75);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* Contenu droit */
.fiche-hero-contenu {
  flex: 1;
  background: var(--pierre);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 4.5rem 4rem;
  position: relative;
}

/* Lien retour */
.fiche-retour {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.63rem; font-weight: 400; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--encre-moyen);
  text-decoration: none; margin-bottom: 3rem;
  transition: color 0.3s ease;
}
.fiche-retour svg { transition: transform 0.3s ease; }
.fiche-retour:hover { color: var(--sage); }
.fiche-retour:hover svg { transform: translateX(-4px); }

.fiche-label { margin-bottom: 1rem; }

.fiche-titre {
  font-family: var(--f-titre); font-weight: 300;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 0.97; color: var(--encre);
  margin: 0 0 2rem;
  letter-spacing: -0.01em;
}
.fiche-titre em { font-style: italic; }

.fiche-desc {
  font-size: clamp(0.9rem, 1.1vw, 1rem); font-weight: 400;
  color: var(--encre-moyen); line-height: 1.82;
  max-width: 46ch; margin-bottom: 2.2rem;
}

/* Détails (paragraphe secondaire sous la description courte) */
.fiche-details {
  font-style: italic;
  font-weight: 400;
  font-size: 0.92em;
  margin-top: -1.2rem;
}

/* Séparateur sage */
.fiche-sep {
  width: 100%; height: 1px;
  background: rgba(150,185,174,0.3);
  margin-bottom: 2rem;
}

/* Grille de specs */
.fiche-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1.5rem;
  margin-bottom: 2.5rem;
}
.fiche-spec-item { display: flex; flex-direction: column; gap: 0.2rem; }
.fiche-spec-label {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--sage-fonce);
}
.fiche-spec-valeur {
  font-size: 0.88rem; font-weight: 400; color: var(--encre-moyen);
}

/* Bloc prix + CTA */
.fiche-prix-cta {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(150,185,174,0.3);
}
.fiche-prix-bloc { display: flex; flex-direction: column; gap: 0.15rem; }
.fiche-prix-from {
  font-size: 0.6rem; font-weight: 400; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--encre-moyen); opacity: 0.7;
}
.fiche-prix-montant {
  font-family: var(--f-titre); font-variation-settings: 'opsz' 72;
  font-weight: 300; font-size: 30px;
  color: var(--encre); line-height: 1;
}
.fiche-prix-nuit {
  font-size: 0.75rem; font-weight: 300;
  color: var(--encre-moyen); letter-spacing: 0.04em;
}

.fiche-cta-btn {
  display: inline-block;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: white; background: var(--nuit);
  padding: 1.05rem 2.4rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.fiche-cta-btn:hover { background: var(--sage); transform: translateY(-2px); }

.fiche-cta-tel {
  display: block; margin-top: 0.8rem;
  font-size: 0.75rem; font-weight: 300;
  color: var(--encre-moyen); text-decoration: none;
  letter-spacing: 0.04em; transition: color 0.3s ease;
  text-align: right;
}
.fiche-cta-tel:hover { color: var(--sage); }

/* ---- Galerie 5 photos ---- */
.fiche-galerie {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3px;
  background: transparent;
  width: min(100% - 96px, 2200px);
  margin: 48px auto 0;
}

.fiche-gal-principale {
  grid-column: 1; grid-row: 1;
  aspect-ratio: 4/3;
  overflow: hidden; position: relative;
  cursor: pointer;
}
.fiche-gal-stack {
  grid-column: 2; grid-row: 1;
  display: flex; flex-direction: column; gap: 3px;
}
.fiche-gal-petite {
  flex: 1; overflow: hidden; position: relative;
  cursor: pointer; min-height: 0;
}
.fiche-gal-bas {
  grid-column: 1 / 3;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
}
.fiche-gal-demi {
  aspect-ratio: 3/2; overflow: hidden;
  position: relative; cursor: pointer;
}

/* Photos dans la galerie */
.fiche-gal-principale .gal-img,
.fiche-gal-petite .gal-img,
.fiche-gal-demi .gal-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.5s ease;
}
.fiche-gal-principale:hover .gal-img,
.fiche-gal-petite:hover .gal-img,
.fiche-gal-demi:hover .gal-img { transform: scale(1.04); }

/* Overlay léger sur hover galerie */
.fiche-gal-principale::after,
.fiche-gal-petite::after,
.fiche-gal-demi::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s ease;
  pointer-events: none;
}
.fiche-gal-principale:hover::after,
.fiche-gal-petite:hover::after,
.fiche-gal-demi:hover::after { background: rgba(0,0,0,0.08); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10,14,10,0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 90vw; max-height: 88vh;
  object-fit: contain;
  background-size: contain; background-repeat: no-repeat;
  background-position: center;
  width: 80vw; height: 80vh;
}
.lightbox-close {
  position: absolute; top: 2rem; right: 2.5rem;
  font-family: var(--f-corps); font-size: 0.65rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); background: none; border: none;
  cursor: pointer; transition: color 0.3s ease;
}
.lightbox-close:hover { color: var(--sage); }

/* ---- Carousel autres catégories ---- */
/* Reprend le style .chambres de l'accueil */
.fiche-autres { background: var(--pierre-fonce); padding: 5rem 0 0; }
.fiche-autres-entete {
  display: flex; align-items: baseline;
  justify-content: space-between;
  padding: 0 80px 2.5rem;
}
.fiche-autres-titre {
  font-family: var(--f-titre); font-weight: 300;
  font-variation-settings: 'opsz' 72;
  font-style: italic;
  font-size: clamp(22px, 2.5vw, 32px);
  color: var(--encre);
}

/* ============================================================
   RESPONSIVE — CHAMBRES + FICHE
============================================================ */
@media (max-width: 1100px) {
  .ch-hero { padding: 8.5rem 48px 4rem; }
  .ch-hero-ghost { right: 40px; }
  .ch-infos { padding: 5rem 48px 4rem; }
  .ch-infos-grille { grid-template-columns: repeat(2,1fr); }
  .ch-cta { padding: 4.5rem 48px; }
  .gueridon-visuel { width: 48%; }
  .chambre-entree { padding: 1.6rem 2rem 1.6rem 2.6rem; min-height: clamp(16.5rem, 24vh, 19rem); }

  .fiche-hero-contenu { padding: 7rem 3rem 3rem; }
  .fiche-autres-entete { padding: 0 48px 2rem; }
}
@media (max-width: 900px) {
  .gueridon { flex-direction: column; }
  .gueridon-visuel { display: none; }
  .gueridon-liste { border-left: none; width: 100%; padding-bottom: 0; }
  .chambre-entree { padding: 1.8rem 24px; min-height: auto; display: block; }
  .chambre-num { display: none; }
  .chambre-photo-mobile { display: block; }
  .chambre-entree-nom { font-size: clamp(26px, 5vw, 36px); }
  .chambre-entree-pied { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .chambre-entree-droite { width: 100%; justify-content: space-between; }
  .gueridon-header { padding: 6.5rem 24px 3rem; }
  .gueridon-header .ch-hero-ghost { display: none; }
  /* H1 Chambres : parité avec les autres pages en mobile */
  .gueridon-header .ch-hero-titre { font-size: clamp(3.1rem, 12.2vw, 5.2rem); }
  .ch-infos { padding: 4.25rem 24px 3.5rem; }
  .ch-cta { flex-direction: column; align-items: flex-start; padding: 4rem 24px; gap: 2.5rem; }
  .ch-cta-droite { align-items: flex-start; width: 100%; }

  /* Fiche mobile */
  .fiche-hero { flex-direction: column; min-height: auto; }
  .fiche-hero-photo { width: 100%; aspect-ratio: 3/2; min-height: auto; }
  /* Laisse une marge confortable sous la nav fixe */
  .fiche-hero-contenu { padding: calc(3rem + 52px) 24px 3rem; }
  .fiche-retour { margin-bottom: 2rem; }
  .fiche-galerie {
    grid-template-columns: 1fr;
    width: calc(100% - 48px);
    margin-top: 32px;
  }
  .fiche-gal-stack { flex-direction: row; }
  .fiche-gal-bas { grid-column: 1; }
  .fiche-autres-entete { padding: 0 24px 2rem; }
}
@media (max-width: 600px) {
  /* Nav : sur très petits écrans, on retire le logo au scroll */
  .nav.scrolled .nav-logo { display: none; }

  /* La Maison : supprime la respiration citation sous 600px */
  .la-maison .fleuve-respiration { display: none; }

  .fiche-galerie {
    width: calc(100% - 32px);
    margin-top: 24px;
  }
  .ch-infos-grille { grid-template-columns: 1fr; gap: 1.8rem; }
  .chambre-specs { display: none; }
  .fiche-specs { grid-template-columns: 1fr; }
  .fiche-prix-cta { flex-direction: column; align-items: flex-start; }
  .fiche-cta-tel { text-align: left; }
}


/* ============================================================
   LA MAISON & LE JARDIN — page spécifique
   Ajout v2.3
============================================================ */

/* ---- Header split aligné sur fiche chambre -------------- */
.maison-header {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
}
.maison-header-photo {
  width: 58%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: var(--pierre);
}
.maison-header-photo-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 8s ease;
}
.maison-header:hover .maison-header-photo-bg { transform: scale(1.03); }
.maison-header-contenu {
  flex: 1;
  background: var(--pierre);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 4.5rem 4rem;
}
.maison-header-titre {
  font-family: var(--f-titre); font-weight: 300;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 0.97; color: var(--encre);
  margin: 0 0 2rem;
  letter-spacing: -0.01em;
}
.maison-header-titre em { font-style: italic; }
.maison-header-citation {
  margin: 0;
  max-width: 34ch;
  padding-left: 1.25rem;
  border-left: 2px solid var(--terra);
  font-family: var(--f-titre);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--encre);
  font-weight: 300;
}

/* ---- Espacement ------------------------------------------ */
.fleuve { width: 100%; }
.fleuve-gap    { height: 3px; } /* juste le gap entre photos collées */
.fleuve-gap-section { height: 6rem; }
.fleuve-gap-lg { height: 9rem; }

/* ---- Respiration : citation posée entre deux chapitres ---- */
.fleuve-respiration {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 11rem 4rem;
  background: linear-gradient(
    to bottom,
    rgba(150,185,174,0.04),
    rgba(150,185,174,0.075)
  );
}
.fleuve-respiration-citation {
  margin: 0 0 2rem;
  max-width: 28ch;
  font-family: var(--f-titre); font-weight: 300;
  font-variation-settings: 'opsz' 144;
  font-style: italic;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.3;
  color: var(--encre);
}
.fleuve-respiration-auteur {
  font-family: var(--f-corps);
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--encre-moyen);
  position: relative;
  padding-top: 1.5rem;
}
.fleuve-respiration-auteur::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 1px;
  background: var(--terra);
}

/* ---- Unité chapitre : titre + texte/filet + photo -------- */
/* Le texte n'est JAMAIS seul : toujours ancré à une photo */
.fleuve-bloc {
  display: flex;
  align-items: stretch;
  min-height: 72vh;
}
.fleuve-bloc-texte {
  width: 42%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 5rem 4rem 5rem 72px;
  background: var(--pierre);
  position: relative;
}
/* Variante : texte à droite */
.fleuve-bloc.inverse .fleuve-bloc-texte {
  order: 2;
  padding: 5rem 72px 5rem 4rem;
}
.fleuve-bloc.inverse .fleuve-bloc-photo {
  order: 1;
}

.fleuve-chapitre {
  font-family: var(--f-titre); font-weight: 300;
  font-variation-settings: 'opsz' 144;
  font-style: italic;
  font-size: clamp(58px, 8vw, 112px);
  line-height: 0.88;
  color: var(--encre);
  margin-bottom: 3rem;
}
.fleuve-chapitre.cr {
  /* Laisse respirer les descendantes (J, g, y) dans le masque de reveal */
  padding-bottom: 0.2em;
}

/* Filet terra sur le texte descriptif */
.fleuve-bloc-corps {
  border-left: 1px solid var(--terra);
  padding-left: 1.8rem;
}
.fleuve-bloc-corps .label { margin-bottom: 0.8rem; }
.fleuve-bloc-corps p {
  font-size: clamp(0.87rem, 1vw, 0.96rem); font-weight: 400;
  color: var(--encre-moyen); line-height: 1.88;
  max-width: 44ch;
}
.fleuve-bloc-corps p + p { margin-top: 1.2rem; }

/* Photo côté bloc chapitre */
.fleuve-bloc-photo {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: var(--nuit);
}
.fleuve-bloc-photo-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.8s ease;
}
.fleuve-bloc-photo:hover .fleuve-bloc-photo-img { transform: scale(1.03); }

/* ---- Duo de photos --------------------------------------- */
.fleuve-duo {
  display: flex;
  gap: var(--galerie-gap);
  height: 54vh;
}
.fleuve-duo.h-tall  { height: 64vh; }
.fleuve-duo.h-short { height: 42vh; }

.fleuve-duo--6238 .fleuve-duo-a { width: 62%; }
.fleuve-duo--3565 .fleuve-duo-a { width: 35%; }
.fleuve-duo--4060 .fleuve-duo-a { width: 40%; }
.fleuve-duo--5050 .fleuve-duo-a { width: 50%; }
.fleuve-duo--6535 .fleuve-duo-a { width: 65%; }

.fleuve-duo-a,
.fleuve-duo-b {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.fleuve-duo-b { flex: 1; }
.fleuve-duo-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.75s ease;
}
.fleuve-duo-a:hover .fleuve-duo-img,
.fleuve-duo-b:hover .fleuve-duo-img { transform: scale(1.035); }

/* Stagger reveal */
.fleuve-duo .fleuve-duo-a {
  opacity: 0; transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.fleuve-duo .fleuve-duo-b {
  opacity: 0; transform: translateY(20px);
  transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
}
.fleuve-duo.visible .fleuve-duo-a,
.fleuve-duo.visible .fleuve-duo-b { opacity: 1; transform: none; }

/* ---- Trio de photos -------------------------------------- */
.fleuve-trio {
  display: flex;
  gap: var(--galerie-gap);
  height: 50vh;
}
.fleuve-trio-item {
  flex: 1; position: relative; overflow: hidden;
}
.fleuve-trio-item.large  { flex: 1.55; }
.fleuve-trio-item.etroit { flex: 0.72; }
.fleuve-trio-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.75s ease;
}
.fleuve-trio-item:hover .fleuve-trio-img { transform: scale(1.035); }

.fleuve-trio .fleuve-trio-item {
  opacity: 0; transform: translateY(20px);
}
.fleuve-trio .fleuve-trio-item:nth-child(1) { transition: opacity .95s ease,       transform .95s ease; }
.fleuve-trio .fleuve-trio-item:nth-child(2) { transition: opacity .95s ease .15s,  transform .95s ease .15s; }
.fleuve-trio .fleuve-trio-item:nth-child(3) { transition: opacity .95s ease .3s,   transform .95s ease .3s; }
.fleuve-trio.visible .fleuve-trio-item { opacity: 1; transform: none; }

/* ---- Photo pleine largeur (séparateur / ponctuation) ----- */
.fleuve-pleine {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.fleuve-pleine-img {
  width: 100%; height: 70vh;
  background-size: cover; background-position: center;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.fleuve-pleine.reveal-up .fleuve-pleine-img {
  clip-path: inset(100% 0 0 0);
}
.fleuve-pleine.visible .fleuve-pleine-img        { clip-path: inset(0 0% 0 0); }
.fleuve-pleine.reveal-up.visible .fleuve-pleine-img { clip-path: inset(0 0 0% 0); }
.fleuve-pleine.h-tall  .fleuve-pleine-img { height: 82vh; }
.fleuve-pleine.h-short .fleuve-pleine-img { height: 55vh; }

/* Texte overlay sur pleine largeur (Corton) */
.fleuve-pleine-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(14,18,13,0.55) 0%, transparent 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 3.5rem 4rem;
  pointer-events: none;
}
.fleuve-pleine-overlay-titre {
  font-family: var(--f-titre); font-weight: 300;
  font-variation-settings: 'opsz' 144;
  font-style: italic;
  font-size: clamp(32px, 4vw, 54px);
  color: rgba(248,247,243,0.92);
  line-height: 1.1;
  margin-bottom: 0.8rem;
}
.fleuve-pleine-overlay-texte {
  font-size: 0.88rem; font-weight: 300;
  color: rgba(248,247,243,0.65);
  line-height: 1.75; max-width: 46ch;
}

/* ---- Séparateur parallaxe entre chapitres ---------------- */
.fleuve-parallaxe {
  position: relative;
  min-height: 44vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--pierre);
  padding: 7rem 0;
  z-index: 3;
}
.fleuve-parallaxe-contenu {
  position: relative;
  z-index: 1;
  padding: 0 72px;
  max-width: 860px;
}
.fleuve-parallaxe-citation {
  font-family: var(--f-titre); font-weight: 300;
  font-variation-settings: 'opsz' 144;
  font-style: italic;
  font-size: clamp(26px, 3.1vw, 44px);
  color: var(--encre);
  line-height: 1.3;
  margin-bottom: 1.6rem;
}
.fleuve-parallaxe-auteur {
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--encre-moyen);
}

/* ---- Reveal : blocs chapitres ---------------------------- */
.fleuve-bloc .fleuve-bloc-texte {
  opacity: 0; transform: translateX(-24px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}
.fleuve-bloc .fleuve-bloc-photo {
  opacity: 0; transform: translateX(24px);
  transition: opacity 1.1s ease 0.15s, transform 1.1s ease 0.15s;
}
.fleuve-bloc.inverse .fleuve-bloc-texte {
  transform: translateX(24px);
}
.fleuve-bloc.inverse .fleuve-bloc-photo {
  transform: translateX(-24px);
}
.fleuve-bloc.visible .fleuve-bloc-texte,
.fleuve-bloc.visible .fleuve-bloc-photo { opacity: 1; transform: none; }

/* ---- CTA bas de page ------------------------------------- */
.maison-cta {
  background: var(--nuit);
  padding: 6rem 72px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 3rem;
}
.maison-cta-texte {
  font-family: var(--f-titre); font-weight: 300;
  font-variation-settings: 'opsz' 72;
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 46px);
  color: rgba(248,247,243,0.9);
  line-height: 1.1; max-width: 540px;
}
.maison-cta-btn {
  display: inline-block; flex-shrink: 0;
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--nuit); background: var(--pierre);
  padding: 1.1rem 2.8rem;
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}
.maison-cta-btn:hover { background: var(--sage); color: white; }

/* ---- Responsive ------------------------------------------ */
@media (max-width: 1100px) {
  .maison-header-contenu  { padding: 6rem 3.5rem 4rem; }
  .fleuve-bloc-texte      { padding: 4rem 3rem 4rem 48px; }
  .fleuve-bloc.inverse .fleuve-bloc-texte { padding: 4rem 48px 4rem 3rem; }
  .fleuve-parallaxe-contenu { padding: 0 48px; }
  .maison-cta { padding: 5rem 48px; }
}
@media (max-width: 900px) {
  .maison-header { flex-direction: column; min-height: auto; }
  .maison-header-photo { width: 100%; aspect-ratio: 3/2; }
  .maison-header-contenu { padding: 3.5rem 24px; justify-content: flex-start; }
  .maison-header-titre { font-size: clamp(3.1rem, 12.2vw, 5.2rem); }

  .fleuve-bloc { flex-direction: column; min-height: auto; }
  .fleuve-bloc .fleuve-bloc-texte,
  .fleuve-bloc.inverse .fleuve-bloc-texte {
    width: 100%; order: 2;
    padding: 3.5rem 24px;
  }
  .fleuve-bloc .fleuve-bloc-photo,
  .fleuve-bloc.inverse .fleuve-bloc-photo {
    order: 1; width: 100%; aspect-ratio: 3/2;
    position: relative; min-height: auto;
  }
  .fleuve-bloc-photo-img { position: absolute; }

  /* Parité des chapitres H2 sur mobile (Maison / Services / Bourgogne) */
  .fleuve-chapitre {
    font-size: clamp(48px, 13vw, 90px);
    margin-bottom: 1.5rem;
  }

  .fleuve-duo  { height: auto; min-height: 50vw; }
  .fleuve-trio { height: auto; }
  .fleuve-trio-item,
  .fleuve-duo-a,
  .fleuve-duo-b { min-height: 38vw; }
  .fleuve-pleine-img       { height: 58vw; }
  .fleuve-pleine.h-tall  .fleuve-pleine-img { height: 65vw; }
  .fleuve-pleine.h-short .fleuve-pleine-img { height: 48vw; }
  .fleuve-respiration { padding: 6rem 1.5rem; }
  .fleuve-parallaxe { height: 60vw; }
  .fleuve-parallaxe-contenu { padding: 0 24px; }
  .maison-cta { flex-direction: column; align-items: flex-start; padding: 4rem 24px; gap: 2.5rem; }
  .fleuve-gap-lg { height: 5rem; }
}
@media (max-width: 600px) {
  .fleuve-duo { flex-direction: column; }
  .fleuve-duo .fleuve-duo-a,
  .fleuve-duo .fleuve-duo-b { width: 100% !important; flex: none; aspect-ratio: 3/2; }
  .fleuve-trio { flex-direction: column; height: auto; }
  .fleuve-trio-item { aspect-ratio: 3/2; flex: none !important; }
}


/* ============================================================
   BIEN-ÊTRE & SERVICES — page spécifique
   Ajout v2.4
============================================================ */

/* ---- Modificateur compact sur fleuve-bloc ---------------- */
.fleuve-bloc.compact { min-height: 55vh; }

/* ---- Titres de section intégrés au bloc texte ----------- */
.services-section + .services-section { margin-top: 3.2rem; }
.services-titre {
  margin: 0 0 2.6rem;
  font-size: clamp(58px, 8vw, 112px);
  line-height: 0.88;
  letter-spacing: -0.02em;
}

/* ---- Lien plaquette vins --------------------------------- */
.services-plaquette {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2rem;
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--encre);
  border-bottom: 1px solid var(--terra);
  padding-bottom: 0.3rem;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.services-plaquette svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 1.4;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.services-plaquette:hover {
  color: var(--sage);
  border-color: var(--sage);
}
.services-plaquette:hover svg { transform: translateY(2px); }

.services-massages-lien {
  margin-left: 0.4rem;
  font-size: 0.68rem;
}

/* ---- Info pratique (horaires, tarifs) -------------------- */
.services-info {
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(30,40,32,0.1);
}
.services-info-ligne {
  display: flex;
  gap: 1rem;
  font-size: 0.82rem; font-weight: 400;
  color: var(--encre-moyen);
  line-height: 1.7;
}
.services-info-ligne + .services-info-ligne { margin-top: 0.5rem; }
.services-info-label {
  font-weight: 500;
  color: var(--encre);
  white-space: nowrap;
  min-width: 10ch;
}

/* ---- Responsive ------------------------------------------ */
@media (max-width: 1100px) {
  .services-section + .services-section { margin-top: 2.6rem; }
  .services-titre { font-size: clamp(56px, 9vw, 112px); }
}
@media (max-width: 900px) {
  .services-section + .services-section { margin-top: 2rem; }
  .services-titre {
    font-size: clamp(48px, 13vw, 90px);
    margin-bottom: 1.5rem;
  }
  .fleuve-bloc.compact { min-height: auto; }
}


/* ============================================================
   EN BOURGOGNE — page spécifique
   Ajout v2.5
============================================================ */

/* Réutilise : maison-header, fleuve-bloc,
   fleuve-chapitre, fleuve-duo, fleuve-trio,
   fleuve-respiration — aucune redéclaration nécessaire */

/* Rythme des sections bourgogne aligné à services */
.bourgogne-section + .bourgogne-section { margin-top: 3.2rem; }
.bourgogne-titre {
  margin: 0 0 2.6rem;
  font-size: clamp(58px, 8vw, 112px);
  line-height: 0.88;
  letter-spacing: -0.02em;
}

/* ---- Grille des 4 directions de rayonnement -------------- */
.bourgogne-directions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(150,185,174,0.24);
}

.bourgogne-direction {
  background: var(--pierre);
  padding: 4rem 4rem 4rem 72px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Titres de direction harmonisés avec le style chapitre */
.bourgogne-direction-titre {
  font-family: var(--f-titre); font-weight: 300;
  font-variation-settings: 'opsz' 144;
  font-style: italic;
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 0.88;
  color: var(--encre);
  margin-bottom: 2.1rem;
  letter-spacing: -0.02em;
}

/* Photo dans la direction (optionnelle) */
.bourgogne-direction-photo {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
  margin-bottom: 2.4rem;
}
.bourgogne-direction-photo-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.75s ease;
}
.bourgogne-direction-photo:hover .bourgogne-direction-photo-img {
  transform: scale(1.035);
}

/* Liste de sites */
.bourgogne-direction-liste {
  border-left: 1px solid var(--terra);
  padding-left: 1.6rem;
}
.bourgogne-direction-liste p {
  font-size: 0.86rem; font-weight: 300;
  color: var(--encre-moyen); line-height: 1.9;
  max-width: 42ch;
}

/* ---- Responsive ------------------------------------------ */
@media (max-width: 1100px) {
  .bourgogne-section + .bourgogne-section { margin-top: 2.6rem; }
  .bourgogne-titre { font-size: clamp(56px, 9vw, 112px); }
  .bourgogne-direction { padding: 3.5rem 3rem 3.5rem 48px; }
}
@media (max-width: 900px) {
  .bourgogne-section + .bourgogne-section { margin-top: 2rem; }
  .bourgogne-titre {
    font-size: clamp(48px, 13vw, 90px);
    margin-bottom: 1.5rem;
  }
  .bourgogne-directions { grid-template-columns: 1fr; }
  .bourgogne-direction { padding: 3rem 24px; }
  .bourgogne-direction-titre {
    font-size: clamp(34px, 9vw, 52px);
    margin-bottom: 1.25rem;
  }
}


/* ============================================================
   CONTACT & ACCÈS — page spécifique
   Ajout v2.6
============================================================ */

/* ---- Split principal : infos 42% / formulaire 58% ---- */
.ct-split {
  display: flex;
  align-items: stretch;
}

.ct-infos {
  width: 42%;
  flex-shrink: 0;
  background: var(--pierre);
  padding: 7rem 4rem 6rem 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.8rem;
  border-right: 1px solid rgba(150,185,174,0.2);
}

.ct-form-zone {
  flex: 1;
  background: var(--pierre-fonce);
  padding: 7rem 72px 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---- Blocs d'info ---- */
.ct-bloc { display: flex; flex-direction: column; gap: 0.4rem; }
.ct-bloc-label { margin-bottom: 0.1rem; }

.ct-tel {
  font-family: var(--f-titre);
  font-variation-settings: 'opsz' 72;
  font-weight: 300;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  color: var(--encre);
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}
.ct-tel:hover { color: var(--sage); }

.ct-email {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--encre);
  transition: color 0.3s ease;
  display: inline-block;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.ct-email:hover { color: var(--sage); border-bottom-color: rgba(150,185,174,0.5); }

.ct-adresse {
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--encre-moyen);
  line-height: 1.82;
}

.ct-horaires {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--encre-moyen);
  line-height: 1.82;
}

/* ---- Bloc réservation directe ---- */
.ct-resa {
  padding: 1.6rem 1.8rem;
  border-left: 2px solid var(--terra);
  background: rgba(150,185,174,0.075);
}

.ct-resa-accroche {
  display: block;
  font-family: var(--f-titre);
  font-variation-settings: 'opsz' 72;
  font-weight: 300;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--encre);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.ct-resa-texte {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--encre-moyen);
  line-height: 1.72;
  margin-bottom: 1.2rem;
}

.ct-resa-btn {
  display: inline-block;
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--encre);
  border: 1px solid var(--sage);
  padding: 0.9rem 2rem;
  transition: background 0.3s ease, color 0.3s ease;
}
.ct-resa-btn:hover { background: var(--sage); color: white; }

/* ---- Formulaire ---- */
.ct-form-titre {
  font-family: var(--f-titre);
  font-variation-settings: 'opsz' 72;
  font-weight: 300;
  font-size: clamp(2rem, 2.8vw, 3rem);
  color: var(--encre);
  line-height: 1.0;
  margin-bottom: 0.8rem;
}
.ct-form-titre em { font-style: italic; }

.rgpd-notice {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--encre-moyen);
  opacity: 0.75;
  line-height: 1.65;
  max-width: 72ch;
}
.rgpd-notice a {
  color: inherit;
  border-bottom: 1px solid rgba(150,185,174,0.55);
  padding-bottom: 1px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.rgpd-notice a:hover { color: var(--sage); border-bottom-color: rgba(150,185,174,0.85); }

.ct-form-intro {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--encre-moyen);
  line-height: 1.72;
  margin-bottom: 2.6rem;
  max-width: 50ch;
}

.ct-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ct-form-ligne {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.ct-form-groupe {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ct-label {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--encre-moyen);
}

.ct-label-opt {
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  color: var(--encre-moyen);
  opacity: 0.65;
}

.ct-input,
.ct-textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(150,185,174,0.38);
  padding: 0.65rem 0;
  font-family: var(--f-corps);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--encre);
  outline: none;
  transition: border-color 0.3s ease;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}
.ct-input:focus,
.ct-textarea:focus { border-bottom-color: var(--sage); }

.ct-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.65;
}

.ct-form-pied {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 0.4rem;
}

.ct-form-rgpd {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--encre-moyen);
  opacity: 0.6;
  line-height: 1.55;
  max-width: 30ch;
}

.ct-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  font-family: var(--f-corps);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: white;
  background: var(--nuit);
  border: none;
  padding: 1.05rem 2.2rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}
.ct-submit:hover { background: var(--sage); transform: translateY(-2px); }
.ct-submit svg { flex-shrink: 0; }
.ct-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}
.ct-submit:disabled:hover { background: var(--nuit); transform: none; }

/* Honeypot anti-spam (contact) */
.ct-form-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Message retour formulaire (au-dessus du form) */
.ct-form-feedback {
  margin-bottom: 2.25rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(150, 185, 174, 0.45);
  background: rgba(150, 185, 174, 0.12);
  outline: none;
}
.ct-form-feedback[hidden] { display: none !important; }
.ct-form-feedback--success {
  border-color: rgba(150, 185, 174, 0.55);
  background: rgba(150, 185, 174, 0.14);
}
.ct-form-feedback--error {
  border-color: rgba(139, 90, 90, 0.35);
  background: rgba(139, 90, 90, 0.08);
}
.ct-form-feedback-titre {
  font-family: var(--f-titre);
  font-variation-settings: 'opsz' 72;
  font-weight: 300;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--encre);
  margin: 0 0 0.5rem;
}
.ct-form-feedback-texte {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--encre-moyen);
  line-height: 1.65;
  margin: 0;
}

/* reCAPTCHA v3 — badge Google (au-dessus du grain body::before) */
.grecaptcha-badge {
  z-index: 10000 !important;
  visibility: visible !important;
}

/* RGPD (contact) : en colonne sur mobile */
@media (max-width: 900px) {
  .rgpd-notice { max-width: 100%; }
}

/* ---- Section accès ---- */
.ct-acces {
  background: linear-gradient(to bottom, rgba(150,185,174,0.04), rgba(150,185,174,0.075));
  padding: 7rem 72px 7rem;
  border-top: 1px solid rgba(150,185,174,0.18);
}

.ct-acces-entete { margin-bottom: 4rem; }

.ct-acces-titre {
  font-family: var(--f-titre);
  font-variation-settings: 'opsz' 144;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.97;
  color: var(--encre);
  margin-top: 1rem;
  letter-spacing: -0.01em;
}
.ct-acces-titre em { font-style: italic; }

.ct-acces-grille {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 6rem;
  max-width: 860px;
}

.ct-acces-bloc {
  border-top: 1px solid rgba(150,185,174,0.3);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
}

.ct-acces-icone {
  color: var(--sage);
  margin-bottom: 1.2rem;
}

.ct-acces-bloc-titre {
  font-family: var(--f-titre);
  font-variation-settings: 'opsz' 72;
  font-weight: 300;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--encre);
  margin-bottom: 1.2rem;
}

.ct-acces-liste {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
}

.ct-acces-liste li {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--encre-moyen);
  line-height: 1.6;
  padding-left: 1.1rem;
  position: relative;
}
.ct-acces-liste li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 1px;
  background: var(--terra);
}

.ct-acces-note {
  font-size: 0.78rem;
  font-weight: 300;
  font-style: italic;
  color: var(--encre-moyen);
  opacity: 0.72;
  line-height: 1.6;
  margin-top: auto;
  padding-top: 0.4rem;
}

/* ---- Carte ---- */
.ct-carte { position: relative; }

.ct-carte-wrap {
  position: relative;
}

.ct-carte-iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
  filter: grayscale(15%) contrast(0.97);
}

/* Marqueur custom — centré sur l'iframe (OSM centre toujours sur le marker) */
.ct-carte-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 3px 8px rgba(30,40,32,0.35));
}
.ct-carte-pin-dot {
  width: 26px;
  height: 26px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--nuit);
  border: 3px solid var(--pierre);
}
.ct-carte-pin-tige {
  width: 3px;
  height: 16px;
  background: var(--nuit);
  opacity: 0.65;
  margin-top: -1px;
  border-radius: 0 0 2px 2px;
}

/* Overlay anti-scroll : bloque la molette tant qu'on n'a pas cliqué */
.ct-carte-overlay {
  position: absolute;
  inset: 0;
  cursor: pointer;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ct-carte-overlay--active {
  pointer-events: none;
}
.ct-carte-hint {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--encre);
  background: rgba(232,234,228,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.55rem 1.2rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ct-carte-overlay:not(.ct-carte-overlay--active):hover .ct-carte-hint {
  opacity: 1;
}

/* Tactile / mobile : pas de hover, on affiche le hint par défaut tant que la carte est verrouillée */
@media (pointer: coarse), (hover: none) {
  .ct-carte-overlay:not(.ct-carte-overlay--active) .ct-carte-hint { opacity: 1; }
}

.ct-carte-barre {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem 72px;
  background: var(--pierre);
  border-top: 1px solid rgba(150,185,174,0.2);
}

.ct-carte-adresse {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--encre-moyen);
  letter-spacing: 0.06em;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .ct-infos { padding: 6rem 3.5rem 5rem 48px; }
  .ct-form-zone { padding: 6rem 48px 5rem 4rem; }
  .ct-acces { padding: 6rem 48px; }
  .ct-carte-barre { padding: 1.4rem 48px; }
}

@media (max-width: 900px) {
  .ct-split { flex-direction: column; }
  .ct-infos {
    width: 100%;
    padding: 4.5rem 24px;
    border-right: none;
    border-bottom: 1px solid rgba(150,185,174,0.2);
  }
  .ct-form-zone { padding: 4.5rem 24px; }
  .ct-form-ligne { grid-template-columns: 1fr; gap: 2rem; }
  .ct-acces { padding: 5rem 24px; }
  .ct-acces-grille { grid-template-columns: 1fr; gap: 2.5rem; max-width: 100%; }
  .ct-carte-iframe { height: 320px; }
  .ct-carte-barre { padding: 1.2rem 24px; flex-direction: column; align-items: flex-start; gap: 1rem; }
  .ct-form-pied { flex-direction: column; align-items: flex-start; }
}


/* ============================================================
   MENTIONS LÉGALES — page spécifique
   Ajout v2.7
============================================================ */

.legal {
  background: linear-gradient(to bottom, rgba(150,185,174,0.04), rgba(150,185,174,0.075));
  padding: 7rem 72px 7rem;
  border-top: 1px solid rgba(150,185,174,0.18);
}

.legal-wrap {
  width: min(980px, 100%);
  margin: 0 auto;
}

.legal-bloc + .legal-bloc {
  margin-top: 3.5rem;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(150,185,174,0.22);
}

.legal-titre {
  font-family: var(--f-titre);
  font-variation-settings: 'opsz' 72;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  color: var(--encre);
  line-height: 1.15;
  margin: 0 0 1.2rem;
}

.legal-prose,
.legal-liste p,
.legal-ul {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--encre-moyen);
  line-height: 1.9;
}

.legal-liste p { margin: 0.15rem 0; }
.legal-liste strong { font-weight: 500; color: var(--encre); }

.legal a {
  color: inherit;
  border-bottom: 1px solid rgba(150,185,174,0.55);
  padding-bottom: 1px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.legal a:hover { color: var(--sage); border-bottom-color: rgba(150,185,174,0.85); }

.legal-ul {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
  border-left: 1px solid var(--terra);
  padding-left: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.legal-ul li {
  position: relative;
  padding-left: 1.1rem;
}
.legal-ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 6px;
  height: 1px;
  background: var(--terra);
}

@media (max-width: 1100px) {
  .legal { padding: 6rem 48px; }
}

@media (max-width: 900px) {
  .legal { padding: 5rem 24px; }
  .legal-bloc + .legal-bloc { margin-top: 3rem; }
}

/* ============================================================
   RESERVIT — moteur de réservation (iframe plein écran)
   Au-dessus de : .nav 130, .menu 120, .hero-contenu 2, grain body::before 9998
============================================================ */
body.reservit-booking-open {
  overflow: hidden;
}

#ReservitBookingIframe {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: #fff;
  z-index: 10050;
  display: none;
  opacity: 0;
  transform: translate3d(0, 52px, 0) scale(0.966);
  transform-origin: 50% 38%;
  transition:
    opacity 0.78s var(--ease),
    transform 0.88s var(--ease),
    box-shadow 0.95s var(--ease);
  box-shadow: 0 0 0 rgba(30, 40, 32, 0);
}

#ReservitBookingIframe.reservit-is-open {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  box-shadow: 0 32px 100px rgba(30, 40, 32, 0.14);
  transition:
    opacity 0.78s var(--ease),
    transform 0.88s var(--ease),
    box-shadow 0.95s var(--ease);
}

.iframeClose {
  display: none;
  position: fixed;
  top: 14px;
  right: 44px;
  z-index: 10051;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(248, 247, 243, 0.88);
  color: var(--encre);
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 300;
  font-family: var(--f-corps), system-ui, sans-serif;
  letter-spacing: 0;
  cursor: pointer;
  user-select: none;
  border-radius: 1px;
  box-shadow: 0 1px 0 rgba(42, 32, 24, 0.06);
  opacity: 0;
  transform: translate3d(0, -26px, 0);
  transition:
    opacity 0.62s var(--ease) 0.22s,
    transform 0.7s var(--ease) 0.22s,
    background 0.3s ease;
}

.iframeClose:hover {
  background: rgba(232, 234, 228, 0.98);
  color: var(--sage-fonce);
}

.iframeClose:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

.iframeClose.reservit-close-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  #ReservitBookingIframe {
    transition-duration: 0.01ms;
    transform: none;
  }
  #ReservitBookingIframe.reservit-is-open {
    transform: none;
    box-shadow: none;
  }
  .iframeClose {
    transition-duration: 0.01ms;
    transition-delay: 0s;
    transform: none;
  }
}
