/* ==========================================================================
   Touch — feuille principale (portée depuis la maquette HTML).
   Étape 1 (tronc commun) + Hero. Les sections suivantes seront ajoutées au fur.
   ========================================================================== */

:root {
	--black: #141414;
	--black-2: #1a1a1a;
	--black-3: #1e1f1f;
	--beige: #f4f0e4;
	--warm: #fd401e;
	--cold: #be0027;
	--blue: #023dc4;
	--white: #ffffff;
	--font: "Montserrat", "Gibson", system-ui, sans-serif;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html,
body {
	background: var(--black-3);
	color: var(--beige);
	font-family: var(--font);
	-webkit-font-smoothing: antialiased;
}

body {
	overflow-x: hidden;
}

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

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

button {
	font: inherit;
	color: inherit;
	background: none;
	border: 0;
	cursor: pointer;
}

/* WordPress admin bar : ne pas casser le header fixe */
body.admin-bar .header {
	top: 32px;
}

/* ─────────────── HEADER ─────────────── */
.header {
	position: fixed;
	inset: 0 0 auto 0;
	height: 92px;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 44px;
	padding: 0 80px;
	pointer-events: none;
}

/* Logo seul à gauche → pousse la nav + le bouton groupés à droite. */
.brand {
	margin-right: auto;
}

.header > * {
	pointer-events: auto;
}

/* Pas de scrim : le texte change simplement de couleur selon le fond. */

.brand {
	display: flex;
	align-items: center;
}

.brand__logo {
	height: 28px;
	width: auto;
	display: block;
}

/* Logo cream/O-orange par défaut ; logo noir en mode clair ; logo tout-cream sur fond orange. */
.brand__logo--dark,
.brand__logo--cream {
	display: none;
}

.header.is-light .brand__logo--light {
	display: none;
}

.header.is-light .brand__logo--dark {
	display: block;
}

/* Fond orange : le « O » orange du logo disparaîtrait → logo tout-cream + nav cream. */
.header.is-orange .brand__logo--light,
.header.is-orange .brand__logo--dark {
	display: none;
}

.header.is-orange .brand__logo--cream {
	display: block;
}

.header.is-orange .nav a {
	color: var(--beige);
}

.header.is-orange .burger span {
	background: var(--beige);
}

.header.is-orange .cta {
	background: var(--black);
	color: var(--beige);
}

.nav {
	display: flex;
	gap: 48px;
	align-items: center;
}

.nav a {
	font-size: 13px;
	letter-spacing: 0.12em;
	font-weight: 600;
	color: var(--beige);
	text-transform: uppercase;
	position: relative;
	padding: 6px 2px;
}

.nav a.is-active {
	color: var(--warm);
}

.header.is-light .nav a {
	color: var(--black);
}

.nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: 0;
	height: 1px;
	background: currentColor;
	transition: right 0.25s ease;
}

.nav a:hover::after,
.nav a.is-active::after {
	right: 0;
}

.cta {
	background: var(--warm);
	color: var(--white);
	padding: 10px 16px;
	font-size: 14px;
	letter-spacing: 0.1em;
	transition: background 0.2s ease, transform 0.2s ease;
}

.cta:hover {
	background: #e63a1c;
	transform: translateY(-1px);
}

/* ── Burger (mobile/tablette) ── */
.burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 0;
	background: none;
	border: 0;
	z-index: 60;
}

.burger span {
	display: block;
	width: 26px;
	height: 2px;
	margin: 0 auto;
	background: var(--beige);
	transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s ease;
}

.header.is-light .burger span {
	background: var(--black);
}

body.menu-open .burger span {
	background: var(--beige);
}

body.menu-open .burger span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

body.menu-open .burger span:nth-child(2) {
	opacity: 0;
}

body.menu-open .burger span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ── Menu plein écran ── */
.mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 55;
	background: var(--black);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 40px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.menu-open {
	overflow: hidden;
}

body.menu-open .mobile-menu {
	opacity: 1;
	visibility: visible;
}

