/*
 * Composants villes Maison Cahute — mobile first.
 * Design tokens canoniques dans base.css (--mc-ink, --mc-cream, --mc-gold,
 * --mc-bottle, --mc-burgundy, --mc-navy, --mc-city-tint...). Ce fichier ne
 * fait que les consommer.
 *
 * --mc-accent (dore vieilli) reste LA couleur des CTA/boutons partout,
 * quelle que soit la ville : un CTA reconnaissable et toujours lisible
 * prime sur la variation chromatique. Les 3 autres teintes (bouteille/
 * bordeaux/nuit) servent uniquement d'accents thematiques secondaires par
 * ville (soulignement de titre, puce active, onglet actif, teinte de
 * chapitre du hero) — jamais de fond de bouton avec texte fonce dessus.
 */

/* ========== Hero statique (page ville / [mc_city_hero]) ========== */

.mc-hero {
	position: relative;
	width: 100%;
	height: 100svh;
	min-height: 480px;
	overflow: hidden;
	background: var(--mc-bg);
}

.mc-hero--static {
	height: 88svh;
	min-height: 460px;
}

.mc-hero-slide {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.mc-hero-media {
	position: absolute;
	inset: 0;
	overflow: hidden;
	background: var(--mc-bg);
}

.mc-hero-poster,
.mc-hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mc-hero-video {
	opacity: 0;
	transition: opacity 0.6s ease;
}

.mc-hero-video.is-loaded { opacity: 1; }

.mc-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, var(--mc-overlay) 60%, rgba(0, 0, 0, 0.72) 100%);
}

.mc-hero-content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 24px 88px;
	text-align: center;
	color: var(--mc-fg);
}

.mc-hero-title {
	margin: 0;
	font-size: clamp(3rem, 15vw, 8rem);
	line-height: 0.92;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: var(--mc-fg);
}

.mc-hero-subtitle {
	margin: 18px 0 0;
	font-size: clamp(1rem, 2.4vw, 1.2rem);
	color: rgba(244, 240, 230, 0.85);
	max-width: 46ch;
	margin-left: auto;
	margin-right: auto;
}

.mc-hero-cta {
	display: inline-block;
	margin-top: 32px;
	padding: 15px 32px;
	border-radius: 4px;
	background: var(--mc-accent);
	color: #0b0b0b;
	font-weight: 600;
	text-decoration: none;
	transition: opacity 0.15s ease, transform 0.15s ease;
}

.mc-hero-cta:hover, .mc-hero-cta:focus-visible {
	opacity: 0.88;
	transform: translateY(-1px);
}

/* ========== Hero scroll-scrubbing multi-villes (home) ========== */
/* Architecture "un seul ecran" : .mc-scrollhero-track = piste de defilement
   (N x --mc-scrollhero-chapter-height), .mc-scrollhero-sticky = viewport
   fixe pendant tout le parcours, et les N .mc-scrollhero-layer y sont
   EMPILES. La video du calque actif avance au scroll ; a la frontiere,
   le calque suivant balaye le precedent de bas en haut (clip-path pilote
   par mc-scroll-hero.js, reversible). */

:root {
	--mc-scrollhero-chapter-height: 250vh;
}

.mc-scrollhero {
	position: relative;
	background: var(--mc-ink);
}

.mc-scrollhero-track {
	position: relative;
}

.mc-scrollhero-sticky {
	position: sticky;
	top: 0;
	height: 100svh;
	overflow: hidden;
}

.mc-scrollhero-layer {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	overflow: hidden;
	will-change: clip-path;
}

/* Les calques suivants attendent, entierement masques, leur balayage
   (le JS pilote ensuite clip-path frame par frame). */
.mc-scrollhero-layer:not(:first-child) {
	clip-path: inset(100% 0 0 0);
}

.mc-scrollhero-media {
	position: absolute;
	inset: 0;
	background: var(--mc-ink);
	will-change: transform;
	transform-origin: 50% 50%;
}

.mc-scrollhero-poster,
.mc-scrollhero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Voile d'assombrissement du calque sortant, opacite pilotee par le scroll. */
.mc-scrollhero-shade {
	position: absolute;
	inset: 0;
	background: #000;
	opacity: 0;
	pointer-events: none;
	z-index: 1;
}

/* Overlay tres discret : la video doit rester visible en entier, juste assez
   de contraste en bas de cadre pour que le sous-titre/CTA restent lisibles. */
.mc-scrollhero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 62%, rgba(0, 0, 0, 0.45) 100%);
}

