/* =========================================================================
   Yaguera & Co — Thème sur-mesure
   Design éditorial haut de gamme · ADN rose / noir / crème
   ========================================================================= */

/* --- 1. Tokens / variables ------------------------------------------------ */
:root {
	--pink: #e6007e;
	--pink-dark: #b80064;
	--ink: #161313;
	--ink-soft: #2a2421;
	--cream: #f4eee7;
	--cream-2: #efe7dd;
	--white: #ffffff;
	--muted: #6e6a66;
	--line: rgba(22, 19, 19, 0.12);

	--font-display: "Playfair Display", Georgia, serif;
	--font-body: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;

	--container: 1200px;
	--gap: clamp(1rem, 3vw, 2.5rem);
	--radius: 4px;
	--transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
	--header-h: 96px;
}
@media (max-width: 900px) {
	:root {
		--header-h: 72px;
	}
}

/* --- 2. Base -------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 400;
	color: var(--ink);
	background: var(--white);
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	font-size: 17px;
}

/* Filet de sécurité : neutralise un espacement résiduel en haut de page
   hérité d'un ancien thème (Divi/Elementor) ou d'un « CSS additionnel »,
   qui poussait l'en-tête vers le bas (bande blanche). Spécificité élevée
   pour l'emporter sur la règle résiduelle. On ne touche PAS à html{margin-top}
   utilisé par la barre d'administration WordPress. */
:root {
	padding-top: 0 !important;
}
body.wp-theme-yaguera {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

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

/* Visuels de démonstration (placeholders de marque) : remplissent leur cadre. */
.is-demo-visual {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--transition);
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-display);
	font-weight: 600;
	line-height: 1.1;
	margin: 0 0 0.4em;
}

p {
	margin: 0 0 1.2em;
}

.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--ink);
	color: #fff;
	padding: 0.75rem 1.25rem;
	z-index: 1000;
}
.skip-link:focus {
	left: 1rem;
	top: 1rem;
}

/* --- 3. Boutons & liens --------------------------------------------------- */
.btn {
	display: inline-block;
	font-family: var(--font-body);
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-size: 0.82rem;
	padding: 1rem 2rem;
	border-radius: var(--radius);
	border: 1px solid transparent;
	cursor: pointer;
	transition: all var(--transition);
}
.btn--primary {
	background: var(--pink);
	color: #fff;
}
.btn--primary:hover {
	background: var(--pink-dark);
	transform: translateY(-2px);
}
.btn--ghost {
	border-color: currentColor;
	background: transparent;
}
.btn--ghost:hover {
	background: var(--ink);
	color: #fff;
	border-color: var(--ink);
}

.link-underline {
	font-weight: 500;
	color: var(--pink);
	border-bottom: 1px solid currentColor;
	padding-bottom: 2px;
}
.link-underline:hover {
	color: var(--ink);
}

/* --- 4. En-tête / navigation --------------------------------------------- */
/* Barre sombre premium : le logo clair de la marque y ressort pleinement.
   Sur l'accueil, elle est transparente au-dessus du héros puis devient
   sombre et compacte au défilement. */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--ink);
	border-bottom: 1px solid rgba(244, 238, 231, 0.1);
	transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.site-header.is-scrolled {
	background: rgba(20, 16, 17, 0.92);
	backdrop-filter: blur(10px);
	box-shadow: 0 10px 34px rgba(0, 0, 0, 0.3);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	min-height: var(--header-h);
	transition: min-height var(--transition);
}
.site-header.is-scrolled .site-header__inner {
	min-height: 76px;
}
@media (max-width: 900px) {
	.site-header.is-scrolled .site-header__inner {
		min-height: var(--header-h);
	}
}
.site-header__brand {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}
.custom-logo-link {
	display: inline-flex;
	align-items: center;
}
.custom-logo-link img {
	max-height: 66px;
	width: auto;
	transition: max-height var(--transition), transform var(--transition);
}
.site-header.is-scrolled .custom-logo-link img {
	max-height: 52px;
}
.custom-logo-link:hover img {
	transform: scale(1.03);
}

/* Accueil : barre transparente au-dessus du héros, avec un léger voile
   dégradé qui garantit la lisibilité du menu. */
.has-hero-header .site-header:not(.is-scrolled) {
	background: transparent;
	border-bottom-color: transparent;
}
.has-hero-header .site-header:not(.is-scrolled)::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(to bottom, rgba(20, 16, 17, 0.55), rgba(20, 16, 17, 0));
	pointer-events: none;
}
/* Le héros remonte sous l'en-tête transparent (qui, sticky, occupe le flux). */
.has-hero-header .hero {
	margin-top: calc(-1 * var(--header-h));
}