.mobile-menu__nav {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 26px;
}

.mobile-menu__nav a {
	font-size: clamp(30px, 9vw, 44px);
	font-weight: 800;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: var(--beige);
	line-height: 1;
}

.mobile-menu__nav a.is-active {
	color: var(--warm);
}

.mobile-menu .mobile-menu__cta {
	align-self: center;
	margin-top: 14px;
}

/* ─────────────── HERO ─────────────── */
.hero {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 720px;
	overflow: hidden;
}

.hero__bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.hero__bg video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hero__inner {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-top: 40px;
}

.hero__art {
	width: min(70vw, 900px);
	height: auto;
	display: block;
	overflow: visible;
}

#heroBody {
	will-change: filter;
}

/* ─────────────── CURSEUR CUSTOM ─────────────── */
html,
body {
	cursor: none;
}

a,
button,
.cta,
.nav a,
.card--project,
.arrow {
	cursor: none;
}

/* sur desktop, on masque le vrai curseur partout (même là où il y a cursor:pointer) */
@media (hover: hover) and (pointer: fine) {
	*,
	*::before,
	*::after {
		cursor: none !important;
	}
}

#cursor {
	position: fixed;
	left: 0;
	top: 0;
	width: 131px;
	height: 73px;
	pointer-events: none;
	z-index: 9999;
	display: none;
}

#cursor img {
	width: 131px;
	height: 73px;
	display: block;
	-webkit-user-drag: none;
	user-select: none;
}

#cursor.is-on {
	display: block;
}

@media (hover: none) {
	html,
	body,
	a,
	button,
	.cta,
	.nav a {
		cursor: auto;
	}

	#cursor {
		display: none !important;
	}
}

/* ─────────────── MARQUEE ─────────────── */
.marquee {
	background: var(--warm);
	color: var(--white);
	height: 34px;
	display: flex;
	align-items: center;
	overflow: hidden;
	white-space: nowrap;
	position: relative;
	z-index: 2;
}

.marquee__track {
	display: flex;
	align-items: center;
	gap: 56px;
	animation: slide 38s linear infinite;
	padding-right: 56px;
}

.marquee__item {
	font-size: 12px;
	letter-spacing: 0.22em;
	font-weight: 500;
	flex: 0 0 auto;
	text-transform: uppercase;
	line-height: 1;
}

@keyframes slide {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

/* utilitaire : texte orange */
.txt-orange {
	color: var(--warm);
}

/* ─────────────── OUR OFFER (section orange) ─────────────── */
/* l'orange reste épinglé pendant que le beige glisse par-dessus */
.offer-stack {
	position: relative;
}

.offer {
	position: sticky;
	top: 0;
	z-index: 1;
	background: var(--warm);
	color: var(--black);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 130px 80px;
}

.offer__inner {
	display: grid;
	grid-template-columns: 1fr 0.8fr;
	gap: 40px;
	align-items: start;
	width: 100%;
}

.offer__title {
	font-size: clamp(80px, 13vw, 240px);
	font-weight: 800;
	line-height: 0.88;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--black);
}

.offer__title .line {
	display: block;
}

.offer__title .line--top {
	display: flex;
	align-items: flex-start;
	gap: 0.22em;
}

.offer__title .o {
	color: var(--beige);
}

.offer__hand {
	position: relative;
	display: inline-block;
	/* Figma : 186,65 px de large sur la frame 1440 → 12,96vw */
	width: clamp(110px, 12.96vw, 200px);
	vertical-align: middle;
	/* on redescend la main pour aligner son sommet au haut des lettres
	   (l'interlignage 0.88 la faisait dépasser au-dessus du texte) */
	margin-top: 0.14em;
}

.offer__hand img {
	display: block;
	width: 100%;
	height: auto;
}

/* on garde une seule image (la pose 1) : la 2e provoquait une saccade */
.offer__hand .offer__hand-hover {
	display: none;
}

/* au survol : la main pivote vers la droite et y reste ;
   elle revient doucement quand la souris part */
