/* =========================================================
   KLS — Feuille de styles principale
   Dépend de variables.css (chargé avant).
   ========================================================= */

/* ---------- Reset minimal ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font-corps);
  font-size: var(--pas-corps);
  line-height: 1.7;
  color: var(--texte);
  background: var(--blanc);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-weight: 400; line-height: 1.08; text-wrap: balance; }
:focus-visible { outline: 2px solid var(--or); outline-offset: 3px; border-radius: var(--rayon); }
::selection { background: var(--or); color: var(--noir); }

/* ---------- Utilitaires ---------- */
.contenu { width: 100%; max-width: var(--contenu); margin-inline: auto; padding-inline: var(--gouttiere); }
.skip-link {
  position: fixed; top: -60px; left: var(--gouttiere); z-index: var(--z-overlay);
  background: var(--noir); color: var(--sur-noir); padding: 0.75rem 1.25rem;
  border-radius: var(--rayon); transition: top var(--t-court) var(--ease);
}
.skip-link:focus { top: 1rem; }

/* Eyebrow / label */
.eyebrow {
  font-size: var(--pas-label);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--or-fonce);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 0.9rem;
}
.eyebrow::before {
  content: ""; width: 2.2rem; height: 1px; background: var(--or); opacity: 0.7;
}
.sur-sombre .eyebrow { color: var(--or-clair); }

/* Titres de section */
.titre-section { font-family: var(--font-titre); font-size: var(--pas-h2); letter-spacing: -0.01em; }
.titre-section em { font-style: italic; color: var(--cuivre); }
.sur-sombre .titre-section { color: var(--sur-noir); }
.sur-sombre .titre-section em { color: var(--cuivre-clair); }
.lead { font-size: var(--pas-lead); color: var(--texte-doux); line-height: 1.6; }
.sur-sombre .lead { color: var(--sur-noir-doux); }

.entete-section { display: flex; flex-direction: column; gap: 1.25rem; max-width: 640px; }
.entete-section .lead { margin-top: 0.25rem; }

/* Boutons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  min-height: 52px; padding: 0.9rem 1.9rem;
  font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  border-radius: var(--rayon-btn); transition: all var(--t-court) var(--ease);
  will-change: transform;
}
.btn-or { background: var(--or); color: var(--noir); }
.btn-or:hover { background: var(--or-clair); transform: translateY(-2px); }
.btn-ligne { border: 1px solid var(--filet-fort); color: var(--texte-fort); background: transparent; }
.btn-ligne:hover { border-color: var(--or); color: var(--or-fonce); transform: translateY(-2px); }
.sur-sombre .btn-ligne { border-color: var(--filet-clair); color: var(--sur-noir); }
.sur-sombre .btn-ligne:hover { border-color: var(--or-clair); color: var(--or-clair); }

/* Lien texte souligné animé */
.lien-souligne {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  color: var(--or-fonce); padding-bottom: 3px;
  background-image: linear-gradient(var(--or), var(--or));
  background-size: 0% 1px; background-repeat: no-repeat; background-position: left bottom;
  transition: background-size var(--t-moyen) var(--ease), color var(--t-court) var(--ease);
}
.lien-souligne:hover { background-size: 100% 1px; }
.lien-souligne .fleche { transition: transform var(--t-court) var(--ease); }
.lien-souligne:hover .fleche { transform: translateX(4px); }
.sur-sombre .lien-souligne { color: var(--or-clair); background-image: linear-gradient(var(--or-clair), var(--or-clair)); }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-nav);
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem var(--gouttiere);
  transition: background var(--t-moyen) var(--ease), padding var(--t-moyen) var(--ease), box-shadow var(--t-moyen) var(--ease);
}
.nav::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0;
  background: rgba(46,35,24,0.76); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--filet-clair);
  transition: opacity var(--t-moyen) var(--ease);
}
.nav.scrolled { padding-block: 0.9rem; box-shadow: var(--ombre-nav); }
.nav.scrolled::after { opacity: 1; }

