/* ============================================================
   ========== 🌿 Hypnose — style.css (FULL / REMPLACEMENT)
   - Palette finale confirmée
   - Header/menu/CTA conservés
   - Lotus coloré en vert principal (mask)
   - HERO : cover centré, sans bandes noires
   - HERO : hauteur PILOTÉE (DESKTOP MAX 400px pour test)
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800;900&display=swap');

/* ============================================================
   🎨 TOKENS (palette + layout)
============================================================ */
:root {
	/* ========== 🌿 Palette principale ========== */

	/* Verts profonds – TITRES */
	--hyp-green-950: #48472d; /* + profond, + contraste, élégant */
	/* ============================================================
   🅷 TITRES — règle globale site
============================================================ */
	h1,
	h2 {
		color: var(--hyp-green-950);
	}

	--hyp-green-900: #6d6b44;
	--hyp-green-700: #7e7c52;
	--hyp-green-500: #9c9a74;

	--hyp-menu-bg: #f1f1ed;
	--hyp-menu-hover: #6d6b44;
	--hyp-menu-active: #c0be9b;

	--hyp-text-dark: #2e2e24;
	--hyp-text-light: #fff;

	/* ========== Neutres / layout ========== */
	--clr-bg: var(--hyp-text-light);
	--clr-border: rgba(109, 107, 68, 0.2);

	--ff-base: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
	--ff-serif: ui-serif, Georgia, 'Times New Roman', Times, serif;

	--container: 1140px;

	/* ============================================================
     📌 HEADER : validé (ne plus toucher)
  ============================================================ */
	--header-h: 48px;
	--cta-h: 30px;
	--nav-item-h: 26px;
	--nav-pill-pad: 2px;
	--lotus-size: 30px;

	--radius-pill: 999px;
	--shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 14px 36px rgba(0, 0, 0, 0.18);

	/* ============================================================
     🖼️ HERO : PILOTAGE HAUTEUR (ici !)
     Objectif test : 400px max desktop
  ============================================================ */
	--hero-h-desktop: 400px; /* ✅ desktop : test demandé */
	--hero-h-tablet: 420px;
	--hero-h-mobile: 420px;

	/* Espacement interne hero (si besoin d'affiner) */
	--hero-pad-top: 18px;
	--hero-pad-bot: 14px;
	--hero-stack-gap: 30px;

	/* ============================================================
     🎯 HERO : tailles (panneau + slogan)
  ============================================================ */
	--hero-panel-max: 400px;
	--hero-panel-pad: 18px;
	--hero-panel-radius: 16px;

	--hero-logo-max: 240px;

	--hero-name: clamp(18px, 1.75vw, 26px);
	--hero-job: clamp(16px, 1.6vw, 24px);
	--hero-city: 0.95rem;

	--hero-tagline-max: 100%;
	--hero-tagline-size: clamp(1.5625rem, 0.3418rem + 3.9063vw, 3.125rem);
}

/* ============================================================
   🧱 Reset / Base
============================================================ */
* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	font-family: var(--ff-base);
	color: var(--hyp-text-dark);
	line-height: 1.55;
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}
a {
	color: inherit;
	text-decoration: none;
}

#site {
	background: var(--clr-bg); /*  fond clair du site */
	min-height: 100vh;
}

.container {
	width: min(var(--container), calc(100% - 40px));
	margin-inline: auto;
}
.nowrap {
	white-space: nowrap;
}

/* ============================================================
   📱 Helpers responsive
============================================================ */
.hide-mobile {
	display: inline-flex !important;
}
.show-mobile {
	display: none !important;
}

@media (max-width: 991px) {
	.hide-mobile {
		display: none !important;
	}
	.show-mobile {
		display: inline-flex !important;
	}
}

