/* =========================================================================
   Evactiv — Feuille de style principale
   Design : Figma « Accueil » — Virginie, psychologue du travail
   ========================================================================= */

:root {
	/* Palette */
	--plum:        #6b1f5a;   /* magenta 27 — boutons primaires, accents */
	--magenta:     #950095;   /* avatars / dégradés */
	--dark:        #2a2030;   /* titres, fond CTA */
	--mortar:      #5b4f5e;   /* texte courant */
	--monsoon:     #8a8189;   /* texte discret */
	--yellow:      #f0aa48;   /* manuscrit (Caveat), accents chaleureux */
	--orange:      #e46f29;   /* accent orange profond */
	--cream:       #faf6f1;   /* fond de page */
	--cream-2:     #f3ece2;   /* fond doux */
	--whiterock:   #ece3d6;   /* bordures claires */
	--bone:        #e2d6c4;   /* bordures dorées */
	--amour:       #f6e3ee;   /* fond carte featured */
	--rose:        #dfc1cc;   /* bordure rose */
	--white:       #ffffff;

	/* Typo */
	--font-head: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-script: 'Caveat', cursive;

	/* Mesures */
	--container: 1240px;
	--radius: 24px;
	--radius-sm: 16px;
	--shadow-card: 0 2px 6px rgba(42,32,48,.04), 0 22px 55px rgba(42,32,48,.07);
	--shadow-soft: 0 1px 3px rgba(42,32,48,.04), 0 11px 33px rgba(42,32,48,.06);
	--ease: cubic-bezier(.22,.61,.36,1);
}

/* ------------------------------- Reset --------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 300;
	color: var(--mortar);
	background: var(--cream);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--dark); margin: 0; line-height: 1.1; }

.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: 32px;
}
.container--narrow { max-width: 760px; }

.section { padding-block: 110px; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0);
	white-space: nowrap; border: 0;
}
.skip-link:focus {
	position: fixed; top: 12px; left: 12px;
	width: auto; height: auto; clip: auto;
	padding: 12px 20px; background: var(--dark); color: #fff;
	z-index: 1000; border-radius: 8px;
}

/* --------------------------- Éléments communs -------------------------- */
.script {
	font-family: var(--font-script);
	color: var(--yellow);
	font-weight: 500;
	line-height: 1;
}
.script--lg { display: block; }

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--plum);
	margin-bottom: 22px;
}
.eyebrow::before {
	content: "";
	width: 28px; height: 2px;
	background: var(--yellow);
	border-radius: 2px;
}

.section__title {
	font-size: clamp(2rem, 1rem + 2.6vw, 3.1rem);
	font-weight: 700;
	letter-spacing: -.01em;
}
.section__title .script {

	font-size: 1.15em;
	margin-bottom: -.1em;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(255,255,255,.7);
	border: 1px solid var(--whiterock);
	border-radius: 999px;
	padding: 9px 18px;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 13px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--mortar);
	backdrop-filter: blur(6px);
}
.badge__dot { width: 8px; height: 8px; border-radius: 2px; background: var(--plum); }

/* ------------------------------- Boutons ------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 16px;
	border-radius: 999px;
	padding: 13px 22px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
	white-space: nowrap;
}
.btn--lg { padding: 17px 28px; font-size: 17px; }
.btn:hover { transform: translateY(-2px); }

.btn__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px; height: 28px;
	border-radius: 10px;
	background: rgba(255,255,255,.18);
	flex: none;
	transition: transform .2s var(--ease);
}
.btn:hover .btn__icon { transform: translateX(3px); }
.btn__icon--light { background: var(--cream-2); color: var(--dark); }
.btn__icon--accent { background: var(--yellow); color: #fff; }

.btn--primary { background: var(--plum); color: #fff; box-shadow: 0 10px 24px rgba(107,31,90,.25); }
.btn--primary:hover { box-shadow: 0 14px 30px rgba(107,31,90,.32); }

.btn--outline { background: transparent; color: var(--dark); border-color: var(--bone); }
.btn--outline:hover { background: #fff; }

.btn--dark { background: var(--dark); color: #fff; }
.btn--dark:hover { box-shadow: 0 14px 30px rgba(42,32,48,.25); }

.btn--light { background: #fff; color: var(--dark); }
.btn--ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.22); }
.btn--ghost:hover { background: rgba(255,255,255,.14); }

/* =============================== NAV ================================== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled {
	background: rgba(250,246,241,.85);
	backdrop-filter: blur(12px);
	box-shadow: 0 1px 0 rgba(42,32,48,.06);
}
.nav {
	max-width: 1400px;
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 22px 40px;
}
.nav__logo img { height: 56px; width: auto; }

.nav__center { display: flex; }
.nav__menu-cta { display: none; } /* visible uniquement dans le menu burger déplié */
.nav__list {
	display: flex;
	align-items: center;
	gap: 4px;
	background: rgba(255,255,255,.6);
	border: 1px solid var(--whiterock);
	border-radius: 999px;
	padding: 7px;
	backdrop-filter: blur(6px);
}
.nav__list a,
.nav__item > a {
	display: block;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 16px;
	color: var(--mortar);
	padding: 10px 18px;
	border-radius: 999px;
	transition: background .2s var(--ease), color .2s var(--ease);
}
.nav__list a:hover { color: var(--dark); }
.nav__item--active > a,
.current-menu-item > a {
	background: var(--cream-2);
	color: var(--dark);
}

.nav__actions { display: flex; align-items: center; gap: 16px; }
.nav__phone {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 16px;
	color: var(--mortar);
	padding: 12px 18px;
	border-radius: 999px;
}
.nav__phone svg { color: var(--plum); }
.nav__phone:hover { color: var(--dark); }

.nav__toggle {
	display: none;
	flex-direction: column;
	gap: 7px;
	width: 34px; height: 34px;
	border: 0;
	background: none;
	padding: 0;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 120;
}
.nav__toggle span {
	width: 26px; height: 1px;
	background: var(--dark);
	transition: transform .3s var(--ease), opacity .2s var(--ease);
}
body.nav-open .nav__toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav__toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =============================== HERO ================================= */
.hero { position: relative; padding-block: 40px 90px; overflow: hidden; }
.hero__blobs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(60px); }
.hero__blob--plum   { width: 620px; height: 620px; top: -180px; left: -180px; background: var(--plum); opacity: .14; }
.hero__blob--yellow { width: 520px; height: 520px; top: 120px; right: -150px; background: var(--yellow); opacity: .22; }
.hero__blob--orange { width: 440px; height: 440px; bottom: -200px; left: 40%; background: var(--orange); opacity: .12; }

.hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.12fr .88fr;
	gap: 64px;
	align-items: center;
	padding-top: 30px;
}

.hero__title {
	font-size: clamp(2.6rem, 1.2rem + 4.2vw, 4.6rem);
	font-weight: 700;
	letter-spacing: -.03em;
	color: var(--dark);
	margin: 26px 0 0;
}
.hero__title .script--lg {
	font-size: 1.05em;
	letter-spacing: 0;
	margin-top: .05em;
}
.hero__lead {
	font-size: clamp(1.05rem, .95rem + .4vw, 1.35rem);
	color: var(--mortar);
	max-width: 40ch;
	margin: 26px 0 0;
	line-height: 1.55;
}
.hero__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 34px;
}
.hero__or {
	font-family: var(--font-head);
	font-weight: 300;
	font-size: 14px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--monsoon);
}
.hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid var(--whiterock);
}
.hero__trust li {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 16px;
	color: var(--mortar);
}
.hero__trust svg { color: var(--plum); flex: none; }

/* Média héros */
.hero__media { position: relative; align-self: stretch; min-height: 540px; }
.hero__photo {
	position: relative;
	margin-left: auto;
	width: min(100%, 460px);
	aspect-ratio: 535 / 666;
	border-radius: 230px 230px 28px 28px;
	overflow: hidden;
	background: linear-gradient(180deg, var(--whiterock), #e9d4ba);
	box-shadow: var(--shadow-card);
}
.hero__photo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

.hero__stamp {
	position: absolute;
	top: 14px;
	right: -6px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 104px; height: 104px;
	border-radius: 50%;
	background: var(--yellow);
	border: 5px solid #fff;
	color: #fff;
	transform: rotate(-8deg);
	box-shadow: var(--shadow-soft);
	text-align: center;
}
.hero__stamp-top {
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	opacity: .85;
}
.hero__stamp-script {
	font-family: var(--font-script);
	font-size: 22px;
	line-height: 1;
	font-weight: 600;
}

.hero__card {
	position: absolute;
	left: -10px;
	bottom: 56px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	background: rgba(255,255,255,.94);
	border: 1px solid var(--whiterock);
	border-radius: var(--radius);
	padding: 18px 26px;
	box-shadow: var(--shadow-soft);
	backdrop-filter: blur(6px);
}
.hero__card strong { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--dark); }
.hero__card span { font-size: 14px; color: var(--mortar); letter-spacing: .03em; }

.hero__quote {
	position: absolute;
	right: -14px;
	bottom: 86px;
	max-width: 250px;
	background: var(--dark);
	color: var(--cream);
	border-radius: var(--radius);
	padding: 22px 24px;
	font-size: 16px;
	line-height: 1.5;
	box-shadow: var(--shadow-soft);
}

/* ============================ BANDE PARTENAIRES ===================== */
.strip {
	border-block: 1px solid var(--whiterock);
	background: rgba(255,255,255,.4);
}
.strip__inner {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 18px 40px;
	padding-block: 26px;
}
.strip__label {
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 13px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--monsoon);
	padding-right: 24px;
	border-right: 1px solid var(--whiterock);
}
.strip__list {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 34px;
	align-items: center;
}
.strip__list li {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 16px;
	color: var(--mortar);
}
.strip__dot { width: 7px; height: 7px; border-radius: 2px; background: var(--orange); }

/* =============================== OFFRES ============================== */
.offers__head {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 48px;
	align-items: end;
	margin-bottom: 56px;
}
.offers__intro { font-size: 17px; color: var(--mortar); max-width: 38ch; }