.mc-scrollhero-content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 720px;
	margin: 0 auto;
	padding: 0 24px 64px;
	text-align: center;
	color: var(--mc-fg);
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.8s var(--mc-ease), transform 0.8s var(--mc-ease);
}

.mc-scrollhero-content.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.mc-scrollhero-subtitle {
	margin: 0;
	font-size: clamp(0.95rem, 2vw, 1.1rem);
	font-weight: 500;
	color: rgba(244, 240, 230, 0.92);
	max-width: 42ch;
	margin-left: auto;
	margin-right: auto;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

/* CTA "fantome" : quasiment transparent, ne doit pas boucher la video. */
.mc-scrollhero-cta {
	display: inline-block;
	margin-top: 22px;
	padding: 13px 30px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.55);
	color: #fff;
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 0.02em;
	text-decoration: none;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.mc-scrollhero-cta:hover,
.mc-scrollhero-cta:focus-visible {
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.85);
	transform: translateY(-1px);
}

.mc-scrollhero-progress {
	position: fixed;
	z-index: 30;
	right: 28px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 14px;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.mc-scrollhero-progress.is-visible { opacity: 1; }

.mc-scrollhero-progress-dot {
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: rgba(244, 240, 230, 0.35);
	transition: background 0.3s ease, height 0.3s ease;
}

.mc-scrollhero-progress-dot.is-active {
	background: var(--mc-fg);
	height: 22px;
}

@media (min-width: 900px) {
	.mc-scrollhero-progress { right: 40px; }
}

@media (max-width: 640px) {
	:root { --mc-scrollhero-chapter-height: 200vh; }
	.mc-scrollhero-progress { display: none; }
}

/* Repli sans animation : calques desempiles en sections normales, videos en
   boucle, aucun scroll-jacking. */
@media (prefers-reduced-motion: reduce) {
	.mc-scrollhero-track { height: auto !important; }
	.mc-scrollhero-sticky { position: static; height: auto; overflow: visible; }
	.mc-scrollhero-layer {
		position: relative;
		height: 100svh;
		min-height: 560px;
		clip-path: none !important;
	}
	.mc-scrollhero-content { opacity: 1; transform: none; transition: none; }
	.mc-scrollhero-progress { display: none; }
}

/* ========== Sections page ville ========== */

.mc-ville-section {
	padding: 72px 20px;
	max-width: 1100px;
	margin: 0 auto;
}

.mc-ville-admin-notice {
	max-width: 700px;
	margin: 24px auto;
	padding: 16px 20px;
	background: #fff3cd;
	border: 1px solid #ffe69c;
	border-radius: var(--mc-radius);
}

/* ========== StoryBook (carnet patrimonial, effet page qui tourne) ========== */
/* Metaphore : couverture bleu nuit + page creme/parchemin, comme un carnet
   ouvert. Le flip tourne autour de la reliure (bord gauche). */

.mc-storybook {
	background: var(--mc-navy);
	border-radius: var(--mc-radius);
	padding: 56px 20px;
}

.mc-storybook-book {
	position: relative;
	max-width: 680px;
	margin: 0 auto;
	min-height: 300px;
	perspective: 1600px;
}

.mc-storybook-book::before {
	content: "";
	position: absolute;
	top: 4%;
	bottom: 4%;
	left: 0;
	width: 18px;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0));
	z-index: 1;
	pointer-events: none;
	border-radius: var(--mc-radius) 0 0 var(--mc-radius);
}

.mc-storybook-pages {
	position: relative;
	min-height: 300px;
	transform-style: preserve-3d;
}

.mc-storybook-page {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: var(--mc-cream);
	color: var(--mc-cream-ink);
	border-radius: var(--mc-radius);
	padding: 48px 44px;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
	opacity: 0;
	visibility: hidden;
	transform: rotateY(0deg);
	transform-origin: 0% 50%;
	backface-visibility: hidden;
	transition: transform 0.65s var(--mc-ease);
	z-index: 1;
}

.mc-storybook-page.is-active { opacity: 1; visibility: visible; transform: rotateY(0deg); }
.mc-storybook-page.is-leaving-forward { visibility: visible; opacity: 1; transform: rotateY(-115deg); z-index: 2; }
.mc-storybook-page.is-leaving-backward { visibility: visible; opacity: 1; transform: rotateY(115deg); z-index: 2; }

