/* ==========================================================================
   Elax Studio : feuille de style principale
   Palette fixée : beige #F9EED1, noir #1A1A1A.
   Accents : terre cuite #B84A22 (clair #E0754A sur fond noir), vert sapin #2E5B4E.
   ========================================================================== */

/* ---- Polices ---------------------------------------------------------- */
@font-face {
	font-family: "Belwe";
	src: url("../fonts/belwe-light.woff2") format("woff2");
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Belwe";
	src: url("../fonts/belwe-medium.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Belwe";
	src: url("../fonts/belwe-bold.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Belwe Condensed";
	src: url("../fonts/belwe-condensed.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Inter";
	src: url("../fonts/inter-latin.woff2") format("woff2");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

/* ---- Jetons ----------------------------------------------------------- */
:root {
	--beige: #f9eed1;
	--noir: #1a1a1a;
	--terre: #b84a22;
	--terre-clair: #e0754a;
	--sapin: #2e5b4e;
	--terre-pale: #f0c9b4;
	--sauge-pale: #d3ddcf;
	--sable: #e2d3ab;
	--encre-2: #5c554a;
	--papier-2: #c9bfa6;
	--rule-dark: rgba(249, 238, 209, 0.18);

	--serif: "Belwe", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
	--sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

	--header-h: 72px;
	--wrap: 1180px;
	--gutter: clamp(1.25rem, 5vw, 3rem);
	--section: clamp(4rem, 9vw, 7.5rem);
	--hero-scroll: 430vh;
}

/* ---- Base ------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}
body {
	margin: 0;
	background: var(--beige);
	color: var(--noir);
	font-family: var(--sans);
	font-size: 1.0625rem;
	line-height: 1.6;
	font-feature-settings: "ss01", "cv11";
	-webkit-font-smoothing: antialiased;
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}
a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}
:focus-visible {
	outline: 3px solid var(--terre);
	outline-offset: 3px;
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.skip-link {
	position: absolute;
	left: 1rem;
	top: -4rem;
	background: var(--noir);
	color: var(--beige);
	padding: 0.6rem 1rem;
	z-index: 100;
}
.skip-link:focus {
	top: 1rem;
}
.wrap {
	width: min(var(--wrap), 100% - 2 * var(--gutter));
	margin-inline: auto;
}
.wrap-wide {
	width: min(1400px, 100% - 2 * var(--gutter));
	margin-inline: auto;
}

/* ---- Typographie ------------------------------------------------------ */
.h1,
.h2,
.h3,
.logo,
.footer-logo {
	font-family: var(--serif);
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -0.005em;
	margin: 0;
}
.h1 {
	font-size: clamp(2.5rem, 5.2vw, 4.3rem);
	max-width: 22ch;
}
.h2 {
	font-size: clamp(1.9rem, 3.4vw, 2.9rem);
	max-width: 24ch;
	margin-bottom: 1.6rem;
}
.h2-dark {
	color: var(--beige);
}
.h3 {
	font-size: clamp(1.35rem, 2vw, 1.7rem);
	line-height: 1.2;
}
p {
	margin: 0 0 1em;
}
.lead {
	font-size: clamp(1.15rem, 1.6vw, 1.35rem);
	line-height: 1.5;
	max-width: 60ch;
	margin-top: 1.4rem;
}
.lead-definition {
	color: var(--noir);
}
.prose {
	max-width: 68ch;
	font-size: 1.125rem;
}
.prose p + p {
	margin-top: 0.4em;
}
.prose ul {
	padding-left: 1.2em;
}
.prose-legal .h3 {
	margin: 2.4rem 0 0.7rem;
}
.section-lead {
	max-width: 52ch;
	color: var(--encre-2);
	font-size: 1.125rem;
	margin-bottom: 2.5rem;
}
.crumb {
	font-size: 0.9375rem;
	color: var(--encre-2);
	margin-bottom: 1.2rem;
}
.crumb span {
	margin-inline: 0.4em;
}

/* ---- Liens et boutons ------------------------------------------------- */
.link-arrow {
	display: inline-block;
	color: var(--terre);
	font-weight: 500;
	text-decoration: none;
	border-bottom: 1px solid currentColor;
	padding-bottom: 1px;
	transition: color 0.15s;
}
.link-arrow:hover {
	color: var(--noir);
}
.link-arrow-dark {
	color: var(--terre-clair);
}
.link-arrow-dark:hover {
	color: var(--beige);
}
.link-quiet {
	color: var(--encre-2);
	font-size: 0.95rem;
}
.btn {
	display: inline-block;
	background: var(--noir);
	color: var(--beige);
	font-family: var(--sans);
	font-weight: 500;
	font-size: 1rem;
	line-height: 1;
	padding: 1em 1.6em;
	text-decoration: none;
	border: 1px solid var(--noir);
	cursor: pointer;
	transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.btn:hover {
	background: var(--terre);
	border-color: var(--terre);
	color: #fff;
}
.btn-lg {
	font-size: 1.0625rem;
	padding: 1.05em 1.9em;
}
.btn-block {
	display: block;
	text-align: center;
}
.btn-header {
	background: transparent;
	color: var(--beige);
	border-color: var(--papier-2);
	font-size: 0.9375rem;
	padding: 0.7em 1.2em;
}
.btn-header:hover {
	background: var(--beige);
	border-color: var(--beige);
	color: var(--noir);
}

/* ---- Formes organiques ------------------------------------------------ */
.blob {
	position: absolute;
	z-index: 0;
	pointer-events: none;
}
.blob-terre-pale path {
	fill: var(--terre-pale);
}
.blob-sauge-pale path {
	fill: var(--sauge-pale);
}
.blob-terre path {
	fill: var(--terre);
}
.blob-sapin path {
	fill: var(--sapin);
}

/* ---- En-tête ---------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--noir);
	color: var(--beige);
	height: var(--header-h);
}
.admin-bar .site-header {
	top: 32px;
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	gap: 1rem;
}
.logo {
	font-weight: 700;
	font-size: 1.7rem;
	color: var(--beige);
	text-decoration: none;
	letter-spacing: 0.005em;
}
.nav {
	display: flex;
	align-items: center;
	gap: 2rem;
}
.nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 1.8rem;
}
.nav-list a {
	color: var(--beige);
	text-decoration: none;
	font-size: 1rem;
	font-weight: 450;
	padding-block: 0.3em;
	border-bottom: 1px solid transparent;
	transition: border-color 0.15s;
}
.nav-list a:hover,
.nav-list a[aria-current="page"] {
	border-bottom-color: var(--terre-clair);
}
.nav-toggle {
	display: none;
	background: none;
	border: 1px solid var(--papier-2);
	color: var(--beige);
	font: inherit;
	font-size: 0.9375rem;
	padding: 0.55em 0.9em;
	align-items: center;
	gap: 0.6em;
	cursor: pointer;
}
.nav-toggle-bar {
	width: 18px;
	height: 2px;
	background: currentColor;
	position: relative;
	display: inline-block;
}
.nav-toggle-bar::before,
.nav-toggle-bar::after {
	content: "";
	position: absolute;
	left: 0;
	width: 18px;
	height: 2px;
	background: currentColor;
	transition: transform 0.2s;
}
.nav-toggle-bar::before {
	top: -6px;
}
.nav-toggle-bar::after {
	top: 6px;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar {
	background: transparent;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before {
	transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after {
	transform: translateY(-6px) rotate(-45deg);
}
@media (max-width: 800px) {
	.nav-toggle {
		display: inline-flex;
	}
	.nav {
		position: absolute;
		top: var(--header-h);
		left: 0;
		right: 0;
		background: var(--noir);
		flex-direction: column;
		align-items: stretch;
		padding: 1rem var(--gutter) 1.6rem;
		gap: 1rem;
		border-top: 1px solid var(--rule-dark);
		display: none;
	}
	.nav.is-open {
		display: flex;
	}
	.nav-list {
		flex-direction: column;
		gap: 0.2rem;
	}
	.nav-list a {
		display: block;
		font-size: 1.25rem;
		font-family: var(--serif);
		font-weight: 500;
		padding: 0.6em 0;
		border-bottom: 1px solid var(--rule-dark);
	}
	.btn-header {
		text-align: center;
	}
}

/* ---- Hero ------------------------------------------------------------- */
.hero {
	position: relative;
	height: var(--hero-scroll);
	background: var(--beige);
}
.hero-frame {
	position: sticky;
	top: var(--header-h);
	height: calc(100vh - var(--header-h));
	height: calc(100svh - var(--header-h));
	overflow: hidden;
	display: flex;
	align-items: center;
}
.admin-bar .hero-frame {
	top: calc(var(--header-h) + 32px);
}
.hero-inner {
	position: relative;
	z-index: 1;
	width: min(var(--wrap), 100% - 2 * var(--gutter));
	padding-bottom: clamp(3rem, 8vh, 5rem);
}
.hero-stage {
	position: relative;
	margin-bottom: clamp(1.5rem, 4vh, 3rem);
}
.hero-triptych {
	display: grid;
	margin: 0;
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(2.35rem, 7.6vw, 6.4rem);
	line-height: 1.08;
	letter-spacing: -0.01em;
}
.hero-phrase {
	grid-area: 1 / 1;
	display: block;
	will-change: transform;
}
.hero-letters {
	display: inline;
}
.l {
	display: inline-block;
	will-change: transform, opacity;
}
.l-sp {
	white-space: pre;
}
.hero-h1 {
	font-family: var(--sans);
	font-weight: 450;
	font-size: clamp(1.05rem, 1.55vw, 1.3rem);
	line-height: 1.5;
	max-width: 62ch;
	margin: 0 0 1.6rem;
	color: var(--noir);
	letter-spacing: 0;
}
.hero-final p {
	margin: 0;
}
.blob-hero-final {
	width: min(60vw, 700px);
	right: -12vw;
	top: 8%;
	opacity: 0;
}

/* Mécanisme de presse (bas gauche du cadre) */
.press {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1.6rem;
	height: 2.4rem;
	pointer-events: none;
}
.press-rail {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: var(--terre);
	opacity: 0.55;
}
.press-head {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0.9rem;
	height: 2.4rem;
	transform: translateX(0);
	will-change: transform;
}
.press-block {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 1.55rem;
	background: var(--noir);
}
.press-ink {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 0.75rem;
	background: var(--terre);
}

.hero-hint {
	position: absolute;
	left: 0;
	top: calc(100% + 2.2rem);
	font-size: 0.85rem;
	color: var(--encre-2);
	letter-spacing: 0.02em;
	display: none;
}
.hero-scrub .hero-hint {
	display: block;
}

.hero-hint {
	position: absolute;
	left: 0;
	top: 100%;
	margin-top: 2.4rem;
	font-size: 0.85rem;
	color: var(--encre-2);
	letter-spacing: 0.02em;
}
.hero-static .hero-hint,
html.no-js .hero-hint {
	display: none;
}

/* État scrubbé (JS actif, animations autorisées) */
.hero-scrub .l {
	opacity: 0;
	transform: translateY(0.12em) scale(1.12);
	transform-origin: 50% 100%;
}
.hero-scrub .hero-phrase[data-phrase="1"],
.hero-scrub .hero-phrase[data-phrase="2"] {
	visibility: hidden;
}
.hero-scrub .hero-fade {
	opacity: 0;
}

/* État statique (pas de JS, animations réduites, ou mode secours) */
.hero-static,
html.no-js .hero {
	height: auto;
}
.hero-static .hero-frame,
html.no-js .hero-frame {
	position: static;
	height: auto;
	padding: clamp(3rem, 8vh, 6rem) 0;
	overflow: visible;
}
.hero-static .hero-triptych,
html.no-js .hero-triptych {
	display: block;
	font-size: clamp(2rem, 5.2vw, 4.2rem);
}
.hero-static .hero-phrase,
html.no-js .hero-phrase {
	display: block;
	visibility: visible !important;
	transform: none !important;
}
.hero-static .l,
html.no-js .l {
	opacity: 1 !important;
	transform: none !important;
}
.hero-static .press,
html.no-js .press {
	display: none;
}
.hero-static .hero-fade,
html.no-js .hero-fade {
	opacity: 1 !important;
}
.hero-static .blob-hero-final,
html.no-js .blob-hero-final {
	top: -10%;
}
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}
@media (max-width: 800px) {
	:root {
		--hero-scroll: 300vh;
	}
	.hero-inner {
		padding-bottom: 12vh;
	}
	.blob-hero-final {
		width: 90vw;
		right: -40vw;
		top: 2%;
	}
}

/* ---- Section services (fond noir) ------------------------------------- */
.section-dark {
	background: var(--noir);
	color: var(--beige);
	padding-block: var(--section);
}
.svc {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--rule-dark);
}
.svc-item {
	display: grid;
	grid-template-columns: 5rem 1fr;
	gap: 1rem 2rem;
	padding: clamp(2rem, 4vw, 3.2rem) 0;
	border-bottom: 1px solid var(--rule-dark);
}
.svc-num {
	font-family: var(--sans);
	font-weight: 500;
	font-size: 0.95rem;
	color: var(--terre-clair);
	padding-top: 0.9em;
	font-variant-numeric: tabular-nums;
}
.svc-title {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(1.9rem, 3.6vw, 3.1rem);
	line-height: 1.08;
	margin: 0 0 0.5em;
}
.svc-title a {
	text-decoration: none;
}
.svc-title a:hover {
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 0.12em;
}
.svc-pitch {
	color: var(--papier-2);
	font-size: 1.125rem;
	max-width: 56ch;
	margin-bottom: 1.1em;
}
.svc-light {
	border-top-color: var(--sable);
	margin-top: 3rem;
}
.svc-light .svc-item {
	border-bottom-color: var(--sable);
}
.svc-light .svc-num {
	color: var(--terre);
}
.svc-light .svc-pitch {
	color: var(--encre-2);
}
.svc-includes {
	list-style: none;
	padding: 0;
	margin: 0 0 1.4rem;
	color: var(--encre-2);
	font-size: 0.98rem;
}
.svc-includes li {
	padding-left: 1.2em;
	position: relative;
}
.svc-includes li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.75em;
	width: 0.6em;
	height: 1px;
	background: var(--terre);
}
.svc-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem 2rem;
	align-items: baseline;
}
@media (max-width: 640px) {
	.svc-item {
		grid-template-columns: 1fr;
		gap: 0.4rem;
	}
	.svc-num {
		padding-top: 0;
	}
}

/* ---- Galerie ---------------------------------------------------------- */
.gallery {
	padding-block: var(--section) 0;
}
.mosaic {
	/* La hauteur de rangée découle de la largeur de colonne, pour qu'une tuile
	   verticale (2 rangées) tombe exactement en 9:16. */
	--mosaic-gap: 6px;
	--mosaic-cols: 4;
	--mosaic-width: min(1400px, 100vw - 2 * var(--gutter));
	--mosaic-col: calc((var(--mosaic-width) - (var(--mosaic-cols) - 1) * var(--mosaic-gap)) / var(--mosaic-cols));
	--mosaic-row: calc((var(--mosaic-col) * 16 / 9 - var(--mosaic-gap)) / 2);
	display: grid;
	grid-template-columns: repeat(var(--mosaic-cols), 1fr);
	grid-auto-rows: var(--mosaic-row);
	grid-auto-flow: dense;
	gap: var(--mosaic-gap);
	margin-top: 1rem;
}
.tile {
	position: relative;
	overflow: hidden;
	display: block;
	background: var(--sable);
	text-decoration: none;
	color: var(--beige);
}
.tile-big {
	grid-column: span 2;
	grid-row: span 2;
}
.tile-tall {
	grid-row: span 2;
}
.tile-wide {
	grid-column: span 2;
}
.tile-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.tile:hover .tile-img,
.tile:focus-visible .tile-img {
	transform: scale(1.03);
}
.tile-veil {
	position: absolute;
	inset: 0;
	background: rgba(26, 26, 26, 0.72);
	opacity: 0;
	transition: opacity 0.3s;
}
.tile-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1.2rem 1.3rem;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity 0.3s, transform 0.3s;
}
.tile:hover .tile-veil,
.tile:hover .tile-caption,
.tile:focus-visible .tile-veil,
.tile:focus-visible .tile-caption {
	opacity: 1;
	transform: none;
}
.tile-name {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 1.35rem;
	line-height: 1.15;
}
.tile-meta {
	font-size: 0.9rem;
	color: var(--papier-2);
}
/* Sur écran tactile comme sur ordinateur, la légende reste masquée tant que
   la tuile n'est pas survolée ou sélectionnée au clavier. */