/* ============================================================
   🧭 HEADER (figé)
============================================================ */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--hyp-text-light);
	border-bottom: 1px solid var(--clr-border);
}
.header__inner {
	min-height: var(--header-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 2px 0;
}

/* ========== 🌸 Lotus (couleur exacte via mask) ========== */
.brand {
	display: inline-flex;
	align-items: center;
}
.lotus-icon {
	width: var(--lotus-size);
	height: var(--lotus-size);
	display: inline-block;
	background-color: var(--hyp-green-900);

	/* IMPORTANT : ce système colore le SVG même si le fichier a des strokes/fills internes */
	-webkit-mask: url('/images/Lotus-hypnose.svg') no-repeat center / contain;
	mask: url('/images/Lotus-hypnose.svg') no-repeat center / contain;
}

/* ============================================================
   🌸 LOTUS — variante hero (blanc)
============================================================ */
.lotus-icon--hero {
	background-color: var(--hyp-text-light); /* blanc */
	width: 48px; /* ajuste si besoin */
	height: 48px;
	flex-shrink: 0;
}

/* ============================================================
   🌸 LOTUS — variante section Contact (RDV)
============================================================ */
.lotus-icon--rdv {
	background-color: var(--hyp-green-500);
	width: 44px; /* légèrement plus doux que le hero */
	height: 44px;
	flex-shrink: 0;
}

/* ========== 🧭 Menu capsule (desktop) ========== */
.nav--primary {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: var(--nav-pill-pad);
	border-radius: var(--radius-pill);
	background: var(--hyp-menu-bg);
}
.nav--primary a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: var(--nav-item-h);
	padding: 0 10px;
	border-radius: var(--radius-pill);
	font-weight: 500;
	font-size: 0.88rem;
	letter-spacing: 0.01em;
	line-height: 1;
	color: var(--hyp-green-900);
	transition: background 0.15s ease, color 0.15s ease;
}
.nav--primary a:hover {
	background: var(--hyp-menu-hover);
	color: var(--hyp-text-light);
}
.nav--primary a.is-active,
.nav--primary a[aria-current='page'] {
	background: var(--hyp-menu-active);
	color: var(--hyp-text-light);
}
@media (max-width: 991px) {
	.nav--primary {
		display: none;
	}
}

/* ========== 🔘 CTA (TEL + RDV) ========== */
.header__cta {
	display: inline-flex;
	align-items: center;
	gap: 16px;
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: var(--cta-h);
	padding: 0 12px;
	border-radius: var(--radius-pill);
	font-size: 0.84rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	line-height: 1;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.btn:hover {
	transform: translateY(-1px);
	box-shadow: var(--shadow-sm);
}
.btn--phone {
	background: var(--hyp-text-light);
	color: var(--hyp-green-900);
	border: 1.1px solid var(--hyp-green-900);
}
.btn--primary {
	background: var(--hyp-green-900);
	color: var(--hyp-text-light);
	border: 1.1px solid var(--hyp-green-900);
}
.btn--primary:hover {
	background: var(--hyp-green-700);
	border-color: var(--hyp-green-700);
}
.btn--icon {
	width: var(--cta-h);
	height: var(--cta-h);
	padding: 0;
	border-radius: 999px;
}
.btn--icon-outline {
	background: var(--hyp-text-light);
	color: var(--hyp-green-900);
	border: 1.1px solid var(--hyp-green-900);
}
.btn--icon-primary {
	background: var(--hyp-green-900);
	color: var(--hyp-text-light);
	border: 1.1px solid var(--hyp-green-900);
}
.icon {
	display: inline-flex;
	width: 13px;
	height: 13px;
	align-items: center;
	justify-content: center;
}
.icon svg {
	width: 13px;
	height: 13px;
	fill: currentColor;
	stroke: currentColor;
}

/* ============================================================
   📌 ICÔNES DANS BOUTONS — harmonisation (tel / mail / rdv)
============================================================ */
.btn__ico {
	display: inline-flex;
	width: 13px;
	height: 13px;
	align-items: center;
	justify-content: center;
}
.btn__ico svg {
	width: 13px;
	height: 13px;
	fill: currentColor;
	stroke: currentColor;
}

/* ============================================================
   🍔 BURGER (mobile) — même diamètre que .btn--icon (var(--cta-h))
   - caché en desktop
   - rond outline cohérent (tel / mail)
============================================================ */

/* Desktop / défaut : caché */
.burger {
	display: none;
}




/* Mobile : visible + style */
@media (max-width: 991px) {
	.burger {
		display: inline-flex;

		/* ✅ même taille que les boutons ronds (tel / icônes) */
		width: var(--cta-h);
		height: var(--cta-h);

		padding: 0;
		margin: 0;
		border-radius: 999px;
		box-sizing: border-box;

		background: var(--hyp-text-light);
		border: 1.1px solid var(--hyp-green-900);

		align-items: center;
		justify-content: center;
		flex-direction: column;

		/* espacement des traits */
		gap: 3px;

		cursor: pointer;
		-webkit-tap-highlight-color: transparent;
	}

	.burger span {
		display: block;
		width: 16px;
		height: 2px;
		background: var(--hyp-green-900);
		border-radius: 2px;
	}

	.burger:focus-visible {
		outline: 2px solid var(--hyp-green-500);
		outline-offset: 2px;
	}
}

/* ========== ♿ Focus clavier ========== */
a:focus-visible,
button:focus-visible {
	outline: 2px solid var(--hyp-green-500);
	outline-offset: 2px;
	border-radius: 999px;
}

/* ============================================================
   🖼️ HERO (SECTION 2)
   IMPORTANT : nécessite <section class="herohead">…</section>
============================================================ */
.herohead {
	position: relative;
	isolation: isolate;
	overflow: hidden;

	/* 📏 Hauteur maîtrisée */
	height: var(--hero-h-desktop);
	max-height: 400px; /* test desktop */
	min-height: unset;

	/* 🎯 CENTRAGE VERTICAL */
	display: flex;
	align-items: center; /* centre verticalement */
}

.hero-inner {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;

	padding-inline: 20px;
	padding-block: 24px;

	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* BG full zone */
.herohead__bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	z-index: 0;




}
.herohead__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* ✅ pas de barres noires */
	object-position: 50% 50%; /* ✅ centre quand ça coupe */
}