.offers__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--whiterock);
	border-radius: var(--radius);
	padding: 36px 34px 30px;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-card);
	background: linear-gradient(180deg, var(--amour), #fff 70%);
	border-color: var(--rose);
}
.card__num {
	position: absolute;
	top: 30px; right: 32px;
	font-family: var(--font-script);
	font-size: 30px;
	color: var(--bone);
	font-weight: 600;
}
.card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px; height: 58px;
	border-radius: 50%;
	background: var(--cream-2);
	color: var(--plum);
	margin-bottom: 26px;
}
.card:hover .card__icon { background: #fff; }
.card__title { font-size: 22px; font-weight: 700; margin-bottom: 14px; }
.card__text { font-size: 16px; color: var(--mortar); margin: 0 0 22px; }
.card__list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.card__list li {
	position: relative;
	padding-left: 22px;
	font-size: 15.5px;
	color: var(--mortar);
}
.card__list li::before {
	content: "";
	position: absolute;
	left: 0; top: 9px;
	width: 7px; height: 7px;
	border-radius: 2px;
	background: var(--orange);
}
.card__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: auto;
	padding-top: 20px;
	border-top: 1px solid var(--whiterock);
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 15px;
	color: var(--dark);
}
.card__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px; height: 38px;
	border-radius: 50%;
	background: var(--cream-2);
	color: var(--plum);
	flex: none;
	transition: transform .2s var(--ease), background .2s var(--ease);
}
.card__link:hover .card__arrow { transform: translateX(3px); background: var(--yellow); color: #fff; }

/* =============================== À PROPOS =========================== */
.about { background: linear-gradient(180deg, #fff, var(--cream)); }
.about__inner {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 70px;
	align-items: center;
}
.about__photo {
	width: 100%;
	max-width: 440px;
	margin-inline: auto;
	aspect-ratio: 1;
	border-radius: 50%;
	overflow: hidden;
	background: linear-gradient(180deg, var(--whiterock), #e9d4ba);
	box-shadow: var(--shadow-card);
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.about__text { font-size: 17px; color: var(--mortar); margin: 0 0 18px; line-height: 1.7; max-width: 56ch; }
.about__content .section__title { margin-bottom: 24px; }

.about__values {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin: 34px 0 28px;
}
.value {
	background: #fff;
	border: 1px solid var(--whiterock);
	border-radius: var(--radius-sm);
	padding: 22px 20px;
}
.value h3 {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--plum);
	margin-bottom: 10px;
}
.value p { font-size: 14.5px; color: var(--mortar); margin: 0; line-height: 1.5; }

.about__chips { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.about__chips li {
	font-size: 13px;
	color: var(--mortar);
	background: rgba(255,255,255,.7);
	border: 1px solid var(--whiterock);
	border-radius: 999px;
	padding: 8px 16px;
}

/* =============================== AVIS =============================== */
.reviews .section__title { margin-bottom: 56px; }

/* Disposition statique (3 avis ou moins). */
.reviews__slider:not(.is-slider) .reviews__track {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	align-items: start;
}

/* Slider (plus de 3 avis). */
.reviews__slider.is-slider { position: relative; }
.reviews__viewport { overflow: hidden; }
.reviews__slider.is-slider .reviews__track {
	display: flex;
	gap: 28px;
	align-items: stretch;
	transition: transform .45s cubic-bezier(.4, 0, .2, 1);
	will-change: transform;
}
.reviews__slider.is-slider .reviews__track > .review {
	flex: 0 0 calc((100% - 2 * 28px) / 3);
}

.reviews__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-top: 40px;
}
.reviews__nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px; height: 44px;
	border-radius: 50%;
	border: 1px solid var(--whiterock);
	background: #fff;
	color: var(--dark);
	cursor: pointer;
	transition: background .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease;
}
.reviews__nav:hover { background: linear-gradient(135deg, var(--magenta), var(--plum)); border-color: transparent; color: #fff; }
.reviews__nav:disabled { opacity: .35; cursor: default; }
.reviews__nav:disabled:hover { background: #fff; color: var(--dark); border-color: var(--whiterock); }

.reviews__dots {
	display: flex;
	align-items: center;
	gap: 9px;
}
.reviews__dot {
	width: 9px; height: 9px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--whiterock);
	cursor: pointer;
	transition: background .2s ease, transform .2s ease, width .2s ease;
}
.reviews__dot.is-active {
	width: 24px;
	border-radius: 6px;
	background: linear-gradient(135deg, var(--magenta), var(--plum));
}

.review {
	position: relative;
	background: #fff;
	border: 1px solid var(--whiterock);
	border-radius: var(--radius);
	padding: 32px 30px 26px;
}
.review:nth-child(2) { background: var(--cream-2); }
.review__stars { color: var(--yellow); font-size: 18px; letter-spacing: 3px; margin-bottom: 14px; }
.review__mark {
	font-family: Georgia, serif;
	font-size: 42px;
	line-height: 0;
	color: var(--rose);
	display: inline-block;
	vertical-align: -12px;
	margin-right: 4px;
}
.review__text { display: inline; font-size: 15.5px; color: var(--mortar); line-height: 1.6; }
.review__author {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--whiterock);
}
.review__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px; height: 42px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--magenta), var(--plum));
	color: #fff;
	font-family: var(--font-head);
	font-weight: 600;
	flex: none;
}
.review__meta { display: flex; flex-direction: column; }
.review__meta strong { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--dark); }
.review__meta small { font-size: 13px; color: var(--monsoon); }

/* ============================ PARTENAIRES =========================== */
.partners .section__title { margin-bottom: 48px; }
.partners__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.partners__item {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 96px;
	background: #fff;
	border: 1px solid var(--bone);
	border-radius: var(--radius-sm);
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 17px;
	color: var(--mortar);
	transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.partners__item:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }

/* =============================== CTA =============================== */
.cta__box {
	position: relative;
	overflow: hidden;
	border-radius: 36px;
	background: linear-gradient(120deg, #1f1726 0%, var(--dark) 45%, #3a2240 100%);
	padding: 70px 64px;
	color: var(--cream);
}
.cta__blobs span {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
}
.cta__blobs span:first-child { width: 360px; height: 360px; top: -120px; right: -80px; background: var(--magenta); opacity: .35; }
.cta__blobs span:last-child { width: 320px; height: 320px; bottom: -140px; left: 30%; background: var(--orange); opacity: .2; }

.cta__content {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 56px;
	align-items: center;
}
.cta__title { font-size: clamp(1.9rem, 1.1rem + 2.4vw, 2.9rem); font-weight: 700; color: #fff; }
.cta__title .script { display: block; color: var(--yellow); font-size: 1.05em; margin-bottom: .05em; }
.cta__lead { font-size: 17px; color: rgba(250,246,241,.75); margin: 22px 0 32px; max-width: 46ch; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 16px; }

.cta__contact {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding-left: 48px;
	border-left: 1px solid rgba(255,255,255,.14);
}
.cta__contact li { display: flex; align-items: center; gap: 14px; font-size: 16px; color: rgba(250,246,241,.85); }
.cta__contact svg { color: var(--yellow); flex: none; }
.cta__contact a:hover { color: #fff; }

/* =============================== FOOTER ============================ */
.site-footer {
	background: var(--cream-2);
	padding-block: 64px 36px;
}
.footer__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
	gap: 48px;
	padding-bottom: 40px;
}
.footer__logo img { height: 54px; width: auto; margin-bottom: 20px; }
.footer__desc { font-size: 15px; color: var(--mortar); margin: 0 0 22px; line-height: 1.6; max-width: 30ch; }
.footer__sign { font-family: var(--font-script); font-size: 26px; color: var(--plum); font-weight: 600; margin: 0; }
.footer__title {
	font-family: var(--font-head);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--monsoon);
	margin-bottom: 22px;
}
.footer__menu { display: flex; flex-direction: column; gap: 14px; }
.footer__menu a, .footer__plain { font-size: 15.5px; color: var(--mortar); transition: color .2s var(--ease); }
.footer__menu a:hover { color: var(--dark); }

.footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	padding-top: 28px;
	border-top: 1px solid var(--bone);
	font-size: 14px;
	color: var(--monsoon);
}
.footer__bottom a:hover { color: var(--dark); }

/* =============================== RESPONSIVE ========================= */
/* Navbar — étape 1 : on masque le numéro de téléphone */
@media (max-width: 1440px) {
	.nav { gap: 18px; padding-inline: 32px; }
	.nav__phone { display: none; }
}

@media (max-width: 1080px) {
	.hero__inner { grid-template-columns: 1fr; gap: 48px; }
	.hero__media { min-height: 0; max-width: 460px; margin-inline: auto; }
	.about__inner { grid-template-columns: 1fr; gap: 48px; }
	.about__photo { max-width: 360px; }
	.cta__content { grid-template-columns: 1fr; gap: 36px; }
	.cta__contact { padding-left: 0; border-left: 0; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.14); }
	.reviews__slider.is-slider .reviews__track > .review { flex-basis: calc((100% - 28px) / 2); }
}

/* Navbar — étape 2 : on réduit le logo et le bouton de contact */
@media (max-width: 1440px) {
	.nav { gap: 14px; padding-inline: 28px; }
	.nav__logo img { height: 46px; }
	.nav__list a,
	.nav__item > a { font-size: 15px; padding: 9px 14px; }
	.nav__cta { font-size: 14px; padding: 11px 16px; gap: 8px; }
	.nav__cta .btn__icon { display: none; }
}

/* Hero : on masque la photo et ses éléments décoratifs (quote, stamp, card). */
@media (max-width: 1080px) {
	.hero__media { display: none; }
}

@media (max-width: 920px) {
	/* Dès l'apparition du burger : on masque le menu et le bouton de contact. */
	.nav__center,
	.nav__actions { display: none; }
	.nav__toggle { display: flex; }
	.nav__menu-cta { display: none; }


	/* Menu déplié : plein écran, éléments alignés à droite, CTA tout en bas. */
	body.nav-open { overflow: hidden; }
	/* Le backdrop-filter du header scrollé crée un containing block qui
	   empêche le menu fixe de couvrir tout le viewport : on le neutralise. */
	body.nav-open .site-header,
	body.nav-open .site-header.is-scrolled { backdrop-filter: none; }
	body.nav-open .nav__center {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-end;
		gap: 28px;
		position: fixed;
		inset: 0;
		z-index: 99;
		background: var(--cream, #fff);
		padding: 120px 40px 48px;
		overflow-y: auto;
	}
	body.nav-open .nav__list {
		flex-direction: column;
		align-items: flex-end;
		width: 100%;
		gap: 4px;
		background: none;
		border: 0;
		border-radius: 0;
		padding: 0;
		backdrop-filter: none;
	}
	body.nav-open .nav__list a,
	body.nav-open .nav__item > a {
		text-align: right;
		font-size: clamp(1.6rem, 1.2rem + 2.4vw, 2.4rem);
		font-weight: 500;
		padding: 6px 18px;
	}
	body.nav-open .nav__menu-cta {
		display: inline-flex;
		margin-top: 16px;
	}

	.offers__head { grid-template-columns: 1fr; gap: 20px; }
	.offers__grid,
	.reviews__slider:not(.is-slider) .reviews__track,
	.partners__grid { grid-template-columns: 1fr; }
	.about__values { grid-template-columns: 1fr; }
	.footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
	.footer__brand { grid-column: 1 / -1; }
	.section { padding-block: 80px; }
}

@media (max-width: 560px) {
	.container { padding-inline: 20px; }
	.nav { padding: 16px 20px; }
	.hero__actions { flex-direction: column; align-items: stretch; }
	.hero__or { text-align: center; }
	.btn { justify-content: center; }
	/* Boutons du hero : on réduit la taille et on autorise le retour à la ligne. */
	.hero__actions .btn { font-size: 15px; padding: 13px 18px; white-space: normal; }
	.hero__actions .btn--lg { font-size: 15px; padding: 14px 18px; }
	.hero__quote { right: 0; max-width: 200px; font-size: 14px; }
	.hero__card { left: 0; }
	.cta__box { padding: 44px 26px; border-radius: 28px; }
	.cta__actions { flex-direction: column; }
	.reviews__slider.is-slider .reviews__track > .review { flex-basis: 100%; }
	.footer__grid { grid-template-columns: 1fr; }
	.footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* =========================================================================
   PAGE ENTREPRISE
   ========================================================================= */

/* Variante d'eyebrow plus discrète + sur fond sombre. */
.eyebrow--sm { font-size: 12px; gap: 10px; margin-bottom: 16px; }
.eyebrow--sm::before { width: 20px; }
.eyebrow--light { color: var(--yellow); }
.eyebrow--light::before { background: var(--yellow); }

/* Titre avec script en seconde ligne (dark puis script). */
.section__title--flip .script { display: block; font-size: 1.15em; margin-top: .04em; margin-bottom: 0; }

/* Icône carrée arrondie commune aux cartes Entreprise. */
.ent-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px; height: 48px;
	border-radius: 14px;
	background: var(--amour);
	color: var(--magenta);
	flex: none;
}

/* En-tête de section : titre à gauche, intro à droite. */
.ent-head {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 48px;
	align-items: end;
	margin-bottom: 56px;
}
.ent-head__intro { font-size: 16px; color: var(--monsoon); max-width: 34ch; }

/* ------------------------------- HERO --------------------------------- */
.ent-hero {
	position: relative;
	overflow: hidden;
	padding-block: 70px 80px;
	background: linear-gradient(105deg, #f3e1ee 0%, #f8efe8 46%, #f8ecd9 100%);
}
.ent-hero__blobs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.ent-hero__blob { position: absolute; border-radius: 50%; filter: blur(80px); }
.ent-hero__blob--rose  { width: 560px; height: 560px; top: -160px; left: -120px; background: var(--magenta); opacity: .12; }
.ent-hero__blob--peach { width: 620px; height: 620px; top: -80px; right: -200px; background: var(--yellow); opacity: .16; }

.ent-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.25fr .85fr;
	gap: 64px;
	align-items: center;
}
.ent-hero__title {
	font-size: clamp(2.4rem, 1.1rem + 4vw, 4.4rem);
	font-weight: 700;
	letter-spacing: -.03em;
	color: var(--dark);
	margin: 22px 0 0;
}
.ent-hero__title .script--lg {
	font-size: .62em;
	letter-spacing: 0;
	margin-bottom: .05em;
}
.ent-hero__text {
	font-size: 17px;
	color: var(--mortar);
	line-height: 1.7;
	margin: 0;
}
.ent-hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 28px;
	margin-top: 26px;
	padding-top: 24px;
	border-top: 1px solid var(--whiterock);
}
.ent-hero__trust li {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 14.5px;
	color: var(--mortar);
}
.ent-hero__trust svg { color: var(--plum); flex: none; }