@media (max-width: 800px) {
	.mosaic {
		--mosaic-cols: 2;
		--mosaic-width: calc(100vw - 2 * var(--gutter));
	}
}

/* ---- Notre approche --------------------------------------------------- */
.approach {
	position: relative;
	overflow: hidden;
	padding-block: var(--section);
}
.blob-approach {
	width: min(55vw, 620px);
	right: -14vw;
	bottom: -8%;
}
.approach .wrap {
	position: relative;
	z-index: 1;
}
.approach-list {
	display: flex;
	flex-direction: column;
	gap: clamp(2.5rem, 5vw, 4rem);
	margin-top: 2.5rem;
}
.approach-item {
	border-left: 5px solid var(--terre);
	padding-left: clamp(1.2rem, 3vw, 2.4rem);
	max-width: 900px;
}
.approach-item:nth-child(2) {
	margin-left: clamp(0px, 8vw, 120px);
}
.approach-item:nth-child(3) {
	margin-left: clamp(0px, 16vw, 240px);
}
.approach-item.tone-sapin {
	border-left-color: var(--sapin);
}
.approach-context {
	font-size: clamp(1.05rem, 1.5vw, 1.25rem);
	max-width: 46ch;
	color: var(--encre-2);
	margin-bottom: 0.4em;
}
.approach-word {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(3.4rem, 11vw, 8.5rem);
	line-height: 0.95;
	letter-spacing: -0.01em;
	color: var(--terre);
	margin: 0;
}
.tone-sapin .approach-word {
	color: var(--sapin);
}
.approach-word-sm {
	font-size: clamp(2.2rem, 5.5vw, 4rem);
	margin-bottom: 0.3em;
}