.logo { display: inline-flex; align-items: center; color: var(--or-clair); transition: color var(--t-court) var(--ease); }
.logo-svg { height: 30px; width: 108px; flex: none; display: block; overflow: visible; }
.logo:hover { color: var(--or); }

.nav-liens { display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 2.8rem); }
.nav-liens a {
  font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 400;
  color: var(--sur-noir); opacity: 0.85; position: relative; padding-block: 0.4rem;
  transition: opacity var(--t-court) var(--ease), color var(--t-court) var(--ease);
}
.nav-liens a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--or-clair);
  transition: width var(--t-court) var(--ease);
}
.nav-liens a:hover { opacity: 1; color: var(--or-clair); }
.nav-liens a:hover::after { width: 100%; }
.nav-liens .nav-voyageur { margin-left: 0.7rem; padding-left: 1.5rem; border-left: 1px solid var(--filet-clair); }

.nav-droite { display: flex; align-items: center; gap: 1.5rem; }

/* Sélecteur de langue */
.lang {
  display: inline-flex; align-items: center; border: 1px solid var(--filet-clair); border-radius: 999px;
  overflow: hidden;
}
.lang button {
  padding: 0.4rem 0.75rem; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sur-noir-doux); transition: background var(--t-court) var(--ease), color var(--t-court) var(--ease);
}
.lang button.actif { background: var(--or); color: var(--noir); }

/* Burger */
.burger { display: none; width: 44px; height: 44px; position: relative; }
.burger span { position: absolute; left: 10px; right: 10px; height: 1.5px; background: var(--sur-noir); transition: transform var(--t-court) var(--ease), opacity var(--t-court) var(--ease); }
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
body.menu-ouvert .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-ouvert .burger span:nth-child(2) { opacity: 0; }
body.menu-ouvert .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Menu plein écran (mobile) */
.menu-mobile {
  position: fixed; inset: 0; z-index: var(--z-menu);
  background: var(--noir); display: flex; flex-direction: column; justify-content: center;
  padding: var(--gouttiere); gap: 0.4rem;
  clip-path: inset(0 0 100% 0); transition: clip-path var(--t-moyen) var(--ease);
  visibility: hidden;
}
body.menu-ouvert .menu-mobile { clip-path: inset(0 0 0 0); visibility: visible; }
.menu-mobile a {
  font-family: var(--font-titre); font-size: clamp(2rem, 9vw, 3rem); color: var(--sur-noir);
  padding-block: 0.4rem; opacity: 0; transform: translateY(14px);
  transition: opacity var(--t-moyen) var(--ease), color var(--t-court) var(--ease);
}
.menu-mobile a:hover { color: var(--or-clair); }
body.menu-ouvert .menu-mobile a { opacity: 1; transform: none; transition-delay: calc(120ms + var(--i, 0) * 70ms); }
.menu-mobile .menu-pied { margin-top: 2.5rem; color: var(--sur-noir-doux); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: var(--sur-noir); overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: var(--z-base); background: var(--noir); }
.hero-img { position: absolute; inset: -8% 0; width: 100%; height: 116%; object-fit: cover; }
/* Ken burns lent (remplaçable par une <video class="hero-img">) */
@media (prefers-reduced-motion: no-preference) {
  .hero-img { animation: kenburns 26s var(--ease-doux) infinite alternate; }
}
@keyframes kenburns {
  from { transform: scale(1.04) translateY(0); }
  to   { transform: scale(1.14) translateY(-2%); }
}
/* Voile dégradé « en fondu » : image visible à droite, texte lisible en bas et à gauche */
.hero-media::after {
  content: ""; position: absolute; inset: 0; z-index: var(--z-media);
  background:
    linear-gradient(180deg, rgba(24,19,14,0.78) 0%, rgba(24,19,14,0.66) 40%, rgba(24,19,14,0.96) 100%),
    linear-gradient(90deg, rgba(24,19,14,0.78) 0%, rgba(24,19,14,0.52) 60%, rgba(24,19,14,0.44) 100%);
}
.hero-contenu { position: relative; z-index: var(--z-contenu); padding-bottom: clamp(4rem, 14vh, 9rem); padding-top: 8rem; width: 100%; }
.hero .eyebrow { color: var(--or-clair); }
.hero .eyebrow::before { background: var(--or-clair); }
/* Boutons du hero : traitement clair (fond sombre) */
.hero .btn-ligne { border-color: var(--filet-clair); color: var(--sur-noir); }
.hero .btn-ligne:hover { border-color: var(--or-clair); color: var(--or-clair); }
.hero h1 {
  font-family: var(--font-titre); font-size: clamp(1.7rem, 1rem + 2.3vw, 2.85rem); font-weight: 400;
  letter-spacing: -0.01em; line-height: 1.18; margin-top: 1.5rem; max-width: 22ch;
}
.hero h1 em { font-style: italic; color: var(--cuivre-clair); }
.hero-sous { max-width: 46ch; margin-top: 1.75rem; color: var(--sur-noir); opacity: 0.9; font-size: var(--pas-lead); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }
.hero-lien-voyageur { display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 1.35rem; font-size: 0.88rem; letter-spacing: 0.01em; color: var(--sur-noir-doux); transition: color var(--t-court) var(--ease); }
.hero-lien-voyageur span[aria-hidden] { transition: transform var(--t-court) var(--ease); }
.hero-lien-voyageur:hover { color: var(--or-clair); }
.hero-lien-voyageur:hover span[aria-hidden] { transform: translateX(3px); }