/* ------------------------------ SECTEURS ------------------------------ */
.ent-sectors {
	border-block: 1px solid var(--whiterock);
	background: rgba(255,255,255,.45);
}
.ent-sectors__inner {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px 28px;
	padding-block: 22px;
}
.ent-sectors__label {
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 13px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--monsoon);
	padding-right: 24px;
	border-right: 1px solid var(--whiterock);
}
.ent-sectors__list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 26px;
	align-items: center;
}
.ent-sectors__list li {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 15.5px;
	color: var(--mortar);
}
.ent-sectors__dot { width: 6px; height: 6px; border-radius: 2px; background: var(--plum); }
.ent-sectors__zone {
	margin-left: auto;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 13px;
	letter-spacing: .04em;
	color: var(--monsoon);
}

/* ----------------------------- SITUATIONS ----------------------------- */
.ent-sit-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.ent-sit {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--whiterock);
	border-radius: var(--radius);
	padding: 30px 30px 28px;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.ent-sit:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.ent-sit__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 22px;
}
.ent-sit__num {
	font-family: var(--font-script);
	font-size: 30px;
	font-weight: 600;
	color: var(--bone);
	line-height: 1;
}
.ent-sit__title { font-size: 21px; font-weight: 700; margin-bottom: 12px; }
.ent-sit__text { font-size: 15.5px; color: var(--mortar); margin: 0 0 26px; line-height: 1.6; }
.ent-sit__reply {
	margin-top: auto;
	padding-top: 20px;
	border-top: 1px dashed var(--whiterock);
}
.ent-sit__reply-label {
	display: block;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--monsoon);
	margin-bottom: 10px;
}
.ent-sit__reply-value {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 15px;
	color: var(--dark);
}
.ent-sit__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px; height: 26px;
	border-radius: 8px;
	background: var(--amour);
	color: var(--magenta);
	flex: none;
}

/* ---------------------------- INTERVENTIONS --------------------------- */
.ent-int-head { margin-bottom: 50px; max-width: 40ch; }
.ent-int-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}
.ent-int-col {
	background: #fff;
	border: 1px solid var(--whiterock);
	border-radius: var(--radius);
	padding: 34px 32px;
}
.ent-int-col__title { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.ent-int-col__intro { font-size: 15px; color: var(--mortar); margin: 0 0 24px; line-height: 1.6; }

.ent-acc { display: flex; flex-direction: column; gap: 12px; }
.ent-acc__item {
	border: 1px solid var(--whiterock);
	border-radius: var(--radius-sm);
	background: var(--cream);
	overflow: hidden;
	transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.ent-acc__item[open] {
	background: #fff;
	border-color: var(--rose);
	box-shadow: var(--shadow-soft);
}
.ent-acc__summary {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 18px;
	cursor: pointer;
	list-style: none;
}
.ent-acc__summary::-webkit-details-marker { display: none; }
.ent-acc__letter {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px; height: 32px;
	border-radius: 9px;
	background: var(--amour);
	color: var(--magenta);
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 14px;
	flex: none;
}
.ent-acc__item[open] .ent-acc__letter { background: var(--magenta); color: #fff; }
.ent-acc__label {
	flex: 1;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 15.5px;
	color: var(--dark);
}
.ent-acc__chevron {
	display: inline-flex;
	color: var(--monsoon);
	flex: none;
	transition: transform .25s var(--ease);
}
.ent-acc__item[open] .ent-acc__chevron { transform: rotate(180deg); color: var(--plum); }
.ent-acc__body { padding: 0 18px 18px 64px; }
.ent-acc__text { font-size: 14.5px; color: var(--mortar); margin: 0 0 12px; line-height: 1.6; }
.ent-acc__meta {
	display: inline-block;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 12.5px;
	letter-spacing: .03em;
	color: var(--plum);
	background: var(--amour);
	border-radius: 999px;
	padding: 5px 14px;
}

/* ------------------------------ RAISONS ------------------------------- */
.ent-reasons { background: linear-gradient(180deg, #fff, var(--cream)); }
.ent-reason-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.ent-reason {
	background: #fff;
	border: 1px solid var(--whiterock);
	border-radius: var(--radius);
	padding: 30px 28px;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.ent-reason:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.ent-reason__title { font-size: 17.5px; font-weight: 700; margin: 22px 0 14px; line-height: 1.25; }
.ent-reason__text { font-size: 14.5px; color: var(--mortar); margin: 0; line-height: 1.6; }

/* ------------------------------- ÉTAPES ------------------------------- */
.ent-step-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.ent-step {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	background: #fff;
	border: 1px solid var(--whiterock);
	border-radius: var(--radius);
	padding: 32px 30px 28px;
}
.ent-step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px; height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--magenta), var(--plum));
	color: #fff;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 22px;
}
.ent-step__label {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--monsoon);
	margin-bottom: 10px;
}
.ent-step__title { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.ent-step__text { font-size: 15px; color: var(--mortar); margin: 0 0 22px; line-height: 1.6; }
.ent-step__chip {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-top: auto;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 13.5px;
	color: var(--plum);
	background: var(--cream-2);
	border-radius: 999px;
	padding: 8px 16px;
}
.ent-step__chip svg { color: var(--plum); flex: none; }

/* ------------------------------ CONTACT ------------------------------- */
.ent-contact__box {
	display: grid;
	grid-template-columns: .82fr 1.18fr;
	border-radius: 36px;
	overflow: hidden;
	box-shadow: var(--shadow-card);
	background: #fff;
}
.ent-contact__aside {
	position: relative;
	overflow: hidden;
	background: linear-gradient(150deg, #1f1726 0%, var(--dark) 50%, #3a2240 100%);
	color: var(--cream);
	padding: 56px 48px;
}
.ent-contact__blobs span {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
}
.ent-contact__blobs span:first-child { width: 320px; height: 320px; top: -120px; right: -90px; background: var(--magenta); opacity: .4; }
.ent-contact__blobs span:last-child { width: 280px; height: 280px; bottom: -120px; left: -80px; background: var(--orange); opacity: .22; }
.ent-contact__aside-inner { position: relative; z-index: 1; }
.ent-contact__title {
	font-family: var(--font-head);
	font-size: clamp(1.8rem, 1.2rem + 1.6vw, 2.5rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.1;
}
.ent-contact__title .script { display: block; color: var(--yellow); font-size: 1.1em; margin-bottom: .02em; }
.ent-contact__lead { font-size: 15.5px; color: rgba(250,246,241,.75); margin: 22px 0 30px; line-height: 1.65; }
.ent-contact__points { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.ent-contact__points li {
	display: flex;
	align-items: flex-start;
	gap: 13px;
	font-size: 15px;
	color: rgba(250,246,241,.9);
	line-height: 1.5;
}
.ent-contact__points svg { color: var(--yellow); flex: none; margin-top: 1px; }
.ent-contact__sign { font-family: var(--font-script); font-size: 28px; color: var(--yellow); font-weight: 600; margin: 0; }

.ent-contact__form-wrap { padding: 52px 48px; }
.ent-form__title { font-size: clamp(1.4rem, 1rem + 1vw, 1.85rem); font-weight: 700; margin-bottom: 12px; }
.ent-form__intro { font-size: 15px; color: var(--monsoon); margin: 0 0 30px; line-height: 1.6; }

.ent-form { display: flex; flex-direction: column; gap: 20px; }
.ent-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ent-field { display: flex; flex-direction: column; gap: 8px; border: 0; padding: 0; margin: 0; min-width: 0; }
.ent-field--full { grid-column: 1 / -1; }
.ent-field__label {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 12.5px;
	letter-spacing: .06em;
	color: var(--dark);
	padding: 0;
}
.ent-field input[type="text"],
.ent-field input[type="email"],
.ent-field select,
.ent-field textarea {
	width: 100%;
	font-family: var(--font-body);
	font-size: 15px;
	color: var(--dark);
	background: var(--cream);
	border: 1px solid var(--whiterock);
	border-radius: 12px;
	padding: 13px 16px;
	transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.ent-field textarea { resize: vertical; line-height: 1.6; }
.ent-field input:focus,
.ent-field select:focus,
.ent-field textarea:focus {
	outline: none;
	background: #fff;
	border-color: var(--plum);
	box-shadow: 0 0 0 3px rgba(107,31,90,.12);
}
.ent-field input::placeholder,
.ent-field textarea::placeholder { color: var(--monsoon); }

.ent-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.ent-chip { cursor: pointer; }
.ent-chip input { position: absolute; opacity: 0; pointer-events: none; }
.ent-chip span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 14px;
	color: var(--mortar);
	background: var(--cream);
	border: 1px solid var(--whiterock);
	border-radius: 999px;
	padding: 9px 16px;
	transition: all .2s var(--ease);
}
.ent-chip span::before {
	content: "";
	width: 7px; height: 7px;
	border-radius: 50%;
	background: var(--bone);
	transition: background .2s var(--ease);
}
.ent-chip input:checked + span {
	background: var(--amour);
	border-color: var(--rose);
	color: var(--plum);
}
.ent-chip input:checked + span::before { background: var(--magenta); }
.ent-chip input:focus-visible + span { box-shadow: 0 0 0 3px rgba(107,31,90,.15); }

.ent-urgency { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ent-urgency__opt {
	display: flex;
	flex-direction: column;
	gap: 3px;
	text-align: center;
	cursor: pointer;
	background: var(--cream);
	border: 1px solid var(--whiterock);
	border-radius: 14px;
	padding: 14px 12px;
	transition: all .2s var(--ease);
}
.ent-urgency__opt input { position: absolute; opacity: 0; pointer-events: none; }
.ent-urgency__top { font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: var(--dark); }
.ent-urgency__sub { font-size: 12.5px; color: var(--monsoon); }
.ent-urgency__opt:has(input:checked) {
	background: linear-gradient(135deg, var(--magenta), var(--plum));
	border-color: transparent;
}
.ent-urgency__opt:has(input:checked) .ent-urgency__top,
.ent-urgency__opt:has(input:checked) .ent-urgency__sub { color: #fff; }
.ent-urgency__opt:has(input:focus-visible) { box-shadow: 0 0 0 3px rgba(107,31,90,.15); }

.ent-consent {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 13.5px;
	color: var(--monsoon);
	line-height: 1.55;
	cursor: pointer;
}
.ent-consent input { margin-top: 3px; flex: none; accent-color: var(--plum); }
.ent-consent a { color: var(--plum); text-decoration: underline; }

.ent-form__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 6px;
}
.ent-form__note { font-size: 13px; color: var(--monsoon); }

/* --------------------------- RESPONSIVE ENT --------------------------- */
@media (max-width: 1080px) {
	.ent-hero__inner { grid-template-columns: 1fr; gap: 36px; }
	.ent-head { grid-template-columns: 1fr; gap: 18px; }
	.ent-head__intro { max-width: 52ch; }
	.ent-reason-grid { grid-template-columns: repeat(2, 1fr); }
	.ent-contact__box { grid-template-columns: 1fr; }
}

@media (max-width: 920px) {
	.ent-sit-grid,
	.ent-int-grid,
	.ent-step-grid { grid-template-columns: 1fr; }
	.ent-sectors__zone { margin-left: 0; }
}

@media (max-width: 560px) {
	.ent-form__row { grid-template-columns: 1fr; }
	.ent-urgency { grid-template-columns: 1fr; }
	.ent-reason-grid { grid-template-columns: 1fr; }
	.ent-contact__aside,
	.ent-contact__form-wrap { padding: 36px 24px; }
	.ent-acc__body { padding-left: 18px; }
	.ent-form__foot { flex-direction: column; align-items: stretch; }
	.ent-form__foot .btn { justify-content: center; }
}

@media (max-width: 400px) {
	.ent-contact__aside,
	.ent-contact__form-wrap { padding: 30px 18px; }
	.ent-form { gap: 16px; }
	.ent-form__foot .btn--lg { padding: 15px 20px; font-size: 15.5px; white-space: normal; text-align: center; }
}

/* =========================================================================
   PAGE CONTACT — design Figma « Contact »
   ========================================================================= */

/* En-tête de section partagé sur la page (titre à gauche, intro à droite). */
.con-head {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 48px;
	align-items: end;
	margin-bottom: 48px;
}
.con-head__intro { font-size: 16px; color: var(--monsoon); max-width: 40ch; }

/* ------------------------------- HERO --------------------------------- */
.con-hero {
	position: relative;
	overflow: hidden;
	padding-block: 64px 72px;
	background: linear-gradient(100deg, #f3e1ee 0%, #fbf4ef 48%, #f8ecd9 100%);
}
.con-hero__blobs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.con-hero__blob { position: absolute; border-radius: 50%; filter: blur(90px); }
.con-hero__blob--rose   { width: 560px; height: 560px; top: -180px; left: -140px; background: var(--magenta); opacity: .12; }
.con-hero__blob--peach  { width: 520px; height: 520px; top: -40px; right: -160px; background: var(--yellow); opacity: .18; }
.con-hero__blob--peach2 { width: 420px; height: 420px; bottom: -220px; right: 18%; background: var(--orange); opacity: .10; }

.con-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 64px;
	align-items: center;
}
.con-hero__title {
	font-size: clamp(2.8rem, 1.8rem + 4vw, 5.4rem);
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: .98;
}
.con-hero__title .script--lg {
	color: var(--yellow);
	font-weight: 500;
	font-size: .92em;
	letter-spacing: 0;
	margin-top: .02em;
}
.con-hero__text { font-size: 17px; color: var(--mortar); line-height: 1.65; margin: 0 0 28px; }
.con-hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 28px;
	padding-top: 22px;
	border-top: 1px solid var(--whiterock);
}
.con-hero__trust li {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 14.5px;
	color: var(--mortar);
}
.con-hero__trust svg { color: var(--plum); flex: none; }

/* ------------------------------- FORMS -------------------------------- */
.con-forms { padding-block: 96px; }

.con-tablist {
	display: inline-flex;
	gap: 6px;
	background: var(--cream-2);
	border: 1px solid var(--whiterock);
	border-radius: 999px;
	padding: 7px;
	margin-bottom: 36px;
}
.con-tab {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 15px;
	color: var(--mortar);
	background: transparent;
	border: 0;
	border-radius: 999px;
	padding: 12px 22px;
	cursor: pointer;
	transition: background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
}
.con-tab svg { flex: none; opacity: .7; }
.con-tab:hover { color: var(--plum); }
.con-tab.is-active {
	background: var(--plum);
	color: #fff;
	box-shadow: 0 8px 20px rgba(107,31,90,.22);
}
.con-tab.is-active svg { opacity: 1; }
.con-tab:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(107,31,90,.2); }

.con-forms__grid {
	display: grid;
	grid-template-columns: 1.6fr .9fr;
	gap: 28px;
	align-items: start;
}
.con-forms__main {
	background: #fff;
	border: 1px solid var(--whiterock);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
	padding: 44px;
}
.con-panel { display: none; }
.con-panel.is-active { display: block; }
.con-panel__head { margin-bottom: 30px; }
.con-panel__title { font-size: clamp(1.5rem, 1.1rem + 1vw, 2rem); font-weight: 700; margin-bottom: 10px; }
.con-panel__intro { font-size: 15.5px; color: var(--monsoon); margin: 0; line-height: 1.6; max-width: 52ch; }

/* Réutilise les motifs de formulaire de la page Entreprise. */
.con-form { display: flex; flex-direction: column; gap: 20px; }
.con-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.con-field { display: flex; flex-direction: column; gap: 8px; border: 0; padding: 0; margin: 0; min-width: 0; }
.con-field--full { grid-column: 1 / -1; }
.con-field__label {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 12.5px;
	letter-spacing: .06em;
	color: var(--dark);
	padding: 0;
}
.con-field input[type="text"],
.con-field input[type="email"],
.con-field input[type="tel"],
.con-field select,
.con-field textarea {
	width: 100%;
	font-family: var(--font-body);
	font-size: 15px;
	color: var(--dark);
	background: var(--cream);
	border: 1px solid var(--whiterock);
	border-radius: 12px;
	padding: 13px 16px;
	transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.con-field textarea { resize: vertical; line-height: 1.6; }
.con-field input:focus,
.con-field select:focus,
.con-field textarea:focus {
	outline: none;
	background: #fff;
	border-color: var(--plum);
	box-shadow: 0 0 0 3px rgba(107,31,90,.12);
}
.con-field input::placeholder,
.con-field textarea::placeholder { color: var(--monsoon); }

.con-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.con-chip { cursor: pointer; }
.con-chip input { position: absolute; opacity: 0; pointer-events: none; }
.con-chip span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 14px;
	color: var(--mortar);
	background: var(--cream);
	border: 1px solid var(--whiterock);
	border-radius: 999px;
	padding: 9px 16px;
	transition: all .2s var(--ease);
}
.con-chip span::before {
	content: "";
	width: 7px; height: 7px;
	border-radius: 50%;
	background: var(--bone);
	transition: background .2s var(--ease);
}
.con-chip input:checked + span {
	background: var(--amour);
	border-color: var(--rose);
	color: var(--plum);
}
.con-chip input:checked + span::before { background: var(--magenta); }
.con-chip input:focus-visible + span { box-shadow: 0 0 0 3px rgba(107,31,90,.15); }

.con-consent {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 13.5px;
	color: var(--monsoon);
	line-height: 1.55;
	cursor: pointer;
}
.con-consent input { margin-top: 3px; flex: none; accent-color: var(--plum); }
.con-consent a { color: var(--plum); text-decoration: underline; }

.con-form__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 6px;
}
.con-form__note { font-size: 13px; color: var(--monsoon); }

/* Aside « Sans engagement ». */
.con-forms__aside {
	position: relative;
	overflow: hidden;
	background: linear-gradient(155deg, #1f1726 0%, var(--dark) 48%, #3a2240 100%);
	border-radius: var(--radius);
	color: var(--cream);
	padding: 48px 40px;
}
.con-aside__blobs span { position: absolute; border-radius: 50%; filter: blur(80px); }
.con-aside__blobs span:first-child { width: 300px; height: 300px; top: -110px; right: -80px; background: var(--magenta); opacity: .42; }
.con-aside__blobs span:last-child { width: 260px; height: 260px; bottom: -120px; left: -70px; background: var(--orange); opacity: .22; }
.con-aside__inner { position: relative; z-index: 1; }
.con-aside__title {
	font-family: var(--font-head);
	font-size: clamp(1.8rem, 1.3rem + 1.4vw, 2.4rem);
	font-weight: 700;
	color: #fff;
	margin-bottom: 28px;
}
.con-aside__points { display: flex; flex-direction: column; gap: 18px; }
.con-aside__points li {
	display: flex;
	align-items: flex-start;
	gap: 13px;
	font-size: 14.5px;
	color: rgba(250,246,241,.88);
	line-height: 1.55;
}
.con-aside__points svg { color: var(--yellow); flex: none; margin-top: 1px; }

/* --------------------- VISITE — COORDONNÉES + LOCAUX -------------------- */
.con-visit { padding-top: 0; }
.con-visit__grid {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 48px;
	align-items: start;
}
.con-visit__info .section__title { margin-bottom: 32px; }

.con-coord { display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; }
.con-coord__item {
	display: flex;
	align-items: center;
	gap: 16px;
	background: #fff;
	border: 1px solid var(--whiterock);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-soft);
	padding: 16px 20px;
}
.con-coord__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px; height: 44px;
	border-radius: 12px;
	background: var(--amour);
	color: var(--plum);
	flex: none;
}
.con-coord__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.con-coord__label {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 11.5px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--monsoon);
}
.con-coord__value { font-family: var(--font-head); font-weight: 500; font-size: 16px; color: var(--dark); word-break: break-word; }
a.con-coord__value { transition: color .2s var(--ease); }
a.con-coord__value:hover { color: var(--plum); }

.con-hours {
	background: var(--cream-2);
	border: 1px solid var(--whiterock);
	border-radius: var(--radius-sm);
	padding: 22px 24px;
}
.con-hours__head {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 11.5px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--plum);
	margin-bottom: 14px;
}
.con-hours__list { margin: 0; }
.con-hours__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 0;
	border-top: 1px solid var(--whiterock);
}
.con-hours__row:first-child { border-top: 0; }
.con-hours__row dt { font-size: 14.5px; color: var(--mortar); }
.con-hours__time { font-family: var(--font-head); font-weight: 500; font-size: 14.5px; color: var(--dark); }
.con-hours__time--off { color: var(--monsoon); font-weight: 400; }