.mc-storybook-page-title {
	margin: 0 0 16px;
	font-size: clamp(1.3rem, 2.4vw, 1.7rem);
	font-weight: 700;
	letter-spacing: -0.005em;
	color: var(--mc-cream-ink);
	padding-bottom: 12px;
	border-bottom: 2px solid var(--mc-city-tint);
	display: inline-block;
	width: fit-content;
}

.mc-storybook-page-text {
	margin: 0;
	font-size: 1.1rem;
	line-height: 1.7;
	color: var(--mc-cream-ink);
	max-width: 46ch;
}

.mc-storybook-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 32px;
	position: relative;
	z-index: 3;
}

.mc-storybook-prev,
.mc-storybook-next {
	appearance: none;
	border: 1px solid rgba(244, 240, 230, 0.3);
	background: transparent;
	color: var(--mc-fg);
	width: 38px;
	height: 38px;
	border-radius: 999px;
	font-size: 1.15rem;
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.mc-storybook-prev:hover, .mc-storybook-next:hover,
.mc-storybook-prev:focus-visible, .mc-storybook-next:focus-visible {
	border-color: var(--mc-city-tint);
	background: rgba(244, 240, 230, 0.06);
}

.mc-storybook-dots { display: flex; gap: 8px; }

.mc-storybook-dot {
	appearance: none;
	border: none;
	background: rgba(244, 240, 230, 0.3);
	width: 7px;
	height: 7px;
	border-radius: 999px;
	padding: 0;
	cursor: pointer;
}

.mc-storybook-dot.is-active { background: var(--mc-city-tint); }

.mc-storybook.no-js .mc-storybook-page,
html.mc-reduced-motion .mc-storybook-page {
	position: relative;
	opacity: 1;
	visibility: visible;
	transform: none;
	box-shadow: none;
	margin-bottom: 20px;
}

.mc-storybook.no-js .mc-storybook-nav,
html.mc-reduced-motion .mc-storybook-nav {
	display: none;
}

@media (max-width: 640px) {
	.mc-storybook-page { padding: 36px 26px; }
}

/* ========== Best-sellers (fond clair, sobre, le produit respire) ========== */

.mc-bestsellers-title {
	font-size: 1.6rem;
	margin: 0 0 24px;
	text-align: center;
	font-weight: 700;
	color: var(--mc-cream-ink);
}

.mc-bestsellers-tabs {
	background: var(--mc-cream);
	color: var(--mc-cream-ink);
	padding: 88px 24px;
}

.mc-bestsellers-tabs-title {
	margin: 0 0 48px;
	text-align: center;
	font-size: clamp(1.7rem, 3.6vw, 2.4rem);
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--mc-cream-ink);
}

.mc-bestsellers-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px 24px;
	max-width: 1240px;
	margin: 0 auto;
}

.mc-bestsellers-empty {
	text-align: center;
	color: var(--mc-cream-muted);
	font-style: italic;
	padding: 56px 0;
}

.mc-product-card { display: flex; flex-direction: column; }
.mc-product-card-link { display: block; text-decoration: none; color: inherit; }

.mc-product-image {
	display: block;
	background: #fff;
	border-radius: var(--mc-radius);
	overflow: hidden;
}

.mc-product-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s var(--mc-ease);
}

.mc-product-card-link:hover .mc-product-image img,
.mc-product-card-link:focus-visible .mc-product-image img {
	transform: scale(1.04);
}

.mc-product-name {
	display: block;
	margin-top: 18px;
	font-size: 0.98rem;
	font-weight: 500;
	line-height: 1.4;
	color: var(--mc-cream-ink);
}

.mc-product-price {
	display: block;
	margin-top: 6px;
	font-size: 0.92rem;
	color: var(--mc-cream-muted);
}

.mc-product-cta { display: block; margin-top: 16px; }

.mc-product-cta .button,
.mc-product-cta a.added_to_cart {
	display: inline-block;
	width: 100%;
	text-align: center;
	padding: 12px 16px;
	border-radius: 4px;
	background: transparent;
	border: 1px solid var(--mc-cream-ink);
	color: var(--mc-cream-ink);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
	transition: background 0.15s ease, color 0.15s ease;
	box-sizing: border-box;
}

.mc-product-cta .button:hover,
.mc-product-cta .button:focus-visible {
	background: var(--mc-cream-ink);
	color: var(--mc-cream);
}

.mc-tabs-nav {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 48px;
	flex-wrap: wrap;
}