/* Rappel CTA (avant le contact) */
.rappel-cta { padding-block: clamp(3rem, 6vw, 5.5rem); border-bottom: 1px solid var(--filet-clair); }
.rappel-cta-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.2rem; max-width: 620px; margin-inline: auto; }
.rappel-cta .lead { margin-top: -0.25rem; }

/* Indicateur de scroll — ancré à droite pour ne jamais chevaucher le texte aligné à gauche */
.scroll-ind { position: absolute; right: var(--gouttiere); bottom: 2rem; left: auto; transform: none; z-index: var(--z-contenu);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem; color: var(--sur-noir-doux); }
@media (max-width: 860px), (max-height: 720px) { .scroll-ind { display: none; } }
.scroll-ind span { font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; }
.scroll-ind .ligne { width: 1px; height: 46px; background: linear-gradient(var(--or-clair), transparent); position: relative; overflow: hidden; }
.scroll-ind .ligne::after {
  content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--or-clair);
}
@media (prefers-reduced-motion: no-preference) {
  .scroll-ind .ligne::after { animation: descend 2.2s var(--ease-doux) infinite; }
}
@keyframes descend { 0% { top: -50%; } 60%,100% { top: 100%; } }

/* Animation d'entrée du hero (au chargement) */
.hero [data-enter] { opacity: 0; transform: translateY(26px); }
.hero.prete [data-enter] { opacity: 1; transform: none; transition: opacity var(--t-reveal) var(--ease), transform var(--t-reveal) var(--ease); }
.hero.prete [data-enter="1"] { transition-delay: 0.15s; }
.hero.prete [data-enter="2"] { transition-delay: 0.30s; }
.hero.prete [data-enter="3"] { transition-delay: 0.45s; }
.hero.prete [data-enter="4"] { transition-delay: 0.60s; }

/* =========================================================
   SECTIONS GÉNÉRIQUES
   ========================================================= */
.section { padding-block: var(--section-y); }
.section.sur-sombre { background: var(--noir); color: var(--sur-noir); }
.section.beige { background: var(--beige); }