.site-nav__list {
	list-style: none;
	display: flex;
	gap: 2rem;
	margin: 0;
	padding: 0;
	align-items: center;
}
.site-nav__list a {
	color: var(--cream);
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	position: relative;
	padding: 0.4rem 0;
	transition: color var(--transition);
}
.site-nav__list a:hover,
.site-nav__list .current-menu-item > a {
	color: var(--white);
}
.site-nav__list a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: var(--pink);
	transition: width var(--transition);
}
.site-nav__list a:hover::after,
.site-nav__list .current-menu-item > a::after {
	width: 100%;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 0.5rem;
}
.nav-toggle span {
	width: 26px;
	height: 2px;
	background: var(--cream);
	transition: var(--transition);
}
/* Croix animée à l'ouverture du menu mobile. */
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* --- 5. Héros ------------------------------------------------------------- */
.hero {
	position: relative;
	min-height: 88vh;
	display: flex;
	align-items: center;
	color: #fff;
	overflow: hidden;
}
.hero__bg,
.hero-swiper,
.hero__placeholder {
	position: absolute;
	inset: 0;
}
.hero__placeholder {
	background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 50%, var(--pink-dark) 140%);
}
.hero__slide {
	background-size: cover;
	background-position: center;
}
.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.15) 100%);
	z-index: 2;
}
.hero__content {
	position: relative;
	z-index: 3;
	max-width: 760px;
	padding-block: 6rem;
}
.hero__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.3em;
	font-size: 0.78rem;
	color: var(--pink);
	margin-bottom: 1.5rem;
}
.hero__title {
	font-size: clamp(2.6rem, 6vw, 5rem);
	line-height: 1.05;
	margin-bottom: 1.5rem;
}
.hero__title em {
	font-style: italic;
	color: var(--cream);
}
.hero__lead {
	font-size: 1.15rem;
	max-width: 540px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2.5rem;
}
.hero__actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

/* --- 6. Titres de section ------------------------------------------------- */
.section-head {
	max-width: 720px;
	margin: 0 auto clamp(2.5rem, 5vw, 4rem);
	text-align: center;
}
.section-head__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.3em;
	font-size: 0.78rem;
	color: var(--pink);
	margin-bottom: 1rem;
}
.section-head__title {
	font-size: clamp(1.9rem, 4vw, 3rem);
}
.section-foot {
	text-align: center;
	margin-top: 3rem;
}

/* --- 7. Intro / signature ------------------------------------------------- */
.intro {
	background: var(--cream);
	padding-block: clamp(4rem, 8vw, 7rem);
}
.intro__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 6vw, 5rem);
	align-items: center;
}
.intro__quote {
	margin: 0;
	border-left: 3px solid var(--pink);
	padding-left: 2rem;
}
.intro__quote p {
	font-family: var(--font-display);
	font-style: italic;
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	line-height: 1.3;
	color: var(--ink);
}
.intro__quote cite {
	font-style: normal;
	font-size: 0.9rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
}
.intro__text p {
	font-size: 1.1rem;
}

/* --- 8. Services ---------------------------------------------------------- */
.services {
	padding-block: clamp(4rem, 8vw, 7rem);
}
.services__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}
.service-card {
	display: flex;
	flex-direction: column;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform var(--transition), box-shadow var(--transition);
	min-height: 220px;
}
.service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.service-card__media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
}
.service-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}
.service-card:hover .service-card__media img {
	transform: scale(1.06);
}
.service-card__body {
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.service-card__title {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}
.service-card__slogan {
	color: var(--muted);
	font-size: 0.95rem;
	font-style: italic;
	flex: 1;
}
.service-card__link {
	margin-top: 1rem;
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--pink);
	font-weight: 500;
}
.service-card--placeholder {
	background: var(--cream);
}

/* --- 9. Réalisations (galerie filtrable) --------------------------------- */
.realisations {
	background: var(--cream);
	padding-block: clamp(4rem, 8vw, 7rem);
}
.filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 3rem;
}
.filters__btn {
	background: transparent;
	border: 1px solid var(--line);
	border-radius: 100px;
	padding: 0.6rem 1.4rem;
	font-family: var(--font-body);
	font-size: 0.85rem;
	letter-spacing: 0.03em;
	cursor: pointer;
	transition: all var(--transition);
}
.filters__btn:hover {
	border-color: var(--ink);
}
.filters__btn.is-active {
	background: var(--pink);
	border-color: var(--pink);
	color: #fff;
}
.realisations__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}
.realisation-item {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--ink);
}
.realisation-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease, opacity var(--transition);
}
.realisation-item:hover img {
	transform: scale(1.08);
	opacity: 0.75;
}
.realisation-item__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	padding: 1.5rem;
	background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.7));
	opacity: 0;
	transition: opacity var(--transition);
}
.realisation-item:hover .realisation-item__overlay {
	opacity: 1;
}
.realisation-item__title {
	color: #fff;
	font-family: var(--font-display);
	font-size: 1.2rem;
}
.realisation-item.is-hidden {
	display: none;
}

/* --- 10. Blog ------------------------------------------------------------- */
.blog-preview,
.archive {
	padding-block: clamp(4rem, 8vw, 7rem);
}
.post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}
.post-card {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform var(--transition), box-shadow var(--transition);
}
.post-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.post-card__media {
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: var(--cream-2);
}
.post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.post-card__body {
	padding: 1.75rem;
}
.post-card__date {
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 0.5rem;
}
.post-card__title {
	font-size: 1.3rem;
}
.post-card__excerpt {
	color: var(--muted);
	font-size: 0.95rem;
}
.post-card__more {
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--pink);
	font-weight: 500;
}

/* --- 11. Page / article génériques --------------------------------------- */
.page-hero {
	position: relative;
	padding-block: clamp(4rem, 9vw, 7rem);
	background: var(--cream);
	overflow: hidden;
	text-align: center;
}
/* En-tête sans image : bannière sombre de marque (dégradé noir + halo rose
   + fine texture pointillée + trait rose sous le titre), pour un rendu
   immersif cohérent avec les bannières Réalisations / Galerie plutôt qu'une
   bande claire vide. Une image mise en avant, si elle existe, prime via
   .page-hero--service / .page-hero__bg. */