.mc-tab-btn {
	appearance: none;
	border: 1px solid var(--mc-cream-line);
	background: transparent;
	padding: 11px 24px;
	border-radius: 999px;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: var(--mc-cream-ink);
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.mc-tab-btn.is-active { background: var(--mc-cream-ink); color: var(--mc-cream); border-color: var(--mc-cream-ink); }
.mc-tab-btn.is-active[data-tab="arras"] { background: var(--mc-gold); border-color: var(--mc-gold); }
.mc-tab-btn.is-active[data-tab="cambrai"] { background: var(--mc-bottle); border-color: var(--mc-bottle); }
.mc-tab-btn.is-active[data-tab="lens"] { background: var(--mc-burgundy); border-color: var(--mc-burgundy); }

.mc-tab-panel[hidden] { display: none; }

@media (min-width: 640px) {
	.mc-bestsellers-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}

@media (min-width: 1000px) {
	.mc-bestsellers-tabs { padding: 112px 40px; }
	.mc-bestsellers-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; }
}

/* ========== Manifeste ========== */

.mc-manifesto { text-align: center; padding: 48px 20px; }

.mc-manifesto-text {
	max-width: 60ch;
	margin: 0 auto;
	font-size: clamp(1.15rem, 2vw, 1.4rem);
	line-height: 1.6;
	font-weight: 500;
}

/* ========== CTA ville ========== */

.mc-city-cta { text-align: center; padding: 48px 20px 72px; }

/* ========== Carrousel produits (marquee CSS pur) ========== */
/* Defilement continu ; pause au survol/focus ; l'image survolee s'agrandit.
   Le contenu est duplique une fois -> translateX(-50%) boucle sans couture. */

.mc-carousel {
	background: var(--mc-cream);
	padding: 72px 0;
	overflow: hidden;
}

.mc-carousel-title {
	margin: 0 0 40px;
	text-align: center;
	font-size: clamp(1.5rem, 3.2vw, 2.1rem);
	font-weight: 700;
	color: var(--mc-cream-ink);
}

.mc-carousel-viewport {
	overflow: hidden;
}

.mc-carousel-track {
	display: flex;
	width: max-content;
	animation: mc-marquee 55s linear infinite;
	will-change: transform;
}

.mc-carousel:hover .mc-carousel-track,
.mc-carousel:focus-within .mc-carousel-track {
	animation-play-state: paused;
}

.mc-carousel-set {
	display: flex;
	gap: 28px;
	padding-right: 28px;
}

.mc-carousel-card {
	display: flex;
	flex-direction: column;
	width: 250px;
	flex: none;
	text-decoration: none;
	color: inherit;
}

.mc-carousel-image {
	display: block;
	border-radius: var(--mc-radius);
	overflow: hidden;
	background: #fff;
}

.mc-carousel-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.45s var(--mc-ease);
}

.mc-carousel-card:hover .mc-carousel-image img,
.mc-carousel-card:focus-visible .mc-carousel-image img {
	transform: scale(1.09);
}

.mc-carousel-name {
	display: block;
	margin-top: 14px;
	font-size: 0.92rem;
	font-weight: 500;
	line-height: 1.4;
	color: var(--mc-cream-ink);
}

.mc-carousel-price {
	display: block;
	margin-top: 4px;
	font-size: 0.88rem;
	color: var(--mc-cream-muted);
}

.mc-carousel-price del { opacity: 0.55; margin-right: 6px; }
.mc-carousel-price ins { text-decoration: none; color: var(--mc-burgundy); }

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

@media (max-width: 640px) {
	.mc-carousel { padding: 48px 0; }
	.mc-carousel-card { width: 190px; }
	.mc-carousel-set { gap: 18px; padding-right: 18px; }
}