/* Concept */
.concept-grille { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
@media (min-width: 900px) { .concept-grille { grid-template-columns: 1.05fr 0.95fr; } }
.concept-texte p + p { margin-top: 1.25rem; }
.concept-texte .titre-section { margin-top: 1.25rem; margin-bottom: 2.5rem; }
.concept-media { aspect-ratio: 4 / 5; border-radius: var(--rayon-media); overflow: hidden; position: relative; }
.concept-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
/* Étapes numérotées 01/02/03 — réutilisées par « Confier son bien » (accueil) et « L'art du séjour » (biens.html) */
.etapes { display: grid; grid-template-columns: 1fr; gap: 1px; margin-top: 3rem; background: var(--filet-clair); border: 1px solid var(--filet-clair); }
@media (min-width: 800px) { .etapes { grid-template-columns: repeat(3, 1fr); } }
.etape { background: var(--noir); padding: clamp(2rem, 4vw, 3rem); display: flex; flex-direction: column; gap: 1rem; min-height: 300px; }
.etape .num { font-family: var(--font-titre); font-size: 2.4rem; color: var(--cuivre-clair); line-height: 1; }
.etape h3 { font-family: var(--font-titre); font-size: var(--pas-h3); color: var(--sur-noir); }
.etape p { color: var(--sur-noir-doux); font-size: 0.98rem; margin-top: auto; }

/* Nos biens (résidences) */
.biens-grille { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); margin-top: 3.5rem; }
@media (min-width: 640px) { .biens-grille { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .biens-grille { grid-template-columns: repeat(3, 1fr); } }
.bien { display: flex; flex-direction: column; }
.bien-media { aspect-ratio: 4 / 3; border-radius: var(--rayon-media); overflow: hidden; position: relative; }
.bien-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-reveal) var(--ease); }
.bien:hover .bien-media img { transform: scale(1.06); }
.bien-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  background: rgba(46,35,24,0.62); color: var(--or-clair); padding: 0.4rem 0.7rem; border-radius: 999px;
  backdrop-filter: blur(6px);
}
.bien-info { padding-top: 1.25rem; display: flex; flex-direction: column; gap: 0.35rem; }
.bien-info h2, .bien-info h3 { font-family: var(--font-titre); font-size: 1.6rem; font-weight: 500; color: var(--texte-fort); }
.bien-info .meta { font-size: 0.9rem; color: var(--texte-doux); }
.bien-info .lien-souligne { margin-top: 0.5rem; }
.biens-pied { display: flex; justify-content: center; margin-top: 3.5rem; }

/* Offres / formules (propriétaires) */
#offres .entete-section { max-width: 720px; }
.offres-grille { display: grid; grid-template-columns: 1fr; gap: 1.75rem; margin-top: 3.5rem; }
@media (min-width: 940px) { .offres-grille { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; align-items: start; } }
.offre { position: relative; display: flex; flex-direction: column; gap: 1.1rem;
  background: var(--blanc-pur); border: 1px solid var(--filet); border-radius: 14px; padding: 2rem 1.6rem; }
.offre-vedette { border: 2px solid var(--or); box-shadow: var(--ombre-carte); }
@media (min-width: 940px) { .offre-vedette { transform: scale(1.035); z-index: 2; } }
.offre-badge { position: absolute; top: -0.8rem; left: 50%; transform: translateX(-50%); white-space: nowrap;
  background: var(--or); color: var(--noir); font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  padding: 0.4rem 1rem; border-radius: 999px; }