.offer__hand {
	transform-origin: 32% 80%;
	transition: transform 0.5s ease-in-out;
}

.offer__hand:hover {
	transform: rotate(18deg);
}

@media (prefers-reduced-motion: reduce) {
	.offer__hand {
		transition: none;
	}
}

.offer__text {
	max-width: 360px;
	justify-self: end;
	margin-top: 70px;
	margin-right: 40px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.35);
	font-size: 14px;
	line-height: 1.5;
	color: var(--beige);
}

.offer__text p {
	margin-bottom: 14px;
}

.offer__text strong {
	color: var(--black);
	font-weight: 700;
}

/* ─────────────── OFFRE DÉTAILLÉE (beige) ─────────────── */
/* glisse par-dessus l'orange ; bord supérieur en chevron (pointe centrale)
   qui laisse apparaître l'orange épinglé derrière */
.offer-details {
	position: relative;
	z-index: 2;
	background: var(--beige);
	color: var(--black);
	padding: 130px 80px 70px;
	/* découpe : encoche centrée qui laisse voir l'orange épinglé derrière
	   (triangle Figma 411.53 × 55.1, centré) */
	clip-path: polygon(
		0 0,
		calc(50% - 205.76px) 0,
		50% 55.1px,
		calc(50% + 205.76px) 0,
		100% 0,
		100% 100%,
		0 100%
	);
}

.hands {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: clamp(24px, 4.5vw, 64px);
	margin-bottom: 120px;
}

.hands .hand {
	position: relative;
	width: clamp(80px, 10.5vw, 155px);
	padding: 0;
	background: none;
	border: 0;
	transition: transform 0.25s ease;
}

.hands .hand img {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}

.hands .hand::before {
	content: "";
	position: absolute;
	inset: -45%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(253, 64, 30, 0.35) 0%, rgba(253, 64, 30, 0) 70%);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.hands .hand:hover,
.hands .hand.is-active {
	transform: translateY(-4px);
}

.hands .hand.is-active::before {
	opacity: 1;
}

.offer-details__body {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	align-items: end;
}

.offer-details__copy {
	max-width: 720px;
	padding-right: 60px;
	border-right: 1px solid var(--warm);
	font-size: 15px;
	line-height: 1.65;
	color: rgba(20, 20, 20, 0.78);
}

.offer-details__copy p {
	margin-bottom: 20px;
}

.offer-details__copy p:last-child {
	margin-bottom: 0;
}

.offer-details__label {
	justify-self: end;
	align-self: end;
}

.offer-details__label h3 {
	font-size: clamp(32px, 3.4vw, 50px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	text-align: right;
	color: var(--black);
}

.offer-details__label .o {
	color: var(--warm);
}

.offer-details__cta {
	display: flex;
	justify-content: center;
	margin-top: 60px;
}

/* ─────────────── CLIENTS (beige) ─────────────── */
.clients {
	background: var(--beige);
	padding: 40px 80px 90px;
}

.clients__band {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	height: auto;
	display: block;
}

/* ─────────────── STATS (noir) ─────────────── */
.stats {
	background: var(--black);
	padding: 120px 80px;
}

.stats__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.stats__intro h2 {
	font-size: clamp(28px, 3vw, 44px);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.01em;
	color: var(--beige);
	margin-bottom: 24px;
}

.stats__intro p {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(244, 240, 228, 0.6);
	max-width: 420px;
}

.stats__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px 60px;
}

.stat__num {
	display: block;
	font-size: clamp(56px, 6vw, 92px);
	font-weight: 800;
	line-height: 1;
	color: var(--beige);
	letter-spacing: -0.02em;
}

.stat__label {
	display: block;
	margin-top: 8px;
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ash, rgba(244, 240, 228, 0.45));
	color: rgba(244, 240, 228, 0.45);
}