/* Repli sans animation : piste scrollable a la main, pas de defilement auto. */
@media (prefers-reduced-motion: reduce) {
	.mc-carousel-track { animation: none; }
	.mc-carousel-viewport { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ========== Section video scrub + titre premium ========== */

.mc-scrub-title {
	background: var(--mc-cream);
	margin: 0;
	padding: 96px 24px 64px;
	text-align: center;
	font-size: clamp(2rem, 5vw, 3.2rem);
	font-weight: 800;
	letter-spacing: -0.015em;
	color: var(--mc-cream-ink);
}

.mc-scrub-title span {
	position: relative;
	display: inline-block;
	padding-bottom: 20px;
}

/* Filet dore discret sous le titre : seule ponctuation decorative. */
.mc-scrub-title span::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 64px;
	height: 2px;
	background: var(--mc-gold);
}

/* Label premium en surimpression sur une video scrubbee (mc_video_scrub multi). */
.mc-scrollhero-label {
	margin: 0;
	font-size: clamp(1.5rem, 3.6vw, 2.6rem);
	font-weight: 800;
	letter-spacing: -0.01em;
	color: var(--mc-fg);
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

/* Videos des sections mc-scrub (souvent au format portrait) : affichees en
   ENTIER, sans recadrage — bandes noires laterales assumees. Le hero
   multi-villes garde lui object-fit: cover (videos paysage plein ecran). */
.mc-scrub .mc-scrollhero-poster,
.mc-scrub .mc-scrollhero-video {
	object-fit: contain;
}

.mc-scrub .mc-scrollhero-media {
	background: #000;
}

/* Mode shrink (mc_video_scrub transition="shrink") : les calques sont
   empiles en z-index inverse (inline PHP) et se revelent par retrecissement
   du calque superieur (transform pilote par le JS) — pas de clip-path. */
.mc-scrollhero--shrink .mc-scrollhero-layer {
	clip-path: none !important;
	transform-origin: 50% 50%;
	will-change: transform;
	overflow: hidden;
}

/* ========== Section architecture (editorial, rangees alternees) ========== */

.mc-archi {
	background: var(--mc-cream);
	color: var(--mc-cream-ink);
	padding-bottom: 96px;
	overflow: hidden;
}

.mc-archi-rows {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	flex-direction: column;
	gap: 96px;
}

.mc-archi-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	align-items: center;
}

.mc-archi-media img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: var(--mc-radius);
	display: block;
}

.mc-archi-eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--mc-city-tint);
	margin-bottom: 12px;
}

.mc-archi-monument {
	margin: 0 0 28px;
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	font-weight: 800;
	letter-spacing: -0.01em;
	color: var(--mc-cream-ink);
}

.mc-archi-block {
	padding-left: 20px;
	border-left: 2px solid var(--mc-city-tint);
	margin-bottom: 28px;
}

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

.mc-archi-subhead {
	margin: 0 0 8px;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mc-cream-muted);
}

.mc-archi-block p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.75;
	color: var(--mc-cream-ink);
	max-width: 56ch;
}

@media (min-width: 900px) {
	.mc-archi-row {
		grid-template-columns: 5fr 6fr;
		gap: 72px;
	}

	.mc-archi-row.is-reversed .mc-archi-media { order: 2; }
	.mc-archi-row.is-reversed .mc-archi-text { order: 1; }
}

/* ========== Bande de reassurance ========== */

.mc-reassure {
	background: var(--mc-cream);
	border-top: 1px solid var(--mc-cream-line);
	border-bottom: 1px solid var(--mc-cream-line);
	padding: 44px 24px;
}

.mc-reassure-grid {
	max-width: 1160px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px 24px;
}

.mc-reassure-item h3 {
	margin: 0 0 6px;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mc-cream-ink);
}

.mc-reassure-item p {
	margin: 0;
	font-size: 0.85rem;
	line-height: 1.5;
	color: var(--mc-cream-muted);
}

@media (min-width: 900px) {
	.mc-reassure-grid { grid-template-columns: repeat(4, 1fr); }
	.mc-reassure-item { text-align: center; }
}

/* ========== Manifeste de la marque ========== */

.mc-brand {
	background: var(--mc-ink);
	color: var(--mc-fg);
	text-align: center;
	padding: 104px 24px;
}

.mc-brand-eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--mc-gold);
	margin-bottom: 18px;
}

.mc-brand-title {
	margin: 0 auto 28px;
	max-width: 22ch;
	font-size: clamp(1.7rem, 4vw, 2.7rem);
	font-weight: 800;
	letter-spacing: -0.015em;
	color: var(--mc-fg);
}

.mc-brand-text {
	margin: 0 auto 18px;
	max-width: 58ch;
	font-size: 1.05rem;
	line-height: 1.8;
	color: rgba(244, 240, 230, 0.82);
}

.mc-brand-text:last-child { margin-bottom: 0; }

/* ========== Newsletter ========== */

.mc-newsletter {
	background: var(--mc-cream);
	text-align: center;
	padding-bottom: 96px;
}

.mc-newsletter-title { padding-bottom: 40px; }

.mc-newsletter-text {
	margin: 0 auto 32px;
	max-width: 52ch;
	padding: 0 24px;
	font-size: 1.02rem;
	line-height: 1.7;
	color: var(--mc-cream-muted);
}