.page-hero:not(.page-hero--service):not(.page-hero--media) {
	color: #fff;
	background-color: var(--ink);
	background-image:
		radial-gradient(70rem 32rem at 50% -8rem, rgba(230, 0, 126, 0.30), transparent 62%),
		radial-gradient(38rem 24rem at 88% 120%, rgba(184, 0, 100, 0.22), transparent 60%),
		radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 100% 100%, 100% 100%, 22px 22px;
	background-position: center top, center, center;
	min-height: 40vh;
	display: flex;
	align-items: center;
}
.page-hero:not(.page-hero--service):not(.page-hero--media) .page-hero__lead {
	color: rgba(255, 255, 255, 0.82);
}
.page-hero:not(.page-hero--service):not(.page-hero--media) .page-hero__title::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	margin: 1.25rem auto 0;
	background: var(--pink);
	border-radius: 2px;
}
.page-hero--service,
.realisation-single .page-hero {
	color: #fff;
	text-align: left;
}
.page-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}
.page-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}
.page-hero .container {
	position: relative;
	z-index: 2;
}
.page-hero__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.3em;
	font-size: 0.78rem;
	color: var(--pink);
	margin-bottom: 1rem;
}
.page-hero__title {
	font-size: clamp(2rem, 5vw, 3.4rem);
}
.page-hero__lead {
	max-width: 600px;
	margin: 1rem auto 0;
	font-size: 1.1rem;
}
/* Bandeaux alignés à gauche (services, réalisations, membres, albums) :
   le chapeau suit le titre à gauche. */
.page-hero--service .page-hero__lead,
.realisation-single .page-hero__lead {
	margin-inline: 0;
}

/* Bannière immersive (archive des réalisations) : image de fond + voile
   dégradé + texte blanc centré + ligne de statistiques. */
.page-hero--media {
	color: #fff;
	text-align: center;
	min-height: 58vh;
	display: flex;
	align-items: center;
	padding-block: clamp(4.5rem, 10vw, 8rem);
}
.page-hero--media .page-hero__overlay {
	background: linear-gradient(180deg, rgba(20, 16, 17, 0.5) 0%, rgba(20, 16, 17, 0.7) 100%);
}
.page-hero--media .page-hero__title {
	font-size: clamp(2.4rem, 6vw, 4.2rem);
}
.page-hero--media .page-hero__lead {
	max-width: 640px;
	margin: 1.25rem auto 0;
	color: rgba(255, 255, 255, 0.85);
}
.page-hero__stats {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: clamp(1.75rem, 6vw, 4rem);
	margin-top: clamp(2rem, 5vw, 3rem);
}
.page-hero__stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}
/* Fin séparateur vertical entre les stats (sauf la dernière). */
.page-hero__stat:not(:last-child)::after {
	content: "";
	position: absolute;
	right: calc(clamp(1.75rem, 6vw, 4rem) / -2);
	top: 10%;
	height: 80%;
	width: 1px;
	background: rgba(255, 255, 255, 0.25);
}
.page-hero__stat-num {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: clamp(1.9rem, 4vw, 2.8rem);
	line-height: 1;
	color: #fff;
}
.page-hero__stat-label {
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.72);
	margin-top: 0.55rem;
}
@media (max-width: 600px) {
	.page-hero__stat:not(:last-child)::after {
		display: none;
	}
}
.entry-content {
	max-width: 800px;
	margin-inline: auto;
	padding-block: clamp(2.5rem, 5vw, 4rem);
}
.entry-content img {
	border-radius: var(--radius);
	margin-block: 1.5rem;
}
.entry-content h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin-top: 2.5rem;
}
.entry-content h3 {
	font-size: 1.25rem;
	margin-top: 2rem;
}
.entry-content p.lead {
	font-size: 1.25rem;
	line-height: 1.6;
	color: var(--ink);
}
.entry-content ul {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
}
.entry-content ul li {
	position: relative;
	padding-left: 1.6rem;
	margin-bottom: 0.6rem;
}
.entry-content ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.7em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--pink);
}

/* --- 12. CTA -------------------------------------------------------------- */
.cta {
	background: var(--ink);
	color: #fff;
	padding-block: clamp(3.5rem, 7vw, 6rem);
}
.cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}
.cta__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.3em;
	font-size: 0.78rem;
	color: var(--pink);
	margin-bottom: 0.75rem;
}
.cta__title {
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	margin: 0;
}
.cta__actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
}
.cta__phone {
	font-family: var(--font-display);
	font-size: 1.5rem;
}
.cta__phone:hover {
	color: var(--pink);
}

/* --- 13. Pied de page ----------------------------------------------------- */
.site-footer {
	background: var(--ink-soft);
	color: rgba(255, 255, 255, 0.85);
}
.site-footer__top {
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
	padding-block: clamp(3rem, 6vw, 4.5rem);
}
.site-footer__brand .site-logo__main {
	font-weight: 600;
	letter-spacing: 0.12em;
}
.site-footer__tag {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
	margin-top: 0.5rem;
}
.site-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}
.site-footer__list a:hover {
	color: var(--pink);
}
.site-footer__contact a {
	display: block;
	font-family: var(--font-display);
	font-size: 1.2rem;
	margin-bottom: 0.3rem;
}
.site-footer__contact a:hover {
	color: var(--pink);
}
.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-block: 1.5rem;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.5);
}
.site-footer__bottom p {
	margin: 0;
}

/* --- 14. Pagination ------------------------------------------------------- */
.pagination {
	margin-top: 3rem;
	text-align: center;
}
.pagination .page-numbers {
	display: inline-block;
	padding: 0.5rem 0.9rem;
	margin: 0 0.2rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
}
.pagination .current {
	background: var(--pink);
	border-color: var(--pink);
	color: #fff;
}

