/**
 * Styles spécifiques à la page d'accueil (front-page.php).
 */

/* ============================================
   HERO ACCUEIL
   ============================================ */

.home-hero {
	position: relative;
	padding-block: clamp(60px, 12vw, 140px) clamp(40px, 8vw, 100px);
	overflow: hidden;
	background:
		radial-gradient(ellipse 80% 60% at 70% 20%, rgba(201, 169, 97, 0.15), transparent 60%),
		radial-gradient(ellipse 60% 60% at 20% 80%, rgba(201, 169, 97, 0.08), transparent 50%),
		var(--bg);
}

.home-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(45deg, transparent 49%, var(--accent) 49%, var(--accent) 51%, transparent 51%);
	background-size: 24px 24px;
	opacity: 0.025;
	pointer-events: none;
}

.home-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	gap: var(--space-2xl);
	grid-template-columns: 1.4fr 1fr;
	align-items: center;
}

@media (max-width: 900px) {
	.home-hero__inner { grid-template-columns: 1fr; }
}

.home-hero__overline {
	display: inline-flex;
	align-items: center;
	gap: var(--space-sm);
	font-size: var(--fs-xs);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: var(--accent);
	margin-bottom: var(--space-md);
}

.home-hero__overline::before {
	content: '';
	width: 32px;
	height: 1px;
	background: var(--accent);
}

.home-hero__title {
	font-size: clamp(var(--fs-3xl), 6vw, var(--fs-5xl));
	line-height: 1.05;
	letter-spacing: -0.02em;
	margin-bottom: var(--space-lg);
}

.home-hero__title em {
	font-style: italic;
	color: var(--accent);
}

.home-hero__lead {
	font-size: clamp(var(--fs-md), 1.6vw, var(--fs-lg));
	color: var(--text-muted);
	max-width: 540px;
	margin-bottom: var(--space-xl);
}

.home-hero__actions {
	display: flex;
	gap: var(--space-md);
	flex-wrap: wrap;
}

.home-hero__trust {
	display: flex;
	gap: var(--space-lg);
	margin-top: var(--space-2xl);
	flex-wrap: wrap;
	color: var(--text-muted);
	font-size: var(--fs-sm);
}

.home-hero__trust-item {
	display: flex;
	align-items: center;
	gap: var(--space-xs);
}

.home-hero__trust-item svg {
	width: 18px;
	height: 18px;
	color: var(--accent);
}

/* Card flottante à droite */
.home-hero__card {
	background: var(--bg-alt);
	border: 1px solid var(--border);
	border-radius: var(--radius-xl);
	padding: var(--space-xl);
	box-shadow: var(--shadow-lg);
	position: relative;
}

.home-hero__card::before {
	content: '';
	position: absolute;
	top: -1px; left: -1px; right: -1px; bottom: -1px;
	border-radius: var(--radius-xl);
	padding: 1px;
	background: linear-gradient(135deg, var(--accent), transparent 40%);
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.home-hero__card-label {
	font-size: var(--fs-xs);
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--accent);
	margin-bottom: var(--space-sm);
}

.home-hero__card-num {
	font-family: var(--font-display);
	font-size: clamp(var(--fs-4xl), 8vw, var(--fs-5xl));
	font-weight: 700;
	color: var(--accent);
	line-height: 1;
	margin-bottom: var(--space-sm);
}

.home-hero__card-text {
	color: var(--text-muted);
	font-size: var(--fs-sm);
	line-height: var(--lh-relaxed);
}

.home-hero__card-divider {
	height: 1px;
	background: var(--border);
	margin: var(--space-lg) 0;
}

.home-hero__card-rating {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	color: var(--accent);
	font-weight: 700;
}

/* ============================================
   PREMIUM HERO IMMERSIF — page d'accueil classique
   ============================================ */