/* Galerie : 1 grande photo + 2 vignettes. */
.con-gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-auto-rows: 1fr;
	gap: 16px;
}
.con-gallery__item {
	position: relative;
	margin: 0;
	border-radius: var(--radius-sm);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	min-height: 200px;
}
.con-gallery__item--main { grid-column: 1 / -1; min-height: 300px; }
.con-gallery__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.con-gallery__cap {
	position: absolute;
	left: 12px; bottom: 12px;
	display: inline-flex;
	align-items: center;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 12.5px;
	color: var(--dark);
	background: rgba(255,255,255,.88);
	backdrop-filter: blur(6px);
	border-radius: 999px;
	padding: 7px 14px;
}

/* -------------------------------- MAP --------------------------------- */
.con-map { padding-top: 0; }
.con-map__box {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	background: #fff;
	border: 1px solid var(--whiterock);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
	overflow: hidden;
}
.con-map__info {
	display: flex;
	flex-direction: column;
	padding: 44px 40px;
}
.con-map__title {
	font-family: var(--font-head);
	font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2.1rem);
	font-weight: 700;
	line-height: 1.1;
	margin: 6px 0 16px;
}
.con-map__text { font-size: 15px; color: var(--monsoon); line-height: 1.65; margin: 0 0 24px; max-width: 34ch; }
.con-map__links { display: flex; flex-direction: column; gap: 12px; }
.con-map__link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 14.5px;
	color: var(--dark);
	transition: color .2s var(--ease);
}
.con-map__link svg { color: var(--plum); flex: none; }
.con-map__link:hover { color: var(--plum); }
.con-map__sign { margin: auto 0 0; font-size: 26px; color: var(--yellow); font-weight: 600; }