/* --- 14b. Bloc-marque (repli du logo) ------------------------------------ */
.brand-lockup {
	display: inline-flex;
	flex-direction: column;
	gap: 0.15rem;
	line-height: 1;
}
.brand-lockup__row {
	display: inline-flex;
	align-items: baseline;
	gap: 0.12em;
}
.brand-lockup__name {
	font-family: var(--font-body);
	font-weight: 600;
	letter-spacing: 0.14em;
	font-size: 1.4rem;
	color: var(--ink);
}
.brand-lockup__mark {
	font-family: var(--font-display);
	font-weight: 700;
	font-style: italic;
	font-size: 1.85rem;
	line-height: 0;
	margin-left: -0.08em;
	background: linear-gradient(165deg, #ff52b0 0%, var(--pink) 45%, var(--pink-dark) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: var(--pink);
}
.brand-lockup__co {
	font-family: var(--font-body);
	font-weight: 400;
	font-style: italic;
	font-size: 0.95rem;
	color: var(--ink);
	margin-left: -0.04em;
}
.brand-lockup__tagline {
	font-family: var(--font-body);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 0.52rem;
	color: var(--pink);
}
/* Variantes sur fond sombre (pied de page + en-tête). */
.brand-lockup--footer .brand-lockup__name,
.brand-lockup--footer .brand-lockup__co,
.brand-lockup--header .brand-lockup__name,
.brand-lockup--header .brand-lockup__co {
	color: var(--cream);
}
/* Le repli logo grandit légèrement dans l'en-tête pour occuper la barre. */
.brand-lockup--header .brand-lockup__name {
	font-size: 1.55rem;
}
.brand-lockup--header .brand-lockup__mark {
	font-size: 2rem;
}

/* --- 14c. Formulaires (champs, alertes) ---------------------------------- */
.form-field {
	margin-bottom: 1.25rem;
}
.form-field label {
	display: block;
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ink);
	margin-bottom: 0.5rem;
}
.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--ink);
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 0.85rem 1rem;
	transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field textarea {
	resize: vertical;
	min-height: 140px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(230, 0, 126, 0.12);
}
.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea {
	border-color: #d13b3b;
	background: #fdf4f4;
}
.form-consent label {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	text-transform: none;
	letter-spacing: 0;
	font-weight: 400;
	font-size: 0.9rem;
	color: var(--muted);
	cursor: pointer;
}
.form-consent input {
	width: auto;
	margin-top: 0.25rem;
	accent-color: var(--pink);
}
.cf-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.form-alert {
	border-radius: var(--radius);
	padding: 1rem 1.25rem;
	margin-bottom: 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}
.form-alert strong {
	font-family: var(--font-display);
	font-size: 1.1rem;
}
.form-alert--success {
	background: #eef7ef;
	border: 1px solid #bfe0c4;
	color: #1f5b2a;
}
.form-alert--error {
	background: #fdf2f2;
	border: 1px solid #f0c5c5;
	color: #8c2b2b;
}

/* --- 14d. Page Contact ---------------------------------------------------- */
.contact {
	padding-block: clamp(3.5rem, 7vw, 6rem);
}
.contact__grid {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: start;
}
.contact__info-title,
.contact__form-title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin-bottom: 1.75rem;
}
.contact__list {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.contact__item {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	padding-left: 1.25rem;
	border-left: 2px solid var(--pink);
}
.contact__item-label {
	font-size: 0.75rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--muted);
}
.contact__item-value {
	font-family: var(--font-display);
	font-size: 1.25rem;
	color: var(--ink);
}
a.contact__item-value:hover {
	color: var(--pink);
}
.contact__note {
	background: var(--cream);
	border-radius: var(--radius);
	padding: 1.25rem 1.5rem;
	font-size: 0.95rem;
	color: var(--ink-soft);
}
.contact__note p {
	margin: 0;
}
.contact__form-wrap {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: clamp(1.5rem, 4vw, 2.75rem);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}
.contact-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}
.contact-form__submit {
	margin-top: 0.5rem;
	width: 100%;
}

/* --- 14e. Page À propos --------------------------------------------------- */
.about-intro {
	padding-block: clamp(3.5rem, 7vw, 6rem);
}
.about-intro__inner {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: clamp(2rem, 6vw, 5rem);
	align-items: start;
}
.about-intro__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.3em;
	font-size: 0.78rem;
	color: var(--pink);
	margin-bottom: 1rem;
}
.about-intro__title {
	font-size: clamp(1.8rem, 4vw, 2.8rem);
}
.about-intro__text p {
	font-size: 1.1rem;
}
.about-values {
	background: var(--cream);
	padding-block: clamp(4rem, 8vw, 7rem);
}
.about-values__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}
.value-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 2rem 1.75rem;
	border-top: 3px solid var(--pink);
}
.value-card__title {
	font-size: 1.25rem;
	margin-bottom: 0.6rem;
}
.value-card__text {
	color: var(--muted);
	font-size: 0.95rem;
	margin: 0;
}
.about-process {
	padding-block: clamp(4rem, 8vw, 7rem);
}
.about-process__steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	counter-reset: step;
}
.process-step {
	position: relative;
	padding-top: 1rem;
}
.process-step__num {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 2.6rem;
	color: var(--pink);
	opacity: 0.4;
	display: block;
	margin-bottom: 0.5rem;
}
.process-step__title {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
}
.process-step__text {
	color: var(--muted);
	font-size: 0.95rem;
	margin: 0;
}