/* Overlay (lisibilité) — CORRIGÉ */
.herohead::before {
  content: '';
  position: absolute;
  inset: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.52) 0%,
    rgba(0, 0, 0, 0.28) 46%,
    rgba(0, 0, 0, 0.12) 100%
  );
}
/* Contenu */
.herohead__inner {
	position: relative;
	z-index: 2;

	/* ✅ prend exactement la hauteur dispo */
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: var(--hero-stack-gap);

	/* ✅ évite de regonfler par du padding interne */
	padding: 0;
}

/* Panneau identité */
.herohead__left {
	max-width: var(--hero-panel-max);
	padding: var(--hero-panel-pad);
	border-radius: var(--hero-panel-radius);

	background: rgba(0, 0, 0, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(6px);
	box-shadow: var(--shadow-md);
}



/* Textes panneau */
.herohead__identity {
	color: var(--hyp-text-light);
}
.herohead__name {
	font-size: var(--hero-name);
	font-weight: 800;
}
.herohead__job {
	font-size: var(--hero-job);
	font-weight: 900;
	margin-top: 2px;
}
.herohead__city {
	margin-top: 0.75rem;
	font-size: var(--hero-city);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	opacity: 0.9;
}

/* Slogan format par défaut sur accueil*/
.herohead__tagline {
	max-width: var(--hero-tagline-max);
	font-family: var(--ff-serif);
	font-size: var(--hero-tagline-size);
	line-height: 1.2;
	color: var(--hyp-text-light);
	text-shadow: 0 14px 26px rgba(0, 0, 0, 0.26);
}




/* ============================================================
   📱 Responsive HERO : on garde le contrôle en px
============================================================ */
@media (max-width: 1023px) {
	.herohead {
		height: var(--hero-h-tablet);
		max-height: none;
	}
	:root {
		--hero-panel-max: 400px;
		--hero-logo-max: 230px;
		--hero-tagline-max: 520px;
		--hero-stack-gap: 30px;
		--hero-panel-pad: 16px;
	}
}

@media (max-width: 640px) {
	.herohead {
		height: var(--hero-h-mobile);
		max-height: none;
		padding-top: 20px;
		padding-bottom: 12px;
	}
	:root {
		--hero-panel-max: 60vw;
		--hero-logo-max: 210px;
		--hero-tagline-max: 92vw;
		--hero-panel-pad: 14px;
	}
}


/* ============================================================
   📌 Offcanvas (mobile)
============================================================ */
.offcanvas {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.38);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
	display: flex;
	justify-content: flex-end;
}
.offcanvas--open {
	opacity: 1;
	pointer-events: auto;
}
.offcanvas__nav {
	width: min(360px, 86vw);
	height: 100%;
	background: var(--hyp-text-light);

	/* ✅ respiration sous header sticky */
	padding: calc(var(--header-h) + 18px) 24px 24px;

	box-shadow: var(--shadow-md);
	display: flex;
	flex-direction: column;
	gap: 12px;

	/* si jamais tu vois encore un léger “cropping” */
	overflow: auto;
}
.offcanvas__nav a {
	padding: 12px 14px;
	border-radius: 12px;
	background: var(--hyp-menu-bg);
	font-weight: 700;
	color: var(--hyp-green-900);
}
.offcanvas__nav a:hover {
	background: var(--hyp-menu-active);
	color: var(--hyp-text-light);
}
/* ========== 🌸 Lotus dans offcanvas ========== */
.offcanvas__brand {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2px 2px 10px;
}