.con-map__canvas {
	position: relative;
	display: block;
	min-height: 320px;
	background: linear-gradient(135deg, #f6e7cf 0%, #f3ecd6 45%, #e9ead3 100%);
}
.con-map__frame {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}
.con-map__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.55) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.55) 1px, transparent 1px);
	background-size: 64px 64px;
	transform: rotate(-8deg) scale(1.3);
	opacity: .8;
}
.con-map__pin {
	position: absolute;
	top: 42%; left: 48%;
	transform: translate(-50%, -100%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	filter: drop-shadow(0 8px 14px rgba(42,32,48,.25));
}
.con-map__pin-label {
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 12px;
	color: var(--dark);
	background: #fff;
	border-radius: 999px;
	padding: 5px 12px;
	box-shadow: var(--shadow-soft);
	white-space: nowrap;
}
.con-map__cta {
	position: absolute;
	right: 18px; bottom: 18px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 13.5px;
	color: var(--dark);
	background: rgba(255,255,255,.92);
	backdrop-filter: blur(6px);
	border-radius: 999px;
	padding: 10px 16px;
	box-shadow: var(--shadow-soft);
	transition: transform .2s var(--ease);
}
.con-map__cta svg { color: var(--plum); }
.con-map__cta:hover { transform: translateY(-2px); }

/* ------------------------------ MINI FAQ ------------------------------ */
.con-faq__head { margin-bottom: 40px; max-width: 720px; }
.con-faq__intro { font-size: 16px; color: var(--monsoon); margin: 18px 0 0; line-height: 1.6; }
.con-faq__list { display: flex; flex-direction: column; gap: 14px; }
.con-faq__item {
	background: #fff;
	border: 1px solid var(--whiterock);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	transition: background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.con-faq__item[open] {
	background: var(--amour);
	border-color: var(--rose);
	box-shadow: 0 14px 36px rgba(107,31,90,.10);
}
.con-faq__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 26px 30px;
	cursor: pointer;
	list-style: none;
}
.con-faq__summary::-webkit-details-marker { display: none; }
.con-faq__q { font-family: var(--font-head); font-weight: 600; font-size: clamp(1rem, .95rem + .3vw, 1.18rem); color: var(--dark); }
.con-faq__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px; height: 30px;
	border-radius: 50%;
	background: var(--cream-2);
	color: var(--mortar);
	flex: none;
	transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.con-faq__item[open] .con-faq__icon {
	background: var(--plum);
	color: #fff;
	transform: rotate(45deg);
}
.con-faq__body { padding: 0 30px 28px; }
.con-faq__body p { margin: 0; font-size: 15.5px; color: var(--mortar); line-height: 1.7; max-width: 78ch; }

/* --------------------------- RESPONSIVE CONTACT --------------------------- */
@media (max-width: 1080px) {
	.con-hero__inner { grid-template-columns: 1fr; gap: 32px; }
	.con-head { grid-template-columns: 1fr; gap: 18px; }
	.con-forms__grid { grid-template-columns: 1fr; }
	.con-visit__grid { grid-template-columns: 1fr; gap: 40px; }
	.con-map__box { grid-template-columns: 1fr; }
	.con-map__canvas { min-height: 280px; }
}

@media (max-width: 620px) {
	.con-forms { padding-block: 72px; }
	.con-tablist { width: 100%; flex-direction: column; border-radius: var(--radius-sm); }
	.con-tab { justify-content: center; border-radius: 999px; }
	.con-forms__main { padding: 28px 22px; }
	.con-forms__aside { padding: 36px 26px; }
	.con-form__row { grid-template-columns: 1fr; }
	.con-form__foot { flex-direction: column; align-items: stretch; }
	.con-form__foot .btn { justify-content: center; }
	.con-gallery { grid-template-columns: 1fr; }
	.con-map__info { padding: 32px 24px; }
	.con-faq__summary { padding: 20px 22px; }
	.con-faq__body { padding: 0 22px 24px; }
}

@media (max-width: 400px) {
	.con-forms__main { padding: 24px 18px; }
	.con-forms__aside { padding: 30px 20px; }
	.con-form__foot .btn--lg { padding: 15px 20px; font-size: 15.5px; white-space: normal; text-align: center; }
}

/* =========================================================================
   PAGE QUI JE SUIS
   ========================================================================= */

/* Sur cette page, le manuscrit (script) est magenta plutôt que jaune. */
.qjs-hero .script,
.qjs-bio .script,
.qjs-parcours .script,
.qjs-valeurs .script,
.qjs-cta__card--particuliers .script { color: var(--magenta); }
.script--orange { color: var(--orange); }

/* ------------------------------- HERO --------------------------------- */
.qjs-hero {
	position: relative;
	overflow: hidden;
	padding-block: 70px 90px;
	background: linear-gradient(110deg, #f4e2f0 0%, #faf2ea 48%, #f9edda 100%);
}
.qjs-hero__blobs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.qjs-hero__blob { position: absolute; border-radius: 50%; filter: blur(90px); }
.qjs-hero__blob--rose  { width: 520px; height: 520px; top: -160px; left: -120px; background: var(--magenta); opacity: .14; }
.qjs-hero__blob--peach { width: 460px; height: 460px; bottom: -180px; right: -120px; background: var(--yellow); opacity: .18; }

.qjs-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 72px;
	align-items: center;
}
.qjs-hero__title {
	font-size: clamp(2.8rem, 1.2rem + 5vw, 5.2rem);
	font-weight: 700;
	letter-spacing: -.03em;
	color: var(--dark);
	margin: 0;
}
.qjs-hero__title .script--lg {
	font-size: 1em;
	letter-spacing: 0;
	margin-bottom: .02em;
	font-weight: 400;
}
.qjs-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 28px;
	margin-top: 30px;
	padding-top: 24px;
	border-top: 1px solid var(--whiterock);
}
.qjs-hero__meta li {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--mortar);
}
.qjs-hero__meta svg { color: var(--monsoon); flex: none; }

.qjs-hero__card {
	position: relative;
	margin: 0;
	border-radius: 36px;
	overflow: hidden;
	background: linear-gradient(160deg, #efe2d6 0%, #e7d3c4 100%);
	box-shadow: var(--shadow-card);
	aspect-ratio: 59 / 70;
}
.qjs-hero__card > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}
.qjs-hero__badge {
	position: absolute;
	top: 18px;
	left: 18px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: rgba(255,255,255,.85);
	backdrop-filter: blur(6px);
	border: 1px solid var(--whiterock);
	border-radius: 999px;
	padding: 7px 14px;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 12.5px;
	color: var(--dark);
}
.qjs-hero__badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #1f9d6b; box-shadow: 0 0 0 4px rgba(31,157,107,.18); }
.qjs-hero__sign {
	position: absolute;
	right: 24px;
	bottom: 10px;
	z-index: 2;
	font-size: 40px;
	color: #fff;
	transform: rotate(-4deg);
	text-shadow: 0 2px 12px rgba(42,32,48,.4);
}

/* -------------------------------- BIO --------------------------------- */
.qjs-bio__inner {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 72px;
	align-items: center;
}
.qjs-bio__media {
	position: relative;
	border-radius: 44px;
	overflow: hidden;
	background: var(--cream-2);
	box-shadow: var(--shadow-soft);
	aspect-ratio: 4 / 3;
}
.qjs-bio__media::after {
	content: "";
	position: absolute;
	inset: 18px;
	border: 1px solid rgba(250,246,241,.55);
	border-radius: 26px;
	pointer-events: none;
}
.qjs-bio__media img { width: 100%; height: 100%; object-fit: cover; }
.qjs-bio__pill {
	position: absolute;
	left: 22px;
	bottom: 22px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,.94);
	border: 1px solid var(--whiterock);
	border-radius: 999px;
	padding: 9px 16px;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 12.5px;
	color: var(--dark);
}
.qjs-bio__pill svg { color: var(--plum); flex: none; }

.qjs-bio__content .section__title { margin-bottom: 26px; }
.qjs-bio__content .section__title .script { font-size: 1.3em; margin-bottom: -.06em; }
.qjs-bio__text { font-size: 17px; line-height: 1.65; color: var(--mortar); margin: 0 0 18px; max-width: 46ch; }
.qjs-bio__pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 24px; }
.qjs-pill {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: var(--cream-2);
	border: 1px solid var(--whiterock);
	border-radius: 999px;
	padding: 9px 16px;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 12.5px;
	letter-spacing: .02em;
	color: var(--mortar);
}
.qjs-pill svg { color: var(--plum); flex: none; }
.qjs-bio__sign { font-size: 34px; color: var(--magenta); transform: rotate(-2deg); display: inline-block; }

/* ----------------------------- APPROCHE ------------------------------- */
.qjs-approche {
	position: relative;
	overflow: hidden;
	background: var(--dark);
}
.qjs-approche__blobs span { position: absolute; border-radius: 50%; filter: blur(20px); pointer-events: none; }
.qjs-approche__blobs span:first-child { width: 520px; height: 520px; top: -160px; right: -160px; background: radial-gradient(circle, rgba(149,0,149,.4), transparent 70%); }
.qjs-approche__blobs span:last-child  { width: 400px; height: 400px; bottom: -160px; left: -120px; background: radial-gradient(circle, rgba(228,111,41,.35), transparent 70%); }
.qjs-approche .container { position: relative; z-index: 1; }
.qjs-approche__head {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 48px;
	align-items: end;
	margin-bottom: 0;
	padding-bottom: 42px;
}
.qjs-approche .eyebrow--light { color: #f1a781; }
.qjs-approche .eyebrow--light::before { background: #f1a781; }
.qjs-approche__title {
	font-size: clamp(2.2rem, 1rem + 3vw, 3.75rem);
	font-weight: 700;
	letter-spacing: -.02em;
	color: var(--cream);
	margin: 0;
	display: flex;
	gap: .35em;
	flex-wrap: wrap;
	align-items: baseline;
}
.qjs-approche__title .script { color: var(--orange); font-size: 1.05em; }
.qjs-approche__intro { font-size: 18px; line-height: 1.55; color: rgba(250,246,241,.78); margin: 0; max-width: 42ch; }

.qjs-belief-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid rgba(250,246,241,.15);
}
.qjs-belief { padding: 40px 33px 36px; }
.qjs-belief:not(:last-child) { border-right: 1px solid rgba(250,246,241,.15); }
.qjs-belief__num {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--orange);
	opacity: .9;
}
.qjs-belief__num::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .7; }
.qjs-belief__title {
	font-size: 26px;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -.01em;
	color: var(--cream);
	margin: 18px 0 14px;
}
.qjs-belief__title em { font-style: normal; color: var(--orange); }
.qjs-belief__text { font-size: 15.5px; line-height: 1.6; color: rgba(250,246,241,.82); margin: 0; }

/* ------------------------ PARCOURS / FORMATIONS ------------------------ */
.qjs-timeline-card {
	max-width: 820px;
	background: #fff;
	border: 1px solid var(--bone);
	border-radius: 44px;
	padding: 37px 40px 44px;
	box-shadow: var(--shadow-soft);
}
.qjs-timeline-card__head {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-bottom: 22px;
	margin-bottom: 8px;
	border-bottom: 1px solid var(--whiterock);
}
.qjs-timeline-card__title {
	display: flex;
	flex-direction: column;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 19px;
	color: var(--dark);
}
.qjs-timeline-card__title small {
	font-weight: 300;
	font-size: 11.5px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--monsoon);
	margin-top: 3px;
}

.qjs-timeline { position: relative; padding-left: 30px; margin: 0; list-style: none; }
.qjs-timeline::before {
	content: "";
	position: absolute;
	left: 6px;
	top: 26px;
	bottom: 26px;
	width: 1px;
	background: var(--whiterock);
}
.qjs-timeline__item { position: relative; padding: 22px 0; }
.qjs-timeline__item:not(:last-child) { border-bottom: 1px solid var(--cream-2); }
.qjs-timeline__dot {
	position: absolute;
	left: -30px;
	top: 26px;
	width: 13px; height: 13px;
	border-radius: 50%;
	border: 2px solid var(--plum);
	background: #fff;
}
.qjs-timeline__item--ongoing .qjs-timeline__dot { border-color: var(--rose); opacity: .7; }
.qjs-timeline__row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 5px;
}
.qjs-timeline__title { font-size: 16px; font-weight: 700; color: var(--dark); line-height: 1.3; }
.qjs-timeline__year {
	flex: none;
	font-family: var(--font-head);
	font-size: 13px;
	color: var(--monsoon);
	letter-spacing: .03em;
	white-space: nowrap;
}
.qjs-timeline__text { font-size: 14px; line-height: 1.55; color: var(--monsoon); margin: 0; max-width: 60ch; }

/* ------------------------------ VALEURS ------------------------------- */
.qjs-valeurs { background: var(--cream-2); }
.qjs-valeurs__head { display: flex; flex-direction: column; text-align: center; max-width: 640px; margin: 0 auto 56px; }
.qjs-valeurs__head .eyebrow { justify-content: center; }
.qjs-valeurs__head .section__title { display: inline-flex; flex-wrap: wrap; gap: .28em; justify-content: center; }
.qjs-valeurs__head .section__title .script { display: inline; font-size: 1em; }
.qjs-valeurs__intro { font-size: 16px; color: var(--monsoon); margin: 18px auto 0; max-width: 56ch; }

.qjs-value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.qjs-value {
	position: relative;
	background: #fff;
	border: 1px solid var(--whiterock);
	border-radius: var(--radius);
	padding: 26px 26px 28px;
	overflow: hidden;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.qjs-value:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.qjs-value__top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 22px; }
