/* ============================================================
   Les Bains d'Hygie — feuille de style principale
   Esthétique : luxe minimaliste (façon Aman). Mobile-first.
   « Le luxe par le silence » : blanc, pierre, charbon, espace.
   ============================================================ */

:root {
	--bone:     #f1ede6; /* fond crème clair, chaud (façon Aman) */
	--cream:    #e7e0d5; /* beige doux */
	--paper:    #faf8f3; /* cartes / surfaces */
	--ink:      #262420; /* charbon chaud (texte) */
	--ink-soft: #544f47; /* texte secondaire */
	--stone:    #8c8276; /* gris pierre (décoratif) */
	--stone-text: #6b6357; /* gris pierre pour le TEXTE (contraste AA sur crème) */
	--line:     #dcd5c9; /* filets discrets */
	--gold:     #b89a6a; /* doré de la marque (fonds, bordures, filets) */
	--gold-deep: #8a6d3b; /* doré pour le TEXTE sur fond clair (contraste AA) */
	--white:    #ffffff;

	--serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--sans:  "Jost", "Helvetica Neue", system-ui, sans-serif;

	--max: 1280px;
	--gut: clamp(20px, 5vw, 64px);  /* marge latérale fluide */
	--section-y: clamp(72px, 10vw, 128px); /* espacement vertical UNIQUE entre sections (rythme régulier, généreux façon Aman) */
	--ease: cubic-bezier(.22, 1, .36, 1);
	--ease-soft: cubic-bezier(.4, 0, .2, 1); /* fondu doux pour ouverture/fermeture */
}

/* --- Base --- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--sans);
	font-weight: 300;
	color: var(--ink);
	background: var(--bone);
	line-height: 1.75;
	font-size: 17px;
	-webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.1; margin: 0 0 .4em; letter-spacing: .005em; text-wrap: balance; }
p { margin: 0 0 1.1em; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease), opacity .3s var(--ease); }
img { max-width: 100%; height: auto; display: block; }

/* Sélection de texte aux couleurs de la marque */
::selection { background: rgba(184, 154, 106, .26); color: var(--ink); }

/* Focus clavier accessible et discret (doré) */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 1px; }
:focus:not(:focus-visible) { outline: none; }

/* Lien d'évitement (accessibilité clavier) : masqué sauf au focus. */
.skip-link {
	position: absolute; left: 12px; top: -64px; z-index: 200;
	background: var(--ink); color: var(--bone);
	padding: 12px 20px; font-family: var(--sans); font-size: 13px; letter-spacing: .1em;
	transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; outline: 2px solid var(--gold); outline-offset: 2px; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding-left: var(--gut); padding-right: var(--gut); }
.container--narrow { max-width: 760px; }

/* Petits intitulés en capitales très espacées (signature luxe) */
.section__eyebrow {
	font-family: var(--sans);
	text-transform: uppercase;
	letter-spacing: .35em;
	font-size: 12px;
	font-weight: 400;
	color: var(--gold-deep);
	margin: 0 0 18px;
}
/* Filet doré "signature" sous les intitulés centrés (têtes de section + bannière) */
.section__head .section__eyebrow::after {
	content: ""; display: block;
	width: 38px; height: 1px; margin: 14px auto 0;
	background: currentColor; opacity: .55;
}

/* --- Boutons --- */
.bdh-btn {
	display: inline-flex; align-items: center; justify-content: center;
	font-family: var(--sans);
	font-weight: 400;
	font-size: 12.5px;
	letter-spacing: .22em;
	text-transform: uppercase;
	padding: 17px 36px;
	border: 1px solid var(--ink);
	transition: all .35s var(--ease);
	cursor: pointer;
	white-space: nowrap;
}
/* Principal = OFFRIR (vente n°1) : plein, charbon */
.bdh-btn--cadeau { background: var(--gold); color: var(--white); border-color: var(--gold-deep); }
.bdh-btn--cadeau:hover, .bdh-btn--cadeau:focus, .bdh-btn--cadeau:active { background: transparent; color: var(--gold-deep); border-color: var(--gold-deep); }
/* Secondaire = RÉSERVER : contour */
.bdh-btn--reservation { background: transparent; color: var(--ink); }
.bdh-btn--reservation:hover, .bdh-btn--reservation:focus, .bdh-btn--reservation:active { background: var(--ink); color: var(--bone); }

/* ============================================================
   EN-TÊTE
   ============================================================ */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: var(--bone);
	border-bottom: 1px solid var(--line);
	transition: background .4s var(--ease), border-color .4s var(--ease), color .4s var(--ease);
}
.site-header__inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: 24px; min-height: 88px; position: relative;
}