.lotus-icon--offcanvas {
	width: 34px;
	height: 34px;
	background-color: var(--hyp-green-900);
}

/* ============================================================
   ========== 🏠 HOME — ACCUEIL (2 sections split)
   ✅ Préfixe "home-" (aucun impact header/footer)
============================================================ */


.home-p {
	margin: 0;
	color: var(--hyp-text-dark);
	line-height: 1.65;
}

.home-list {
	margin: 12px 0 0;
	padding-left: 1.05em;
	color: var(--hyp-text-dark);
	line-height: 1.7;
}

.home-list li {
	margin: 6px 0;
}

/* ============================================================
   🧩 Split layout
============================================================ */
.home-split.section {
	background: var(--hyp-menu-bg);
	padding-top: 92px;
}

.home-split__inner {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr; /* texte / image */
	gap: 28px;
	align-items: start;
}

/* Variante : image à gauche (section 2) */
.home-split--reverse .home-split__inner {
	grid-template-columns: 0.9fr 1.1fr; /* image / texte */
}

/* Titres */
.home-split__h1 {
	margin: 0 0 14px;
	line-height: 1.08;
	letter-spacing: -0.01em;
	color: var(--hyp-green-900);
	font-weight: 900;
}

.home-split__h2 {
	margin: 0 0 12px;
	line-height: 1.1;
	letter-spacing: 0.01em;
	color: var(--hyp-green-900);
	font-weight: 900;
}

/* Texte */
.home-split__text {
	max-width: 62ch;
}

/* Actions */
.home-split__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
}

/* ============================================================
   ✨ HOME — SECTION 1 : paragraphes justifiés
============================================================ */

/* Justification du texte uniquement dans les blocs split */
.home-split__text .home-p {
	text-align: justify;
	text-justify: inter-word;
}

/* ============================================================
   🖼️ Media (image arrondie, style cohérent)
============================================================ */
.home-split__media {
	margin: 0;
	border-radius: var(--hero-panel-radius);
	overflow: hidden; /* ✅ pas de “blanc” interne */
	border: 1px solid var(--clr-border);
	box-shadow: var(--shadow-sm);
	background: #fff;
	padding: 0;
	max-height: 440px;
	aspect-ratio: 4 / 3;
}

.home-split__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

/* ============================================================
   📱 HOME — Mobile : cohérence section 1 & 2
   Objectif : texte + image = 100% largeur container
============================================================ */
@media (max-width: 991px) {
	/* 1 colonne + items étirés */
	.home-split__inner {
		grid-template-columns: 1fr;
		gap: 28px;

		/* ordre mobile */
		grid-template-areas:
			'text'
			'media';

		/* ✅ force l’étirement */
		justify-items: stretch;
		align-items: start;
	}

	/* même résultat en reverse */
	.home-split--reverse .home-split__inner {
		grid-template-columns: 1fr; /* <- c’est ça qui manque */
		grid-template-areas:
			'text'
			'media';
		justify-items: stretch;
	}

	/* texte = pleine largeur */
	.home-split__text {
		grid-area: text;
		width: 100%;
		max-width: none !important; /* ✅ on écrase toute contrainte résiduelle */
	}

	/* image wrapper = pleine largeur */
	.home-split__media {
		grid-area: media;
		width: 100%;
		max-width: none;
		margin: 0; /* ✅ évite centrage implicite */
		max-height: 340px;
		aspect-ratio: 16 / 10;
	}

	/* image = pleine largeur */
	.home-split__media img {
		width: 100%;
		height: 100%;
	}
}