.mc-newsletter-form {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	max-width: 560px;
	margin: 0 auto;
	padding: 0 24px;
}

.mc-newsletter-form input[type="email"] {
	flex: 1 1 280px;
	padding: 15px 18px;
	border: 1px solid var(--mc-cream-line);
	border-radius: 4px;
	background: #fff;
	font-size: 0.95rem;
	font-family: var(--mc-font);
	color: var(--mc-cream-ink);
}

.mc-newsletter-form input[type="email"]:focus {
	outline: 2px solid var(--mc-gold);
	outline-offset: 1px;
}

.mc-newsletter-btn {
	appearance: none;
	border: none;
	cursor: pointer;
	padding: 15px 32px;
	border-radius: 4px;
	background: var(--mc-gold);
	color: #0b0b0b;
	font-weight: 600;
	font-size: 0.95rem;
	font-family: var(--mc-font);
	transition: opacity 0.15s ease;
}

.mc-newsletter-btn:hover,
.mc-newsletter-btn:focus-visible { opacity: 0.88; }

.mc-newsletter-msg {
	margin: 0 auto 24px;
	max-width: 52ch;
	padding: 14px 20px;
	border-radius: var(--mc-radius);
	font-weight: 600;
	font-size: 0.95rem;
}

.mc-newsletter-msg.is-ok {
	background: rgba(31, 61, 48, 0.1);
	color: var(--mc-bottle);
}

.mc-newsletter-msg.is-err {
	background: rgba(85, 27, 35, 0.08);
	color: var(--mc-burgundy);
}

.mc-newsletter-legal {
	margin: 18px auto 0;
	max-width: 52ch;
	padding: 0 24px;
	font-size: 0.78rem;
	color: var(--mc-cream-muted);
}

.mc-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* ========== CTA final ========== */

.mc-final-cta {
	position: relative;
	min-height: 72svh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: var(--mc-ink);
}

.mc-final-cta-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mc-final-cta-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
}

.mc-final-cta-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 64px 24px;
	color: var(--mc-fg);
}

.mc-final-cta-title {
	margin: 0 0 12px;
	font-size: clamp(2.2rem, 6vw, 4rem);
	font-weight: 800;
	letter-spacing: -0.015em;
	color: var(--mc-fg);
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

/* Mobile : dans la video Arras du hero, le personnage est cadre a ~70% de
   la largeur de l'image source — le recadrage cover centre (50%) le coupait
   au bord droit. On decale la fenetre de cadrage vers lui. Ne concerne que
   le hero (les sections mc-scrub sont en object-fit: contain, video
   entiere, pas de recadrage). */
@media (max-width: 640px) {
	.mc-scrollhero-layer[data-city="arras"] .mc-scrollhero-video,
	.mc-scrollhero-layer[data-city="arras"] .mc-scrollhero-poster {
		object-position: 70% 50%;
	}
}

/* ========== Page ville : hero "livre" + collection ========== */

.mc-ville-bookhero {
	background: var(--mc-navy);
	color: var(--mc-fg);
	text-align: center;
	padding: calc(var(--mc-header-height) + 56px) 24px 88px;
	min-height: 92svh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.mc-ville-bookhero-title {
	margin: 0 0 10px;
	font-size: clamp(3rem, 11vw, 6.5rem);
	line-height: 0.95;
	font-weight: 800;
	letter-spacing: -0.015em;
	color: var(--mc-fg);
}

.mc-ville-bookhero-tagline {
	margin: 0 auto 48px;
	max-width: 46ch;
	font-size: clamp(0.98rem, 2.2vw, 1.15rem);
	color: rgba(244, 240, 230, 0.82);
}

/* Le carnet est deja bleu nuit : dans le hero il se fond dans le decor,
   seule la page creme ressort. */
.mc-ville-bookhero .mc-storybook {
	background: transparent;
	padding: 0;
	max-width: 760px;
	margin: 0 auto;
	width: 100%;
}

.mc-ville-products {
	background: var(--mc-cream);
	color: var(--mc-cream-ink);
	padding: 96px 24px;
}

.mc-ville-products-title {
	margin: 0 0 48px;
	text-align: center;
	font-size: clamp(1.7rem, 3.6vw, 2.4rem);
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--mc-cream-ink);
}

/* Dans le hero livre, le texte des pages reste aligne a gauche (l'alignement
   centre du hero ne doit pas s'y propager). */
.mc-ville-bookhero .mc-storybook-page {
	text-align: left;
}