/* --- 15. Responsive ------------------------------------------------------- */
@media (max-width: 1024px) {
	.services__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.about-values__grid,
	.about-process__steps {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 900px) {
	.site-nav {
		position: fixed;
		inset: var(--header-h) 0 auto 0;
		background: var(--ink);
		border-bottom: 1px solid rgba(244, 238, 231, 0.12);
		transform: translateY(-120%);
		transition: transform var(--transition);
		padding: 1.5rem 0;
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
		max-height: calc(100vh - var(--header-h));
		overflow-y: auto;
	}
	.site-nav.is-open {
		transform: translateY(0);
	}
	.site-nav__list {
		flex-direction: column;
		gap: 0.5rem;
		padding-inline: clamp(1.25rem, 5vw, 3rem);
	}
	.site-nav__list a {
		display: block;
		padding: 0.6rem 0;
	}
	.custom-logo-link img,
	.site-header.is-scrolled .custom-logo-link img {
		max-height: 44px;
	}
	.brand-lockup--header .brand-lockup__name {
		font-size: 1.25rem;
	}
	.brand-lockup--header .brand-lockup__mark {
		font-size: 1.6rem;
	}
	.nav-toggle {
		display: flex;
	}
	.intro__inner {
		grid-template-columns: 1fr;
	}
	.realisations__grid,
	.post-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.cta__inner {
		flex-direction: column;
		align-items: flex-start;
	}
	.contact__grid,
	.about-intro__inner {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 600px) {
	.services__grid,
	.realisations__grid,
	.post-grid {
		grid-template-columns: 1fr;
	}
	.about-values__grid,
	.about-process__steps {
		grid-template-columns: 1fr;
	}
	.contact-form__row {
		grid-template-columns: 1fr;
	}
	.hero {
		min-height: 80vh;
	}
}

/* --- 15. Compléments : 404, recherche, réseaux, navigation, commentaires --- */

/* Page 404 */
.error-404 {
	padding: clamp(4rem, 10vw, 8rem) 0;
	text-align: center;
	background: var(--cream);
}
.error-404__code {
	font-family: var(--font-display);
	font-size: clamp(5rem, 14vw, 9rem);
	line-height: 1;
	color: var(--pink);
	margin: 0 0 0.5rem;
}
.error-404__title {
	font-family: var(--font-display);
	font-size: clamp(1.6rem, 4vw, 2.4rem);
	margin: 0 0 1rem;
}
.error-404__text {
	max-width: 34rem;
	margin: 0 auto 2rem;
	color: var(--muted);
}
.error-404__actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 2.5rem;
}
.error-404__search {
	max-width: 30rem;
	margin: 0 auto;
}
.error-404__search-label {
	color: var(--muted);
	margin-bottom: 0.75rem;
}

/* Formulaire de recherche */
.search-form__row {
	display: flex;
	gap: 0.75rem;
}
.search-form__input {
	flex: 1;
	padding: 0.85rem 1.1rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	font-family: var(--font-body);
	font-size: 1rem;
	background: var(--white);
}
.search-form__input:focus {
	outline: 2px solid var(--pink);
	outline-offset: 1px;
	border-color: transparent;
}
.search-results__form {
	max-width: 34rem;
	margin: 0 auto 3rem;
}
.section-head__count {
	color: var(--muted);
	margin-top: 0.5rem;
}

/* Réseaux sociaux */
.social-links {
	display: flex;
	gap: 0.75rem;
	align-items: center;
}
.social-links__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid currentColor;
	border-radius: 50%;
	color: inherit;
	transition: var(--transition);
}
.social-links__item:hover {
	color: var(--pink);
	transform: translateY(-2px);
}
.social-links--footer {
	margin-top: 1rem;
}
.social-links--contact {
	margin: 1.25rem 0;
	color: var(--ink);
}

/* Étiquette « Service » dans la grille de catégorie */
.realisation-item__type {
	display: inline-block;
	margin-top: 0.35rem;
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--pink);
}

/* Navigation article précédent / suivant */
.post-nav {
	margin: 3rem auto;
}
.post-nav .nav-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	border-top: 1px solid var(--line);
	padding-top: 1.5rem;
}
.post-nav .nav-next {
	text-align: right;
}
.post-nav a {
	text-decoration: none;
	color: var(--ink);
}
.post-nav__label {
	display: block;
	font-size: 0.8rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 0.25rem;
}
.post-nav__title {
	font-family: var(--font-display);
	font-size: 1.1rem;
}
.post-nav a:hover .post-nav__title {
	color: var(--pink);
}

/* Commentaires */
.comments {
	max-width: 760px;
	margin: 3rem auto 4rem;
}
.comments__title,
.comments__reply-title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
}
.comments__list {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
}
.comments__list .comment {
	border-bottom: 1px solid var(--line);
	padding: 1.25rem 0;
}
.comments__list .children {
	list-style: none;
	margin: 1rem 0 0 1rem;
	padding-left: 1rem;
	border-left: 2px solid var(--cream-2);
}
.comments__list .comment-author {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-weight: 500;
}
.comments__list .avatar {
	border-radius: 50%;
}
.comments__list .comment-metadata {
	font-size: 0.85rem;
}
.comments__list .comment-metadata a {
	color: var(--muted);
	text-decoration: none;
}
.comments__list .reply a {
	font-size: 0.85rem;
	color: var(--pink);
	text-decoration: none;
}
.comments__closed {
	color: var(--muted);
	font-style: italic;
}
.comment-form label {
	display: block;
	font-weight: 500;
	margin-bottom: 0.3rem;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 0.8rem 1rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	font-family: var(--font-body);
	font-size: 1rem;
	margin-bottom: 1rem;
}
.comment-form input:focus,
.comment-form textarea:focus {
	outline: 2px solid var(--pink);
	outline-offset: 1px;
	border-color: transparent;
}