/* ---- Avis clients ----------------------------------------------------- */
.reviews {
	padding-block: var(--section) 0;
}
.reviews-summary {
	font-size: 1.1rem;
	color: var(--encre-2);
	margin-bottom: 2rem;
}
.reviews-rating {
	font-family: var(--serif);
	font-size: 2.4rem;
	font-weight: 500;
	color: var(--noir);
	margin-right: 0.2em;
	vertical-align: -0.1em;
}
.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2.5rem;
}
.review {
	margin: 0;
	border-top: 1px solid var(--noir);
	padding-top: 1.2rem;
}
.review p {
	font-size: 1.1rem;
	font-family: var(--serif);
	font-weight: 300;
	line-height: 1.4;
}
.review cite {
	font-style: normal;
	font-size: 0.95rem;
	color: var(--encre-2);
}

/* ---- CTA éditorial ---------------------------------------------------- */
.cta-final {
	padding: 0;
	margin: 0;
}
.wrap > * + .cta-final {
	margin-top: clamp(3rem, 6vw, 5rem);
	padding-top: clamp(3rem, 6vw, 5rem);
	border-top: 1px solid var(--sable);
}
.cta-title {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(2.2rem, 4.6vw, 4rem);
	line-height: 1.08;
	max-width: 20ch;
	margin-bottom: 0.6em;
}
.cta-text {
	font-size: clamp(1.1rem, 1.6vw, 1.3rem);
	max-width: 48ch;
}
.cta-text .link-arrow {
	margin-left: 0.2em;
}

