/* =========================================================
   SINAKHO PORTFOLIO — STYLES PRINCIPAUX
   ========================================================= */

:root {
	--color-bg: #0b0b0c;
	--color-text: #f5f5f3;
	--color-text-muted: #b3b3ad;
	--color-accent: #ffffff;
	--font-heading: 'Bebas Neue', 'Poppins', sans-serif;
	--font-body: 'Poppins', sans-serif;
	--header-height: 140px;
	--container-width: 1280px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--color-bg);
	color: var(--color-text);
	font-family: var(--font-body);
	line-height: 1.6;
}

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

a { color: inherit; text-decoration: none; }

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

.page-title {
	font-family: var(--font-heading);
	font-size: clamp(2.5rem, 6vw, 4rem);
	letter-spacing: 0.03em;
	margin: calc(var(--header-height) + 40px) 0 32px;
}

.btn {
	display: inline-block;
	padding: 14px 32px;
	border-radius: 999px;
	font-weight: 500;
	letter-spacing: 0.02em;
	transition: transform 0.25s ease, background 0.25s ease;
}
.btn--primary {
	background: var(--color-accent);
	color: #0b0b0c;
}
.btn--primary:hover { transform: translateY(-2px); }

/* =========================================================
   HEADER — logo à gauche, menu à droite
   ========================================================= */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 1000;
	height: var(--header-height);
	background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0));
	transition: background 0.3s ease;
}

.site-header__inner {
	max-width: var(--container-width);
	margin: 0 auto;
	height: 100%;
	padding: 0 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-header__logo img { max-height: 120px; width: auto; }
.site-header__logo-text {
	font-family: var(--font-heading);
	font-size: 1.4rem;
	letter-spacing: 0.05em;
}

.site-header__menu {
	list-style: none;
	display: flex;
	gap: 40px;
	margin: 0;
	padding: 0;
}
.site-header__menu a {
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	position: relative;
}
.site-header__menu a::after {
	content: '';
	position: absolute;
	left: 0; bottom: -6px;
	width: 0; height: 1px;
	background: currentColor;
	transition: width 0.25s ease;
}
.site-header__menu a:hover::after { width: 100%; }

.site-header__burger {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	width: 32px; height: 24px;
	flex-direction: column;
	justify-content: space-between;
	padding: 0;
}
.site-header__burger span {
	display: block;
	height: 2px;
	background: var(--color-text);
	border-radius: 2px;
}

@media (max-width: 860px) {
	.site-header__burger { display: flex; }
	.site-header__nav {
		position: fixed;
		top: var(--header-height); right: 0;
		width: 260px;
		background: #111;
		height: calc(100vh - var(--header-height));
		transform: translateX(100%);
		transition: transform 0.3s ease;
	}
	.site-header__nav.is-open { transform: translateX(0); }
	.site-header__menu {
		flex-direction: column;
		gap: 0;
		padding: 24px;
	}
	.site-header__menu li { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* =========================================================
   HERO — VIDÉO EN BOUCLE AUTOMATIQUE (page Accueil)
   -----------------------------------------------------------
   Une seule section plein écran (100vh) qui contient la vidéo.
   La vidéo est en position absolute, calée sur les 4 bords
   (inset: 0) et recadrée avec object-fit: cover pour remplir
   tout l'écran sans déformation, quelle que soit sa résolution
   d'origine — exactement la même méthode que pour une image de
   fond plein écran.
   ========================================================= */
.hero-video {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background: #000;
}

.hero-video__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero-video__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: rgba(0,0,0,0.15);
}

.hero-video__title {
	font-family: var(--font-heading);
	font-size: clamp(3rem, 10vw, 7rem);
	letter-spacing: 0.05em;
	margin: 0;
	color: var(--color-text);
}

.hero-video__subtitle {
	font-size: 1.15rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--color-text);
	font-weight: 600;
	margin-top: 12px;
}

.hero-video__scrollcue {
	position: absolute;
	bottom: 40px;
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	opacity: 0.8;
	animation: bounce 1.8s infinite;
}
@keyframes bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(10px); }
}

.home-intro {
	padding: 0 0 100px;
	text-align: center;
}