/* ─────────────── FOOTER « LET'S KEEP IN TOUCH » ─────────────── */
.keep {
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	padding: 120px 80px 0;
	text-align: center;
	background: var(--night, #060202);
}

/* Bloc titre/email centré verticalement ; barre du bas collée en bas. */
.keep__inner {
	margin: auto 0;
}

.keep__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.5;
	z-index: 0;
}

.keep::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(6, 2, 2, 0.55), rgba(6, 2, 2, 0.85));
	z-index: 1;
}

.keep__inner,
.keep__bottom {
	position: relative;
	z-index: 2;
}

.keep__title {
	font-size: clamp(48px, 8vw, 130px);
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: var(--beige);
}

.keep__title .o {
	color: var(--warm);
}

.keep__sub {
	max-width: 460px;
	margin: 24px auto 0;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(244, 240, 228, 0.7);
}

.keep__email {
	margin-top: 28px;
	text-transform: uppercase;
}

.keep__bottom {
	margin-top: 0;
	padding: 26px 0;
	border-top: 1px solid rgba(244, 240, 228, 0.14);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	font-size: 11px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(244, 240, 228, 0.6);
}

.socials {
	display: flex;
	gap: 16px;
}

.socials a {
	color: var(--beige);
	opacity: 0.8;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.socials a:hover {
	color: var(--warm);
	opacity: 1;
}

/* ─────────────── TAGLINE ─────────────── */
.tagline {
	background: var(--black);
	padding: 120px 20px 90px;
	text-align: center;
}

.tagline p {
	max-width: 700px;
	margin: 0 auto;
	font-size: clamp(22px, 2.1vw, 30px);
	line-height: 1.3;
	font-weight: 800;
	color: var(--beige);
	letter-spacing: -0.005em;
	text-wrap: balance;
}

/* « Creativity with results. » en encadré orange plein */
.tagline .accent {
	display: inline-block;
	background: var(--warm);
	color: var(--beige);
	padding: 2px 12px 4px;
	margin-top: 6px;
}

/* petit rond orange décoratif sous la tagline */
.tagline__ring {
	width: 26px;
	height: 26px;
	border: 2px solid var(--warm);
	border-radius: 50%;
	margin: 56px auto 0;
}

/* ─────────────── OUR WORK — scroll horizontal ─────────────── */
.work-pin {
	position: relative;
	background: var(--black);
}

.work-sticky {
	position: sticky;
	top: 0;
	height: 100vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.work-title {
	flex: 0 0 auto;
	text-align: center;
	padding: 44px 20px 24px;
}

.work-title h2 {
	font-size: clamp(80px, 12vw, 180px);
	font-weight: 800;
	letter-spacing: -0.01em;
	line-height: 0.95;
	color: var(--beige);
	text-transform: uppercase;
}

.work-track-wrap {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	padding: 0;
	overflow: hidden;
	min-height: 0;
}

.work-track {
	display: flex;
	gap: 26px;
	padding: 0 53px;
	will-change: transform;
	align-items: center;
}

.card {
	flex: 0 0 auto;
	width: 403px;
	/* Hauteur calée sur l'espace libre entre le titre WORKS et la barre Scroll
	   (réserve titre + barre + respiration) → jamais rogné, gap garanti en bas. */
	height: min(600px, calc(100vh - 340px));
	background: var(--black-2);
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	color: var(--beige);
}

.card--intro {
	width: 480px;
	background: transparent;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 0 40px 0;
	color: var(--beige);
	overflow: visible;
}

.card--intro .title {
	font-size: 58px;
	font-weight: 800;
	line-height: 0.98;
	color: var(--beige);
	margin-bottom: 26px;
	white-space: nowrap;
}

.card--intro .desc {
	font-size: 16px;
	line-height: 1.35;
	color: var(--beige);
	font-weight: 300;
	max-width: 360px;
	margin-bottom: 26px;
}

.card--intro .rule {
	height: 1px;
	background: var(--warm);
	width: 100%;
}

.work-title h2 .o {
	color: var(--warm);
}

.card--intro__icon {
	width: 96px;
	height: auto;
	margin-bottom: 26px;
}

.card--intro .title .o {
	color: var(--warm);
}

/* Bouton orange réutilisable */
.btn-orange {
	display: inline-block;
	align-self: flex-start;
	background: var(--warm);
	color: var(--beige);
	padding: 12px 22px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: background 0.2s ease, transform 0.2s ease;
}

.btn-orange:hover {
	background: #e63a1c;
	transform: translateY(-1px);
}

.card--project {
	cursor: pointer;
	/* Largeur dérivée de la hauteur pour conserver le ratio 403:600 quand l'écran est court. */
	width: auto;
	aspect-ratio: 403 / 600;
}

.card--project .num {
	position: absolute;
	left: 24px;
	top: 20px;
	z-index: 3;
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.1em;
	color: var(--warm);
}

.card--project .arrow {
	position: absolute;
	right: 16px;
	top: 16px;
	width: 36px;
	height: 36px;
	z-index: 3;
	border: 1px solid rgba(244, 240, 228, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--beige);
	font-size: 14px;
	opacity: 0;
	transition: opacity 0.25s ease, background 0.25s ease;
}

.card--project:hover .arrow {
	opacity: 1;
}

.card--project .arrow:hover {
	background: var(--warm);
	border-color: var(--warm);
}

.card--project .photo {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.9s ease, filter 0.5s ease;
	filter: grayscale(1);
}

/* Voile noir 20% (fill maquette) — s'estompe au survol pour révéler la couleur. */
.card--project .photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.2);
	transition: opacity 0.5s ease;
}