/* ---- Pied de page ----------------------------------------------------- */
.site-footer {
	background: var(--noir);
	color: var(--papier-2);
	padding: clamp(3rem, 6vw, 5rem) 0 2rem;
	font-size: 0.95rem;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(4, 1fr);
	gap: 2.5rem 2rem;
}
.footer-logo {
	font-weight: 700;
	font-size: 1.6rem;
	color: var(--beige);
	margin-bottom: 0.4rem;
}
.footer-tag {
	margin: 0;
}
.footer-title {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 1.15rem;
	color: var(--beige);
	margin: 0 0 0.9rem;
}
.footer-address {
	font-style: normal;
	line-height: 1.7;
}
.footer-list {
	list-style: none;
	margin: 0;
	padding: 0;
	line-height: 1.9;
}
.site-footer a {
	color: var(--beige);
	text-decoration: none;
	border-bottom: 1px solid transparent;
}
.site-footer a:hover {
	border-bottom-color: var(--terre-clair);
}
.footer-link-btn {
	background: none;
	border: 0;
	padding: 0;
	font: inherit;
	color: var(--beige);
	cursor: pointer;
	border-bottom: 1px solid transparent;
}
.footer-link-btn:hover {
	border-bottom-color: var(--terre-clair);
}

.footer-bottom {
	margin-top: 3rem;
	padding-top: 1.2rem;
	border-top: 1px solid var(--rule-dark);
	font-size: 0.875rem;
}
.footer-bottom p {
	margin: 0;
}
@media (max-width: 960px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.footer-grid .footer-col:first-child {
		grid-column: 1 / -1;
	}
}

/* ---- Pages intérieures ------------------------------------------------ */
.page-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(3.5rem, 9vh, 7rem) 0 clamp(2.5rem, 6vh, 4.5rem);
}
.page-hero .wrap {
	position: relative;
	z-index: 1;
}
.page-hero-compact {
	padding-bottom: 1.5rem;
}
.blob-hero {
	width: min(48vw, 560px);
	right: -10vw;
	top: -20%;
}
.page-body {
	padding-block: 1rem var(--section);
}
.page-body > section,
.page-body > .prose,
.page-body > aside {
	margin-top: clamp(3rem, 6vw, 5rem);
}
.page-body > .prose:first-child {
	margin-top: 0;
}


/* Liste « ce que comprend » */
.includes-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 0.7rem 3rem;
	max-width: 900px;
}
.includes-list li {
	position: relative;
	padding: 0.7rem 0 0.7rem 1.6rem;
	border-bottom: 1px solid var(--sable);
}
.includes-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 1.5rem;
	width: 0.85rem;
	height: 2px;
	background: var(--terre);
}