.marquee-band {
	overflow: hidden;
	width: 100%;
	padding: 28px 0;
	margin-bottom: 60px;
	border-top: 1px solid rgba(255,255,255,0.12);
	border-bottom: 1px solid rgba(255,255,255,0.12);
}
.marquee-band__track {
	display: flex;
	width: max-content;
	animation: marquee-scroll 22s linear infinite;
}
.marquee-band__group {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}
.marquee-band__item {
	font-family: var(--font-heading);
	font-size: clamp(1.6rem, 4.4vw, 3.2rem);
	letter-spacing: 0.03em;
	white-space: nowrap;
	padding: 0 28px;
	position: relative;
}
.marquee-band__item::after {
	content: '\2726';
	position: absolute;
	right: -4px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 0.35em;
	color: var(--color-text-muted);
	opacity: 0.6;
}
@keyframes marquee-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.marquee-band__track { animation: none; }
}

.text-accent-yellow { color: #F5D76D; }
.home-intro p { color: var(--color-text-muted); max-width: 640px; margin: 0 auto 32px; }

.home-intro__tagline {
	margin: 0 0 40px;
}
.home-intro__tagline-text {
	display: inline-block;
	overflow: hidden;
	white-space: nowrap;
	vertical-align: bottom;
	max-width: 0;
	border-right: 2px solid var(--color-text);
	font-family: var(--font-heading);
	font-size: clamp(2.1rem, 5.6vw, 4.1rem);
	letter-spacing: 0.02em;
	color: var(--color-text);
}
@media (max-width: 600px) {
	.home-intro__tagline-text { font-size: 1.3rem; }
}
.home-intro__tagline-text.is-typed {
	animation:
		home-intro-typing 2.2s steps(42, end) forwards,
		home-intro-caret-blink 0.75s step-end infinite;
}
@keyframes home-intro-typing {
	from { max-width: 0; }
	to { max-width: 42ch; }
}
@keyframes home-intro-caret-blink {
	0%, 100% { border-color: var(--color-text); }
	50% { border-color: transparent; }
}
@media (prefers-reduced-motion: reduce) {
	.home-intro__tagline-text { max-width: 42ch; border-right: none; }
	.home-intro__tagline-text.is-typed { animation: none; }
}

.home-intro__cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}
.home-intro__cta-text {
	font-family: 'Caveat', cursive;
	font-size: 2.1rem;
	color: var(--color-text);
	transform: rotate(-3deg);
	display: inline-block;
}
.home-intro__cta-arrow {
	width: 34px;
	height: auto;
	color: var(--color-text);
	animation: cta-bounce 1.6s ease-in-out infinite;
}
@keyframes cta-bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(8px); }
}

/* =========================================================
   LOGO INTERACTIF — apparition en fondu au scroll, zones cliquables
   ========================================================= */
.logo-showcase {
	position: relative;
	display: flex;
	justify-content: center;
	padding: 40px 32px 120px;
	overflow: hidden;
}
.logo-showcase__hover-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
	z-index: 0;
}
.logo-showcase__hover-video.is-active {
	opacity: 0.45;
}
.logo-showcase__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 900px;
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.9s ease, transform 0.9s ease;
}
.logo-showcase__inner.is-visible {
	opacity: 1;
	transform: translateY(0);
}
.logo-showcase__svg { width: 100%; height: auto; display: block; }

@media (max-width: 700px) {
	.logo-showcase { padding: 20px 6px 80px; }
}

.logo-hotspot {
	fill: rgba(255,255,255,0);
	stroke: rgba(255,255,255,0);
	stroke-width: 4;
	transition: fill 0.35s ease, stroke 0.35s ease, stroke-width 0.35s ease;
	cursor: pointer;
}
.logo-hotspot.is-highlighted,
.logo-showcase__svg a:hover .logo-hotspot,
.logo-showcase__svg a:focus .logo-hotspot {
	fill: rgba(255,255,255,0.2);
	stroke: rgba(255,255,255,0.95);
	stroke-width: 5;
}

.logo-hotspot-label {
	fill: #fff;
	font-family: var(--font-heading);
	font-size: 130px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	opacity: 0;
	transition: opacity 0.25s ease;
	pointer-events: none;
}
.logo-showcase__svg a:hover .logo-hotspot-label,
.logo-showcase__svg a:focus .logo-hotspot-label {
	opacity: 1;
}