/* Placeholder propre quand le projet n'a pas encore d'image. */
.card--project .photo.is-empty {
	background: linear-gradient(155deg, #26282a 0%, #17191a 100%);
}

.card--project .photo.is-empty::after {
	background: none;
}

.card--project:hover .photo {
	transform: scale(1.04);
	filter: grayscale(0);
}

.card--project:hover .photo::after {
	opacity: 0;
}

.card--project .photo video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
	display: block;
	background: #141414;
}

.card--project .scrim {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 140px;
	background: linear-gradient(rgba(20, 20, 20, 0) 0%, rgba(20, 20, 20, 0.85) 60%, rgba(20, 20, 20, 0.98) 100%);
	z-index: 1;
}

.card--project .meta {
	position: absolute;
	left: 28px;
	right: 28px;
	bottom: 28px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.card--project .meta .kicker {
	font-size: 8px;
	letter-spacing: 0.2em;
	font-weight: 700;
	color: var(--warm);
	text-transform: uppercase;
}

.card--project .meta .name {
	font-size: 22px;
	font-weight: 700;
	color: var(--beige);
	letter-spacing: -0.005em;
}

.card--project .meta .year {
	font-size: 8px;
	letter-spacing: 0.2em;
	color: rgba(244, 240, 228, 0.6);
	text-transform: uppercase;
}

/* progress hint */
.scroll-hint {
	flex: 0 0 auto;
	margin: 0 53px 30px;
	z-index: 5;
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(244, 240, 228, 0.55);
	pointer-events: none;
}

.scroll-hint .bar {
	position: relative;
	width: 300px;
	height: 1px;
	background: rgba(244, 240, 228, 0.18);
	overflow: hidden;
}

.scroll-hint .bar i {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 0%;
	background: var(--warm);
}

.work-empty {
	color: rgba(244, 240, 228, 0.6);
	font-size: 16px;
	font-weight: 300;
	max-width: 360px;
}

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 900px) {
	.header {
		padding: 0 24px;
	}

	.nav {
		display: none;
	}

	.header > .cta {
		display: none;
	}

	.burger {
		display: flex;
	}

	/* Carrousel Works → liste verticale (le scroll horizontal est neutralisé en JS) */
	.work-pin {
		height: auto !important;
		padding: 30px 0 10px;
	}

	.work-sticky {
		position: static;
		height: auto;
		overflow: visible;
		display: block;
	}

	.work-title {
		padding: 0 24px 18px;
	}

	.work-title h2 {
		font-size: clamp(56px, 17vw, 96px);
	}

	.work-track-wrap {
		display: block;
		overflow: visible;
	}

	.work-track {
		flex-direction: column;
		transform: none !important;
		align-items: stretch;
		padding: 0 24px;
		gap: 16px;
	}

	.card,
	.card--intro {
		width: 100%;
		height: auto;
	}

	.card--project {
		width: 100%;
		aspect-ratio: 4 / 3;
	}

	.card--intro {
		padding: 6px 0 22px;
	}

	.card--intro .title {
		font-size: clamp(40px, 12vw, 60px);
		white-space: normal;
	}

	.card--intro .desc {
		max-width: 100%;
	}

	.scroll-hint {
		display: none;
	}

	.offer,
	.offer-details,
	.clients,
	.stats,
	.keep {
		padding-left: 24px;
		padding-right: 24px;
	}

	/* Logos clients : bande lisible avec défilement horizontal (swipe) sur mobile. */
	.clients {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		padding-top: 30px;
		padding-bottom: 50px;
	}

	.clients__band {
		min-width: 560px;
	}

	/* Header : léger verre dépoli au scroll, teinte adaptée à la section. */
	.header.is-scrolled {
		background: rgba(20, 20, 20, 0.5);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		transition: background 0.25s ease;
	}

	.header.is-scrolled.is-light {
		background: rgba(244, 240, 228, 0.72);
	}

	.header.is-scrolled.is-orange {
		background: rgba(253, 64, 30, 0.55);
	}

	.offer__inner,
	.offer-details__body,
	.stats__inner,
	.stats__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.offer__text {
		justify-self: start;
	}

	.offer-details__copy {
		border-right: 0;
		padding-right: 0;
	}

	.offer-details__label h3 {
		text-align: left;
	}

	.keep__bottom {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}
}