/* Timeline verticale */
.timeline {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
	max-width: 760px;
}
.timeline::before {
	content: "";
	position: absolute;
	left: 0.7rem;
	top: 0.9rem;
	bottom: 0.9rem;
	width: 2px;
	background: var(--terre);
}
.tl-step {
	position: relative;
	padding: 0 0 clamp(1.8rem, 4vw, 2.8rem) 3.4rem;
}
.tl-step:last-child {
	padding-bottom: 0;
}
.tl-dot {
	position: absolute;
	left: 0;
	top: 0.35rem;
	width: 1.45rem;
	height: 1.45rem;
	border-radius: 50%;
	background: var(--beige);
	border: 2px solid var(--terre);
	box-shadow: inset 0 0 0 3px var(--beige), inset 0 0 0 20px var(--terre);
}
.tl-num {
	display: block;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--terre);
	margin-bottom: 0.25rem;
	font-variant-numeric: tabular-nums;
}
.tl-step .h3 {
	margin-bottom: 0.4rem;
}
.tl-step p {
	max-width: 58ch;
	color: var(--encre-2);
	margin: 0;
}

/* FAQ */
.faq-list {
	max-width: 800px;
	border-top: 1px solid var(--noir);
}
.faq-item {
	border-bottom: 1px solid var(--sable);
}
.faq-item summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 1.5rem;
	padding: 1.1rem 0;
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(1.15rem, 1.8vw, 1.4rem);
	line-height: 1.25;
}
.faq-item summary::-webkit-details-marker {
	display: none;
}
.faq-icon {
	flex: 0 0 auto;
	width: 1rem;
	height: 1rem;
	position: relative;
	top: 0.05em;
}
.faq-icon::before,
.faq-icon::after {
	content: "";
	position: absolute;
	background: var(--terre);
	left: 0;
	top: 50%;
	width: 100%;
	height: 2px;
	transform: translateY(-50%);
}
.faq-icon::after {
	transform: translateY(-50%) rotate(90deg);
	transition: transform 0.2s;
}
.faq-item[open] .faq-icon::after {
	transform: translateY(-50%) rotate(0deg);
}
.faq-answer {
	padding: 0 0 1.4rem;
	max-width: 62ch;
	color: var(--encre-2);
}
.faq-answer p {
	margin: 0;
}

/* Lien abonnement en bas de page service */
.sub-link {
	border-left: 5px solid var(--sapin);
	padding: 0.4rem 0 0.4rem 1.6rem;
	max-width: 680px;
}
.sub-link p {
	margin-bottom: 0.5em;
}

/* Deux modes d'offre (page Services) */
.two-offers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2.5rem 4rem;
}
.offer {
	border-top: 3px solid var(--noir);
	padding-top: 1.2rem;
}
.offer:nth-child(2) {
	border-top-color: var(--sapin);
}
.offer .h3 {
	margin-bottom: 0.6rem;
}
.offer p {
	color: var(--encre-2);
	margin: 0;
}

/* Paliers d'abonnement */
.tiers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
	align-items: stretch;
}
.tier {
	border: 1px solid var(--noir);
	border-top-width: 4px;
	padding: 1.8rem 1.6rem 1.6rem;
	display: flex;
	flex-direction: column;
	background: rgba(255, 255, 255, 0.18);
}
.tier-mid {
	border-top-color: var(--terre);
}
.tier-name {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 1.8rem;
	margin: 0 0 0.3rem;
}
.tier-for {
	color: var(--encre-2);
	font-size: 0.98rem;
	min-height: 2.6em;
}
.tier-price {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 1.35rem;
	margin: 0.4rem 0 1.2rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--sable);
}
.tier-features {
	list-style: none;
	padding: 0;
	margin: 0 0 1.8rem;
	flex: 1;
	font-size: 0.98rem;
}
.tier-features li {
	position: relative;
	padding: 0.35rem 0 0.35rem 1.3rem;
}
.tier-features li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 1rem;
	width: 0.7rem;
	height: 2px;
	background: var(--terre);
}
.tiers-note {
	color: var(--encre-2);
	font-size: 0.95rem;
	margin-top: 1.4rem;
}
.addon {
	border-left: 5px solid var(--terre);
	padding: 0.4rem 0 0.4rem 1.6rem;
	max-width: 720px;
}
.addon .h3 {
	margin-bottom: 0.6rem;
}
.addon p {
	margin: 0;
	color: var(--encre-2);
}