/* =========================================================
   PORTFOLIO — tuiles Photo / Vidéo (format 9:16)
   ========================================================= */
.portfolio-choice {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-bottom: 64px;
}
.portfolio-choice__tile {
	display: block;
	position: relative;
	isolation: isolate;
	aspect-ratio: 9 / 16;
	width: 100%;
	background-color: #17171a;
	background-size: cover;
	background-position: center;
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	padding: 0;
	text-decoration: none;
	transition: transform 0.3s ease, border-color 0.3s ease;
}
.portfolio-choice__tile::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0.35) 100%);
	transition: background 0.3s ease;
}
.portfolio-choice__tile:hover {
	transform: translateY(-4px);
	border-color: rgba(255,255,255,0.4);
}
.portfolio-choice__tile.is-active {
	border-color: var(--color-accent);
}
.portfolio-choice__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}
.portfolio-choice__label {
	position: absolute;
	left: 50%;
	top: 28px;
	transform: translateX(-50%);
	z-index: 1;
	font-family: var(--font-heading);
	font-size: clamp(1.6rem, 4vw, 2.4rem);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #fff;
}
@media (max-width: 560px) {
	.portfolio-choice { grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 320px; margin-left: auto; margin-right: auto; }
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	padding-bottom: 100px;
}
.portfolio-grid img { width: 100%; height: 340px; object-fit: cover; border-radius: 4px; }
.portfolio-grid--video { grid-template-columns: repeat(2, 1fr); }
.portfolio-video-item iframe { width: 100%; aspect-ratio: 16/9; border-radius: 4px; border: none; }

/* =========================================================
   GRILLE VERTICALE 2×2 — vidéos format portrait (Réseaux sociaux)
   ========================================================= */