/* ============================================================
   ========== 👤 HOME — QUI SUIS-JE (mise en page)
   - p1 pleine largeur
   - split photo gauche / texte droite
   - paragraphes justifiés
============================================================ */

/* ============================================================
   🔗 ANCRES — compenser le header sticky
============================================================ */
#qui-suis-je {
	scroll-margin-top: calc(var(--header-h) + 14px);
}

.home-about.section {
	background: var(--clr-bg); /* intégration douce vers footer-rdv */
}

/* Titre */
.home-about__h2 {
	margin: 0 0 14px;
	line-height: 1.1;
	letter-spacing: 0.01em;
	color: var(--hyp-green-900);
	font-weight: 900;
}

/* Paragraphe 1 pleine largeur */
.home-about__p1 {
	max-width: none; /* ✅ pleine largeur */
	text-align: justify; /* ✅ justifié */
	text-justify: inter-word;
	margin: 0 0 22px;
}

/* Split (desktop) */
.home-about__split {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr; /* photo / texte */
	gap: 28px;
	align-items: start;
}

/* Photo */
.home-about__media {
	margin: 0;
	border-radius: var(--hero-panel-radius);
	overflow: hidden;
	border: 1px solid var(--clr-border);
	box-shadow: var(--shadow-sm);
	background: #fff;

	max-height: 560px;
	aspect-ratio: 4 / 5;
}

.home-about__media img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: 50% 35%;
}



/* Contenu texte (p + ul + p + p) */
.home-about__content {
	display: grid;
	gap: 12px; /* respiration entre p / ul */
}

/* ✅ Paragraphes justifiés dans la zone content */
.home-about__content .home-p {
	text-align: justify;
	text-justify: inter-word;
}

/* Option : liste un peu plus respirante dans ce bloc */
.home-about__content .home-list {
	margin-top: 6px;
}

/* ============================================================
   📱 Mobile : colonne (p1 → image → contenu)
============================================================ */
@media (max-width: 991px) {
	.home-about__p1 {
		margin-bottom: 18px;
	}

	.home-about__split {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.home-about__media {
		margin: 0 auto;
		width: 100%;
		max-width: 420px; /* optionnel : limite visuelle élégante */
	}

	/* On garde le justifié en mobile aussi */
	.home-about__content .home-p {
		text-align: justify;
	}
}

/* ============================================================
   🖋️ Citation sur image — home-about
============================================================ */
.home-about__media {
  position: relative; /* 🔑 ancrage de l’overlay */
}

/* Conteneur citation */
.home-about__quote {
  position: absolute;
  top: 15%;              /* ✅ reste dans le ciel */
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  max-width: 520px;

  text-align: center;
  color: #fff;

  /* lisibilité douce */
  text-shadow: 0 6px 18px rgba(0,0,0,0.35);
  pointer-events: none;
}

/* Texte citation */
.home-about__quote-text {
  margin: 0;
  font-family: var(--ff-serif);
  font-size: clamp(0.98rem, 1.95vw, 1.425rem);
  font-weight: 500;
  line-height: 1.25;
}

/* Auteur */
.home-about__quote-author {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  opacity: 0.9;
  text-transform: uppercase;
}

/* ============================================================
   📱 Ajustement mobile
============================================================ */
@media (max-width: 991px) {
  .home-about__quote {
    top: 8%;       /* un peu plus haut encore */
    width: 90%;
  }

  .home-about__quote-text {
    font-size: 1.1rem;
  }
}



/* ============================================================
   ========== 🦶 FOOTER (Contact + Liens + Post-footer)
============================================================ */

/* ============================================================
   📦 Sections — spacing (GLOBAL)
============================================================ */
.section {
	padding: 46px 0;
}

@media (max-width: 991px) {
	.section {
		padding: 34px 0;
	}
}

/* ============================================================
   📅 CONTACT — section RDV (posé + fond)
============================================================ */
.footer-rdv.section {
	padding: 34px 0;
	background: var(--hyp-menu-bg);
}

/* 🔗 Ancre : sticky header */
#rdv {
	scroll-margin-top: calc(var(--header-h) + 14px);
}