/* Contact */
.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
	gap: 4rem;
	align-items: start;
}
.contact-side {
	border-left: 5px solid var(--sapin);
	padding-left: 1.6rem;
}
.contact-side .h3 {
	margin: 0 0 0.6rem;
}
.contact-side .h3 + p {
	color: var(--encre-2);
}
.contact-side p + .h3 {
	margin-top: 2rem;
}
@media (max-width: 860px) {
	.contact-layout {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
}
.contact-form {
	max-width: 640px;
}
.field {
	margin-bottom: 1.4rem;
}
.field label {
	display: block;
	font-weight: 500;
	margin-bottom: 0.4rem;
}
.field input[type="text"],
.field input[type="email"],
.field select,
.field textarea {
	width: 100%;
	font: inherit;
	color: var(--noir);
	background: rgba(255, 255, 255, 0.35);
	border: 1px solid var(--noir);
	padding: 0.8em 0.9em;
	border-radius: 0;
	-webkit-appearance: none;
	appearance: none;
}
.field select {
	background-image: linear-gradient(45deg, transparent 50%, var(--noir) 50%), linear-gradient(135deg, var(--noir) 50%, transparent 50%);
	background-position: calc(100% - 1.3em) 50%, calc(100% - 0.9em) 50%;
	background-size: 0.4em 0.4em;
	background-repeat: no-repeat;
	padding-right: 2.6em;
}
.field textarea {
	resize: vertical;
	min-height: 9rem;
}
.field-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.field-check {
	display: flex;
	gap: 0.7rem;
	align-items: flex-start;
	font-size: 0.95rem;
	color: var(--encre-2);
}
.field-check input {
	margin-top: 0.3em;
	width: 1.1rem;
	height: 1.1rem;
	accent-color: var(--terre);
	flex: 0 0 auto;
}
.field-check label {
	margin: 0;
	font-weight: 400;
}
.form-notice {
	border-left: 5px solid var(--sapin);
	padding: 0.7rem 0 0.7rem 1.2rem;
	margin-bottom: 1.8rem;
}
.form-notice.is-error {
	border-left-color: var(--terre);
}
.booking {
	max-width: 900px;
}

/* Étude de cas */
.case-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 3rem;
	margin: 1.6rem 0 0;
}
.case-meta div {
	display: flex;
	flex-direction: column;
}
.case-meta dt {
	font-size: 0.85rem;
	color: var(--encre-2);
}
.case-meta dd {
	margin: 0;
	font-weight: 500;
}
.case-cover {
	margin: 0 0 clamp(2rem, 5vw, 4rem);
}
.case-cover img {
	width: 100%;
}
.case-section + .case-section {
	margin-top: clamp(2.5rem, 5vw, 4rem);
}
.case-gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin: clamp(2.5rem, 5vw, 4rem) 0;
}
.case-gallery figure {
	margin: 0;
	background: var(--sable);
}
.case-gallery figure:first-child:nth-last-child(odd) {
	grid-column: 1 / -1;
}
.case-result {
	border-left: 5px solid var(--terre);
	padding-left: 1.6rem;
}
.case-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem 2rem;
	margin-top: 2.5rem;
}
@media (max-width: 640px) {
	.case-gallery {
		grid-template-columns: 1fr;
	}
}

/* Complianz : le bandeau doit respecter la palette */
.cmplz-cookiebanner {
	font-family: var(--sans) !important;
	border-radius: 0 !important;
}

/* Le lien complémentaire qui suit un CTA final se rapproche de lui */
.cta-final + .sub-link {
	margin-top: 0;
}

/* ==========================================================================
   Bandes de fond alternées (pages intérieures)
   ========================================================================== */
.band {
	position: relative;
	overflow: hidden;
	padding-block: var(--section);
}
.band > .wrap {
	position: relative;
	z-index: 1;
}
.band-beige {
	background: var(--beige);
}
.band-tight {
	padding-block: clamp(1.5rem, 4vw, 3rem) clamp(3rem, 7vw, 5.5rem);
}
.page-hero + .band-tight {
	padding-top: 0;
}
.band-sable {
	background: #f2e3bc;
}
.band-sable .faq-item {
	border-bottom-color: rgba(26, 26, 26, 0.16);
}
.band-sable .includes-list li {
	border-bottom-color: rgba(26, 26, 26, 0.16);
}
.band-dark {
	background: var(--noir);
	color: var(--beige);
}
.band-dark .h2,
.band-dark .h3 {
	color: var(--beige);
}
.band-dark .prose {
	color: var(--beige);
}
.band-dark .prose + section,
.band-dark section + section {
	margin-top: clamp(3rem, 6vw, 5rem);
}
.band-dark .includes-list li {
	border-bottom-color: var(--rule-dark);
}
.band-dark .includes-list li::before {
	background: var(--terre-clair);
}
.band-dark .link-quiet-dark {
	color: var(--papier-2);
}
.band-beige .wrap > section + section,
.band-beige .wrap > .prose + section {
	margin-top: clamp(3rem, 6vw, 5rem);
}
.band-sable .wrap > section + section {
	margin-top: clamp(3rem, 6vw, 5rem);
}

/* Paliers sur fond noir */
.band-dark .tier {
	border-color: var(--papier-2);
	background: rgba(249, 238, 209, 0.04);
}
.band-dark .tier-mid {
	border-top-color: var(--terre-clair);
}
.band-dark .tier-for,
.band-dark .tiers-note {
	color: var(--papier-2);
}
.band-dark .tier-price {
	border-bottom-color: var(--rule-dark);
}
.band-dark .tier-features li::before {
	background: var(--terre-clair);
}
.btn-inverse {
	background: var(--beige);
	color: var(--noir);
	border-color: var(--beige);
}
.btn-inverse:hover {
	background: var(--terre-clair);
	border-color: var(--terre-clair);
	color: var(--noir);
}

/* Valeurs (À propos) sur fond noir */
.approach-list-dark .approach-context {
	color: var(--papier-2);
}
.approach-list-dark .tone-terre {
	border-left-color: var(--terre-clair);
}
.approach-list-dark .tone-terre .approach-word {
	color: var(--terre-clair);
}
.approach-list-dark .tone-sauge {
	border-left-color: var(--sauge-pale);
}
.approach-list-dark .tone-sauge .approach-word {
	color: var(--sauge-pale);
}

/* Zone d'activité */
.zone-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
	gap: 3rem 5rem;
	align-items: start;
}
.zone-list {
	list-style: none;
	margin: 0;
	padding: 0;
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(1.7rem, 3vw, 2.5rem);
	line-height: 1.1;
}
.zone-list li {
	display: flex;
	align-items: baseline;
	gap: 1.2rem;
	padding: 0.7rem 0;
	border-bottom: 1px solid rgba(26, 26, 26, 0.16);
}
.zone-num {
	font-family: var(--sans);
	font-weight: 500;
	font-size: 0.9rem;
	color: var(--terre);
	min-width: 1.2em;
}
@media (max-width: 760px) {
	.zone-grid {
		grid-template-columns: 1fr;
	}
}