.offre-tete { display: flex; flex-direction: column; gap: 0.55rem; }
.offre-nom { font-family: var(--font-titre); font-size: 1.55rem; color: var(--texte-fort); }
.offre-accroche { font-family: var(--font-titre); font-style: italic; font-size: 1.08rem; color: var(--cuivre); line-height: 1.3; }
.offre-prix { display: flex; align-items: baseline; gap: 0.55rem; flex-wrap: wrap; margin-top: 0.4rem; padding-top: 1rem; border-top: 1px solid var(--filet); }
.prix-num { font-family: var(--font-titre); font-size: 2.6rem; font-weight: 600; color: var(--texte-fort); line-height: 1; }
.prix-unite { font-size: 0.76rem; color: var(--texte-doux); max-width: 15ch; line-height: 1.3; }
.offre-cible { font-size: 0.86rem; color: var(--texte-doux); line-height: 1.5; }
.offre-inclus-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--or-fonce); margin-top: 0.25rem; }
.offre-services { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.offre-services li { position: relative; padding-left: 1.7rem; font-size: 0.87rem; line-height: 1.45; color: var(--texte); }
.offre-services li::before { content: ""; position: absolute; left: 0; top: 0.15em; width: 1.05rem; height: 1.05rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B5834C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") no-repeat center / contain; }
.offre-note { font-family: var(--font-titre); font-style: italic; font-size: 0.95rem; color: var(--cuivre); line-height: 1.4; }
.offre-cta { margin-top: auto; width: 100%; }
.bien-media a { display: block; }

/* =========================================================
   PAGES INTÉRIEURES (collection & fiche bien)
   Pas de hero sombre : la nav doit rester lisible dès le chargement,
   et la première section doit dégager la nav fixe.
   ========================================================= */
body.page-interieure .nav::after { opacity: 1; }
.section-haut { padding-top: clamp(8rem, 6rem + 6vw, 11.5rem); }

.lien-retour {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
  color: var(--or-fonce); transition: color var(--t-court) var(--ease), gap var(--t-court) var(--ease);
}
.lien-retour:hover { color: var(--cuivre); gap: 0.75rem; }

.badge-statut {
  display: inline-flex; align-items: center; width: fit-content;
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  background: var(--sable); color: var(--or-fonce); padding: 0.4rem 0.85rem; border-radius: 999px;
}
.entete-bien { gap: 1rem; }
.entete-bien .btn { margin-top: 0.75rem; align-self: flex-start; }

/* Grille de résidences (page collection) : réutilise .biens-grille existante */

/* Galerie complète d'un bien : généreuse, 2 colonnes, pas de recadrage serré */
.galerie-bien { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 3vw, 3rem); margin-top: 1rem; }
@media (min-width: 760px) { .galerie-bien { grid-template-columns: 1fr 1fr; } }
.galerie-bien img {
  width: 100%; height: auto; display: block; border-radius: var(--rayon-media);
  cursor: zoom-in; transition: opacity var(--t-court) var(--ease);
}
.galerie-bien img:hover { opacity: 0.92; }
.galerie-bien .pleine { grid-column: 1 / -1; }

/* Bandeau CTA de fin de page */
.cta-bande-inner { display: flex; flex-direction: column; align-items: center; gap: 1.75rem; text-align: center; }
.cta-bande .titre-section { max-width: 22ch; }

/* Page À propos — récit éditorial (colonne étroite, confortable à lire) */
.recit { max-width: 980px; }
.recit .lead { margin-top: 1.5rem; }
.recit p { margin-top: 1.25rem; }
.recit-soustitre {
  font-family: var(--font-titre); font-size: var(--pas-h3); font-weight: 500;
  color: var(--texte-fort); margin-top: 3.5rem; margin-bottom: 0.25rem;
}
.recit-liste { list-style: none; padding-left: 0; margin-top: 0.5rem; display: flex; flex-direction: column; gap: 0.35rem; }
.recit-liste li { color: var(--texte); line-height: 1.6; }

/* Fiches fondateurs */
.recit-profil { margin-top: 2rem; }
.recit-profil-nom {
  font-family: var(--font-titre); font-size: 1.4rem; font-weight: 500;
  color: var(--texte-fort); margin-bottom: 0.5rem;
}
.recit-profil-nom span { font-style: italic; font-weight: 400; color: var(--cuivre); }
.recit-profil p { margin-top: 0.75rem; }

/* Visionneuse plein écran */
.lightbox {
  position: fixed; inset: 0; z-index: var(--z-overlay);
  background: rgba(20,16,11,0.98);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--t-moyen) var(--ease);
}
.lightbox.visible { opacity: 1; }
.lightbox[hidden] { display: none; }
.lightbox-img { max-width: 88vw; max-height: 84vh; object-fit: contain; border-radius: var(--rayon-media); box-shadow: var(--ombre-carte); }
.lightbox-fermer, .lightbox-prec, .lightbox-suiv {
  position: absolute; color: var(--sur-noir); background: rgba(255,255,255,0.08);
  border-radius: 999px; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; line-height: 1; transition: background var(--t-court) var(--ease), color var(--t-court) var(--ease);
}
.lightbox-fermer:hover, .lightbox-prec:hover, .lightbox-suiv:hover { background: rgba(255,255,255,0.16); color: var(--or-clair); }
.lightbox-fermer { top: 1.5rem; right: 1.5rem; }
.lightbox-prec { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-suiv { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-compteur {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: var(--sur-noir-doux); font-size: 0.78rem; letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 640px) {
  .lightbox-prec, .lightbox-suiv { width: 40px; height: 40px; font-size: 1.3rem; }
  .lightbox-prec { left: 0.5rem; } .lightbox-suiv { right: 0.5rem; }
  .lightbox-fermer { top: 1rem; right: 1rem; }
}
@media (prefers-reduced-motion: reduce) { .lightbox { transition: none; } }

/* Galerie */
.galerie { display: grid; grid-template-columns: 1fr; gap: clamp(1rem, 2.5vw, 2rem); margin-top: 3.5rem; }
@media (min-width: 760px) { .galerie { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 12rem; } }
.galerie-item { position: relative; overflow: hidden; border-radius: var(--rayon-media); min-height: 14rem; }
.galerie-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-reveal) var(--ease); }
.galerie-item:hover img { transform: scale(1.05); }
.galerie-item::after { content: ""; position: absolute; inset: auto 0 0 0; height: 45%; z-index: 1;
  background: linear-gradient(to top, rgba(46,35,24,0.55), transparent); pointer-events: none; }