/* ============================================================
   🧩 Layout contact : dos à dos + ligne centrale propre
============================================================ */
.footer-rdv__inner {
	display: grid;
	grid-template-columns: 1fr 1fr; /* ✅ vraie symétrie */
	gap: 18px;
	align-items: start;
}

/* ============================================================
   📝 Colonne texte (alignée à droite)
============================================================ */
.footer-rdv__text {
	display: flex;
	flex-direction: column;
	gap: 14px;

	align-items: flex-end;
	text-align: right;

	/* ✅ rapproche le contenu de la limite centrale */
	padding-right: 6px;
}

/* H2 Contact */
.footer-rdv__h2 {
	margin: 0;
	font-weight: 900;
	color: var(--hyp-green-900);
	letter-spacing: 0.01em;
}


/* Identité */
.footer-rdv__identity {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin: 0;
	align-items: flex-end;
}

.footer-rdv__name {
	font-weight: 900;
	letter-spacing: 0.01em;
	color: var(--hyp-green-900);
}

.footer-rdv__job {
	font-weight: 800;
	color: var(--hyp-green-950);
}

/* ============================================================
   ✅ Actions : en colonne (email sous tel)
============================================================ */
.footer-rdv__actions {
	display: flex !important;
	flex-direction: column !important;
	gap: 10px;
	align-items: flex-end;
	width: fit-content;
}

.footer-rdv__btn {
	flex: 0 0 auto;
	white-space: nowrap;
	max-width: 100%;
}

/* Icônes des boutons */
.footer-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 8px;
	color: var(--hyp-green-900);
}

.footer-rdv__btn:hover .footer-ico {
	color: var(--hyp-green-900);
}

/* Adresse */
.footer-rdv__address {
	color: var(--hyp-green-900);
	font-size: 0.82rem;
	line-height: 1.4;
}

.footer-rdv__addrline {
	color: var(--hyp-text-dark);
	font-size: 0.7rem;
}

/* Note */
.footer-rdv__note {
	margin: 0;
	color: var(--hyp-green-900);
	font-size: 0.95rem;
	font-weight: 700;
}