/* Panneau de coordonnées (Contact) sur fond noir */
.contact-side {
	position: relative;
	overflow: hidden;
	background: var(--noir);
	color: var(--beige);
	border-left: 0;
	padding: 2.2rem 2rem 2.4rem;
}
.contact-side-inner {
	position: relative;
	z-index: 1;
}
.contact-side .h3 {
	color: var(--beige);
}
.contact-side .h3 + p {
	color: var(--papier-2);
}
.contact-side a {
	color: var(--beige);
}
.contact-side .link-arrow-dark {
	color: var(--terre-clair);
}
.contact-side .link-arrow-dark:hover {
	color: var(--beige);
}

/* Étude de cas : contexte et réponse côte à côte */
.case-two {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 3rem 5rem;
}
.case-two .case-section + .case-section {
	margin-top: 0;
}
.page-hero-case + .wrap .case-cover {
	margin: 0 0 var(--section);
}
.band-sable .case-result {
	border-left-color: var(--terre);
}

/* ==========================================================================
   Décor typographique : motifs et glyphe géant en contour
   ========================================================================== */
.deco {
	--pat-color: rgba(184, 74, 34, 0.3);
	--glyph-stroke: var(--terre);
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}
.band-dark .deco {
	--pat-color: rgba(249, 238, 209, 0.13);
	--glyph-stroke: var(--papier-2);
}
.band-sable .deco {
	--pat-color: rgba(26, 26, 26, 0.13);
	--glyph-stroke: var(--noir);
}
.contact-side .deco {
	--pat-color: rgba(249, 238, 209, 0.14);
}
.deco::before {
	content: "";
	position: absolute;
	inset: 0;
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 55%);
	mask-image: linear-gradient(90deg, transparent 0%, #000 55%);
}
.deco-dots::before {
	background-image: radial-gradient(circle, var(--pat-color) 1.3px, transparent 1.6px);
	background-size: 18px 18px;
}
.deco-lines::before {
	background-image: repeating-linear-gradient(180deg, var(--pat-color) 0 1px, transparent 1px 16px);
}
.deco-hatch::before {
	background-image: repeating-linear-gradient(-45deg, var(--pat-color) 0 1px, transparent 1px 12px);
}
.deco-grid::before {
	background-image: linear-gradient(var(--pat-color) 1px, transparent 1px), linear-gradient(90deg, var(--pat-color) 1px, transparent 1px);
	background-size: 44px 44px;
}
.deco-none::before {
	display: none;
}
.glyph {
	position: absolute;
	right: 3vw;
	top: 50%;
	transform: translateY(-46%);
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(12rem, 34vw, 30rem);
	line-height: 1;
	letter-spacing: -0.04em;
	color: transparent;
	-webkit-text-stroke: 1.5px var(--glyph-stroke);
	opacity: 0.38;
	user-select: none;
}
.band-dark .glyph {
	opacity: 0.3;
}