.galerie-item .cap { position: absolute; left: 1rem; bottom: 0.9rem; z-index: 2; color: var(--sur-noir);
  font-family: var(--font-titre); font-size: 1.2rem; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
@media (min-width: 760px) {
  .g-a { grid-column: span 4; grid-row: span 2; }
  .g-b { grid-column: span 2; grid-row: span 2; }
  .g-c { grid-column: span 2; grid-row: span 2; }
  .g-d { grid-column: span 4; grid-row: span 2; }
}

/* FAQ */
.faq { max-width: 820px; margin-top: 3rem; }
.faq-groupe {
  font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  color: var(--or-fonce); margin-bottom: 0.5rem;
}
.faq-groupe-proprio { margin-top: 2.75rem; }
.faq-item { border-top: 1px solid var(--filet); }
.faq-item:last-child { border-bottom: 1px solid var(--filet); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.6rem 0; text-align: left; font-family: var(--font-titre); font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--texte-fort);
}
.faq-q .signe { flex: none; width: 26px; height: 26px; position: relative; }
.faq-q .signe::before, .faq-q .signe::after { content: ""; position: absolute; inset: 0; margin: auto; background: var(--or); transition: transform var(--t-court) var(--ease), opacity var(--t-court) var(--ease); }
.faq-q .signe::before { width: 100%; height: 1.5px; }
.faq-q .signe::after { width: 1.5px; height: 100%; }
.faq-item.ouvert .faq-q .signe::after { transform: rotate(90deg); opacity: 0; }
.faq-r { overflow: hidden; height: 0; transition: height var(--t-moyen) var(--ease); }
.faq-r-inner { padding-bottom: 1.6rem; color: var(--texte-doux); max-width: 62ch; }