/* ============================================================
   🖼️ Colonne image + note (NOUVEAU HTML : mediawrap)
   - l’image reste “carte”
   - la note est sous l’image, même largeur
============================================================ */
.footer-rdv__mediawrap {
	/* ✅ rapproche de la limite centrale */
	padding-left: 6px;

	/* ✅ largeur contrôlée comme avant */
	max-width: 520px;
	width: 100%;

	display: flex;
	flex-direction: column;
	gap: 10px;

	/* IMPORTANT : pas de “carte” sur le wrapper */
	margin: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

/* Carte image (figure) */
.footer-rdv__figure {
	margin: 0;
	border-radius: var(--hero-panel-radius);
	overflow: hidden;
	border: 1px solid var(--clr-border);
	box-shadow: var(--shadow-sm);
	background: var(--hyp-text-light);
}

/* Image */
.footer-rdv__figure img {
	display: block;
	width: 100%;
	height: auto; /* ✅ évite les effets “cadre vide” */
	max-height: 420px;
	object-fit: cover;
	object-position: 50% 50%;
}

/* Avertissement sous image */
.footer-rdv__avertissement {
	margin: 0px 0 0; /* tu gardes exactement l'espacement actuel */
	padding: 0 1ch; /* ✅ retrait gauche + droite */

	color: var(--hyp-green-900);
	font-size: 0.7rem;
	font-style: italic;
	line-height: 1.45;
	opacity: 0.92;
}

/* ============================================================
   📱 Responsive : texte puis image dessous
============================================================ */
@media (max-width: 991px) {
	.footer-rdv__inner {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.footer-rdv__text {
		align-items: flex-start;
		text-align: left;
		padding-right: 0;
	}

	.footer-rdv__identity {
		align-items: flex-start;
	}

	.footer-rdv__actions {
		align-items: flex-start;
		width: 100%;
	}

	.footer-rdv__mediawrap {
		padding-left: 0;
		max-width: 100%;
	}

	.footer-rdv__figure img {
		max-height: 340px;
	}
}

/* ============================================================
   🔗 Liens rapides (4 colonnes) — SANS esthétique carte
   - fond section vert principal
   - liens en liste verticale (texte)
============================================================ */
.footer-links.section {
	background: var(--hyp-green-900);
}

/* On garde le wrapper, mais il ne “dessine” plus de carte */
.footer-links__card {
	background: transparent;
	border: 0;
	box-shadow: none;
	border-radius: 0;
	padding: 0;
}

/* Grille 4 colonnes */
.footer-links__grid {
	display: grid;
	grid-template-columns: 0.6fr 1fr 1fr 1.15fr; /* ✅ 1ère col plus étroite, dernière un peu plus large */
	gap: 18px;
	align-items: start;
}

/* Colonne “brand” (lotus) */
.footer-links__col--brand {
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

/* Lotus blanc via mask SVG */
.footer-links__lotus {
	width: 64px;
	height: 64px;
	display: inline-block;

	background-color: var(--hyp-text-light);
	-webkit-mask: url('/images/Lotus-hypnose.svg') no-repeat center / contain;
	mask: url('/images/Lotus-hypnose.svg') no-repeat center / contain;

	opacity: 0.95;
}

/* Titres */
.footer-links__title {
	font-weight: 900;
	color: var(--hyp-text-light);
	margin-bottom: 10px;
	letter-spacing: 0.01em;
}

/* Liens : texte simple, vertical */
.footer-link {
	display: block;
	padding: 0;
	margin: 6px 0 0;
	background: transparent;
	border-radius: 0;
	min-height: auto;
	width: auto;

	color: var(--hyp-text-light);
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1.35;

	transition: opacity 0.15s ease, transform 0.15s ease;
}

.footer-link:hover {
	opacity: 0.85;
	transform: translateX(2px);
}

/* ============================================================
   📱 Responsive : 1 colonne + contenus centrés
============================================================ */
@media (max-width: 991px) {
	.footer-links__grid {
		grid-template-columns: 1fr;
		gap: 16px;
		justify-items: center; /* ✅ centre les colonnes */
	}

	.footer-links__col {
		text-align: center; /* ✅ centre titres + liens */
	}

	.footer-links__col--brand {
		justify-content: center;
	}

	.footer-link:hover {
		transform: none; /* ✅ évite “décalage” au hover sur mobile */
	}
}

/* ============================================================
   🧾 POST-FOOTER — section pleine largeur
============================================================ */
.post-footer-section {
	background: var(--hyp-green-500);
	padding: 10px 0;
}

/* Post-footer */
.post-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	/*padding: 16px 0 28px;  était présent avant création de la section post-footer*/
	color: var(--hyp-text-light);
	font-size: 0.88rem;
}

.post-footer__legal a {
	color: var(--hyp-text-light);
}

.post-footer__legal a:hover {
	opacity: 0.85;
}

.post-footer__sep {
	margin: 0 6px;
	opacity: 0.6;
}

.post-footer__credit a {
	font-size: 0.8rem; /* ⬅️ plus petit que le reste */
	letter-spacing: 0.04em; /* look signature */
	text-transform: uppercase;
	opacity: 0.85;
}

.post-footer__credit a:hover {
	opacity: 1;
}

@media (max-width: 991px) {
	.footer-links__grid {
		grid-template-columns: 1fr;
	}

	.post-footer-section {
		padding: 14px 0 22px;
	}

	.post-footer {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding-bottom: 22px;
		gap: 8px;
	}
	.post-footer__legal {
		text-align: center;
	}

	/* 🔁 le séparateur devient un retour à la ligne */
	.post-footer__sep {
		display: block;
		height: 0;
		margin: 6px 0;
		opacity: 0; /* cache le point */
	}
}

/* ============================================================
   ========== 🌍 iOS / Safari — éviter “bande blanche” bas
============================================================ */
html,
body {
	background: var(--hyp-green-900); /* ou var(--hyp-menu-bg) */
}

/* ============================================================
   ⏳ Masquage temporaire pendant l’injection des includes
============================================================ */
html.is-loading body {
	visibility: hidden;
}

/* ============================================================
   🍔 BURGER — aligner l’animation hover avec les boutons
   (CSS ONLY — réversible)
============================================================ */
.burger:hover {
	transform: translateY(-1px);
	box-shadow: var(--shadow-sm);
}