@media (max-width: 600px) {
	.search-form__row {
		flex-direction: column;
	}
	.post-nav .nav-links {
		grid-template-columns: 1fr;
	}
	.post-nav .nav-next {
		text-align: left;
	}
}

/* --- 16. Comparateur avant / après ---------------------------------------- */
.ba-section {
	padding: clamp(2.5rem, 6vw, 5rem) 0;
	background: var(--cream);
}
.ba-compare {
	max-width: 980px;
	margin: 0 auto;
}
.ba-compare__frame {
	--ba-pos: 50%;
	position: relative;
	overflow: hidden;
	border-radius: var(--radius);
	aspect-ratio: 16 / 10;
	background: var(--ink-soft);
	box-shadow: 0 24px 60px rgba(22, 19, 19, 0.18);
}
.ba-compare__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin: 0;
}
/* L'image « avant » est au-dessus, révélée sur la largeur du curseur. */
.ba-compare__img--before {
	clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0);
}
.ba-compare__badge {
	position: absolute;
	top: 1rem;
	padding: 0.35rem 0.9rem;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	border-radius: 999px;
	color: var(--white);
	background: rgba(22, 19, 19, 0.65);
	backdrop-filter: blur(4px);
	pointer-events: none;
	z-index: 2;
}
.ba-compare__badge--before {
	left: 1rem;
}
.ba-compare__badge--after {
	right: 1rem;
	background: var(--pink);
}
.ba-compare__divider {
	position: absolute;
	top: 0;
	bottom: 0;
	left: var(--ba-pos);
	width: 2px;
	margin-left: -1px;
	background: var(--white);
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
	pointer-events: none;
	z-index: 2;
}
.ba-compare__knob {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--white);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}
.ba-compare__knob::before,
.ba-compare__knob::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	transform: translateY(-50%);
}
.ba-compare__knob::before {
	left: 9px;
	border-right: 7px solid var(--pink);
}
.ba-compare__knob::after {
	right: 9px;
	border-left: 7px solid var(--pink);
}
/* Le curseur invisible couvre tout le cadre : glisser (souris/tactile)
   et flèches clavier fonctionnent nativement. */
.ba-compare__range {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: ew-resize;
	-webkit-appearance: none;
	appearance: none;
	z-index: 3;
}
.ba-compare__range:focus-visible ~ .ba-compare__divider,
.ba-compare__frame:has(.ba-compare__range:focus-visible) .ba-compare__divider {
	background: var(--pink);
}
.ba-compare__hint {
	text-align: center;
	color: var(--muted);
	font-size: 0.9rem;
	margin-top: 0.9rem;
}

/* Badge « Avant / Après » sur les cartes de la galerie */
.realisation-item__ba {
	position: absolute;
	top: 0.9rem;
	left: 0.9rem;
	z-index: 2;
	padding: 0.28rem 0.75rem;
	font-size: 0.68rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	border-radius: 999px;
	color: var(--white);
	background: var(--pink);
	pointer-events: none;
}

/* --- 17. Widgets du pied de page ------------------------------------------ */
.site-footer__widgets {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2rem;
	padding: 2rem 1.5rem;
	border-top: 1px solid rgba(244, 238, 231, 0.14);
}
.footer-widget {
	font-size: 0.95rem;
	color: rgba(244, 238, 231, 0.75);
}
.footer-widget__title {
	font-family: var(--font-display);
	font-size: 1.05rem;
	color: var(--cream);
	margin: 0 0 0.75rem;
}
.footer-widget a {
	color: rgba(244, 238, 231, 0.85);
}
.footer-widget a:hover {
	color: var(--pink);
}
.footer-widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer-widget li {
	margin-bottom: 0.4rem;
}

/* --- 18. Vidéo : section parallaxe, boutons play, lightbox, galerie ------- */

/* Section vidéo de l'accueil (fond fixe = effet parallaxe) */
.video-feature {
	position: relative;
	min-height: 62vh;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}
@media (max-width: 900px), (hover: none) {
	.video-feature {
		background-attachment: scroll; /* iOS/Android ne gèrent pas fixed. */
		min-height: 46vh;
	}
}
.video-feature__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(22, 19, 19, 0.55), rgba(22, 19, 19, 0.55));
}
.video-feature__content {
	position: relative;
	text-align: center;
	color: var(--white);
	padding: clamp(3rem, 8vw, 6rem) 1.5rem;
}
.video-feature__eyebrow {
	font-size: 0.85rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--pink);
	font-weight: 500;
	margin-bottom: 0.75rem;
}
.video-feature__title {
	font-family: var(--font-display);
	font-size: clamp(1.8rem, 4.5vw, 3rem);
	margin: 0 0 2rem;
}

/* Boutons de lecture */
.play-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 84px;
	height: 84px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.14);
	border: 2px solid rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(4px);
	cursor: pointer;
	transition: var(--transition);
}
.play-btn__icon {
	width: 0;
	height: 0;
	border-top: 14px solid transparent;
	border-bottom: 14px solid transparent;
	border-left: 22px solid var(--white);
	margin-left: 6px;
}
.play-btn:hover,
.play-btn:focus-visible {
	background: var(--pink);
	border-color: var(--pink);
	transform: scale(1.06);
}