/* ─────────────── Works — archive (liste des projets) ─────────────── */
.works {
	padding: 150px 80px 120px;
	background: var(--black-2);
}

.works__head {
	text-align: center;
	margin-bottom: 70px;
}

.works__title {
	font-size: clamp(90px, 11.5vw, 165px);
	font-weight: 800;
	letter-spacing: -0.01em;
	line-height: 0.95;
	text-transform: uppercase;
	color: var(--beige);
}

.works__title .o {
	color: var(--warm);
}

.works__filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 38px;
	margin-top: 22px;
}

.works__filter {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #8c8c8c;
	transition: color 0.2s ease;
}

.works__filter:hover {
	color: var(--beige);
}

.works__filter.is-active {
	color: var(--warm);
}

.works__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 48px;
	row-gap: 74px;
	max-width: 1180px;
	margin: 0 auto;
}

.work-item.is-hidden,
.work-item.is-filtered-out {
	display: none;
}

.work-item__media {
	aspect-ratio: 16 / 10;
	background-color: var(--black-3);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
	transition: transform 0.45s ease;
}

.work-item__link:hover .work-item__media {
	transform: scale(1.03);
}

.work-item__title {
	font-size: 22px;
	font-weight: 700;
	color: var(--beige);
	margin: 24px 0 10px;
}

.work-item__excerpt {
	font-size: 13px;
	line-height: 1.55;
	font-weight: 300;
	color: #8c8c8c;
	max-width: 92%;
}

.works__more-wrap {
	text-align: center;
	margin-top: 84px;
}

.works__more {
	cursor: pointer;
}

.works__empty {
	text-align: center;
	color: var(--beige);
	font-weight: 300;
}

@media (max-width: 760px) {
	.works {
		padding: 120px 22px 80px;
	}

	.works__grid {
		grid-template-columns: 1fr;
		row-gap: 48px;
	}

	.works__filters {
		gap: 22px;
	}
}

/* ─────────────── Work — détail (étude de cas) ─────────────── */
.work-detail {
	padding: 150px 80px 120px;
	background: var(--black-2);
}