.qjs-value__num { font-family: var(--font-script); font-size: 38px; line-height: 1; color: var(--bone); }
.qjs-value__title { font-size: 19px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.qjs-value__text { font-size: 14.5px; line-height: 1.6; color: var(--mortar); margin: 0; }

/* ---------------------------- DÉONTOLOGIE ----------------------------- */
.qjs-deonto__box {
	position: relative;
	overflow: hidden;
	background: linear-gradient(120deg, #fff 0%, #faf4f8 100%);
	border: 1px solid var(--whiterock);
	border-radius: var(--radius);
	padding: 56px 60px;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 28px;
	box-shadow: var(--shadow-soft);
}
.qjs-deonto__box::after {
	content: "";
	position: absolute;
	top: -120px; right: -120px;
	width: 360px; height: 360px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(149,0,149,.12), transparent 70%);
	pointer-events: none;
}
.qjs-deonto__quote-mark {
	font-family: var(--font-script);
	font-size: 110px;
	line-height: .7;
	color: var(--rose);
}
.qjs-deonto__body { position: relative; z-index: 1; max-width: 760px; }
.qjs-deonto__quote {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: clamp(1.5rem, 1rem + 1.6vw, 2.25rem);
	line-height: 1.22;
	letter-spacing: -.01em;
	color: var(--dark);
	margin: 0 0 22px;
}
.qjs-deonto__quote mark { background: transparent; color: var(--magenta); }
.qjs-deonto__text { font-size: 15.5px; line-height: 1.7; color: var(--monsoon); margin: 0 0 26px; max-width: 64ch; }
.qjs-deonto__chips { display: flex; flex-wrap: wrap; gap: 12px; }

/* ------------------------------ CTA FINAL ----------------------------- */
.qjs-cta__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.qjs-cta__card {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius);
	padding: 40px 40px 38px;
	border: 1px solid var(--whiterock);
}
.qjs-cta__card--particuliers { background: linear-gradient(150deg, #f7e6f1 0%, #fbf3f8 60%, #fff 100%); }
.qjs-cta__card--organisations { background: linear-gradient(150deg, #faecdd 0%, #fdf5ec 60%, #fff 100%); }
.qjs-cta__icon {
	position: absolute;
	top: 32px; right: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px; height: 48px;
	border-radius: 14px;
	background: var(--amour);
	color: var(--magenta);
}
.qjs-cta__icon--orange { background: #fbe4d4; color: var(--orange); }
.qjs-cta__eyebrow--orange { color: var(--orange); }
.qjs-cta__eyebrow--orange::before { background: var(--orange); }
.qjs-cta__title {
	font-size: clamp(1.8rem, 1.1rem + 2vw, 2.6rem);
	font-weight: 700;
	letter-spacing: -.02em;
	color: var(--dark);
	margin: 0 0 16px;
}
.qjs-cta__title .script { display: block; font-size: .68em; font-weight: 400; margin-bottom: -.04em; }
.qjs-cta__text { font-size: 15.5px; line-height: 1.65; color: var(--mortar); margin: 0 0 28px; max-width: 44ch; }

/* --------------------------- RESPONSIVE QJS --------------------------- */
@media (max-width: 1080px) {
	.qjs-hero__inner { grid-template-columns: 1fr; gap: 40px; }
	.qjs-hero__card { max-width: 460px; }
	.qjs-bio__inner { grid-template-columns: 1fr; gap: 40px; }
	.qjs-approche__head { grid-template-columns: 1fr; gap: 18px; }
	.qjs-approche__intro { max-width: 52ch; }
	.qjs-value-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
	.qjs-belief-grid { grid-template-columns: 1fr; border-top: none; }
	.qjs-belief { border-top: 1px solid rgba(250,246,241,.15); }
	.qjs-belief:not(:last-child) { border-right: none; }
	.qjs-cta__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
	.qjs-value-grid { grid-template-columns: 1fr; }
	.qjs-timeline-card { padding: 28px 22px 32px; border-radius: 28px; }
	.qjs-deonto__box { grid-template-columns: 1fr; padding: 36px 26px; gap: 8px; }
	.qjs-deonto__quote-mark { font-size: 72px; }
	.qjs-cta__card { padding: 32px 26px; }
	.qjs-cta__icon { top: 24px; right: 24px; }
	.qjs-timeline__row { flex-direction: column; gap: 2px; }
}

/* =========================================================================
   PAGE ACCOMPAGNEMENT INDIVIDUEL — design Figma « Accompagnement individuel »
   ========================================================================= */

/* Variante manuscrite orange (sur fonds sombres) + pastille magenta. */
.script--orange { color: var(--orange); }
.badge--accent {
	background: var(--amour);
	border-color: transparent;
	color: var(--magenta);
	backdrop-filter: none;
}

/* Icône carrée arrondie rose, commune aux cartes de cette page. */
.acc-icon-tile {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: var(--amour);
	color: var(--magenta);
	flex: none;
}

/* ------------------------------- HERO --------------------------------- */
.acc-hero {
	position: relative;
	overflow: hidden;
	padding-block: 64px 76px;
	background: linear-gradient(108deg, #f4e0ee 0%, #f9efe8 50%, #faecd7 100%);
}
.acc-hero__blobs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.acc-hero__blob { position: absolute; border-radius: 50%; filter: blur(85px); }
.acc-hero__blob--rose  { width: 520px; height: 520px; top: -150px; left: -150px; background: var(--magenta); opacity: .13; }
.acc-hero__blob--peach { width: 420px; height: 420px; top: 60px; right: -180px; background: var(--yellow); opacity: .18; }
.acc-hero__blob--mid   { width: 340px; height: 340px; bottom: -160px; left: 44%; background: var(--orange); opacity: .10; }

.acc-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.18fr .82fr;
	gap: 72px;
	align-items: center;
}
.acc-hero__title {
	font-size: clamp(2.4rem, 1rem + 4.2vw, 4.6rem);
	font-weight: 700;
	letter-spacing: -.035em;
	color: var(--dark);
	line-height: 1.04;
}
.acc-hero__title .script {
	color: var(--magenta);
	font-size: .62em;
	letter-spacing: 0;
	margin-bottom: .04em;
}
.acc-hero__aside { align-self: center; }
.acc-hero__text { font-size: 15.5px; color: var(--mortar); margin: 0 0 24px; max-width: 48ch; }
.acc-hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 28px;
	padding-top: 22px;
	border-top: 1px solid rgba(149,0,149,.16);
}
.acc-hero__trust li {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-family: var(--font-head);
	font-size: 14px;
	font-weight: 500;
	color: var(--plum);
}
.acc-hero__trust svg { color: var(--magenta); flex: none; }

/* --------------------------- POINTS DE DÉPART ------------------------- */
.acc-starts { background: var(--white); border-bottom: 1px solid var(--whiterock); }
.acc-starts__inner {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px 22px;
	padding-block: 26px;
}
.acc-starts__label {
	font-family: var(--font-head);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--monsoon);
}
.acc-starts__list { display: flex; flex-wrap: wrap; gap: 10px; }
.acc-starts__list li {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border: 1px solid var(--whiterock);
	border-radius: 999px;
	padding: 8px 16px;
	font-family: var(--font-head);
	font-size: 14px;
	font-weight: 500;
	color: var(--mortar);
}
.acc-starts__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--magenta); flex: none; }

/* ------------------------------ POUR QUI ------------------------------ */
.acc-who__inner {
	display: grid;
	grid-template-columns: .82fr 1.1fr;
	gap: 64px;
	align-items: start;
}
.acc-who__aside { position: sticky; top: 120px; }
.acc-who .section__title .script { color: var(--magenta); }
.acc-who__intro { font-size: 16px; color: var(--mortar); margin: 24px 0 28px; max-width: 42ch; }
.acc-who__badge { color: var(--mortar); }
.acc-who__badge svg { color: var(--magenta); }

.acc-who__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.acc-case {
	display: flex;
	gap: 16px;
	background: var(--white);
	border: 1px solid var(--whiterock);
	border-radius: var(--radius-sm);
	padding: 24px;
	box-shadow: var(--shadow-soft);
}
.acc-case__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px; height: 40px;
	border-radius: 12px;
	background: var(--amour);
	color: var(--magenta);
	flex: none;
}
.acc-case__text { margin: 6px 0 0; font-size: 15.5px; color: var(--mortar); line-height: 1.5; }
.acc-case__text strong { color: var(--dark); font-weight: 700; }

/* ----------------------------- LA DÉMARCHE ---------------------------- */
.acc-steps {
	position: relative;
	overflow: hidden;
	background: linear-gradient(150deg, #1f1726 0%, var(--dark) 46%, #3a2240 100%);
	color: var(--cream);
}
.acc-steps__glow { position: absolute; inset: 0; pointer-events: none; }
.acc-steps__glow span { position: absolute; border-radius: 50%; filter: blur(90px); }
.acc-steps__glow span:first-child { width: 520px; height: 520px; top: -160px; right: -80px; background: var(--magenta); opacity: .32; }
.acc-steps__glow span:last-child  { width: 400px; height: 400px; bottom: -180px; left: -120px; background: var(--orange); opacity: .16; }
.acc-steps__inner { position: relative; z-index: 1; }

.acc-steps__head {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 48px;
	align-items: end;
	margin-bottom: 56px;
}
.acc-steps__title {
	font-size: clamp(2rem, 1rem + 2.6vw, 3.1rem);
	font-weight: 700;
	letter-spacing: -.02em;
	color: #fff;
	line-height: 1.05;
}
.acc-steps__title .script { display: inline-block; font-size: 1.1em; letter-spacing: 0; }
.acc-steps__intro { font-size: 16px; color: rgba(250,246,241,.7); max-width: 40ch; }

.acc-steps__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	border-top: 1px solid rgba(255,255,255,.14);
}
.acc-temps {
	padding: 40px 40px 8px 0;
	border-right: 1px solid rgba(255,255,255,.14);
}
.acc-temps:last-child { border-right: 0; padding-right: 0; }
.acc-temps:not(:first-child) { padding-left: 32px; }
.acc-temps__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px; height: 52px;
	border-radius: 16px;
	background: rgba(250,246,241,.08);
	border: 1px solid rgba(255,255,255,.14);
	color: var(--yellow);
	margin-bottom: 26px;
}
.acc-temps__num {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--font-head);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--yellow);
	margin-bottom: 14px;
}
.acc-temps__num::before { content: ""; width: 24px; height: 1px; background: var(--yellow); }
.acc-temps__title { font-size: 27px; font-weight: 700; color: #fff; letter-spacing: -.01em; margin-bottom: 16px; }
.acc-temps__text { font-size: 15px; color: rgba(250,246,241,.72); line-height: 1.6; }

/* ------------------------------ LE CADRE ------------------------------ */
.acc-frame__head {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 48px;
	align-items: end;
	margin-bottom: 48px;
}
.acc-frame .section__title--flip .script { color: var(--magenta); display: block; }
.acc-frame__intro { font-size: 16px; color: var(--monsoon); max-width: 34ch; }

.acc-frame__box {
	display: grid;
	grid-template-columns: .72fr 1fr;
	background: var(--white);
	border: 1px solid var(--whiterock);
	border-radius: 32px;
	box-shadow: var(--shadow-card);
	overflow: hidden;
}
.acc-frame__aside {
	padding: 48px;
	background: linear-gradient(165deg, #f6e3ee 0%, #f7ead9 100%);
	border-right: 1px solid var(--whiterock);
}
.acc-frame__aside .eyebrow { color: var(--plum); }
.acc-frame__price { display: flex; align-items: baseline; gap: 10px; margin: 4px 0 18px; }
.acc-frame__amount { font-family: var(--font-head); font-size: 64px; font-weight: 700; color: var(--dark); letter-spacing: -.03em; line-height: 1; }
.acc-frame__unit { font-family: var(--font-head); font-size: 24px; font-weight: 500; color: var(--magenta); }
.acc-frame__offer { font-size: 13px; letter-spacing: .04em; text-transform: none; }
.acc-frame__note { font-size: 15px; color: var(--mortar); margin: 22px 0 0; max-width: 34ch; }
.acc-frame__sign { font-size: 26px; color: var(--magenta); margin: 56px 0 0; }

.acc-frame__list { display: flex; flex-direction: column; }
.acc-row {
	display: grid;
	grid-template-columns: 46px 1fr auto;
	gap: 22px;
	align-items: center;
	padding: 26px 48px;
	border-bottom: 1px solid var(--whiterock);
}
.acc-row:last-child { border-bottom: 0; }
.acc-row__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px; height: 46px;
	border-radius: 14px;
	background: var(--amour);
	color: var(--magenta);
}
.acc-row__body { display: flex; flex-direction: column; gap: 2px; }
.acc-row__label {
	font-family: var(--font-head);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--monsoon);
}
.acc-row__value { font-family: var(--font-head); font-size: 19px; font-weight: 600; color: var(--dark); }
.acc-row__sub { font-size: 14.5px; color: var(--mortar); }
.acc-row__tag {
	justify-self: end;
	font-family: var(--font-head);
	font-size: 13px;
	font-weight: 500;
	color: var(--mortar);
	border: 1px solid var(--whiterock);
	border-radius: 999px;
	padding: 7px 14px;
	white-space: nowrap;
}