/* Bouton play sur les cartes des galeries */
.play-btn--grid,
.play-btn--card {
	position: absolute;
	z-index: 2;
	width: 54px;
	height: 54px;
	border-width: 2px;
}
.play-btn--grid .play-btn__icon,
.play-btn--card .play-btn__icon {
	border-top-width: 9px;
	border-bottom-width: 9px;
	border-left-width: 14px;
	margin-left: 4px;
}
.play-btn--grid {
	right: 0.9rem;
	bottom: 0.9rem;
}
.play-btn--card {
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.play-btn--card:hover,
.play-btn--card:focus-visible {
	transform: translate(-50%, -50%) scale(1.08);
}

/* Lightbox vidéo */
.video-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
}
.video-lightbox[hidden] {
	display: none;
}
.video-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 8, 9, 0.9);
}
.video-lightbox__dialog {
	position: relative;
	width: min(1080px, 100%);
}
.video-lightbox__close {
	position: absolute;
	top: -48px;
	right: 0;
	background: none;
	border: 0;
	color: var(--white);
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	padding: 0.5rem;
}
.video-lightbox__close:hover {
	color: var(--pink);
}
.video-lightbox__media {
	aspect-ratio: 16 / 9;
	background: #000;
	border-radius: var(--radius);
	overflow: hidden;
}
.video-lightbox__media iframe,
.video-lightbox__media video {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}
body.has-lightbox {
	overflow: hidden;
}

/* Lecteur intégré (page d'un projet) */
.realisation-video {
	padding: clamp(2.5rem, 6vw, 5rem) 0;
	background: var(--cream);
}
.video-player {
	display: block;
	width: min(980px, 100%);
	margin: 0 auto;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(22, 19, 19, 0.18);
}
.video-player--embed {
	aspect-ratio: 16 / 9;
	background: #000;
}
.video-player--embed iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

/* Page Galerie vidéo */
.video-gallery {
	padding: clamp(2.5rem, 6vw, 5rem) 0;
}
.video-gallery__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--gap);
}
@media (max-width: 760px) {
	.video-gallery__grid {
		grid-template-columns: 1fr;
	}
}
.video-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--ink-soft);
}
.video-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.video-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(22, 19, 19, 0.08), rgba(22, 19, 19, 0.35));
	pointer-events: none;
}
.video-card__media .play-btn--card {
	z-index: 3;
}
.video-card__body {
	padding: 1.1rem 0.25rem 0;
}
.video-card__title {
	font-family: var(--font-display);
	font-size: 1.25rem;
	margin: 0 0 0.35rem;
}
.video-card__title a {
	color: var(--ink);
	text-decoration: none;
}
.video-card__title a:hover {
	color: var(--pink);
}
.video-card__excerpt {
	color: var(--muted);
	font-size: 0.95rem;
	margin: 0;
}

/* Carte de localisation (page Contact) */
.contact-map {
	padding: 0 0 clamp(2.5rem, 6vw, 5rem);
}
.contact-map__iframe {
	display: block;
	width: 100%;
	height: 440px;
	border: 0;
	border-radius: var(--radius);
	box-shadow: 0 18px 48px rgba(22, 19, 19, 0.12);
}
@media (max-width: 700px) {
	.contact-map__iframe {
		height: 320px;
	}
}

/* --- 19. Équipe ----------------------------------------------------------- */
.team {
	padding: clamp(2.5rem, 6vw, 5rem) 0;
}
.team--others {
	background: var(--cream);
}
.team__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--gap);
}
@media (max-width: 1000px) {
	.team__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.team__grid { grid-template-columns: 1fr; }
}
.member-card {
	text-align: center;
}
.member-card__media {
	position: relative;
	display: block;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--ink-soft);
}
.member-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition);
}
.member-card__media:hover img {
	transform: scale(1.05);
}
.member-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-family: var(--font-display);
	font-size: 3.5rem;
	color: var(--cream);
	background: linear-gradient(135deg, var(--ink-soft), var(--pink-dark));
}
.member-card__body {
	padding: 1rem 0.25rem 0;
}
.member-card__name {
	font-family: var(--font-display);
	font-size: 1.25rem;
	margin: 0 0 0.2rem;
}
.member-card__name a {
	color: var(--ink);
	text-decoration: none;
}
.member-card__name a:hover {
	color: var(--pink);
}
.member-card__role {
	color: var(--pink);
	font-size: 0.9rem;
	letter-spacing: 0.04em;
	margin: 0 0 0.6rem;
}

/* Réseaux d'un membre */
.member-socials {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}
.member-socials--card {
	justify-content: center;
}
.member-socials__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	color: var(--ink);
	background: var(--cream);
	transition: var(--transition);
}
.member-socials__item:hover {
	color: var(--white);
	background: var(--pink);
	transform: translateY(-2px);
}

/* Fiche membre détaillée */
.member-detail {
	padding: clamp(2.5rem, 6vw, 5rem) 0;
}
.member-detail__grid {
	display: grid;
	grid-template-columns: 340px 1fr;
	gap: clamp(1.5rem, 4vw, 3.5rem);
	align-items: start;
}
@media (max-width: 800px) {
	.member-detail__grid { grid-template-columns: 1fr; }
}
.member-detail__photo {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: 0 24px 60px rgba(22, 19, 19, 0.16);
}
.member-detail__media .member-socials {
	margin-top: 1rem;
}
.member-detail__role {
	color: var(--pink);
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-size: 0.9rem;
	margin: 0 0 1rem;
}
.member-detail__skills {
	margin-top: 2rem;
}
.member-detail__skills-title {
	font-family: var(--font-display);
	font-size: 1.4rem;
	margin: 0 0 1rem;
}
.member-skills {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.6rem;
}
@media (max-width: 560px) {
	.member-skills { grid-template-columns: 1fr; }
}
.member-skills__item {
	position: relative;
	padding-left: 1.6rem;
	color: var(--ink);
}
.member-skills__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--pink);
}