/* Contact */
.contact-grille { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); margin-top: 3rem; }
@media (min-width: 880px) { .contact-grille { grid-template-columns: 1fr 1fr; } }
.form { display: grid; gap: 1.4rem; }
.champ { display: flex; flex-direction: column; gap: 0.5rem; }
.champ-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
@media (max-width: 480px) { .champ-2 { grid-template-columns: 1fr; } }
.champ label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sur-noir-doux); }
.champ input, .champ textarea {
  background: transparent; border: none; border-bottom: 1px solid var(--filet-clair);
  padding: 0.7rem 0; color: var(--sur-noir); transition: border-color var(--t-court) var(--ease);
}
.champ textarea { resize: vertical; min-height: 120px; }
.champ input::placeholder, .champ textarea::placeholder { color: rgba(169,158,136,0.5); }
.champ input:focus, .champ textarea:focus { outline: none; border-color: var(--or-clair); }
/* Menus déroulants (mêmes codes que les champs, sur fond sombre) */
.champ select {
  background: transparent; border: none; border-bottom: 1px solid var(--filet-clair); border-radius: 0;
  padding: 0.7rem 1.8rem 0.7rem 0; color: var(--sur-noir); cursor: pointer;
  appearance: none; -webkit-appearance: none;
  transition: border-color var(--t-court) var(--ease);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23D8B98A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0 center; background-size: 15px;
}
.champ select:focus { outline: none; border-color: var(--or-clair); }
.champ select option { color: var(--noir); background: var(--blanc); }
.form-estim { max-width: 760px; margin-top: 3rem; }
.form .btn { justify-self: start; margin-top: 0.5rem; }
.form-ok { display: none; align-items: center; gap: 0.7rem; color: var(--or-clair); font-size: 0.95rem; }
.form-ok.visible { display: flex; }
.form-erreur { display: none; align-items: flex-start; gap: 0.7rem; color: #E3A98A; font-size: 0.92rem; line-height: 1.5; }
.form-erreur.visible { display: flex; }
.form-erreur a { text-decoration: underline; color: inherit; }
.form-hint { display: none; align-items: center; gap: 0.6rem; color: #E3A98A; font-size: 0.9rem; }
.form-hint.visible { display: flex; }
.h-captcha { min-height: 78px; }
.champ-piege { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

.contact-aside { display: flex; flex-direction: column; gap: 2rem; }
.contact-bloc h4 { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--or-clair); margin-bottom: 0.5rem; }
.contact-bloc a, .contact-bloc p { font-family: var(--font-titre); font-size: 1.5rem; color: var(--sur-noir); }
.contact-bloc a:hover { color: var(--or-clair); }

/* =========================================================
   PIED DE PAGE
   ========================================================= */
.pied { background: var(--noir); color: var(--sur-noir-doux); padding-block: clamp(3rem, 6vw, 5rem) 2.5rem; border-top: 1px solid var(--filet-clair); }
.pied-haut { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2.5rem; align-items: flex-start; }
.pied .logo { color: var(--or-clair); }
.pied .logo-svg { height: 92px; width: 165px; }
.pied-slogan { font-family: var(--font-titre); font-style: italic; font-size: 1.4rem; color: var(--or-clair); margin-top: 0.85rem; letter-spacing: 0.01em; }
.pied-liens { display: flex; gap: 3rem; flex-wrap: wrap; }
.pied-col h5 { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--or-clair); margin-bottom: 1rem; }
.pied-col a { display: block; font-size: 0.92rem; padding-block: 0.3rem; transition: color var(--t-court) var(--ease); }
.pied-col a:hover { color: var(--or-clair); }
.pied-bas { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--filet-clair); font-size: 0.78rem; letter-spacing: 0.05em; }

/* =========================================================
   RÉVÉLATIONS AU SCROLL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); }
.reveal.vu { opacity: 1; transform: none; transition: opacity var(--t-reveal) var(--ease), transform var(--t-reveal) var(--ease); }
[data-stagger] > * { opacity: 0; transform: translateY(24px); }
[data-stagger].vu > * { opacity: 1; transform: none; transition: opacity var(--t-reveal) var(--ease), transform var(--t-reveal) var(--ease); }
[data-stagger].vu > *:nth-child(1) { transition-delay: 0.05s; }
[data-stagger].vu > *:nth-child(2) { transition-delay: 0.12s; }
[data-stagger].vu > *:nth-child(3) { transition-delay: 0.19s; }
[data-stagger].vu > *:nth-child(4) { transition-delay: 0.26s; }
[data-stagger].vu > *:nth-child(5) { transition-delay: 0.33s; }
[data-stagger].vu > *:nth-child(6) { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, [data-stagger] > *, .hero [data-enter] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* =========================================================
   NAV RESPONSIVE
   ========================================================= */
@media (max-width: 860px) {
  .nav-liens, .nav-droite .lang { display: none; }
  .burger { display: block; }
  .nav-droite { gap: 0.5rem; }
}