/* ------------------------------ SALARIÉ ------------------------------- */
.acc-employee { background: linear-gradient(180deg, var(--cream), var(--cream-2)); }
.acc-employee__box {
	position: relative;
	overflow: hidden;
	max-width: 1100px;
	margin-inline: auto;
	display: grid;
	grid-template-columns: 96px 1fr;
	gap: 44px;
	align-items: center;
	background: var(--white);
	border: 1px solid var(--whiterock);
	border-radius: 32px;
	box-shadow: var(--shadow-card);
	padding: 52px 56px;
}
.acc-employee__glow {
	position: absolute;
	width: 320px; height: 320px;
	top: -120px; right: -80px;
	border-radius: 50%;
	background: var(--magenta);
	opacity: .10;
	filter: blur(80px);
	pointer-events: none;
}
.acc-employee__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 96px; height: 96px;
	border-radius: 24px;
	background: linear-gradient(160deg, #f1cfe0, #e9d4da);
	color: var(--plum);
	flex: none;
}
.acc-employee__body { position: relative; z-index: 1; }
.acc-employee__title {
	font-size: clamp(1.6rem, 1rem + 1.8vw, 2.3rem);
	font-weight: 700;
	color: var(--dark);
	letter-spacing: -.02em;
	line-height: 1.18;
}
.acc-employee__title em { font-style: normal; color: var(--magenta); }
.acc-employee__text { font-size: 15.5px; color: var(--mortar); margin: 18px 0 0; max-width: 66ch; }

/* -------------------------------- CTA --------------------------------- */
.acc-cta__box {
	position: relative;
	overflow: hidden;
	border-radius: 36px;
	background: linear-gradient(120deg, #1f1726 0%, var(--dark) 44%, #4a2733 100%);
	padding: 56px 64px;
	color: var(--cream);
}
.acc-cta__blobs span { position: absolute; border-radius: 50%; filter: blur(80px); }
.acc-cta__blobs span:first-child { width: 360px; height: 360px; top: -120px; left: -60px; background: var(--magenta); opacity: .3; }
.acc-cta__blobs span:last-child { width: 360px; height: 360px; bottom: -160px; right: -40px; background: var(--orange); opacity: .22; }
.acc-cta__content {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.2fr .9fr;
	gap: 56px;
	align-items: center;
}
.acc-cta__title {
	font-size: clamp(1.9rem, 1.1rem + 2.2vw, 2.8rem);
	font-weight: 700;
	color: #fff;
	letter-spacing: -.02em;
	line-height: 1.05;
}
.acc-cta__title .script { display: block; font-size: 1.05em; letter-spacing: 0; margin-bottom: .04em; }
.acc-cta__text { font-size: 16px; color: rgba(250,246,241,.75); margin: 22px 0 0; max-width: 48ch; }
.acc-cta__actions { display: flex; flex-direction: column; gap: 16px; align-items: stretch; }
.acc-cta__btn { justify-content: space-between; width: 100%; }
.acc-cta__phone {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 16px;
	color: var(--cream);
	border: 1px solid rgba(255,255,255,.22);
	border-radius: 999px;
	padding: 16px 28px;
	transition: border-color .2s var(--ease), background .2s var(--ease);
}
.acc-cta__phone:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.06); }
.acc-cta__phone svg { color: var(--yellow); }
.acc-cta__note { font-size: 13.5px; color: rgba(250,246,241,.55); text-align: center; }

/* ------------------------------ RESPONSIVE ---------------------------- */
@media (max-width: 1080px) {
	.acc-hero__inner { grid-template-columns: 1fr; gap: 40px; }
	.acc-who__inner { grid-template-columns: 1fr; gap: 40px; }
	.acc-who__aside { position: static; }
	.acc-steps__head,
	.acc-frame__head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
	.acc-frame__box { grid-template-columns: 1fr; }
	.acc-frame__aside { border-right: 0; border-bottom: 1px solid var(--whiterock); }
	.acc-frame__sign { margin-top: 32px; }
	.acc-cta__content { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 920px) {
	.acc-steps__grid { grid-template-columns: 1fr; border-top: 0; }
	.acc-temps {
		border-right: 0;
		border-top: 1px solid rgba(255,255,255,.14);
		padding: 36px 0 8px;
	}
	.acc-temps:not(:first-child) { padding-left: 0; }
	.acc-employee__box { grid-template-columns: 1fr; gap: 28px; padding: 40px 36px; }
}

@media (max-width: 560px) {
	.acc-who__grid { grid-template-columns: 1fr; }
	.acc-frame__aside,
	.acc-row { padding-inline: 28px; }
	.acc-row { grid-template-columns: 1fr auto; }
	.acc-row__icon { display: none; }
	.acc-frame__amount { font-size: 52px; }
	.acc-cta__box { padding: 36px 26px; }
	.acc-employee__box { padding: 32px 24px; }
}

@media (max-width: 400px) {
	.acc-cta__box { padding: 30px 18px; }
	.acc-cta__btn { padding: 15px 20px; font-size: 15.5px; white-space: normal; text-align: left; }
	.acc-cta__phone { padding: 14px 20px; }
}

/* =========================================================================
   PAGE « GROUPES & CAUSERIES » — page-groupes-causeries.php
   Design : Figma « Groupes et causeries »
   ========================================================================= */

/* Script en magenta sur les sections claires */
.grp-hero .script,
.grp-formats .script,
.grp-causeries .script,
.grp-themes .script,
.grp-rhythm .script { color: var(--magenta); }

/* ------------------------------- HERO --------------------------------- */
.grp-hero { position: relative; padding-block: 56px 84px; overflow: hidden; }
.grp-hero__blobs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.grp-hero__blob { position: absolute; border-radius: 50%; filter: blur(90px); }
.grp-hero__blob--rose  { width: 520px; height: 520px; top: -170px; left: -150px; background: var(--magenta); opacity: .13; }
.grp-hero__blob--peach { width: 460px; height: 460px; top: 40px; right: -160px; background: var(--yellow); opacity: .18; }

.grp-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 56px;
	align-items: center;
}
.grp-hero__title {
	font-size: clamp(2.3rem, 1.3rem + 3vw, 3.9rem);
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: 1.06;
}
.grp-hero__title .script--lg { display: block; font-size: 1.04em; margin: .04em 0; }
.grp-hero__text { font-size: 17px; line-height: 1.7; color: var(--mortar); margin: 0 0 30px; max-width: 50ch; }
.grp-hero__trust { display: flex; flex-direction: column; gap: 14px; }
.grp-hero__trust li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 15px;
	color: var(--dark);
}
.grp-hero__trust svg { color: var(--magenta); flex: none; }

/* --------------------------- BANDE AUDIENCE --------------------------- */
.grp-audience__note,
.prt-domains__note {
	margin-left: auto;
	font-family: var(--font-script);
	font-size: 22px;
	color: var(--magenta);
	line-height: 1;
}

/* ----------------------------- DEUX FORMATS --------------------------- */
.grp-format-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grp-format {
	display: flex;
	align-items: center;
	gap: 22px;
	background: var(--white);
	border: 1px solid var(--whiterock);
	border-radius: var(--radius);
	padding: 30px 32px;
	box-shadow: var(--shadow-soft);
	transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.grp-format:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.grp-format__body { display: flex; flex-direction: column; gap: 4px; }
.grp-format__label {
	font-family: var(--font-head);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--magenta);
}
.grp-format__title { font-family: var(--font-head); font-size: 21px; font-weight: 700; color: var(--dark); }
.grp-format__text { font-size: 14.5px; color: var(--mortar); }
.grp-format__arrow {
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px; height: 40px;
	border-radius: 12px;
	background: var(--cream-2);
	color: var(--dark);
	flex: none;
	transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.grp-format:hover .grp-format__arrow { background: var(--magenta); color: #fff; transform: translateX(3px); }

/* ---------------------------- CAUSERIES TND --------------------------- */
.grp-causeries { background: var(--white); }
.grp-causeries__inner {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: 48px;
	align-items: start;
}
.grp-rhythm {
	position: sticky;
	top: 120px;
	background: linear-gradient(165deg, #f7e6f1 0%, #fbf3f8 60%, var(--white) 100%);
	border: 1px solid var(--rose);
	border-radius: 28px;
	padding: 40px 36px;
}
.grp-rhythm__num {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin: 4px 0 18px;
	font-family: var(--font-head);
	font-size: 19px;
	font-weight: 500;
	color: var(--mortar);
}
.grp-rhythm__num span {
	font-size: 64px;
	font-weight: 700;
	color: var(--dark);
	letter-spacing: -.03em;
	line-height: 1;
}
.grp-rhythm__tag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(255,255,255,.7);
	border: 1px solid var(--rose);
	border-radius: 999px;
	padding: 8px 16px;
	font-family: var(--font-head);
	font-size: 13px;
	font-weight: 500;
	color: var(--plum);
}
.grp-rhythm__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--magenta); }
.grp-rhythm__text { font-size: 15px; line-height: 1.65; color: var(--mortar); margin: 22px 0 0; }
.grp-rhythm__sign { font-size: 30px; color: var(--magenta); margin: 26px 0 0; transform: rotate(-2deg); display: inline-block; }

.grp-causeries__content .section__title { margin-bottom: 22px; }
.grp-causeries__content .section__title .script { display: block; font-size: .92em; margin-bottom: -.04em; }
.grp-causeries__lead { font-size: 16.5px; line-height: 1.7; color: var(--mortar); margin: 0 0 30px; max-width: 56ch; }

.grp-rows {
	background: var(--cream);
	border: 1px solid var(--whiterock);
	border-radius: var(--radius);
	overflow: hidden;
}
.grp-row { padding-block: 24px; }
.grp-row .acc-row__icon { background: var(--amour); color: var(--magenta); }