/* --- 20. Blog : mise en page 2 colonnes + barre latérale ------------------ */
.blog-layout__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: start;
}
@media (max-width: 900px) {
	.blog-layout__grid { grid-template-columns: 1fr; }
}
.post-grid--blog {
	grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 620px) {
	.post-grid--blog { grid-template-columns: 1fr; }
}

.blog-sidebar {
	position: sticky;
	top: 100px;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
@media (max-width: 900px) {
	.blog-sidebar { position: static; }
}
.blog-sidebar .widget {
	background: var(--cream);
	border-radius: var(--radius);
	padding: 1.5rem;
}
.widget__title {
	font-family: var(--font-display);
	font-size: 1.2rem;
	margin: 0 0 1rem;
}
.widget-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.widget-list li {
	padding: 0.4rem 0;
	border-bottom: 1px solid var(--line);
}
.widget-list li:last-child {
	border-bottom: 0;
}
.widget-list a {
	color: var(--ink);
	text-decoration: none;
}
.widget-list a:hover {
	color: var(--pink);
}

/* Articles récents */
.widget-recent__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.widget-recent__link {
	display: flex;
	gap: 0.85rem;
	align-items: center;
	text-decoration: none;
	color: var(--ink);
}
.widget-recent__thumb {
	flex: 0 0 64px;
}
.widget-recent__thumb img,
.widget-recent__thumb-empty {
	display: block;
	width: 64px;
	height: 64px;
	object-fit: cover;
	border-radius: var(--radius);
	background: var(--cream-2);
}
.widget-recent__title {
	display: block;
	font-family: var(--font-display);
	font-size: 1rem;
	line-height: 1.3;
}
.widget-recent__link:hover .widget-recent__title {
	color: var(--pink);
}
.widget-recent__date {
	display: block;
	font-size: 0.8rem;
	color: var(--muted);
	margin-top: 0.2rem;
}

/* Catégories / termes sous un article */
.post-terms {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 2rem 0;
}
.post-terms a {
	display: inline-block;
	padding: 0.3rem 0.85rem;
	font-size: 0.8rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	border-radius: 999px;
	background: var(--cream);
	color: var(--ink);
	text-decoration: none;
}
.post-terms a:hover {
	background: var(--pink);
	color: var(--white);
}

/* --- 21. Galerie photo : grille masonry + visionneuse --------------------- */
.photo-gallery {
	padding: clamp(2rem, 5vw, 4rem) 0;
}
/* Masonry via colonnes CSS : élégant, léger, sans dépendance. */
.photo-grid {
	column-count: 3;
	column-gap: 14px;
}
@media (max-width: 900px) {
	.photo-grid { column-count: 2; }
}
@media (max-width: 560px) {
	.photo-grid { column-count: 1; }
}
.photo-item {
	position: relative;
	display: block;
	margin: 0 0 14px;
	break-inside: avoid;
	border-radius: var(--radius);
	overflow: hidden;
	cursor: zoom-in;
	background: var(--ink-soft);
}
.photo-item.is-hidden {
	display: none;
}
.photo-item img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform var(--transition);
}
.photo-item:hover img {
	transform: scale(1.05);
}
.photo-item__zoom {
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(22, 19, 19, 0), rgba(22, 19, 19, 0.28));
	opacity: 0;
	transition: opacity var(--transition);
}
.photo-item:hover .photo-item__zoom {
	opacity: 1;
}
.photo-item__zoom::after {
	content: "+";
	position: absolute;
	right: 0.8rem;
	bottom: 0.6rem;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--pink);
	color: var(--white);
	font-size: 1.4rem;
	line-height: 1;
}

/* Visionneuse d'images */
.img-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(1rem, 4vw, 3rem);
}
.img-lightbox[hidden] {
	display: none;
}
.img-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 8, 9, 0.92);
}
.img-lightbox__figure {
	position: relative;
	z-index: 1;
	margin: 0;
	max-width: min(1100px, 100%);
	max-height: 100%;
	text-align: center;
}
.img-lightbox__img {
	max-width: 100%;
	max-height: 82vh;
	border-radius: var(--radius);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.img-lightbox__caption {
	color: var(--cream);
	margin-top: 0.85rem;
	font-size: 0.95rem;
	letter-spacing: 0.04em;
}
.img-lightbox__close,
.img-lightbox__nav {
	position: absolute;
	z-index: 2;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: var(--white);
	cursor: pointer;
	transition: var(--transition);
}
.img-lightbox__close {
	top: 1.2rem;
	right: 1.2rem;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	font-size: 1.3rem;
	line-height: 1;
}
.img-lightbox__nav {
	top: 50%;
	transform: translateY(-50%);
	width: 54px;
	height: 54px;
	border-radius: 50%;
	font-size: 2rem;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.img-lightbox__nav--prev { left: clamp(0.5rem, 3vw, 2rem); }
.img-lightbox__nav--next { right: clamp(0.5rem, 3vw, 2rem); }
.img-lightbox__close:hover,
.img-lightbox__nav:hover {
	background: var(--pink);
	border-color: var(--pink);
}
@media (max-width: 600px) {
	.img-lightbox__nav { width: 44px; height: 44px; font-size: 1.5rem; }
}