.portfolio-grid-vertical {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	max-width: 760px;
	margin: 0 auto 100px;
}
.portfolio-video-item--vertical {
	position: relative;
	aspect-ratio: 9 / 16;
	border-radius: 8px;
	overflow: hidden;
	background: #17171a;
}
.portfolio-video-item--vertical iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	aspect-ratio: auto;
	border-radius: 0;
	border: none;
}
@media (max-width: 600px) {
	.portfolio-grid-vertical { grid-template-columns: repeat(2, 1fr); gap: 10px; max-width: 320px; }
}
.portfolio-empty { color: var(--color-text-muted); grid-column: 1 / -1; }
.portfolio-back { margin: 40px 0 100px; }
.portfolio-back a {
	color: var(--color-text-muted);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.portfolio-back a:hover { color: var(--color-text); }

/* =========================================================
   GRILLE DES COUPLES — page Mariages (2x2, nom + photo)
   ========================================================= */
.couples-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px 32px;
	margin: 20px 0 70px;
}
.couples-grid--three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 700px) {
	.couples-grid--three { grid-template-columns: 1fr; }
}
.couples-grid__item {
	display: block;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.3s ease;
}
.couples-grid__item:hover { transform: translateY(-4px); }
.couples-grid__item:hover .couples-grid__photo { opacity: 0.85; }
.couples-grid__name {
	font-family: 'Playfair Display', serif;
	font-style: italic;
	font-weight: 700;
	font-size: clamp(1.3rem, 2.6vw, 1.9rem);
	color: var(--color-text);
	margin: 0 0 18px;
}
.couples-grid__photo {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
	border-radius: 4px;
	transition: opacity 0.3s ease;
}
.couples-grid__photo--empty { background: #17171a; border: 1px dashed rgba(255,255,255,0.15); }
.couples-grid__photo--logo {
	object-fit: contain;
	background: #17171a;
	padding: 24px;
}
@media (max-width: 600px) {
	.couples-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* =========================================================
   PAGE MARIAGES — fond blanc, titre doré, texte sombre
   ========================================================= */
.mariages-page {
	background: #ffffff;
	color: #1a1a1a;
}
.mariages-page__title {
	font-family: 'Playfair Display', serif;
	font-style: italic;
	font-weight: 700;
	color: #C9A24B; /* doré */
	text-align: center;
}
.mariages-page .couples-grid__name { color: #1a1a1a; }
.mariages-page .couples-grid__photo--empty { background: #f3f0ea; border-color: rgba(0,0,0,0.12); }
.mariages-page .portfolio-back a { color: #6b6b6b; }
.mariages-page .portfolio-back a:hover { color: #1a1a1a; }

/* =========================================================
   MOSAÏQUE — galerie d'un couple (portrait/paysage mélangés)
   ========================================================= */
.masonry-grid {
	column-count: 4;
	column-gap: 14px;
	margin: 20px 0 80px;
}
/* Le bloc Galerie WordPress enveloppe toutes les photos dans UN SEUL
   conteneur avec sa propre grille interne (figée). On neutralise ce
   conteneur (display:contents) pour que chaque photo individuelle
   devienne directement enfant de .masonry-grid et se distribue
   librement dans les colonnes, comme prévu. */
.masonry-grid .wp-block-gallery,
.masonry-grid .blocks-gallery-grid {
	display: contents;
}
.masonry-grid figure,
.masonry-grid .wp-block-image,
.masonry-grid .blocks-gallery-item {
	margin: 0 0 16px;
	break-inside: avoid;
	width: 100% !important;
	flex-basis: auto !important;
}
.masonry-grid img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
	object-fit: initial;
	aspect-ratio: auto;
}
@media (max-width: 900px) {
	.masonry-grid { column-count: 3; }
}
@media (max-width: 560px) {
	.masonry-grid { column-count: 1; }
}

/* =========================================================
   BANDE DE CATÉGORIES — défilement infini vertical (page Vidéo)
   ========================================================= */
.cat-band {
	overflow: hidden;
	width: 100%;
	margin: 20px 0 90px;
	cursor: grab;
	touch-action: pan-y;
}
.cat-band.is-dragging { cursor: grabbing; }
.cat-band__track {
	display: flex;
	width: max-content;
	will-change: transform;
	user-select: none;
}
.cat-band__group {
	display: flex;
	flex-shrink: 0;
	gap: 28px;
	padding: 0 14px;
}
.cat-band__tile {
	display: block;
	position: relative;
	isolation: isolate;
	width: 380px;
	aspect-ratio: 9 / 16;
	flex-shrink: 0;
	background-color: #17171a;
	background-size: cover;
	background-position: center;
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	-webkit-user-drag: none;
	transition: transform 0.3s ease, border-color 0.3s ease;
}
.cat-band__tile img,
.cat-band__tile::before { pointer-events: none; }
.cat-band__tile:hover {
	transform: translateY(-6px);
	border-color: rgba(255,255,255,0.4);
}
.cat-band__tile::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.35) 100%);
}
.cat-band__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}
.cat-band__label {
	position: absolute;
	left: 22px;
	top: 26px;
	right: 22px;
	z-index: 1;
	font-family: var(--font-heading);
	font-size: 1.7rem;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #fff;
	line-height: 1.2;
	pointer-events: none;
}
@media (max-width: 700px) {
	.cat-band__tile { width: 260px; }
	.cat-band__label { font-size: 1.3rem; }
}

@media (max-width: 860px) {
	.portfolio-grid, .portfolio-grid--video { grid-template-columns: 1fr; }
}

/* =========================================================
   À PROPOS
   ========================================================= */
.apropos-hero { margin: calc(var(--header-height) + 40px) 0 40px; }
.apropos-hero-title {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 5vw, 3.4rem);
	line-height: 1.15;
	letter-spacing: 0.01em;
	margin: 0 0 18px;
	color: var(--color-text);
}
.apropos-hero-lead {
	color: var(--color-text-muted);
	font-size: 1.1rem;
	margin: 0 0 4px;
}
.apropos-hero-subtitle {
	font-family: var(--font-heading);
	font-size: clamp(1.6rem, 4.4vw, 3.2rem);
	line-height: 1.2;
	letter-spacing: 0.03em;
	color: var(--color-text);
	margin: 0 0 8px;
}
.apropos-photo { margin-bottom: 32px; border-radius: 8px; overflow: hidden; }
.apropos-photo--small {
	width: 100%;
	max-width: 480px;
	aspect-ratio: 4 / 3;
	border-radius: 4px;
	overflow: hidden;
	margin: 0 auto 24px;
}
.apropos-photo--small img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.apropos-content { padding-bottom: 100px; color: var(--color-text-muted); font-size: 1.05rem; }
.apropos-cta { margin-top: 48px; text-align: center; }
.apropos-cta .btn--primary {
	position: relative;
	animation: apropos-cta-pulse 2.2s ease-in-out infinite;
}
.apropos-cta .btn--primary:hover {
	transform: translateY(-3px) scale(1.04);
	animation-play-state: paused;
}
@keyframes apropos-cta-pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(245,215,109,0.55); }
	50% { box-shadow: 0 0 0 12px rgba(245,215,109,0); }
}
@media (prefers-reduced-motion: reduce) {
	.apropos-cta .btn--primary { animation: none; }
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-page { padding-bottom: 120px; }
.contact-page__layout {
	display: grid;
	grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.4fr);
	gap: 60px;
	align-items: start;
	margin-top: calc(var(--header-height) + 40px);
}
@media (max-width: 800px) {
	.contact-page__layout { grid-template-columns: 1fr; gap: 40px; }
}
.contact-page__intro {
	text-align: left;
}
.contact-page__intro-title {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 4.2vw, 3rem);
	line-height: 1.15;
	letter-spacing: 0.01em;
	margin: 0 0 16px;
	color: var(--color-text);
}
.contact-page__intro-text {
	color: var(--color-text-muted);
	font-size: 1.05rem;
	margin: 0 0 28px;
}
.contact-page__intro-instagram {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #F5D76D;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.05rem;
	letter-spacing: 0.03em;
	transition: opacity 0.2s ease;
}
.contact-page__intro-instagram svg { fill: #F5D76D; }
.contact-page__intro-instagram:hover { opacity: 0.75; }
.contact-form { margin-top: 32px; }
.contact-form__row { display: flex; gap: 20px; }
.contact-form__field { margin-bottom: 20px; flex: 1; }
.contact-form__field label {
	display: block;
	margin-bottom: 8px;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--color-text-muted);
}
.contact-form__field input,
.contact-form__field textarea {
	width: 100%;
	padding: 14px 16px;
	background: #17171a;
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: 6px;
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: 1rem;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
	outline: none;
	border-color: var(--color-accent);
}