/* Logo centré (façon Aman / Verchant) */
.site-header__brand { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.brand { display: inline-flex; }
.brand__logo { height: 38px; width: auto; display: block; }
.brand__logo--light { display: none; } /* version blanche : uniquement par-dessus la vidéo */

.site-header__actions { display: flex; justify-content: flex-end; gap: 26px; }

/* Lien "Offrir" en texte discret (façon Aman), pas un bouton plein */
.header-link {
	font-family: var(--sans); font-size: 12.5px; font-weight: 400;
	letter-spacing: .18em; text-transform: uppercase;
	color: var(--ink); padding-bottom: 3px; position: relative; white-space: nowrap;
}
.header-link::after {
	content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
	background: currentColor; transform: scaleX(0); transform-origin: left;
	transition: transform .35s var(--ease);
}
.header-link:hover::after { transform: scaleX(1); }
.site-header--overlay .header-link { color: var(--white); }
/* « Offrir » = produit n°1, mis en avant à la façon Aman : simple lien texte,
   distingué par un FIN SOULIGNEMENT DORÉ PERMANENT (pas de pastille ni bouton). */
.header-link--offrir { color: var(--gold-deep) !important; }
.header-link--offrir::after { background: var(--gold) !important; transform: scaleX(1); }
/* Sur la vidéo : texte blanc (max de contraste) + soulignement doré qui reste l'accent. */
.site-header--overlay .header-link--offrir { color: var(--white) !important; }
.site-header--overlay .header-link--offrir::after { background: var(--gold) !important; }

/* ============================================================
   MENU — panneau latéral (drawer), sortie facile, orienté action
   ============================================================ */
.site-nav {
	position: fixed; inset: 0; z-index: 105;
	visibility: hidden; transition: visibility .45s;
}
.site-nav.is-open { visibility: visible; }

/* Voile léger : la page reste NETTE et bien visible à côté (pas de flou), on tape pour fermer */
.site-nav__backdrop {
	position: absolute; inset: 0;
	background: rgba(38, 36, 32, .18);
	opacity: 0; transition: opacity .55s var(--ease);
}
.site-nav.is-open .site-nav__backdrop { opacity: 1; }

/* Panneau translucide (verre dépoli), clair & aéré — esprit Aman, depuis la GAUCHE */
.site-nav__panel {
	position: absolute; top: 0; left: 0; bottom: 0;
	width: min(440px, 88vw);
	background: rgba(244, 241, 235, .70);
	-webkit-backdrop-filter: blur(26px) saturate(115%);
	backdrop-filter: blur(26px) saturate(115%);
	color: var(--ink);
	border-right: 1px solid rgba(255, 255, 255, .55);
	box-shadow: 40px 0 90px rgba(38, 36, 32, .12);
	transform: translateX(-100%); transition: transform .55s var(--ease);
	display: flex; flex-direction: column;
	overflow-y: auto; overscroll-behavior: contain;
}
.site-nav.is-open .site-nav__panel { transform: none; }
/* Filet doré ténu sur le bord intérieur (détail luxe discret) */
.site-nav__panel::after {
	content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 1px; pointer-events: none;
	background: linear-gradient(to bottom, transparent, rgba(184, 154, 106, .35), transparent);
}

/* Bouton FERMER — en haut à droite du panneau */
.site-nav__close {
	position: absolute; top: 20px; right: 20px; z-index: 2;
	width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%;
	background: rgba(255, 255, 255, .4); cursor: pointer;
	transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-nav__close span {
	position: absolute; top: 50%; left: 50%; width: 15px; height: 1px; background: var(--ink);
	transition: background .3s var(--ease);
}
.site-nav__close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.site-nav__close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }
.site-nav__close:hover { border-color: var(--gold-deep); background: rgba(255, 255, 255, .7); }
.site-nav__close:hover span { background: var(--gold); }

.site-nav__inner {
	position: relative; z-index: 1;
	display: flex; flex-direction: column; align-items: center; text-align: center;
	padding: clamp(72px, 11vh, 100px) clamp(34px, 7vw, 52px) 40px; min-height: 100%;
}

/* Emblème en haut du panneau (touche luxe discrète) */
.site-nav__emblem { width: 40px; height: auto; margin: 0 0 30px; opacity: .9; }

.site-nav__eyebrow {
	font-family: var(--sans); font-size: 10.5px; font-weight: 400;
	letter-spacing: .36em; text-transform: uppercase;
	color: var(--gold-deep); margin: 0 0 22px;
}

/* Liens de navigation — aérés, fins, centrés, façon Aman */
.site-nav__list {
	list-style: none; margin: 0 0 32px; padding: 0 0 28px; width: 100%;
	border-bottom: 1px solid var(--line);
	display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.site-nav__list a {
	display: inline-block;
	font-family: var(--serif); font-weight: 400; line-height: 1.15;
	font-size: clamp(26px, 3.4vw, 31px); color: var(--ink); padding: 8px 0;
	transition: color .3s var(--ease), letter-spacing .3s var(--ease);
}
.site-nav__list a:hover, .site-nav__list a:focus-visible { color: var(--gold-deep); letter-spacing: .015em; outline: none; }
.site-nav__list .current-menu-item > a { color: var(--gold-deep); }

/* Sous-titre de section dans le menu (ex. « Nos soins ») */
.site-nav__eyebrow--sub { margin: 2px 0 14px; }

/* Catégories de soins — liste compacte sous la navigation principale */
.site-nav__sublist {
	list-style: none; margin: 0 0 30px; padding: 0 0 28px; width: 100%;
	border-bottom: 1px solid var(--line);
	display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.site-nav__sublist a {
	display: inline-block;
	font-family: var(--sans); font-weight: 300; font-size: 15px; letter-spacing: .02em;
	color: var(--ink-soft); padding: 5px 0;
	transition: color .25s var(--ease);
}
.site-nav__sublist a:hover, .site-nav__sublist a:focus-visible { color: var(--gold-deep); outline: none; }

/* « Nos prestations » : chaque catégorie (titre serif, lien vers la page de
   catégorie) puis ses pages « en savoir plus » (/soin/…) listées dessous. */
.site-nav__presta {
	margin: 0 0 30px; padding: 0 0 22px; width: 100%;
	border-bottom: 1px solid var(--line);
	display: flex; flex-direction: column; align-items: center; gap: 22px;
}
.site-nav__group { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 7px; }
.site-nav__cat {
	display: inline-flex; align-items: baseline; gap: 9px; flex-wrap: wrap; justify-content: center;
	font-family: var(--serif); font-weight: 400; line-height: 1.15;
	font-size: clamp(20px, 2.6vw, 24px); color: var(--ink); padding: 2px 0;
	transition: color .3s var(--ease), letter-spacing .3s var(--ease);
}
.site-nav__cat:hover, .site-nav__cat:focus-visible { color: var(--gold-deep); outline: none; }
.site-nav__soon {
	font-family: var(--sans); font-size: 9px; font-weight: 400; letter-spacing: .22em;
	text-transform: uppercase; color: var(--gold-deep);
	border: 1px solid var(--line); padding: 2px 6px; transform: translateY(-2px);
}
.site-nav__pages {
	list-style: none; margin: 0; padding: 0; width: 100%;
	display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.site-nav__pages a {
	display: inline-block;
	font-family: var(--sans); font-weight: 300; font-size: 14px; letter-spacing: .02em;
	color: var(--ink-soft); padding: 4px 0;
	transition: color .25s var(--ease);
}
.site-nav__pages a:hover, .site-nav__pages a:focus-visible { color: var(--gold-deep); outline: none; }

/* Actions clés : Réserver (plein charbon, sobre) + Offrir (contour fin) */
.site-nav__actions { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.site-nav__actions a.bdh-btn { width: 100%; text-align: center; }
.site-nav__actions a.bdh-btn--primary {
	background: var(--ink); color: var(--bone); border-color: var(--ink);
}
.site-nav__actions a.bdh-btn--primary:hover,
.site-nav__actions a.bdh-btn--primary:focus-visible {
	background: var(--gold); color: var(--ink); border-color: var(--gold-deep);
}
.site-nav__actions a.bdh-btn--ghost {
	background: transparent; color: var(--ink); border-color: rgba(38, 36, 32, .28);
}
.site-nav__actions a.bdh-btn--ghost:hover,
.site-nav__actions a.bdh-btn--ghost:focus-visible {
	background: var(--ink); color: var(--bone); border-color: var(--ink);
}

/* Réassurance + coordonnées, poussées en bas du panneau */
.site-nav__contact { margin-top: auto; padding-top: 30px; width: 100%; font-family: var(--sans); color: var(--ink-soft); }
.site-nav__trust {
	display: flex; align-items: center; justify-content: center; gap: 8px; margin: 0 0 20px;
	font-size: 12.5px; letter-spacing: .02em;
}
.site-nav__trust .star { color: var(--gold-deep); }
.site-nav__trust strong { color: var(--ink); font-weight: 600; }
.site-nav__phone { font-family: var(--serif); font-size: 23px; color: var(--ink); transition: color .3s var(--ease); }
.site-nav__phone:hover { color: var(--gold-deep); }
.site-nav__hours, .site-nav__place { font-size: 12.5px; letter-spacing: .02em; margin: 5px 0 0; }
.site-nav__social { margin: 16px 0 0; display: flex; justify-content: center; gap: 20px; }
.site-nav__social a {
	font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
	color: var(--stone-text); transition: color .3s var(--ease);
}
.site-nav__social a:hover { color: var(--gold-deep); }
.site-nav__contact-btn { display: inline-block; margin-top: 22px; }

/* Menu ouvert : on masque burger + loupe pour éviter tout doublon avec la croix */
.is-nav-open .site-header__left { opacity: 0; visibility: hidden; pointer-events: none; }

@media (prefers-reduced-motion: reduce) {
	.site-nav__backdrop, .site-nav__panel { transition: opacity .01s, transform .01s; }
}

/* En-tête : bandeau dégradé sombre & transparent (façon Aman / Verchant) */
.site-header--overlay {
	position: fixed; left: 0; right: 0;
	background: transparent; border-color: transparent;
}
.site-header--overlay::before {
	content: ""; position: absolute; left: 0; right: 0; top: 0; height: 120px;
	background: linear-gradient(to bottom, rgba(12,14,16,.55), rgba(12,14,16,0));
	pointer-events: none; z-index: 0;
	transition: background .4s var(--ease);
}
.site-header--overlay.is-scrolled::before {
	background: linear-gradient(to bottom, rgba(12,14,16,.55), rgba(12,14,16,0));
}
/* Le contenu (logo, menu, bouton) passe au-dessus du dégradé */
.site-header--overlay .site-header__inner { position: relative; z-index: 1; }
/* Logo TOUJOURS blanc sur ce bandeau */
.site-header--overlay .brand__logo--dark { display: none; }
.site-header--overlay .brand__logo--light { display: block; filter: drop-shadow(0 1px 6px rgba(0,0,0,.4)); }
.site-header--overlay .nav-toggle span { background: var(--white); box-shadow: 0 1px 4px rgba(0,0,0,.3); }
.site-header--overlay .header-link { text-shadow: 0 1px 9px rgba(0,0,0,.6); }
.site-header--overlay .bdh-btn--cadeau {
	background: var(--gold); color: var(--white); border-color: var(--gold-deep);
}
.site-header--overlay .bdh-btn--cadeau:hover, .site-header--overlay .bdh-btn--cadeau:focus, .site-header--overlay .bdh-btn--cadeau:active { background: transparent; color: var(--white); border-color: var(--white); }

/* Bouton menu (toujours visible, façon Aman) */
.nav-toggle { display: flex; flex-direction: column; gap: 6px; background: none; border: 0; cursor: pointer; padding: 6px; z-index: 110; }
.nav-toggle span { width: 26px; height: 1.5px; background: var(--ink); transition: .35s var(--ease); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
/* Menu ouvert : la croix redevient sombre (fond clair) même sur la vidéo */
.site-header--overlay .nav-toggle.is-open span { background: var(--ink); }

/* Groupe de boutons à gauche (menu + recherche) */
.site-header__left { display: flex; align-items: center; gap: 6px; }

/* Bouton loupe (façon Aman : discret, à côté du menu) */
.search-toggle {
	display: flex; align-items: center; justify-content: center;
	background: none; border: 0; cursor: pointer; padding: 6px;
	color: var(--ink); transition: color .3s var(--ease), opacity .3s var(--ease);
	z-index: 110;
}
.search-toggle:hover { color: var(--gold-deep); }
.site-header--overlay .search-toggle { color: var(--white); filter: drop-shadow(0 1px 4px rgba(0,0,0,.3)); }

/* ============================================================
   RECHERCHE INSTANTANÉE (plein écran, façon menu)
   ============================================================ */
.site-search {
	position: fixed; inset: 0; z-index: 106;
	/* Voile translucide façon verre dépoli : on devine la page derrière. */
	background: rgba(241, 237, 230, .72);
	-webkit-backdrop-filter: blur(16px) saturate(120%);
	backdrop-filter: blur(16px) saturate(120%);
	color: var(--ink);
	display: flex; align-items: flex-start; justify-content: center;
	padding-top: clamp(92px, 15vh, 170px);
	opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s;
}
.site-search.is-open { opacity: 1; visibility: visible; }
.site-search__inner { width: 100%; max-width: 560px; }

.site-search__form {
	display: flex; align-items: center; gap: 10px;
	border-bottom: 1px solid rgba(38, 36, 32, .45); padding-bottom: 10px;
}
.site-search__icon { color: var(--gold-deep); flex: 0 0 auto; width: 18px; height: 18px; }
.site-search__input {
	flex: 1 1 auto; min-width: 0;
	font-family: var(--serif); font-size: clamp(19px, 3vw, 26px); font-weight: 400;
	color: var(--ink); background: none; border: 0; padding: 2px 0;
}
.site-search__input::placeholder { color: var(--stone-text); opacity: .75; }
.site-search__input:focus { outline: none; }
/* Masque la croix native du champ "search" (on a notre propre bouton de fermeture) */
.site-search__input::-webkit-search-cancel-button { -webkit-appearance: none; appearance: none; }
.site-search__close {
	flex: 0 0 auto; background: none; border: 0; cursor: pointer;
	font-size: 28px; line-height: 1; color: var(--ink-soft);
	transition: color .3s var(--ease);
}
.site-search__close:hover { color: var(--ink); }

.site-search__empty { margin: 22px 2px 0; color: var(--ink-soft); font-style: italic; font-family: var(--serif); font-size: 17px; }

.site-search__results {
	list-style: none; margin: 10px 0 0; padding: 0;
	max-height: 58vh; overflow-y: auto;
}
.site-search__item a {
	display: flex; align-items: baseline; flex-wrap: wrap; gap: 2px 12px;
	padding: 11px 2px; border-bottom: 1px solid rgba(220, 213, 201, .7);
	transition: padding-left .25s var(--ease);
}
.site-search__item a:hover { padding-left: 10px; }
.site-search__name { font-family: var(--serif); font-size: 17px; color: var(--ink); }
.site-search__item a:hover .site-search__name { color: var(--gold-deep); }
.site-search__cat {
	font-family: var(--sans); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
	color: var(--stone-text);
}
.site-search__meta { margin-left: auto; font-family: var(--sans); font-size: 13px; color: var(--ink-soft); white-space: nowrap; }

/* ============================================================
   BANNIÈRE VIDÉO PLEIN ÉCRAN
   ============================================================ */
.hero {
	position: relative;
	height: 100svh; min-height: 600px;
	display: flex; align-items: center; justify-content: center;
	text-align: center; color: var(--white);
	overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
/* Vidéo hero : invisible au départ, elle apparaît EN FONDU par-dessus le poster quand elle joue. */
.hero__video { opacity: 0; transition: opacity 1.1s var(--ease); }
.hero__video.is-playing { opacity: 1; }
.hero__video, .hero__poster {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	background-size: cover; background-position: center;
}
.hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(rgba(20,18,15,.30), rgba(20,18,15,.45));
}
.hero__content {
	position: relative; z-index: 2;
	padding: 0 var(--gut); max-width: 900px;
}
.hero__wordmark-wrap { margin: 0 0 24px; }
/* Wordmark en VRAI texte (net à toute taille/écran Retina, et meilleur SEO). */
.hero__wordmark-text {
	display: inline-block;
	font-family: var(--serif);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: #fff;
	font-size: clamp(34px, 7vw, 74px);
	line-height: 1.05;
	text-shadow: 0 2px 26px rgba(0, 0, 0, .35);
}
/* Logo de marque (image) dans le hero — taille plafonnée pour rester NET (source 679px de large). */
.hero__wordmark-img {
	display: block;
	width: clamp(300px, 82vw, 600px);
	height: auto;
	margin: 0 auto;
	filter: drop-shadow(0 2px 22px rgba(0, 0, 0, .35));
}
.hero__subtitle {
	font-family: var(--serif); font-style: italic;
	font-size: clamp(20px, 3vw, 30px); color: rgba(255,255,255,.92);
	margin-bottom: 40px; letter-spacing: .02em;
}
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero .bdh-btn--cadeau { background: var(--gold); color: var(--white); border-color: var(--gold-deep); }
.hero .bdh-btn--cadeau:hover, .hero .bdh-btn--cadeau:focus, .hero .bdh-btn--cadeau:active { background: transparent; color: var(--white); border-color: var(--white); }
.hero .bdh-btn--reservation { color: var(--white); border-color: rgba(255,255,255,.7); }
.hero .bdh-btn--reservation:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.hero__scroll {
	position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
	z-index: 2; width: 1px; height: 56px; overflow: hidden;
}
.hero__scroll span {
	display: block; width: 1px; height: 100%;
	background: rgba(255,255,255,.6);
	animation: heroScroll 2.4s var(--ease) infinite;
}
@keyframes heroScroll {
	0% { transform: translateY(-100%); } 60%,100% { transform: translateY(100%); }
}

/* ============================================================
   SECTIONS "FEATURE" (image pleine hauteur + texte) — façon Aman
   ============================================================ */
.feature {
	display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
	background: var(--bone);
	padding-block: var(--section-y) 0; /* marge haut seule -> écart uniforme entre sections */
}
.feature--reverse .feature__media { order: 2; }
.feature__media {
	min-height: clamp(380px, 40vw, 520px);
	background-size: cover; background-position: center;
}
.feature__text {
	display: flex; flex-direction: column; justify-content: center;
	padding: clamp(24px, 4vw, 52px) clamp(28px, 6vw, 96px);
}
.feature__title { font-size: clamp(32px, 4.5vw, 56px); margin-bottom: .35em; }
.feature__lead { color: var(--ink-soft); font-size: 18px; max-width: 46ch; }
.feature__actions { margin-top: 28px; }
.feature--gift { background: var(--bone); } /* fond unifié (Aman) : plus de bande beige */
/* Points de réassurance (bons cadeaux) */
.feature__points { list-style: none; margin: 22px 0 4px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.feature__points li { position: relative; padding-left: 26px; color: var(--ink-soft); font-size: 16.5px; }
.feature__points li::before { content: "—"; position: absolute; left: 0; color: var(--gold-deep); }

/* ============================================================
   BANDEAU DE CONFIANCE (preuve sociale)
   ============================================================ */
.trust { background: var(--bone); padding: var(--section-y) 0 0; } /* marge basse retirée : espace égal au-dessus (vidéo) et en dessous (photo) */
.trust__inner { display: flex; align-items: center; justify-content: center; text-align: center; }
.trust__text {
	margin: 0;
	font-family: var(--sans);
	text-transform: uppercase;
	letter-spacing: .26em;
	font-size: 11.5px; font-weight: 400; line-height: 1.9;
	color: var(--stone-text);
}
.trust__text strong { color: var(--gold-deep); font-weight: 500; }
.trust__dot { margin: 0 .85em; color: var(--line); }
@media (max-width: 760px) {
	.trust { padding-top: clamp(40px, 9vw, 60px); }
	.trust__text { letter-spacing: .1em; font-size: 10.5px; line-height: 1.7; }
	.trust__dot { margin: 0 .55em; }
	.trust__loc { display: none; } /* mobile : on garde « 4,9/5 · plus de 1 200 avis Google » (compact) */
}

/* ============================================================
   SECTIONS classiques
   ============================================================ */
.section { padding: var(--section-y) 0 0; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto clamp(40px, 6vw, 72px); }
.section__title { font-size: clamp(32px, 5vw, 56px); }
.carte__hint { color: var(--ink-soft); font-size: 16.5px; margin: 16px auto 0; max-width: 560px; line-height: 1.6; }

/* ============================================================
   PRESTATIONS — carrousel horizontal (façon Aman)
   ============================================================ */
.presta { padding: var(--section-y) 0 0; background: var(--bone); overflow: hidden; } /* marge haut seule -> écart uniforme entre sections */
/* Ancre des boutons de la vidéo : on descend un peu (desktop) pour révéler les
   prix « dès X € » sous les vignettes, tout en gardant « Nos prestations » visible.
   Sur mobile le titre est déjà proche de l'en-tête : pas de décalage. */
#prestations { scroll-margin-top: -44px; }
@media (max-width: 760px) { #prestations { scroll-margin-top: 0; } }
.presta__head {
	display: flex; align-items: flex-end; justify-content: space-between;
	gap: 24px; margin-bottom: clamp(34px, 5vw, 56px);
}
.presta__head .section__eyebrow { margin-bottom: 12px; }
.presta__nav { display: flex; gap: 12px; }
.presta__arrow {
	width: 50px; height: 50px; border: 1px solid var(--line); background: transparent;
	color: var(--ink); font-size: 18px; cursor: pointer; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	transition: all .3s var(--ease);
}
.presta__arrow:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.presta__arrow:disabled { opacity: .3; cursor: default; }
.presta__arrow:disabled:hover { background: transparent; color: var(--ink); border-color: var(--line); }

.presta__track {
	display: flex; gap: clamp(16px, 1.8vw, 26px);
	overflow-x: auto; scroll-snap-type: x mandatory;
	padding: 16px var(--gut); scroll-padding-left: var(--gut);
	-webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.presta__track::-webkit-scrollbar { display: none; }
/* Souris (desktop) : on peut attraper-glisser la bande comme un scroll. */
@media (hover: hover) and (pointer: fine) {
	.presta__track { cursor: grab; }
}
/* Pendant le glissé : curseur « main fermée », on coupe l'aimant (sinon ça saccade)
   et la sélection de texte/images. */
.presta__track.is-grabbing { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.presta__track.is-grabbing a { pointer-events: none; }
.presta__card {
	flex: 0 0 auto; width: clamp(250px, 30vw, 360px); scroll-snap-align: start;
	text-decoration: none; color: inherit; display: block; position: relative;
	transition: opacity .55s var(--ease), transform .55s var(--ease);
}
/* Au survol : la vignette avance et grossit légèrement (les autres restent
   pleinement lisibles — priorité à la comparaison d'un coup d'œil).
   Réservé aux appareils avec souris (pas d'effet collant au toucher sur mobile). */
@media (hover: hover) and (pointer: fine) {
	.presta__card:hover { transform: scale(1.05); z-index: 2; }
}
.presta__media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; box-shadow: 0 14px 30px -22px rgba(38, 36, 32, .55); transition: box-shadow .5s var(--ease); }
.presta__card:hover .presta__media { box-shadow: 0 22px 44px -22px rgba(38, 36, 32, .6); }
.presta__img {
	width: 100%; height: 100%; background-size: cover; background-position: center;
	transition: transform .7s var(--ease);
}
.presta__card:hover .presta__img { transform: scale(1.05); }
/* Incitation "Réserver" qui apparaît au survol */
.presta__title {
	font-family: var(--serif); font-weight: 400; font-size: 25px;
	margin: 20px 0 0; text-align: center; color: var(--ink);
	transition: color .3s var(--ease);
}
.presta__card:hover .presta__title { color: var(--gold-deep); }
.presta__subtitle {
	margin: 10px 0 0;
	font-family: var(--serif); font-style: italic; font-size: clamp(17px, 2vw, 21px);
	color: var(--ink-soft);
}
.presta__soontag { display: inline-block; font-family: var(--sans); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--stone-text); border: 1px solid var(--line); padding: 3px 9px; margin-left: 6px; vertical-align: middle; }

/* --- Vignette chèque cadeau (montant libre) — épuré, façon Aman --- */
.feature__actions--gift { display: flex; flex-wrap: wrap; gap: 16px; }

/* Carte ivoire à filet fin, sans ombre portée (à l'inverse des cartes photo) */
.presta__media--cheque,
.presta__card--cheque:hover .presta__media--cheque { box-shadow: none; }
.presta__media--cheque {
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	text-align: center; padding: clamp(24px, 3vw, 42px);
	background: var(--paper); border: 1px solid var(--line);
}
.cheque__eyebrow {
	font-family: var(--sans); font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
	color: var(--gold-deep); margin: 0;
}
.cheque__amount {
	display: inline-flex; align-items: baseline; justify-content: center; gap: 6px;
	margin: 24px 0 2px; padding: 0 8px 8px; border-bottom: 1px solid var(--line);
	transition: border-color .3s var(--ease);
	max-width: 100%;
}
.cheque__amount:focus-within { border-color: var(--gold-deep); }
.cheque__input {
	width: 4.2ch; max-width: 100%; min-width: 1.5ch; background: transparent; border: 0; outline: none;
	font-family: var(--serif); font-weight: 400; font-size: clamp(52px, 7vw, 72px); line-height: 1;
	color: var(--ink); text-align: center;
}
.cheque__input::-webkit-outer-spin-button, .cheque__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.cheque__input { -moz-appearance: textfield; }
.cheque__eur { font-family: var(--serif); font-size: clamp(28px, 4vw, 38px); color: var(--stone-text); }
/* Montants suggérés : texte sobre souligné, pas de pastilles */
.cheque__chips { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px 20px; margin: 22px 0 30px; }
.cheque__chip {
	font-family: var(--sans); font-size: clamp(16px, 1.7vw, 19px); letter-spacing: .08em; cursor: pointer;
	color: var(--stone-text); background: transparent; border: 0; padding: 4px 2px;
	border-bottom: 1px solid transparent;
	transition: color .3s var(--ease), border-color .3s var(--ease);
}
.cheque__chip:hover { color: var(--ink); }
.cheque__chip.is-on { color: var(--ink); border-bottom-color: var(--gold-deep); }
/* « Offrir » : lien souligné fin, pas de bouton plein */
.cheque__offrir {
	font-family: var(--sans); font-size: 11.5px; letter-spacing: .24em; text-transform: uppercase;
	cursor: pointer; text-decoration: none; color: var(--ink);
	border-bottom: 1px solid var(--ink); padding-bottom: 6px;
	transition: color .3s var(--ease), border-color .3s var(--ease);
}
.cheque__offrir:hover, .cheque__offrir:focus { color: var(--gold-deep); border-bottom-color: var(--gold-deep); }

/* ============================================================
   CARTE DES SOINS & TARIFS — accordéon
   ============================================================ */
.carte { padding: var(--section-y) 0 0; background: var(--bone); } /* marge haut seule */
.carte__list { max-width: 860px; margin: 0 auto; border-top: 1px solid var(--line); }
.carte__cat {
	border-bottom: 1px solid var(--line); scroll-margin-top: 80px;
	transition: opacity .85s var(--ease-soft), transform .85s var(--ease-soft), filter .85s var(--ease-soft), background-color .85s var(--ease-soft);
	transform-origin: center;
}
/* Effet de profondeur : la catégorie ouverte reste au premier plan, les autres reculent */
.carte__cat.is-open { position: relative; z-index: 1; background: rgba(28, 24, 18, .055); }
.carte__list:has(.carte__cat.is-open) .carte__cat:not(.is-open) {
	opacity: .4; transform: scale(.965); filter: blur(.4px);
}
.carte__list:has(.carte__cat.is-open) .carte__cat:not(.is-open):hover {
	opacity: 1; transform: none; filter: none;
}
.carte__head {
	width: 100%; background: none; border: 0; cursor: pointer;
	display: flex; align-items: center; justify-content: space-between; gap: 20px;
	padding: 26px 4px; text-align: left; color: var(--ink);
}
.carte__cat-title { font-family: var(--serif); font-size: clamp(22px, 3vw, 30px); display: flex; align-items: center; gap: 14px; }
.carte__soon { font-family: var(--sans); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--stone-text); border: 1px solid var(--line); padding: 4px 10px; }
.carte__plus { position: relative; width: 16px; height: 16px; flex: 0 0 auto; }
.carte__plus::before, .carte__plus::after { content: ""; position: absolute; background: var(--ink); transition: transform .35s var(--ease); }
.carte__plus::before { left: 0; top: 50%; width: 100%; height: 1.5px; transform: translateY(-50%); }
.carte__plus::after { top: 0; left: 50%; height: 100%; width: 1.5px; transform: translateX(-50%); }
.carte__cat.is-open .carte__plus::after { transform: translateX(-50%) scaleY(0); }
/* Déroulé fluide (technique grille moderne, compatible accordéons imbriqués) */
.carte__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .85s var(--ease-soft); }
.carte__cat.is-open > .carte__panel { grid-template-rows: 1fr; }
/* Fermeture instantanée (anti-saut) : on coupe les transitions le temps d'un repli */
.carte__cat.bdh-noanim, .carte__cat.bdh-noanim .carte__panel, .carte__cat.bdh-noanim .carte__panel-inner { transition: none !important; }
/* Padding horizontal toujours (sans gêner le repli) ; vertical seulement à l'ouverture */
.carte__panel-inner { overflow: hidden; padding: 0 4px; opacity: 0; transition: opacity .75s var(--ease-soft) .1s; }
.carte__cat.is-open > .carte__panel > .carte__panel-inner { padding: 2px 4px 34px; opacity: 1; }
.carte__desc { color: var(--ink-soft); font-family: var(--serif); font-style: italic; font-size: clamp(17px, 2.2vw, 20px); margin: 0 0 18px; max-width: 60ch; }

/* Soins : description + Solo/Duo visibles directement (1 clic = réservation) */
.carte__soins { border-top: 1px solid var(--line); }
.soin-card { display: flex; align-items: center; gap: 16px 32px; flex-wrap: wrap; padding: 22px 2px; border-bottom: 1px solid var(--line); }
.soin-card:last-child { border-bottom: 0; }
.soin-card__info { flex: 1 1 320px; }
.soin-card__nom { font-family: var(--serif); font-weight: 400; font-size: 21px; margin: 0 0 6px; color: var(--ink); }
.soin-card__duree { font-family: var(--sans); color: var(--stone-text); font-size: 13px; letter-spacing: .04em; }
.soin-card__origine { font-family: var(--serif); font-style: italic; color: var(--gold-deep); font-size: 15px; line-height: 1.5; margin: 0 0 9px; max-width: 56ch; }
.soin-card__desc { color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; margin: 0; max-width: 62ch; }
.soin-card__note { color: var(--gold-deep); font-size: 13px; margin: 7px 0 0; }
/* Lien visible vers la page détaillée (SEO) — remplace l'ancien petit "i" */
.soin-card__detail {
	display: inline-block; margin-top: 10px;
	font-family: var(--sans); font-size: 13px; letter-spacing: .06em; text-transform: uppercase;
	color: var(--gold-deep); border-bottom: 1px solid currentColor; padding-bottom: 2px;
	transition: opacity .25s var(--ease);
}
.soin-card__detail:hover { opacity: .7; }
.soin-card__book { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; flex: 0 0 auto; text-align: right; }
.soin-card__soon { color: var(--gold-deep); font-size: 13px; font-style: italic; white-space: nowrap; }
.soin__btn {
	font-family: var(--sans); font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
	color: var(--ink); border: 1px solid var(--ink); padding: 16px 26px; white-space: nowrap;
	transition: all .3s var(--ease);
}
.soin__btn:hover { background: var(--ink); color: var(--bone); }
.soin__btn--duo { background: var(--ink); color: var(--bone); }
.soin__btn--duo:hover { background: transparent; color: var(--ink); }
/* Survol de Solo ou Offrir → le bouton Duo perd son fond foncé (seul le survolé ressort). */
.soin-card__btns:has(.soin__btn:not(.soin__btn--duo):hover) .soin__btn--duo,
.soin-page__cta:has(.soin__btn:not(.soin__btn--duo):hover) .soin__btn--duo { background: transparent; color: var(--ink); }
/* Survol de Duo : Duo s'éclaircit, Solo se fonce, Offrir passe au doré. */
.soin-card__btns:has(.soin__btn--duo:hover) .soin__btn:not(.soin__btn--duo):not(.soin__btn--offrir),
.soin-page__cta:has(.soin__btn--duo:hover) .soin__btn:not(.soin__btn--duo):not(.soin__btn--offrir) { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.soin-card__btns:has(.soin__btn--duo:hover) .soin__btn--offrir,
.soin-page__cta:has(.soin__btn--duo:hover) .soin__btn--offrir { background: var(--gold); color: var(--white); border-color: var(--gold); }
/* "Offrir" : accent doré (l'action cadeau, disponible sur chaque prestation) */
.soin__btn--offrir { color: var(--gold-deep); border-color: var(--gold-deep); }
.soin__btn--offrir:hover { background: var(--gold); color: var(--white); }

/* Réactivité au CLIC / APPUI (mobile : pas de survol) — mêmes effets qu'au survol,
   pour que le bouton foncé "Réserver pour 2 personnes" change aussi quand on le touche. */
.soin__btn:focus, .soin__btn:active { background: var(--ink); color: var(--bone); }
.soin__btn--duo:focus, .soin__btn--duo:active { background: transparent; color: var(--ink); }
.soin__btn--offrir:focus, .soin__btn--offrir:active { background: var(--gold); color: var(--white); }

/* Boutons de réservation de la prestation (Solo / Duo / Offrir) */
.soin-card__btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---- Sélecteur "Massage sur mesure" (durée + solo/duo + prix vivant) ---- */
.config {
	background: transparent; padding: clamp(6px, 1.5vw, 12px) 0; margin: 4px 0 26px;
	scroll-margin-top: 90px; /* se cale sous l'en-tête fixe quand on défile vers lui */
}
.config__nom { font-family: var(--serif); font-weight: 400; font-size: 23px; margin: 0 0 6px; color: var(--ink); }
.config__desc { color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; margin: 0 0 22px; max-width: 56ch; }
.config__row { display: flex; align-items: center; gap: 12px 16px; flex-wrap: wrap; margin-bottom: 14px; }
.config__label {
	font-family: var(--sans); font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
	color: var(--stone-text); width: 54px; flex: 0 0 auto;
}
.config__pills { display: flex; gap: 8px; flex-wrap: wrap; }
.config__pill {
	font-family: var(--sans); font-size: 14px; letter-spacing: .02em;
	padding: 10px 18px; border: 1px solid var(--line); border-radius: 0;
	background: transparent; color: var(--ink); cursor: pointer;
	transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.config__pill:hover { border-color: var(--ink); }
.config__pill.is-active { background: var(--ink); color: var(--bone); border-color: var(--ink); }
/* Pastilles de durée : deux lignes (durée + bénéfice) */
.config__pills--dur { gap: 10px; }
.config__pills--dur { margin-top: 8px; } /* place pour l'étiquette « Le plus choisi » */
.config__pill--dur {
	position: relative;
	display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
	padding: 10px 18px; text-align: left; line-height: 1.15;
	transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .3s var(--ease), transform .25s var(--ease);
}
.config__pill-badge {
	position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
	background: var(--white); color: var(--gold-deep);
	font-family: var(--serif); font-style: italic; font-size: 12px; letter-spacing: .01em; text-transform: none;
	padding: 1px 11px; border: 1px solid var(--gold); border-radius: 0; white-space: nowrap;
}
.config__pill-dur { font-size: 15px; font-weight: 500; letter-spacing: .01em; }
.config__pill-benef { font-family: var(--sans); font-size: 11px; letter-spacing: .03em; color: var(--stone-text); transition: color .25s var(--ease); }
.config__pill--dur:hover .config__pill-benef { color: var(--gold-deep); }
.config__pill--dur.is-active { transform: translateY(-1px); box-shadow: 0 10px 22px -14px rgba(38, 36, 32, .65); }
.config__pill--dur.is-active .config__pill-benef { color: rgba(241, 237, 230, .72); }

/* Phrase dynamique (réponse à « pourquoi cette durée ? ») */
.config__phrase {
	font-family: var(--serif); font-style: italic; font-size: clamp(15px, 2.2vw, 17px);
	line-height: 1.5; color: var(--ink-soft); margin: 4px 0 22px; max-width: 62ch; min-height: 1.5em;
}
.config__phrase.is-fade { animation: bdh-fade .4s var(--ease); }

/* Récapitulatif dynamique + actions */
.config__bottom {
	display: flex; align-items: flex-end; justify-content: space-between; gap: 18px 28px; flex-wrap: wrap;
	margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line);
}
.config__recap { display: flex; flex-direction: column; gap: 2px; }
.config__recap-eyebrow { font-family: var(--sans); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 5px; }
.config__recap-nom { font-family: var(--serif); font-size: 19px; color: var(--ink); }
.config__recap-meta { font-family: var(--sans); font-size: 13.5px; color: var(--ink-soft); letter-spacing: .02em; }
.config__recap-prix { font-family: var(--serif); font-size: 32px; color: var(--ink); margin-top: 6px; }
.config__recap-prix [data-config-price] { display: inline-block; }
.config__recap-prix [data-config-price].is-pop { animation: bdh-pop .38s var(--ease); }

@keyframes bdh-pop { 0% { transform: scale(.82); opacity: .4; } 60% { transform: scale(1.04); } 100% { transform: scale(1); opacity: 1; } }
@keyframes bdh-fade { 0% { opacity: 0; transform: translateY(5px); } 100% { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
	.config__recap-prix [data-config-price].is-pop, .config__phrase.is-fade, .config__pill--dur.is-active { animation: none; transform: none; }
}
.config__actions { display: flex; gap: 12px; flex-wrap: wrap; }
/* Lien "En savoir plus" — discret, centré, sous les actions (ne coupe pas le parcours) */
.config__detail {
	display: block; width: fit-content; margin: 20px auto 0;
	font-family: var(--sans); font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
	color: var(--gold-deep); border-bottom: 1px solid currentColor; padding-bottom: 2px;
	transition: opacity .25s var(--ease);
}
.config__detail:hover { opacity: .65; }

/* Prestations simples (épilations) */
.soin--flat { display: flex; align-items: center; gap: 12px 18px; flex-wrap: wrap; padding: 14px 2px; border-bottom: 1px dotted var(--line); }
.soin--flat:last-child { border-bottom: 0; }
.soin--flat .soin__nom { flex: 1 1 180px; color: var(--ink); font-size: 16.5px; }
.soin--flat .soin__price { font-size: 16.5px; white-space: nowrap; }
.soin__resa {
	font-family: var(--sans); font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
	color: var(--ink); border: 1px solid var(--ink); padding: 8px 16px; white-space: nowrap; transition: all .3s var(--ease);
}
.soin__resa:hover, .soin__resa:focus, .soin__resa:active { background: var(--ink); color: var(--bone); }
/* Variante "Offrir" : accent doré (l'action cadeau, vente n°1 du spa) */
.soin__resa--offrir { color: var(--gold-deep); border-color: var(--gold-deep); }
.soin__resa--offrir:hover, .soin__resa--offrir:focus, .soin__resa--offrir:active { background: var(--gold); color: var(--white); }
.soin__optlabel { color: var(--stone-text); font-size: 13px; font-style: italic; }

/* Bandeau d'appel final */
.cta-band { background: var(--bone); color: var(--ink); text-align: center; padding: var(--section-y) 0; }
.cta-band__title { color: var(--ink); font-size: clamp(30px, 4.5vw, 52px); }
.cta-band__text { color: var(--ink-soft); margin-bottom: 34px; }
.cta-band__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-band .bdh-btn--cadeau { background: var(--gold); color: var(--white); border-color: var(--gold-deep); }
.cta-band .bdh-btn--cadeau:hover, .cta-band .bdh-btn--cadeau:focus, .cta-band .bdh-btn--cadeau:active { background: transparent; color: var(--gold-deep); border-color: var(--gold-deep); }
.cta-band .bdh-btn--reservation { background: transparent; color: var(--ink); border-color: var(--ink); }
.cta-band .bdh-btn--reservation:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.cta-band__phone { margin: 24px 0 0; color: var(--stone-text); font-size: 15px; }
.cta-band__phone a { color: var(--ink); border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.cta-band__phone a:hover { color: var(--gold-deep); }

/* NOUS TROUVER — carte (Google Maps) */
.locate { padding: var(--section-y) 0 0; background: var(--bone); }
.locate__inner { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.locate__title { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 4vw, 46px); color: var(--ink); margin: 0 0 .3em; }
.locate__addr { color: var(--ink-soft); font-size: 17px; margin: 0 0 .25em; }
.locate__tel { margin: 0 0 26px; }
.locate__tel a { color: var(--ink); border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.locate__tel a:hover { color: var(--gold-deep); }
.locate__map { position: relative; aspect-ratio: 16 / 10; overflow: hidden; border: 1px solid var(--line); }
.locate__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.25) contrast(.95); }
/* Façade « au clic » (RGPD) : aucun cookie tant qu'on n'a pas activé la carte. */
.locate__map-facade {
	width: 100%; height: 100%; border: 0; cursor: pointer; background: var(--cream);
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
	padding: 20px; text-align: center; color: var(--ink-soft);
	font-family: var(--sans); transition: background .3s var(--ease), color .3s var(--ease);
}
.locate__map-facade:hover, .locate__map-facade:focus-visible { background: var(--line); color: var(--ink); }
.locate__map-pin { color: var(--gold); }
.locate__map-cta { font-size: 13.5px; letter-spacing: .16em; text-transform: uppercase; }
.locate__map-note { font-size: 11.5px; color: var(--stone-text); max-width: 240px; line-height: 1.5; }
@media (max-width: 760px) {
	.locate__inner { grid-template-columns: 1fr; gap: 24px; }
	.locate__map { aspect-ratio: 4 / 3; }
}

/* Contenu de page standard */
.page-content { padding: clamp(80px, 12vw, 150px) 0; }
/* Pages vitrine avec hero plein-cadre : le hero colle en haut, le contenu
   reprend sa respiration juste en dessous. */
.page-content--hero { padding-top: 0; }
.page-content--hero .container--narrow { padding-top: clamp(48px, 7vw, 90px); }
.page-content__title { font-size: clamp(36px, 6vw, 64px); text-align: center; margin-bottom: 36px; }
/* Pages légales (CGV…) : contenu HTML structuré, lisible et aéré. */
.page-legal h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(23px, 3vw, 30px); color: var(--ink); margin: 46px 0 12px; }
.page-legal h3 { font-family: var(--sans); font-weight: 500; font-size: 16px; color: var(--ink); margin: 30px 0 6px; }
.page-legal p { color: var(--ink-soft); font-size: 16px; line-height: 1.75; margin: 0 0 .9em; }
.page-legal ul { color: var(--ink-soft); font-size: 16px; line-height: 1.7; margin: 0 0 1.1em; padding-left: 1.25em; }
.page-legal li { margin: 0 0 .45em; }
.page-legal strong { color: var(--ink); font-weight: 500; }
.page-legal a { color: var(--gold-deep); }

/* ============================================================
   PAGE D'UNE PRESTATION (/soin/...) — SEO
   ============================================================ */
.soin-page__hero { position: relative; min-height: 46vh; display: flex; align-items: flex-end; background-size: cover; background-position: center; color: #fff; }
.soin-page__scrim { position: absolute; inset: 0; background: linear-gradient(rgba(20,18,15,.2), rgba(20,18,15,.62)); }
.soin-page__hero-inner { position: relative; z-index: 1; width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gut) clamp(36px, 6vw, 70px); }
.soin-page__eyebrow { text-transform: uppercase; letter-spacing: .3em; font-size: 12px; color: var(--gold); margin: 0 0 10px; } /* sur hero sombre : doré clair plus lisible */
.soin-page__title { color: #fff; font-size: clamp(34px, 6vw, 64px); margin: 0; }
.soin-page__duree { color: rgba(255,255,255,.85); margin: 10px 0 0; font-size: 16px; letter-spacing: .05em; }
/* Badge de preuve sociale « 4,9/5 · avis Google » (réutilisable, hérite de la couleur du conteneur). */
.avis-badge { display: inline-flex; align-items: center; gap: 9px; margin: 16px 0 0; font-size: 14px; line-height: 1; text-decoration: none; }
.avis-badge__text { color: inherit; }
.soin-page__hero-inner .avis-badge__text { color: rgba(255,255,255,.92); }
a.avis-badge:hover .avis-badge__text, a.avis-badge:focus .avis-badge__text { text-decoration: underline; }
/* --- Blog --- */
.blog-index__lead { max-width: 680px; margin: 0 0 40px; font-size: 18px; color: var(--stone-text); font-family: var(--serif); font-style: italic; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 36px; }
.blog-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; border: 1px solid var(--line); background: #fff; transition: box-shadow .25s ease, transform .25s ease; }
.blog-card:hover, .blog-card:focus { box-shadow: 0 18px 40px rgba(0,0,0,.08); transform: translateY(-3px); }
.blog-card__media { display: block; aspect-ratio: 3 / 2; background-size: cover; background-position: center; }
.blog-card__body { display: flex; flex-direction: column; gap: 10px; padding: 24px; }
.blog-card__date { text-transform: uppercase; letter-spacing: .2em; font-size: 11px; color: var(--gold-deep); }
.blog-card__title { font-family: var(--serif); font-size: 23px; line-height: 1.2; color: var(--ink); }
.blog-card__excerpt { font-size: 15px; line-height: 1.6; color: var(--stone-text); }
.blog-card__more { margin-top: 4px; font-size: 14px; letter-spacing: .04em; color: var(--gold-deep); }
.blog-card:hover .blog-card__more { text-decoration: underline; }
.soin-page__body { padding: clamp(40px, 6vw, 70px) var(--gut) clamp(70px, 10vw, 120px); }
.soin-page__crumb { font-size: 13px; color: var(--stone-text); margin: 0 0 30px; display: flex; gap: 8px; flex-wrap: wrap; }
.soin-page__crumb a { color: var(--stone-text); }
.soin-page__crumb a:hover { color: var(--gold-deep); }
.soin-page__origine { font-family: var(--serif); font-style: italic; color: var(--gold-deep); font-size: clamp(17px, 2vw, 20px); line-height: 1.5; margin: 0 0 18px; }
.soin-page__lead { font-size: clamp(18px, 2.4vw, 22px); line-height: 1.75; color: var(--ink); margin: 0 0 20px; }
.soin-page__text { margin: 0 0 30px; }
.soin-page__text p { color: var(--ink-soft); font-size: 17px; line-height: 1.85; margin: 0 0 1.2em; }
.soin-page__note { color: var(--gold-deep); font-size: 15px; margin: 0 0 24px; }
.soin-page__panel { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 30px 0; margin: 14px 0 34px; }
.soin-page__price { font-family: var(--serif); font-size: 28px; color: var(--ink); margin-bottom: 22px; }
.soin-page__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.soin-page__soon { color: var(--gold-deep); font-style: italic; margin: 0; }
.soin-page__back { margin-top: 4px; }
.soin-page__back a { color: var(--stone-text); font-size: 14px; letter-spacing: .05em; }
.soin-page__back a:hover { color: var(--gold-deep); }

/* Pages premium : titres de sections, FAQ, maillage interne */
.soin-page__section { margin: 0 0 14px; }
.soin-page__section h2 {
	font-family: var(--serif); font-weight: 400; font-size: clamp(24px, 3.2vw, 32px);
	color: var(--ink); margin: 34px 0 14px; line-height: 1.2;
}
.soin-page__section h3 {
	font-family: var(--sans); font-weight: 500; font-size: 18px; letter-spacing: .01em;
	color: var(--ink); margin: 24px 0 8px;
}
.soin-page__lead p { font-size: clamp(18px, 2.4vw, 22px); line-height: 1.75; color: var(--ink); margin: 0 0 16px; }

/* FAQ (accordéon natif <details>) */
.soin-faq { margin: 18px 0 40px; border-top: 1px solid var(--line); }
.soin-faq__title { font-family: var(--serif); font-weight: 400; font-size: clamp(24px, 3.2vw, 32px); color: var(--ink); margin: 30px 0 8px; }
.soin-faq__item { border-bottom: 1px solid var(--line); }
.soin-faq__q {
	cursor: pointer; list-style: none; padding: 18px 36px 18px 2px; position: relative;
	font-family: var(--serif); font-size: 19px; color: var(--ink);
}
.soin-faq__q::-webkit-details-marker { display: none; }
.soin-faq__q::after {
	content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
	font-family: var(--sans); font-size: 22px; color: var(--gold-deep); transition: transform .3s var(--ease);
}
.soin-faq__item[open] .soin-faq__q::after { content: "−"; }
.soin-faq__a { padding: 0 2px 18px; }
.soin-faq__a p { color: var(--ink-soft); font-size: 16px; line-height: 1.75; margin: 0 0 .8em; }

/* Maillage interne */
.soin-links { margin: 10px 0 36px; }
.soin-links__title { font-family: var(--serif); font-weight: 400; font-size: clamp(22px, 3vw, 28px); color: var(--ink); margin: 0 0 14px; }
.soin-links__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.soin-links__list li { border-bottom: 1px solid var(--line); }
.soin-links__list a {
	display: block; padding: 14px 2px; color: var(--ink); font-size: 16.5px;
	transition: padding-left .25s var(--ease), color .25s var(--ease);
}
.soin-links__list a:hover { padding-left: 10px; color: var(--gold-deep); }
.soin-links__list a span { color: var(--stone-text); font-size: 13px; }
.soin-page__price-note { color: var(--ink-soft); font-size: 16px; line-height: 1.65; margin: 0 0 20px; }
.soin-page__price-note a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }

/* Galerie des appareils de l'espace balnéo (vignettes cliquables) */
.appareils { margin: 30px 0 36px; }
.appareils__title { font-family: var(--serif); font-weight: 400; font-size: clamp(24px, 3.2vw, 32px); color: var(--ink); margin: 0 0 8px; }
.appareils__lead { color: var(--ink-soft); font-size: 16.5px; line-height: 1.6; margin: 0 0 24px; max-width: 60ch; }
.appareils__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.appareils__item { position: relative; }
.appareils__item a {
	display: block; height: 100%; background: var(--paper); border: 1px solid var(--line);
	overflow: hidden; transition: box-shadow .4s var(--ease), transform .4s var(--ease);
}
.appareils__item a:hover { box-shadow: 0 18px 40px -30px rgba(38,36,32,.6); transform: translateY(-2px); }
.appareils__img {
	display: block; aspect-ratio: 4 / 3; background-size: cover; background-position: center;
	transition: transform .6s var(--ease);
}
.appareils__item a:hover .appareils__img { transform: scale(1.05); }
.appareils__name {
	display: block; font-family: var(--serif); font-size: 20px; color: var(--ink);
	padding: 14px 16px 2px;
}
.appareils__accroche { display: block; color: var(--ink-soft); font-size: 14px; line-height: 1.5; padding: 0 16px 16px; }
.appareils__item.is-current a { border-color: var(--gold-deep); }
@media (max-width: 520px) { .appareils__grid { grid-template-columns: 1fr; } }

@media (max-width: 760px) { .soin-page__cta .soin__btn { flex: 1 1 100%; text-align: center; white-space: normal; } }
.cat-page__soon { display: inline-block; font-family: var(--sans); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: #fff; border: 1px solid rgba(255,255,255,.6); padding: 4px 12px; margin-left: 10px; vertical-align: middle; }
.cat-page__soins { margin-top: 10px; }

/* ============================================================
   PIED DE PAGE
   ============================================================ */
.site-footer { background: var(--ink); color: #cdc6ba; padding: clamp(56px, 8vw, 90px) 0 0; }
.site-footer__inner { display: grid; grid-template-columns: 1.2fr 1fr 1.4fr; gap: 48px; align-items: start; }
.site-footer__links h3 { color: var(--white); font-size: 20px; margin: 0 0 14px; }
.site-footer__links ul { list-style: none; margin: 0; padding: 0; }
.site-footer__links li { margin: 0 0 9px; }
.site-footer__links a { color: #c9c1b5; font-size: 15px; text-decoration: none; transition: color .2s ease; }
.site-footer__links a:hover, .site-footer__links a:focus { color: var(--gold-deep); }
.site-footer__name { font-family: var(--serif); font-size: 28px; color: var(--white); margin: 0 0 6px; }
.site-footer__tagline { font-style: italic; font-family: var(--serif); color: #9c9488; margin-bottom: 22px; }
.site-footer__brand .bdh-btn--cadeau { background: var(--gold); color: var(--white); border-color: var(--gold-deep); }
.site-footer__brand .bdh-btn--cadeau:hover, .site-footer__brand .bdh-btn--cadeau:focus, .site-footer__brand .bdh-btn--cadeau:active { background: transparent; color: var(--gold-deep); border-color: var(--gold-deep); }
.site-footer__etabs { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 28px; }
.site-footer__etab h3 { color: var(--white); font-size: 20px; }
.site-footer__etab p { margin: 2px 0; font-size: 15px; }

/* Horaires (pied de page + menu burger) — liste jour / horaire, alimentée par l'établissement */
.site-footer__hours, .site-nav__hours { list-style: none; padding: 0; margin: 6px 0 0; }
.site-footer__hours li, .site-nav__hours li { display: flex; justify-content: space-between; gap: 16px; }
.bdh-hours__day { opacity: .7; }
.site-footer__hours li.is-closed, .site-nav__hours li.is-closed { opacity: .5; }
.site-footer__hours { font-size: 14px; line-height: 2; max-width: 240px; }
.site-footer__hours-label, .site-nav__hours-label {
	font-family: var(--sans); text-transform: uppercase; letter-spacing: .18em;
	font-size: 11px; margin: 14px 0 4px; color: var(--gold-deep);
}
.site-footer__hours-label { color: var(--gold); } /* pied de page sombre : doré clair */
.site-footer a:hover { color: var(--white); }
.site-footer__social { list-style: none; display: flex; gap: 14px; margin: 22px 0 0; padding: 0; }
.site-footer__social a {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; border: 1px solid rgba(205,198,186,.4); border-radius: 50%;
	color: #cdc6ba; transition: color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.site-footer__social a:hover { color: var(--ink); background: var(--bone); border-color: var(--bone); }
.site-footer__bottom { margin-top: clamp(40px, 6vw, 70px); border-top: 1px solid #3a362f; padding: 22px 0; font-size: 13px; color: #8a8276; }
.site-footer__bottom-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 24px; }
.site-footer__bottom-inner p { margin: 0; }
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.site-footer__legal a { color: #8a8276; transition: color .3s var(--ease); }
.site-footer__legal a:hover { color: var(--gold-deep); }
.site-footer__bottom-left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.site-footer__contact { display: inline-block; padding: 7px 16px; border: 1px solid #4a463d; color: #cbc3b4; letter-spacing: .04em; transition: border-color .3s var(--ease), color .3s var(--ease); }
.site-footer__contact:hover { border-color: var(--gold-deep); color: #fff; }

/* ============================================================
   BARRE D'ACTION FIXE — MOBILE (conversion)
   ============================================================ */
.mobile-cta { display: none; }

/* ============================================================
   ANIMATIONS D'APPARITION (douces, au défilement)
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
.hero[data-reveal] { opacity: 1; transform: none; } /* la bannière reste visible d'emblée */
@media (prefers-reduced-motion: reduce) {
	[data-reveal] { opacity: 1; transform: none; transition: none; }
	html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE — TABLETTE
   ============================================================ */
@media (max-width: 960px) {
	.feature { grid-template-columns: 1fr; }
	.feature--reverse .feature__media { order: 0; }
	.feature__media { min-height: 56vw; }
	.site-footer__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE (priorité : c'est le trafic principal)
   ============================================================ */
@media (max-width: 760px) {
	body { font-size: 16px; }

	.site-header__inner { min-height: 70px; }
	.brand__logo { height: 32px; }
	/* En-tête mobile épuré : la conversion passe par la barre fixe du bas */
	.site-header__actions { display: none; }

	/* Vidéo plein écran : descend jusque DERRIÈRE la barre de boutons fixe (.mobile-cta)
	   pour ne pas laisser apparaître un bout de la section suivante entre les deux. */
	.hero { height: 100svh; }
	.hero__actions { flex-direction: column; align-items: stretch; }
	.hero__actions .bdh-btn { width: 100%; }

	.feature__text { padding: 48px 28px 56px; }

	/* Carrousel : flèches masquées (on glisse au doigt), cartes avec aperçu */
	.presta__nav { display: none; }
	.presta__card { width: 72vw; }

	/* Carte : boutons de réservation pleine largeur (cibles tactiles confortables) */
	.soin-card { gap: 14px; }
	.soin-card__book { width: 100%; align-items: stretch; text-align: left; }
	.soin-card__btns { width: 100%; }
	.soin-card__book .soin__btn { flex: 1 1 100%; text-align: center; white-space: normal; }

	/* Sélecteur sur mesure : prix au-dessus, boutons pleine largeur */
	.config__bottom { flex-direction: column; align-items: stretch; }
	.config__actions { width: 100%; }
	.config__actions .bdh-btn { flex: 1 1 0; text-align: center; }
	.config__label { width: auto; }
	/* Mobile : on COMPACTE le configurateur pour que le prix et « Réserver » soient
	   visibles sans avoir à scroller (description longue + phrase dynamique masquées). */
	.config__desc { display: none; }
	.config__phrase { display: none; }
	.config { padding: 22px 20px; }
	.config__choices { gap: 16px; }
	.config__recap-prix { font-size: 28px; }

	/* Barre d'action fixe en bas de l'écran */
	.mobile-cta {
		display: flex; gap: 0;
		position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
		background: var(--white);
		box-shadow: 0 -1px 24px rgba(0,0,0,.12);
		/* iPhone : on remplit la zone de la barre d'accueil sous les boutons. */
		padding-bottom: env(safe-area-inset-bottom, 0px);
	}
	.mobile-cta .bdh-btn, .mobile-cta__call {
		flex: 1; border: 0; border-radius: 0;
		padding: 17px 6px; text-align: center;
		font-family: var(--sans); font-size: 12px; letter-spacing: .1em;
		text-transform: uppercase; white-space: nowrap;
	}
	/* Un seul accent : Offrir doré (action n°1, 47 % du CA). Réserver et Appeler restent
	   clairs avec de fins séparateurs → barre raffinée, pas « 3 blocs » qui se battent. */
	.mobile-cta .bdh-btn--cadeau { background: var(--gold); color: var(--white); }
	.mobile-cta .bdh-btn--reservation { background: var(--white); color: var(--ink); border-left: 1px solid var(--line) !important; }
	.mobile-cta__call { background: var(--white); color: var(--ink); border-left: 1px solid var(--line) !important; line-height: 1.5; }
	/* On laisse de la place pour ne pas masquer le pied de page */
	.site-footer__bottom { padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px)); }
}

/* ============================================================
   FLUIDITÉ CONVERSION — réassurance, prix d'appel, avis
   ============================================================ */

/* Ligne de réassurance sous les CTA (hero + bandeau final : fonds sombres) */
.cta-reassure {
	margin: 18px 0 0;
	font-family: var(--sans); font-size: 12.5px; letter-spacing: .08em;
	color: rgba(255, 255, 255, .82);
}
.cta-reassure--band { color: var(--stone-text); }

/* Prix d'appel « dès X € » sous le titre des vignettes du carrousel */
.presta__price {
	display: block; text-align: center; margin-top: 5px;
	font-family: var(--sans); font-size: 12.5px; letter-spacing: .06em; color: var(--gold-deep);
}

/* Bandeau d'avis clients (preuve sociale près de l'appel à l'action) */
.avis { background: var(--bone); padding: var(--section-y) 0 0; }
.avis .section__head { text-align: center; margin-bottom: clamp(32px, 5vw, 56px); }
.avis__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 34px); }
.avis__card {
	background: none; border: 0; border-top: 1px solid var(--line);
	padding: clamp(26px, 3vw, 36px) 0 0; margin: 0;
	display: flex; flex-direction: column; gap: 18px;
}
.avis__text {
	font-family: var(--serif); font-style: italic; font-size: clamp(18px, 1.5vw, 22px); line-height: 1.6;
	color: var(--ink-soft); margin: 0; quotes: "«\00a0" "\00a0»";
}
.avis__text::before { content: open-quote; }
.avis__text::after { content: close-quote; }
.avis__name {
	font-family: var(--sans); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
	color: var(--stone-text); margin-top: auto;
}
@media (max-width: 860px) {
	.avis__grid { grid-template-columns: 1fr; gap: 18px; }
}