.work-detail__head {
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}

.work-detail__kicker {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--warm);
	margin-bottom: 18px;
}

.work-detail__title {
	font-size: clamp(28px, 3.4vw, 46px);
	font-weight: 700;
	line-height: 1.1;
	color: var(--beige);
}

.work-detail__title .o {
	color: var(--warm);
}

.work-detail__back {
	display: inline-block;
	margin-top: 22px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--warm);
	transition: opacity 0.2s ease;
}

.work-detail__back:hover {
	opacity: 0.7;
}

.work-detail__cover {
	max-width: 1180px;
	margin: 56px auto 0;
	aspect-ratio: 1.85;
	overflow: hidden;
	background: var(--black-3);
}

.work-detail__cover img,
.work-detail__cover video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Placeholder rouge (quand aucun visuel) */
.work-detail__cover.is-empty,
.work-detail__shot.is-empty {
	background: radial-gradient(circle at 50% 42%, #d8261d 0%, #a4121a 55%, #7c0d16 100%);
}

.work-detail__case {
	max-width: 1180px;
	margin: 96px auto 0;
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 72px;
	align-items: start;
}

.work-detail__text {
	position: sticky;
	top: 110px;
	align-self: start;
}

.case-block {
	margin-bottom: 44px;
}

.case-block:last-child {
	margin-bottom: 0;
}

.case-block__title {
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--beige);
	margin-bottom: 14px;
}

.case-block__body {
	font-size: 14px;
	line-height: 1.7;
	font-weight: 300;
	color: #8c8c8c;
	max-width: 340px;
}

.work-detail__media {
	display: flex;
	flex-direction: column;
	gap: 26px;
}

.work-detail__shot img {
	width: 100%;
	height: auto;
	display: block;
}

.work-detail__shot.is-empty {
	aspect-ratio: 4 / 3;
}

/* Vous aimerez aussi */
.work-related {
	max-width: 1180px;
	margin: 120px auto 0;
	text-align: center;
}

.work-related__title {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-size: clamp(22px, 2.4vw, 30px);
	font-weight: 700;
	color: var(--beige);
}

.work-related__thumb {
	height: 38px;
	width: auto;
}

.work-related__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 26px;
	margin-top: 44px;
}

.work-related__media {
	display: block;
	aspect-ratio: 16 / 10;
	background-color: var(--black-3);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
	transition: transform 0.45s ease;
}

.work-related__item:hover .work-related__media {
	transform: scale(1.03);
}

@media (max-width: 860px) {
	.work-detail {
		padding: 120px 22px 80px;
	}

	.work-detail__case {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.work-detail__text {
		position: static;
	}

	.work-related__grid {
		grid-template-columns: 1fr;
	}
}

/* ─────────────── Team — archive (équipe) ─────────────── */
.team {
	padding: 150px 80px 120px;
	background: var(--black-2);
}

.team__head {
	text-align: center;
	margin-bottom: 64px;
}

.team__title {
	font-size: clamp(80px, 11vw, 150px);
	font-weight: 800;
	letter-spacing: -0.01em;
	line-height: 0.95;
	text-transform: uppercase;
	color: var(--beige);
}

.team__filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 38px;
	margin-top: 22px;
}

.team__filter {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #8c8c8c;
	transition: color 0.2s ease;
}

.team__filter:hover {
	color: var(--beige);
}

.team__filter.is-active {
	color: var(--warm);
}

.team__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	max-width: 1180px;
	margin: 0 auto;
}

.team-item.is-hidden,
.team-item.is-filtered-out {
	display: none;
}

.team-item__media {
	position: relative;
	aspect-ratio: 1 / 1;
	background-color: var(--black-3);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}

/* Voile + flou révélés au survol (le nom apparaît au centre par-dessus). */
.team-item__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(20, 20, 20, 0.42);
	backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.team-item__media:hover::after {
	opacity: 1;
}