.premium-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(70px, 10vw, 130px) 0 clamp(80px, 11vw, 140px);
	background:
		linear-gradient(170deg, var(--premium-bg-alt, #EFE6D2) 0%, var(--premium-bg, #F6F1E8) 60%);
	min-height: calc(100vh - var(--header-height, 80px));
	min-height: calc(100dvh - var(--header-height, 80px));
	display: flex;
	align-items: center;
}

.premium-hero__halo {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	pointer-events: none;
	z-index: 0;
}
.premium-hero__halo--1 {
	top: -120px;
	left: -120px;
	width: 460px;
	height: 460px;
	background: radial-gradient(circle, rgba(176, 137, 64, 0.35), transparent 70%);
}
.premium-hero__halo--2 {
	bottom: -150px;
	right: -120px;
	width: 540px;
	height: 540px;
	background: radial-gradient(circle, rgba(140, 108, 44, 0.28), transparent 70%);
}

.premium-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 880px;
	text-align: center;
}

.premium-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	border: 1px solid var(--premium-border, #E6DCC7);
	color: var(--premium-accent, #B08940);
	padding: 10px 18px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 32px;
	box-shadow: 0 10px 24px -8px rgba(176, 137, 64, 0.18);
}

.premium-hero__title {
	font-size: clamp(36px, 6vw, 72px);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.035em;
	color: var(--premium-ink, #1A1A1A);
	margin: 0 0 28px;
	text-wrap: balance;
	font-family: var(--font-display, var(--font-body));
}
.premium-hero__title em {
	font-style: italic;
	background: linear-gradient(135deg, var(--premium-accent, #B08940), var(--premium-accent-hover, #8C6C2C));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.premium-hero__lead {
	font-size: clamp(16px, 1.6vw, 20px);
	line-height: 1.55;
	color: var(--premium-ink-soft, #4A4A4A);
	max-width: 620px;
	margin: 0 auto 24px;
}

.premium-hero__cruise {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	max-width: 640px;
	margin: 0 auto 40px;
	padding: 11px 18px;
	border: 1px solid rgba(176, 137, 64, 0.35);
	border-radius: 999px;
	background: rgba(176, 137, 64, 0.07);
	font-size: clamp(13px, 1.3vw, 15px);
	line-height: 1.45;
	color: var(--premium-ink-soft, #4A4A4A);
	text-align: left;
}

.premium-hero__cruise svg {
	flex-shrink: 0;
	color: var(--premium-gold, #B08940);
}

.premium-hero__cruise a {
	color: var(--premium-gold, #B08940);
	font-weight: 700;
	text-decoration: none;
	border-bottom: 1px solid currentColor;
}

.premium-hero__cruise a:hover {
	color: var(--premium-gold-dark, #8C6C2C);
}

.premium-hero__actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 56px;
}

.premium-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 30px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
	border: 2px solid transparent;
	white-space: nowrap;
}

.premium-btn--phone {
	background: #fff;
	color: var(--premium-accent, #B08940);
	border-color: var(--premium-accent, #B08940);
}
.premium-btn--phone:hover {
	background: var(--premium-accent, #B08940);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 14px 28px -10px rgba(176, 137, 64, 0.45);
}

.premium-btn--reserve {
	background: linear-gradient(135deg, var(--premium-accent, #B08940), var(--premium-accent-hover, #8C6C2C));
	color: #fff;
	box-shadow: 0 16px 36px -10px rgba(176, 137, 64, 0.5);
	font-size: 16px;
	padding: 18px 34px;
	position: relative;
	overflow: hidden;
}
.premium-btn--reserve::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.4) 50%, transparent 60%);
	transform: translateX(-110%);
	transition: transform 0.9s ease;
	pointer-events: none;
}
.premium-btn--reserve:hover::after { transform: translateX(110%); }
.premium-btn--reserve:hover {
	transform: translateY(-3px);
	box-shadow: 0 22px 44px -10px rgba(176, 137, 64, 0.65);
}

.premium-btn--contact {
	background: transparent;
	color: var(--premium-ink, #1A1A1A);
	border-color: var(--premium-border, #E6DCC7);
}
.premium-btn--contact:hover {
	background: #fff;
	border-color: var(--premium-accent, #B08940);
	color: var(--premium-accent, #B08940);
}

/* === Barre stats flottante === */
.premium-hero__stats {
	background: #fff;
	border: 1px solid var(--premium-border, #E6DCC7);
	border-radius: 24px;
	box-shadow: 0 30px 60px -25px rgba(60, 40, 0, 0.18);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 8px;
	max-width: 760px;
	margin: 0 auto;
}

.premium-hero__stat {
	padding: 24px 18px;
	text-align: center;
	border-radius: 18px;
	transition: background 0.3s;
}
.premium-hero__stat:hover { background: var(--premium-bg-alt, #EFE6D2); }
.premium-hero__stat-num {
	font-size: clamp(24px, 2.6vw, 32px);
	font-weight: 800;
	color: var(--premium-accent, #B08940);
	letter-spacing: -0.03em;
	line-height: 1;
	font-family: var(--font-display, var(--font-body));
}
.premium-hero__stat-label {
	font-size: 12px;
	color: var(--premium-ink-soft, #4A4A4A);
	font-weight: 500;
	margin-top: 6px;
}

@media (max-width: 700px) {
	.premium-hero__stats { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   ZONE CONTACT — partagée classique + médical
   S'adapte automatiquement à l'univers via --accent
   ============================================ */
.contact-zone {
	--contact-pad-y: clamp(70px, 9vw, 120px);
	padding: var(--contact-pad-y) 0;
	background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
	border-top: 1px solid var(--border);
	/* Ancre : on compense le padding-haut pour que le titre arrive juste
	   sous le header (scroll-padding-top gère déjà le menu fixe). */
	scroll-margin-top: calc(20px - var(--contact-pad-y));
}

.contact-zone__header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto clamp(40px, 5vw, 64px);
}

.contact-zone__overline {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: var(--accent);
	margin-bottom: 14px;
}

.contact-zone__title {
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--text);
	margin: 0 0 16px;
	text-wrap: balance;
}

.contact-zone__lead {
	font-size: 17px;
	line-height: 1.55;
	color: var(--text-muted);
	margin: 0;
}

.contact-zone__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	max-width: 960px;
	margin: 0 auto;
}

@media (max-width: 760px) {
	.contact-zone__grid { grid-template-columns: 1fr; }
}

.contact-card {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	background: var(--bg-elevated, #fff);
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 22px;
	text-decoration: none;
	color: inherit;
	transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
	            border-color 0.3s ease,
	            box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
}

.contact-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.contact-card:hover {
	transform: translateY(-4px);
	border-color: var(--accent);
	box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.15);
}

.contact-card:hover::before { transform: scaleX(1); }

.contact-card__icon {
	width: 50px;
	height: 50px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--bg-alt), var(--bg));
	color: var(--accent);
	display: grid;
	place-items: center;
	flex-shrink: 0;
}

.contact-card--whatsapp .contact-card__icon {
	background: linear-gradient(135deg, rgba(37, 211, 102, 0.12), rgba(37, 211, 102, 0.22));
	color: #1faf54;
}
.contact-card--whatsapp::before { background: #25D366; }

.contact-card__body { min-width: 0; }

.contact-card__label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--text-muted);
	margin-bottom: 4px;
}

.contact-card__value {
	font-size: 17px;
	font-weight: 700;
	color: var(--text);
	line-height: 1.3;
	margin-bottom: 4px;
	word-break: break-word;
}

.contact-card__sub {
	font-size: 12px;
	color: var(--text-muted);
	line-height: 1.4;
}

.contact-zone__schedule {
	max-width: 720px;
	margin: 32px auto 0;
	padding: 16px 22px;
	background: var(--bg-elevated, #fff);
	border: 1px solid var(--border);
	border-radius: 12px;
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--text-muted);
	font-size: 14px;
}
.contact-zone__schedule svg {
	color: var(--accent);
	flex-shrink: 0;
}
.contact-zone__schedule strong { color: var(--text); }

/* ============================================
   SECTIONS HOME (utilisées sur pages internes)
   ============================================ */

.home-section {
	--section-pad-y: clamp(96px, 12vw, 180px);
	padding-block: var(--section-pad-y);
	/* Ancre : on annule le padding-haut pour que le TITRE arrive juste sous
	   le header (et non au milieu de l'écran). scroll-padding-top (= header)
	   gère déjà le décalage du menu fixe ; ici on remonte de la hauteur du
	   padding interne, en laissant un petit espace de respiration. */
	scroll-margin-top: calc(20px - var(--section-pad-y));
}

/* Sépare visuellement 2 sections consécutives partageant le même fond */
.home-section + .home-section:not(.home-section--alt),
.home-section--alt + .home-section--alt {
	border-top: 1px solid var(--border);
}

.home-section--alt {
	background: var(--bg-alt);
}

.home-section__header {
	max-width: 760px;
	margin-bottom: clamp(40px, 5vw, 72px);
}

.home-section__overline {
	display: inline-block;
	font-size: var(--fs-xs);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: var(--accent);
	margin-bottom: var(--space-lg);
}

.home-section__title {
	font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
	line-height: 1.15;
	margin-bottom: var(--space-lg);
	text-wrap: balance;
}

.home-section__lead {
	font-size: var(--fs-lg);
	line-height: 1.55;
	color: var(--text-muted);
}

/* ============================================
   SERVICES (grille de 4 cartes)
   ============================================ */

.services-grid {
	display: grid;
	gap: var(--space-lg);
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: var(--space-xl);
	transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
}

.home-section--alt .service-card { background: var(--bg-elevated); }

.service-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	border-color: var(--accent);
}

.service-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: var(--radius-md);
	background: linear-gradient(135deg, var(--accent), var(--accent-hover));
	color: var(--on-accent);
}

.service-card__icon svg { width: 28px; height: 28px; }

.service-card__title {
	font-size: var(--fs-xl);
	margin: 0;
}

.service-card__text {
	color: var(--text-muted);
	font-size: var(--fs-base);
	line-height: var(--lh-relaxed);
	flex: 1;
}

.service-card__link {
	display: inline-flex;
	align-items: center;
	gap: var(--space-xs);
	color: var(--accent);
	font-weight: 600;
	font-size: var(--fs-sm);
	margin-top: auto;
}

.service-card__link:hover { gap: var(--space-md); }

/* ============================================
   FLOTTE
   ============================================ */

.fleet-grid {
	display: grid;
	gap: var(--space-lg);
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.fleet-card {
	background: var(--bg-alt);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.home-section--alt .fleet-card { background: var(--bg); }

.fleet-card__visual {
	aspect-ratio: 4/3;
	background: linear-gradient(135deg, var(--bg-elevated), var(--bg-alt));
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
	position: relative;
}

.fleet-card__visual::after {
	content: 'Photo à venir';
	position: absolute;
	bottom: 8px;
	right: 8px;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--text-muted);
	background: rgba(0,0,0,0.4);
	padding: 2px 8px;
	border-radius: var(--radius-pill);
}

.fleet-card__visual svg {
	width: 80px;
	height: 80px;
	opacity: 0.7;
}

.fleet-card__body {
	padding: var(--space-lg);
}

.fleet-card__name {
	font-size: var(--fs-lg);
	font-weight: 700;
	margin-bottom: var(--space-xs);
	color: var(--text);
}

.fleet-card__capacity {
	font-size: var(--fs-sm);
	color: var(--accent);
	font-weight: 600;
	margin-bottom: var(--space-sm);
}

.fleet-card__features {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: var(--fs-sm);
	color: var(--text-muted);
}

.fleet-card__features li {
	display: flex;
	align-items: center;
	gap: var(--space-xs);
	padding: var(--space-xs) 0;
}

.fleet-card__features li::before {
	content: '✓';
	color: var(--accent);
	font-weight: 700;
}

/* ============================================
   TRUST / CHIFFRES
   ============================================ */

.trust-strip {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: var(--space-xl);
	padding: var(--space-2xl);
	background: var(--bg-alt);
	border-radius: var(--radius-xl);
	border: 1px solid var(--border);
}

.home-section--alt .trust-strip { background: var(--bg); }

.trust-stat {
	text-align: center;
}

.trust-stat__num {
	font-family: var(--font-display);
	font-size: clamp(var(--fs-3xl), 5vw, var(--fs-4xl));
	font-weight: 700;
	color: var(--accent);
	line-height: 1;
	margin-bottom: var(--space-xs);
}

.trust-stat__label {
	font-size: var(--fs-sm);
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

/* ============================================
   AVIS GOOGLE (placeholder)
   ============================================ */

.reviews-grid {
	display: grid;
	gap: var(--space-lg);
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.review-card {
	background: var(--bg-alt);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: var(--space-lg);
}

.home-section--alt .review-card { background: var(--bg); }

.review-card__stars {
	color: #FFB400;
	font-size: var(--fs-md);
	letter-spacing: 2px;
	margin-bottom: var(--space-sm);
}

.review-card__text {
	color: var(--text);
	font-style: italic;
	line-height: var(--lh-relaxed);
	margin-bottom: var(--space-md);
}

.review-card__author {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	font-size: var(--fs-sm);
	color: var(--text-muted);
}

.review-card__avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent), var(--accent-hover));
	color: var(--on-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}

/* ============================================
   CTA SIMULATEUR
   ============================================ */

.simulator-cta {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: var(--space-2xl);
	align-items: center;
	padding: clamp(40px, 6vw, 80px);
	background:
		radial-gradient(ellipse at top right, rgba(201, 169, 97, 0.15), transparent 60%),
		var(--bg-alt);
	border-radius: var(--radius-xl);
	border: 1px solid var(--border);
}

.home-section--alt .simulator-cta {
	background:
		radial-gradient(ellipse at top right, rgba(201, 169, 97, 0.15), transparent 60%),
		var(--bg);
}

@media (max-width: 800px) {
	.simulator-cta { grid-template-columns: 1fr; }
}

.simulator-cta__visual {
	font-family: var(--font-display);
	text-align: right;
}

.simulator-cta__price {
	font-size: clamp(var(--fs-3xl), 6vw, var(--fs-5xl));
	color: var(--accent);
	font-weight: 700;
	line-height: 1;
}

.simulator-cta__price small {
	font-size: 40%;
	color: var(--text-muted);
	font-weight: 400;
	display: block;
	margin-top: var(--space-sm);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* ============================================
   CTA FINAL
   ============================================ */

.final-cta {
	text-align: center;
	padding-block: clamp(60px, 10vw, 120px);
	background:
		radial-gradient(ellipse at center, rgba(201, 169, 97, 0.12), transparent 70%),
		var(--bg);
}

.final-cta__title {
	font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
	margin-bottom: var(--space-md);
	/* Évite que la ponctuation finale (?, !) tombe seule sur une ligne */
	text-wrap: balance;
}

.final-cta__lead {
	color: var(--text-muted);
	font-size: var(--fs-lg);
	max-width: 580px;
	margin: 0 auto var(--space-xl);
}

.final-cta__actions {
	display: inline-flex;
	gap: var(--space-md);
	flex-wrap: wrap;
	justify-content: center;
}

/* ============================================
   SECTION « À BORD » — vraies photos de la flotte (accueil premium)
   ============================================ */
.flotte-showcase {
	padding: clamp(56px, 8vw, 104px) 0;
	background: linear-gradient(180deg, var(--premium-bg) 0%, var(--premium-bg-alt) 100%);
}
.flotte-showcase__header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto clamp(32px, 5vw, 56px);
}
.flotte-showcase__overline {
	display: inline-block;
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--premium-accent);
	margin-bottom: 0.6rem;
}
.flotte-showcase__title {
	font-family: var(--font-display, "Playfair Display", serif);
	font-size: clamp(1.7rem, 3.4vw, 2.6rem);
	line-height: 1.12;
	color: var(--premium-ink);
	margin: 0 0 0.7rem;
}
.flotte-showcase__lead {
	color: var(--premium-ink-soft);
	font-size: clamp(1rem, 1.4vw, 1.12rem);
	margin: 0;
}
.flotte-showcase__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(14px, 2vw, 22px);
}
.flotte-card {
	position: relative;
	margin: 0;
	border-radius: 18px;
	overflow: hidden;
	aspect-ratio: 3 / 4;
	box-shadow: 0 18px 40px rgba(26, 16, 10, 0.18);
	border: 1px solid var(--premium-border);
	background: var(--premium-ink);
}
.flotte-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}
.flotte-card:hover img {
	transform: scale(1.05);
}
.flotte-card__caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1.4rem 1rem 0.9rem;
	font-size: 0.92rem;
	font-weight: 600;
	color: #fff;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0) 100%);
}
.flotte-showcase__actions {
	text-align: center;
	margin-top: clamp(28px, 4vw, 44px);
}
@media (max-width: 720px) {
	.flotte-showcase__grid {
		grid-template-columns: 1fr 1fr;
	}
	.flotte-card--tall {
		grid-column: 1 / -1;
		aspect-ratio: 4 / 3;
	}
}
@media (max-width: 440px) {
	.flotte-showcase__grid {
		grid-template-columns: 1fr;
	}
	.flotte-card--tall {
		aspect-ratio: 3 / 4;
	}
}

/* ============================================
   Vidéo de présentation (façade légère YouTube)
   ============================================ */
.flotte-video {
	max-width: 860px;
	margin: clamp(40px, 6vw, 72px) auto 0;
	text-align: center;
}
.flotte-video__duo {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(16px, 2.5vw, 28px);
	align-items: start;
}
.flotte-video__item {
	margin: 0;
}
.flotte-video__caption {
	margin-top: 0.7rem;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--premium-ink);
}
@media (max-width: 700px) {
	.flotte-video__duo {
		grid-template-columns: 1fr;
	}
}
.flotte-video__title {
	font-family: var(--font-display, "Playfair Display", serif);
	font-size: clamp(1.3rem, 2.4vw, 1.8rem);
	color: var(--premium-ink);
	margin: 0 0 1.1rem;
}
.video-facade {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: 1px solid var(--premium-border);
	border-radius: 18px;
	overflow: hidden;
	cursor: pointer;
	background: #000;
	aspect-ratio: 16 / 9;
	box-shadow: 0 18px 44px rgba(26, 16, 10, 0.22);
}
.video-facade__thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease, opacity 0.3s ease;
}
.video-facade:hover .video-facade__thumb {
	transform: scale(1.04);
	opacity: 0.9;
}
.video-facade__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 78px;
	height: 78px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: #1A1A1A;
	background: var(--premium-accent-light, #E9D9A8);
	box-shadow: 0 8px 26px rgba(0, 0, 0, 0.4);
	transition: transform 0.25s ease, background 0.25s ease;
	padding-left: 4px;
}
.video-facade:hover .video-facade__play {
	transform: translate(-50%, -50%) scale(1.08);
	background: #fff;
}
.video-facade.is-playing .video-facade__thumb,
.video-facade.is-playing .video-facade__play {
	display: none;
}
.video-facade__iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* Vidéo médicale encadrée de 2 photos d'intérieur */
.med-video-row {
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
	gap: clamp(14px, 1.8vw, 24px);
	align-items: stretch;
	max-width: 1100px;
	margin: 0 auto;
}
.med-video-row__video {
	display: flex;
	align-items: center;
}
.med-video-row__video .video-facade {
	width: 100%;
}
.med-video-row__photo {
	margin: 0;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid var(--medical-border, #D5E4F4);
	box-shadow: 0 14px 34px rgba(30, 88, 148, 0.16);
}
.med-video-row__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
@media (max-width: 760px) {
	.med-video-row {
		grid-template-columns: 1fr 1fr;
	}
	.med-video-row__video {
		grid-column: 1 / -1;
		order: -1;
	}
	.med-video-row__photo img {
		aspect-ratio: 3 / 4;
	}
}

/* Façade vidéo — variante médicale (bleu doux) */
body.is-medical .video-facade {
	border-color: var(--medical-border, #D5E4F4);
	box-shadow: 0 18px 44px rgba(30, 88, 148, 0.18);
}
body.is-medical .video-facade__play {
	color: #fff;
	background: var(--medical-primary, #2A6FBA);
}
body.is-medical .video-facade:hover .video-facade__play {
	background: var(--medical-signature, #29ABE2);
}

/* ============================================================
   ENCART « COUPE DU MONDE 2026 » — pied de page classique
   Sobre, or premium, point rouge "live" clignotant.
   ============================================================ */
.wc-widget {
	max-width: 720px;
	margin: var(--space-xl, 2rem) auto 0;
	padding: 1rem 1.25rem 0.9rem;
	background: linear-gradient(180deg, rgba(201, 169, 97, 0.10), rgba(176, 137, 64, 0.05));
	border: 1px solid var(--premium-border, #E6DCC7);
	border-radius: 16px;
	box-shadow: 0 6px 22px rgba(26, 15, 10, 0.06);
}
.wc-widget__head {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin-bottom: 0.7rem;
}
.wc-widget__cup { font-size: 1.4rem; line-height: 1; }
.wc-widget__titles { display: flex; flex-direction: column; }
.wc-widget__title {
	font-family: var(--font-display, "Playfair Display", serif);
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--premium-ink, #1A1A1A);
	line-height: 1.1;
}
.wc-widget__sub {
	font-size: 0.78rem;
	color: var(--premium-ink-soft, #6b6256);
	letter-spacing: 0.01em;
}
.wc-widget__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.wc-row {
	padding: 0.6rem 0.75rem;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(176, 137, 64, 0.16);
	border-radius: 12px;
}
.wc-row__main {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 0.6rem;
}
.wc-row__side {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	min-width: 0;
}
.wc-row__side--away { justify-content: flex-end; }
.wc-flag {
	width: 34px;
	height: 24px;
	flex: 0 0 auto;
	object-fit: cover;
	border-radius: 4px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
	background: #efe9dc;
}
.wc-flag--empty { display: inline-block; }
.wc-row__team {
	font-weight: 700;
	color: var(--premium-ink, #1A1A1A);
	font-size: 0.92rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.wc-row__score {
	display: inline-flex;
	align-items: baseline;
	gap: 0.4rem;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}
.wc-row__score b {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--premium-ink, #1A1A1A);
	line-height: 1;
}
.wc-row__score i {
	font-style: normal;
	font-size: 0.95rem;
	color: var(--premium-ink-soft, #8a8174);
}
.wc-row__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	margin-top: 0.45rem;
	padding-top: 0.4rem;
	border-top: 1px solid rgba(176, 137, 64, 0.12);
}
.wc-row__stage {
	font-size: 0.74rem;
	color: var(--premium-ink-soft, #8a8174);
}
.wc-row__date {
	font-size: 0.74rem;
	color: var(--premium-ink-soft, #8a8174);
	text-transform: capitalize;
	white-space: nowrap;
}
.wc-row__live {
	display: inline-flex;
	align-items: center;
	gap: 0.32rem;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	color: #c81e1e;
	white-space: nowrap;
}
.wc-row__min { color: #c81e1e; font-weight: 700; }
.wc-row__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #e11d1d;
	box-shadow: 0 0 0 0 rgba(225, 29, 29, 0.6);
	animation: wc-pulse 1.2s infinite;
}
.wc-row.is-live {
	border-color: rgba(225, 29, 29, 0.35);
	background: rgba(225, 29, 29, 0.04);
}
@keyframes wc-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(225, 29, 29, 0.55); }
	70%  { box-shadow: 0 0 0 7px rgba(225, 29, 29, 0); }
	100% { box-shadow: 0 0 0 0 rgba(225, 29, 29, 0); }
}
@media (prefers-reduced-motion: reduce) {
	.wc-row__dot { animation: none; }
}
.wc-widget__foot {
	margin: 0.8rem 0 0;
	font-size: 0.8rem;
	color: var(--premium-ink-soft, #8a8174);
	text-align: center;
}
.wc-widget__foot a { color: var(--premium-accent-dark, #8C6C2C); font-weight: 700; }
@media (max-width: 460px) {
	.wc-row__team { font-size: 0.82rem; }
	.wc-row__score b { font-size: 1.3rem; }
	.wc-flag { width: 28px; height: 20px; }
}