/* Placement selon le contexte */
.deco-hero::before {
	left: 35%;
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 45%), linear-gradient(180deg, #000 60%, transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0%, #000 45%), linear-gradient(180deg, #000 60%, transparent 100%);
	-webkit-mask-composite: source-in;
	mask-composite: intersect;
}
.deco-band::before {
	left: 55%;
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 60%);
	mask-image: linear-gradient(90deg, transparent 0%, #000 60%);
}
.contact-side .deco::before {
	left: 40%;
	top: 45%;
}
.deco-hero-final::before {
	left: 48%;
	top: 6%;
	bottom: 18%;
	-webkit-mask-image: radial-gradient(ellipse at 70% 45%, #000 30%, transparent 72%);
	mask-image: radial-gradient(ellipse at 70% 45%, #000 30%, transparent 72%);
}
.deco-approach::before {
	left: 55%;
	top: 40%;
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 50%), linear-gradient(0deg, #000 50%, transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0%, #000 50%), linear-gradient(0deg, #000 50%, transparent 100%);
	-webkit-mask-composite: source-in;
	mask-composite: intersect;
}
.deco-approach .glyph {
	top: auto;
	bottom: -8%;
	transform: none;
	right: 4vw;
}
@media (max-width: 800px) {
	.glyph {
		font-size: clamp(9rem, 44vw, 14rem);
		right: -4vw;
		opacity: 0.22;
	}
	.deco-hero::before,
	.deco-band::before {
		left: 20%;
	}
}

/* Paragraphe d'introduction : aligné sur la grille, pas centré */
.wrap.prose {
	max-width: none;
}
.wrap.prose p {
	max-width: 68ch;
}
.cta-final + .sub-link,
.cta-final + .case-links {
	margin-top: clamp(2rem, 4vw, 3rem);
}

/* Les ancres de l'accueil ne doivent pas passer sous le header collant */
#projet,
#projets {
	scroll-margin-top: calc(var(--header-h) + 1.5rem);
}

/* ==========================================================================
   Galerie : fondu entre deux images d'une même tuile
   ========================================================================== */
.tile-img-alt {
	position: absolute;
	inset: 0;
}
/* La mise en fondu n'est active que si le script a pris la main sur la tuile :
   sans JavaScript, les images restent affichées normalement. */
.tile-rotating .tile-img {
	opacity: 0;
	transition: opacity 900ms ease, transform 0.5s ease;
}
.tile-rotating .tile-img.is-visible {
	opacity: 1;
}
.tile-rotating .tile-veil,
.tile-rotating .tile-caption {
	z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
	.tile-rotating .tile-img {
		opacity: 1;
		transition: none;
	}
}

/* ==========================================================================
   Étude de cas : largeur des visuels et espacements resserrés
   ========================================================================== */
.case-cover img {
	width: var(--case-cover-width, 65%);
	max-width: 100%;
	margin-inline: auto;
}
.wrap > .case-gallery {
	width: var(--case-images-width, 85%);
	max-width: 100%;
	margin-inline: auto;
}
.page-hero-case + .wrap .case-cover {
	margin-bottom: calc(var(--section) * 0.7);
}
/* Espace resserré de part et d'autre du bloc de photos */
.band-photos {
	padding-block: calc(var(--section) * 0.5);
}
.band-before-photos {
	padding-bottom: calc(var(--section) * 0.5);
}
.band-photos + .band-sable {
	padding-top: calc(var(--section) * 0.5);
}
@media (max-width: 640px) {
	.case-cover img,
	.wrap > .case-gallery {
		width: 100%;
	}
}

/* ==========================================================================
   Visuels du projet : vidéos, diaporama et galerie plein écran
   ========================================================================== */
.case-video {
	display: block;
	width: 100%;
	height: auto;
	background: var(--noir);
}
.case-gallery figure video {
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

/* Diaporama */
.case-slider {
	position: relative;
	width: var(--case-images-width, 85%);
	max-width: 100%;
	margin-inline: auto;
	overflow: hidden;
}
.slider-track {
	display: flex;
	align-items: stretch;
	transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}
/* La zone prend la hauteur du visuel le plus haut : rien n'est recadré,
   les visuels plus courts sont simplement centrés dans la hauteur. */
.slide {
	flex: 0 0 100%;
	margin: 0;
	display: flex;
}
.slide-open {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0;
	border: 0;
	background: var(--sable);
	cursor: zoom-in;
}
.slide-open img,
.slide-open video {
	display: block;
	max-width: 100%;
	/* Plafond de hauteur : un visuel très vertical reste lisible sans faire
	   dérailler la mise en page. Rien n'est recadré, seulement mis à l'échelle. */
	max-height: min(78vh, 860px);
	width: auto;
	height: auto;
	object-fit: contain;
	margin-inline: auto;
}
.slide-open video {
	cursor: default;
	background: var(--noir);
}
.slider-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2.8rem;
	height: 2.8rem;
	border: 1px solid var(--noir);
	background: var(--beige);
	color: var(--noir);
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
	z-index: 2;
	transition: background 0.15s, color 0.15s;
}
.slider-nav:hover {
	background: var(--noir);
	color: var(--beige);
}
.slider-prev {
	left: 0.8rem;
}
.slider-next {
	right: 0.8rem;
}
.slider-count {
	margin: 0.8rem 0 0;
	font-size: 0.9rem;
	color: var(--encre-2);
	font-variant-numeric: tabular-nums;
}
@media (max-width: 640px) {
	.case-slider {
		width: 100%;
	}
}

/* Galerie plein écran */
body.lb-open {
	overflow: hidden;
}
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 200;
	background: rgba(26, 26, 26, 0.96);
	display: grid;
	grid-template-rows: 1fr auto auto;
	padding: clamp(1rem, 4vw, 3rem);
	gap: 1rem;
}
.lb-stage {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 0;
}
.lb-figure {
	margin: 0;
	max-width: 100%;
	max-height: 100%;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}
.lb-figure img,
.lb-figure video {
	max-width: 100%;
	max-height: 72vh;
	width: auto;
	height: auto;
	object-fit: contain;
	margin-inline: auto;
}
.lb-figure figcaption {
	color: var(--papier-2);
	font-size: 0.9rem;
	text-align: center;
}
.lb-close {
	position: absolute;
	top: clamp(1rem, 3vw, 2rem);
	right: clamp(1rem, 3vw, 2rem);
	background: none;
	border: 1px solid var(--papier-2);
	color: var(--beige);
	font: inherit;
	font-size: 0.9rem;
	padding: 0.5em 1em;
	cursor: pointer;
	z-index: 2;
}
.lb-close:hover {
	background: var(--beige);
	color: var(--noir);
}
.lb-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 3rem;
	height: 3rem;
	background: none;
	border: 1px solid var(--papier-2);
	color: var(--beige);
	font-size: 1.8rem;
	line-height: 1;
	cursor: pointer;
	z-index: 2;
}
.lb-nav:hover {
	background: var(--beige);
	color: var(--noir);
}
.lb-prev {
	left: clamp(0.5rem, 2vw, 1.5rem);
}
.lb-next {
	right: clamp(0.5rem, 2vw, 1.5rem);
}
.lb-count {
	margin: 0;
	text-align: center;
	color: var(--papier-2);
	font-size: 0.9rem;
	font-variant-numeric: tabular-nums;
}
.lb-thumbs {
	display: flex;
	gap: 6px;
	justify-content: center;
	flex-wrap: wrap;
	max-height: 22vh;
	overflow-y: auto;
}
.lb-thumb {
	position: relative;
	width: 72px;
	height: 54px;
	padding: 0;
	border: 1px solid transparent;
	background: var(--noir);
	cursor: pointer;
	opacity: 0.55;
	transition: opacity 0.15s, border-color 0.15s;
}
.lb-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.lb-thumb:hover,
.lb-thumb[aria-current="true"] {
	opacity: 1;
	border-color: var(--terre-clair);
}
.lb-thumb-video {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(26, 26, 26, 0.75);
	color: var(--beige);
	font-size: 0.65rem;
	padding: 1px 0;
}
@media (prefers-reduced-motion: reduce) {
	.slider-track {
		transition: none;
	}
}