/* Carte sans photo : petit pictogramme « membre » en filigrane. */
.team-item__media.is-empty {
	background-image: radial-gradient(circle at 50% 38%, rgba(244, 240, 228, 0.07) 0 56px, transparent 57px);
}

/* Nom + rôle centrés, révélés au survol. */
.team-item__info {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	text-align: center;
	padding: 16px;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	pointer-events: none;
}

.team-item__media:hover .team-item__info {
	opacity: 1;
	transform: none;
}

.team-item__name {
	color: var(--beige);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.15;
}

.team-item__role {
	color: var(--warm);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.team__more-wrap {
	text-align: center;
	margin-top: 60px;
}

.team__empty {
	text-align: center;
	color: var(--beige);
	font-weight: 300;
}

@media (max-width: 760px) {
	.team {
		padding: 120px 22px 80px;
	}

	.team__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.team__filters {
		gap: 22px;
	}
}

/* ─────────────── Offer — page dédiée ─────────────── */
.offer-page {
	background: var(--black-2);
	padding: 150px 80px 110px;
}

/* Hero */
.offer-page__hero {
	text-align: center;
	max-width: 1100px;
	margin: 0 auto 84px;
}

.offer-page__title {
	font-size: clamp(64px, 11vw, 160px);
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: var(--beige);
	white-space: nowrap;
}

.offer-page__title .o {
	color: var(--warm);
}

.offer-page__sub {
	margin-top: 22px;
	font-size: clamp(18px, 1.6vw, 24px);
	font-weight: 700;
	line-height: 1.45;
	color: var(--beige);
}

.offer-page__sub .hl {
	background: var(--warm);
	color: var(--beige);
	padding: 0 8px;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}

/* 4 atouts */
.offer-feats {
	max-width: 1180px;
	margin: 0 auto 96px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.feat {
	padding: 0 28px;
}

.feat + .feat {
	border-left: 1px solid var(--warm);
}

.feat__icon {
	height: 46px;
	width: auto;
	margin-bottom: 28px;
}

.feat__title {
	font-size: 17px;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--beige);
	line-height: 1.15;
	margin-bottom: 14px;
}

.feat__text {
	font-size: 12.5px;
	line-height: 1.55;
	font-weight: 300;
	color: #8c8c8c;
}

/* 6 services */
.offer-services {
	max-width: 1180px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 26px;
}

.svc {
	position: relative;
	background: var(--beige);
	color: var(--black);
	padding: 48px 48px 46px;
	border-radius: 4px;
}

.svc__tab {
	position: absolute;
	top: -15px;
	left: 46px;
	width: 38px;
	height: 30px;
	background: var(--warm);
}

.svc__title {
	font-size: clamp(22px, 2.2vw, 30px);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	margin-bottom: 28px;
}

.svc__title .o {
	color: var(--warm);
}

.svc__cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
}

.svc__text p {
	font-size: 12.5px;
	line-height: 1.7;
	color: #3a3a3a;
	margin-bottom: 14px;
}

.svc__text p:last-child {
	margin-bottom: 0;
}

.svc__image {
	margin-top: 26px;
	aspect-ratio: 1.95;
	background: #c9c6bb;
}

.svc__right {
	display: flex;
	flex-direction: column;
}

.svc__list {
	list-style: none;
}

.svc__list li {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 13px 0;
	border-bottom: 1px solid var(--warm);
}

.svc__list li:first-child {
	padding-top: 2px;
}

.svc__note {
	margin-top: auto;
	padding-top: 30px;
	font-size: 14px;
	font-weight: 700;
	font-style: italic;
	line-height: 1.5;
	text-align: right;
	color: var(--black);
}

@media (max-width: 860px) {
	.offer-page {
		padding: 120px 22px 80px;
	}

	.offer-feats {
		grid-template-columns: 1fr 1fr;
		row-gap: 34px;
	}

	.feat:nth-child(3) {
		border-left: 0;
	}

	.svc {
		padding: 40px 24px;
	}

	.svc__cols {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.svc__note {
		text-align: left;
		padding-top: 20px;
	}
}