/* -------------------------- GROUPES THÉMATIQUES ----------------------- */
.grp-themes { background: linear-gradient(180deg, var(--cream), var(--cream-2)); }
.grp-session-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grp-session {
	display: flex;
	flex-direction: column;
	background: var(--white);
	border: 1px solid var(--whiterock);
	border-radius: var(--radius);
	padding: 30px 30px 28px;
	box-shadow: var(--shadow-soft);
	transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.grp-session:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.grp-session--full { opacity: .92; }
.grp-session__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.grp-session__theme {
	font-family: var(--font-head);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--plum);
}
.grp-session__badge--full {
	font-family: var(--font-head);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--monsoon);
	background: var(--cream-2);
	border-radius: 999px;
	padding: 5px 12px;
}
.grp-session__date { display: flex; align-items: baseline; gap: 12px; margin: 0 0 14px; }
.grp-session__day {
	font-family: var(--font-head);
	font-size: 46px;
	font-weight: 700;
	color: var(--magenta);
	letter-spacing: -.03em;
	line-height: 1;
}
.grp-session__when { font-family: var(--font-head); font-size: 14px; font-weight: 500; color: var(--monsoon); }
.grp-session__title { font-size: 20px; font-weight: 700; color: var(--dark); line-height: 1.25; margin-bottom: 18px; }
.grp-session__meta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.grp-session__meta li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--mortar); }
.grp-session__meta svg { color: var(--magenta); flex: none; }
.grp-session__foot {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding-top: 20px;
	border-top: 1px solid var(--whiterock);
}
.grp-session__status { font-family: var(--font-head); font-size: 13.5px; font-weight: 500; color: var(--mortar); }
.grp-session--open .grp-session__status { color: #1f9d6b; }
.grp-session__btn { justify-content: center; width: 100%; }

.grp-themes__note {
	display: flex;
	align-items: center;
	gap: 12px;
	justify-content: center;
	margin: 44px 0 0;
	font-size: 14.5px;
	color: var(--monsoon);
}
.grp-themes__note svg { color: var(--magenta); flex: none; }

/* ------------------------------- POURQUOI ----------------------------- */
.grp-why {
	position: relative;
	overflow: hidden;
	background: linear-gradient(150deg, #1f1726 0%, var(--dark) 48%, #43232f 100%);
	color: var(--cream);
}
.grp-why__glow { position: absolute; inset: 0; pointer-events: none; }
.grp-why__glow span { position: absolute; border-radius: 50%; filter: blur(90px); }
.grp-why__glow span:first-child { width: 520px; height: 520px; top: -160px; right: -80px; background: var(--magenta); opacity: .34; }
.grp-why__glow span:last-child  { width: 420px; height: 420px; bottom: -180px; left: -120px; background: var(--orange); opacity: .18; }
.grp-why__inner { position: relative; z-index: 1; }
.grp-why .eyebrow--light { color: #f1a781; }
.grp-why .eyebrow--light::before { background: #f1a781; }
.grp-why__head {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 48px;
	align-items: end;
	margin-bottom: 56px;
}
.grp-why__title {
	font-size: clamp(2rem, 1.1rem + 2.6vw, 3rem);
	font-weight: 700;
	color: #fff;
	letter-spacing: -.02em;
	line-height: 1.06;
}
.grp-why__title .script { display: block; color: var(--yellow); font-size: 1.05em; }
.grp-why__intro { font-size: 17px; line-height: 1.6; color: rgba(250,246,241,.78); margin: 0; max-width: 42ch; }

.grp-reason-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	border-top: 1px solid rgba(250,246,241,.14);
}
.grp-reason { padding: 38px 30px 8px 0; }
.grp-reason:not(:last-child) { border-right: 1px solid rgba(250,246,241,.14); }
.grp-reason:not(:first-child) { padding-left: 30px; }
.grp-reason__num {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--font-head);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--yellow);
	margin-bottom: 18px;
}
.grp-reason__num::before { content: ""; width: 24px; height: 1px; background: var(--yellow); }
.grp-reason__text { font-size: 16px; line-height: 1.55; color: rgba(250,246,241,.86); margin: 0; }
.grp-reason__text em { font-style: normal; color: var(--orange); font-weight: 700; }

/* ------------------------ COLLAB / THERATYPIQUE ----------------------- */
.grp-collab__box {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 40px;
	align-items: center;
	background: var(--white);
	border: 1px solid var(--whiterock);
	border-left: 4px solid var(--cyan, #009081);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
	padding: 44px 48px;
}
.grp-collab__title {
	font-size: clamp(1.5rem, 1rem + 1.4vw, 2.05rem);
	font-weight: 700;
	color: var(--dark);
	letter-spacing: -.01em;
	line-height: 1.2;
}
.grp-collab__highlight { color: #009081; }
.grp-collab__text { font-size: 15.5px; line-height: 1.65; color: var(--mortar); margin: 18px 0 0; max-width: 64ch; }
.grp-collab__btn { flex: none; }

/* ============================ CTA FINAL (commun) ====================== */
.acc-cta-section .acc-cta__box { max-width: 1240px; margin-inline: auto; }

/* --------------------------- RESPONSIVE GROUPES ----------------------- */
@media (max-width: 1080px) {
	.grp-hero__inner { grid-template-columns: 1fr; gap: 36px; }
	.grp-causeries__inner { grid-template-columns: 1fr; gap: 36px; }
	.grp-rhythm { position: static; }
	.grp-why__head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 40px; }
	.grp-reason-grid { grid-template-columns: 1fr 1fr; border-top: 0; }
	.grp-reason { border-right: 1px solid rgba(250,246,241,.14); padding: 32px 28px; }
	.grp-reason:nth-child(2n) { border-right: 0; }
	.grp-reason:not(:first-child) { padding-left: 28px; }
}
@media (max-width: 920px) {
	.grp-format-grid { grid-template-columns: 1fr; }
	.grp-session-grid { grid-template-columns: 1fr; }
	.grp-collab__box { grid-template-columns: 1fr; gap: 28px; padding: 36px 32px; }
	.grp-collab__btn { width: 100%; justify-content: center; }
}
@media (max-width: 560px) {
	.grp-reason-grid { grid-template-columns: 1fr; }
	.grp-reason { border-right: 0; border-top: 1px solid rgba(250,246,241,.14); padding: 30px 0 8px; }
	.grp-reason:not(:first-child) { padding-left: 0; }
	.grp-rhythm { padding: 32px 26px; }
	.grp-format { padding: 24px 22px; }
	.grp-audience__note, .prt-domains__note { margin-left: 0; }
}

/* =========================================================================
   PAGE « MES PARTENAIRES » — page-mes-partenaires.php
   Design : Figma « Mes partenaires »
   ========================================================================= */

.prt-hero .script,
.prt-modes .script,
.prt-list .script { color: var(--magenta); }

/* ------------------------------- HERO --------------------------------- */
.prt-hero { position: relative; padding-block: 56px 72px; overflow: hidden; }
.prt-hero__blobs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.prt-hero__blob { position: absolute; border-radius: 50%; filter: blur(90px); }
.prt-hero__blob--rose  { width: 520px; height: 520px; top: -170px; left: -160px; background: var(--magenta); opacity: .12; }
.prt-hero__blob--peach { width: 440px; height: 440px; top: 30px; right: -150px; background: var(--yellow); opacity: .18; }
.prt-hero__blob--mid   { width: 340px; height: 340px; top: 120px; left: 44%; background: #009081; opacity: .10; }

.prt-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 56px;
	align-items: center;
}
.prt-hero__title {
	font-size: clamp(2.6rem, 1.4rem + 3.4vw, 4.4rem);
	font-weight: 700;
	letter-spacing: -.03em;
	line-height: 1.02;
}
.prt-hero__title .script--lg { display: block; font-size: .9em; margin-bottom: .02em; }
.prt-hero__text { font-size: 17px; line-height: 1.7; color: var(--mortar); margin: 0 0 26px; max-width: 50ch; }
.prt-hero__trust { display: flex; flex-wrap: wrap; gap: 14px 28px; }
.prt-hero__trust li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 14.5px;
	color: var(--dark);
}
.prt-hero__trust svg { color: var(--magenta); flex: none; }

/* ------------------------- DEUX MODES DE COLLAB ----------------------- */
.prt-mode-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.prt-mode {
	background: var(--white);
	border: 1px solid var(--whiterock);
	border-radius: var(--radius);
	padding: 34px 36px;
	box-shadow: var(--shadow-soft);
}
.prt-mode__head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.prt-mode__heading { display: flex; flex-direction: column; gap: 4px; }
.prt-mode__label {
	font-family: var(--font-head);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--magenta);
}
.prt-mode__title { font-family: var(--font-head); font-size: 21px; font-weight: 700; color: var(--dark); }
.prt-mode__text { font-size: 15.5px; line-height: 1.65; color: var(--mortar); margin: 0; }

/* ----------------------------- PARTENAIRES ---------------------------- */
.prt-cards { display: flex; flex-direction: column; gap: 22px; }
.prt-card {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: 252px 1fr auto;
	gap: 48px;
	align-items: center;
	background: var(--white);
	border: 1px solid var(--whiterock);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	padding: 40px 44px;
	transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.prt-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.prt-card__gradient {
	position: absolute;
	width: 320px; height: 320px;
	top: -130px; right: -100px;
	border-radius: 50%;
	filter: blur(70px);
	pointer-events: none;
	opacity: .14;
}
.prt-card--orange  .prt-card__gradient { background: var(--orange); }
.prt-card--magenta .prt-card__gradient { background: var(--magenta); }
.prt-card--teal    .prt-card__gradient { background: #009081; }

.prt-card__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 158px;
	background: var(--cream-2);
	border: 1px solid var(--whiterock);
	border-radius: var(--radius-sm);
	overflow: hidden;
}
.prt-card__logo-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* 3e logo (Alban Cadu) : conservé centré, sans recadrage, fond sombre pour le texte blanc */
.prt-card--teal .prt-card__logo {
	padding: 20px;
	background: linear-gradient(135deg, #13283b, #0c1c2c);
	border-color: rgba(255, 255, 255, .08);
}
.prt-card--teal .prt-card__logo-img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.prt-card__body { position: relative; z-index: 1; }
.prt-card__top { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.prt-card__num {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--font-head);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--plum);
}
.prt-card__num-line { width: 22px; height: 1px; background: var(--yellow); }
.prt-card__kind {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	border: 1px solid var(--whiterock);
	border-radius: 999px;
	padding: 6px 14px;
	font-family: var(--font-head);
	font-size: 12.5px;
	font-weight: 500;
	color: var(--mortar);
}
.prt-card__kind-dot { width: 7px; height: 7px; border-radius: 50%; }
.prt-card--orange  .prt-card__kind-dot { background: var(--orange); }
.prt-card--magenta .prt-card__kind-dot { background: var(--magenta); }
.prt-card--teal    .prt-card__kind-dot { background: #009081; }
.prt-card__name { font-size: 27px; font-weight: 700; color: var(--dark); letter-spacing: -.01em; margin-bottom: 14px; }
.prt-card--orange  .prt-card__name { color: var(--orange); }
.prt-card--magenta .prt-card__name { color: var(--magenta); }
.prt-card--teal    .prt-card__name { color: #009081; }
.prt-card__text { font-size: 15.5px; line-height: 1.65; color: var(--mortar); margin: 0; max-width: 64ch; }
.prt-card__text strong { color: var(--dark); font-weight: 700; }

.prt-card__action { display: flex; flex-direction: column; align-items: center; gap: 14px; flex: none; }
.prt-card__btn {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 16px;
	color: #fff;
	border-radius: 999px;
	padding: 16px 26px;
	white-space: nowrap;
	transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.prt-card__btn:hover { transform: translateY(-2px); }
.prt-card--orange  .prt-card__btn { background: linear-gradient(120deg, var(--orange), #f0903f); box-shadow: 0 10px 24px rgba(228,111,41,.28); }
.prt-card--magenta .prt-card__btn { background: linear-gradient(120deg, var(--plum), var(--magenta)); box-shadow: 0 10px 24px rgba(149,0,149,.26); }
.prt-card--teal    .prt-card__btn { background: linear-gradient(120deg, #00766a, #009081); box-shadow: 0 10px 24px rgba(0,144,129,.26); }
.prt-card__btn-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px; height: 26px;
	border-radius: 8px;
	background: rgba(255,255,255,.2);
	transition: transform .2s var(--ease);
}
.prt-card__btn:hover .prt-card__btn-icon { transform: translateX(3px); }
.prt-card__external {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: var(--font-head);
	font-size: 12.5px;
	color: var(--monsoon);
}
.prt-card__external svg { flex: none; }

/* --------------------------- RESPONSIVE PARTENAIRES ------------------- */
@media (max-width: 1080px) {
	.prt-hero__inner { grid-template-columns: 1fr; gap: 36px; }
	.prt-card { grid-template-columns: 200px 1fr; gap: 32px; }
	.prt-card__action { grid-column: 1 / -1; flex-direction: row; justify-content: flex-start; align-items: center; gap: 24px; }
}
@media (max-width: 920px) {
	.prt-mode-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
	.prt-card { grid-template-columns: 1fr; gap: 24px; padding: 30px 26px; }
	.prt-card__logo { height: 120px; }
	.prt-card__top { flex-wrap: wrap; gap: 10px; }
	.prt-card__action { flex-direction: column; align-items: stretch; }
	.prt-card__btn { justify-content: center; }
	.prt-card__external { justify-content: center; }
	.prt-mode { padding: 28px 26px; }
}