.form-notice {
	padding: 14px 18px;
	border-radius: 6px;
	margin: 24px 0;
	font-size: 0.95rem;
}
.form-notice--success { background: rgba(80, 200, 120, 0.15); border: 1px solid rgba(80, 200, 120, 0.4); }
.form-notice--error { background: rgba(220, 80, 80, 0.15); border: 1px solid rgba(220, 80, 80, 0.4); }

.contact-page__socials { margin-top: 48px; }

@media (max-width: 600px) {
	.contact-form__row { flex-direction: column; gap: 0; }
}

/* =========================================================
   FOOTER — contacts en bas à droite
   ========================================================= */
.site-footer {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding: 32px;
}
.site-footer__inner {
	max-width: var(--container-width);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}
.site-footer__left {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px 24px;
}
.site-footer__left p { margin: 0; color: var(--color-text-muted); font-size: 0.85rem; }
.site-footer__left p a { text-decoration: underline; text-underline-offset: 3px; }
.site-footer__left p a:hover { color: var(--color-text); }
.site-footer__legal-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
}
.site-footer__legal-links a {
	color: var(--color-text-muted);
	font-size: 0.85rem;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.site-footer__legal-links a:hover { color: var(--color-text); }

/* =========================================================
   MENTIONS LÉGALES
   ========================================================= */
.legal-content { padding-bottom: 120px; color: var(--color-text-muted); }
.legal-content h2 {
	font-family: var(--font-heading);
	font-size: 1.4rem;
	letter-spacing: 0.03em;
	color: var(--color-text);
	margin: 40px 0 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.privacy-page .legal-content h2 { color: #F5D76D; }
.legal-content p { margin: 0 0 8px; line-height: 1.7; }
.legal-content a { text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:hover { color: var(--color-text); }
.site-footer__right {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-left: auto;
}
.site-footer__contact a { font-size: 0.9rem; color: var(--color-text-muted); }
.site-footer__socials { display: flex; gap: 14px; }
.social-icon { color: var(--color-text); transition: opacity 0.2s ease; }
.social-icon:hover { opacity: 0.7; }
