/* ==========================================================================
   CWG Plaquette — thème one-page fidèle à la brochure
   Palette: navy · rouge accent · blanc · typo Montserrat bold
   ========================================================================== */

:root {
	--cwg-navy: #0a1e3d;
	--cwg-navy-mid: #122a52;
	--cwg-blue: #0b3d91;
	--cwg-red: #e31c23;
	--cwg-red-dark: #c4161c;
	--cwg-white: #ffffff;
	--cwg-soft: #f3f6fa;
	--cwg-line: #e2e8f0;
	--cwg-muted: #5b677a;
	--cwg-text: #0a1e3d;
	--font-display: 'Montserrat', system-ui, sans-serif;
	--font-body: 'Source Sans 3', system-ui, sans-serif;
	--header-h: 78px;
	--wrap: 1180px;
	--gutter: clamp(1.25rem, 4vw, 2rem);
	--radius: 4px;
	--shadow: 0 18px 50px rgba(10, 30, 61, 0.12);
	--transition: 0.28s ease;
}

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

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	max-width: 100%;
}

body {
	font-family: var(--font-body);
	font-size: 1.125rem;
	line-height: 1.55;
	color: var(--cwg-text);
	background: var(--cwg-white);
	overflow-x: hidden;
	max-width: 100%;
	position: relative;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

main,
.section,
.hero,
.site-header,
.site-footer,
.wrap,
.offer__grid,
.why-layout {
	max-width: 100%;
	overflow-x: clip;
}

.wrap {
	width: min(100% - (var(--gutter) * 2), var(--wrap));
	margin-inline: auto;
}

/* —— Typo / UI —— */
.badge {
	display: inline-block;
	padding: 0.4rem 0.85rem;
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.2;
	border-radius: 2px;
}

.badge--red {
	background: var(--cwg-red);
	color: #fff;
}

.section-title {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(1.85rem, 4.2vw, 3rem);
	line-height: 1.05;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: var(--cwg-blue);
	margin: 0.85rem 0 1.5rem;
}

.section-title--light { color: #fff; }

.rule--red {
	width: 3rem;
	height: 3px;
	background: var(--cwg-red);
	margin: 1rem 0 1.25rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.9rem 1.5rem;
	border-radius: 999px;
	font-family: var(--font-display);
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform var(--transition), background var(--transition), color var(--transition);
	white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn--sm { padding: 0.7rem 1.15rem; font-size: 0.875rem; }
.btn--lg { padding: 1.05rem 1.85rem; font-size: 1.05rem; }

.btn--red {
	background: var(--cwg-red);
	color: #fff;
	box-shadow: 0 10px 28px rgba(227, 28, 35, 0.28);
}
.btn--red:hover { background: var(--cwg-red-dark); }

.btn--ghost {
	background: transparent;
	color: var(--cwg-navy);
	border-color: rgba(10, 30, 61, 0.25);
}
.btn--ghost:hover {
	border-color: var(--cwg-navy);
	background: rgba(10, 30, 61, 0.04);
}

.btn--ghost-dark {
	color: var(--cwg-navy);
	border-color: rgba(10, 30, 61, 0.28);
}
.btn--ghost-dark:hover {
	border-color: var(--cwg-navy);
	background: rgba(10, 30, 61, 0.05);
}

/* —— Header —— */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	height: var(--header-h);
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--cwg-line);
}

.site-header__inner {
	height: 100%;
	width: min(100% - (var(--gutter) * 2), var(--wrap));
	max-width: 100%;
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-width: 0;
}

.brand-logo {
	flex-shrink: 0;
}

.brand-logo img {
	height: 52px;
	width: auto;
}

.site-nav {
	min-width: 0;
	flex: 1 1 auto;
	display: flex;
	justify-content: center;
}

.site-nav__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.85rem 1.25rem;
	align-items: center;
}

.site-nav__list a {
	font-family: var(--font-display);
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--cwg-navy);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.site-nav__list a:hover { color: var(--cwg-red); }

.site-header__end {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-shrink: 0;
}

.site-header__burger,
.site-nav__close,
.site-nav__mobile-cta {
	display: none;
}

.site-header__burger {
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	cursor: pointer;
}

.site-header__burger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--cwg-navy);
}

/* —— Sections —— */
.section {
	padding: clamp(3.5rem, 8vw, 6.5rem) 0;
	background: #fff;
}

.section--soft { background: var(--cwg-soft); }

.check-list {
	display: grid;
	gap: 0.85rem;
}

.check-list li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.85rem;
	align-items: start;
}

.check-list__mark {
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	background: var(--cwg-red);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	font-weight: 800;
	margin-top: 0.15rem;
}

.check-list strong,
.num-list strong,
.dash-list strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	color: var(--cwg-navy);
	margin-bottom: 0.15rem;
}

.check-list span,
.num-list span:not(.num-list__n),
.dash-list span {
	color: var(--cwg-muted);
	font-size: 1.05rem;
}

.section--navy .check-list strong {
	color: #fff;
}

.section--navy .check-list span {
	color: rgba(255, 255, 255, 0.78);
}

.section--navy {
	background:
		radial-gradient(ellipse 80% 50% at 80% 100%, rgba(40, 120, 220, 0.28), transparent 60%),
		linear-gradient(160deg, #061428 0%, var(--cwg-navy) 45%, #0d2a58 100%);
	color: #fff;
}

.section--navy .section-title { color: #fff; }

.split {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.split__media img {
	width: 100%;
	border-radius: 8px;
}

.split__media--product {
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.split__media--product img {
	width: min(100%, 28rem);
	height: auto;
	max-height: min(72vh, 38rem);
	object-fit: contain;
	border-radius: 0;
	filter: drop-shadow(0 22px 40px rgba(10, 30, 61, 0.22));
}

.split__media--bleed {
	margin: 0;
}

.split__media--bleed img {
	border-radius: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 28rem;
}

/* —— Hero plein écran — image fondue dans le bleu —— */
.hero {
	position: relative;
	isolation: isolate;
	min-height: 100dvh;
	min-height: 100svh;
	display: flex;
	align-items: center;
	padding: calc(var(--header-h) + 2rem) 0 3.5rem;
	background: linear-gradient(135deg, #061428 0%, var(--cwg-navy) 48%, #0d2a58 100%);
	overflow: hidden;
}

.hero__visual {
	position: absolute;
	inset: 0 0 0 28%;
	z-index: 0;
	pointer-events: none;
	/* L’image se fond dans le bleu à gauche + un peu en bas */
	-webkit-mask-image: linear-gradient(
		90deg,
		transparent 0%,
		rgba(0, 0, 0, 0.15) 12%,
		rgba(0, 0, 0, 0.55) 28%,
		#000 48%,
		#000 100%
	);
	mask-image: linear-gradient(
		90deg,
		transparent 0%,
		rgba(0, 0, 0, 0.15) 12%,
		rgba(0, 0, 0, 0.55) 28%,
		#000 48%,
		#000 100%
	);
}

.hero__visual::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, var(--cwg-navy) 0%, transparent 38%),
		linear-gradient(180deg, rgba(6, 20, 40, 0.25) 0%, transparent 30%, rgba(6, 20, 40, 0.55) 100%);
	pointer-events: none;
}

.hero__visual-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
	opacity: 0;
	transform: scale(1.05);
	transition: opacity 1.2s ease, transform 7s ease;
}

.hero__visual-img.is-active {
	opacity: 1;
	transform: scale(1);
}

/* Tampon anti-chlordécone (renfort HTML si besoin) */
.hero__stamp {
	display: none;
}

.hero__inner {
	position: relative;
	z-index: 2;
	width: min(100% - (var(--gutter) * 2), var(--wrap));
	margin-inline: auto;
}

.hero__copy {
	color: #fff;
	max-width: 36rem;
	min-width: 0;
}

.hero__title {
	margin: 0.9rem 0 1rem;
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(2.9rem, 8.5vw, 5.75rem);
	line-height: 0.92;
	letter-spacing: -0.045em;
	text-transform: uppercase;
	color: #fff;
	max-width: 10ch;
	text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.hero__claim {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(1.2rem, 2.5vw, 1.65rem);
	line-height: 1.25;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.96);
	max-width: 22ch;
	margin-bottom: 0.75rem;
}

.hero__lead {
	margin: 0 0 1.35rem;
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.85);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 1.5rem;
}

.btn--ghost-light {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.06);
}

.btn--ghost-light:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: #fff;
	color: #fff;
}

.water-types {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.65rem;
	margin-top: 0.25rem;
	max-width: 28rem;
}

.water-types__item {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.5rem 0.7rem;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	backdrop-filter: blur(8px);
}

.water-types__dot {
	width: 1.2rem;
	height: 1.2rem;
	border-radius: 50%;
	flex-shrink: 0;
}

.water-types__item.is-cold .water-types__dot { background: #2f7cf6; }
.water-types__item.is-hot .water-types__dot { background: #e31c23; }
.water-types__item.is-sparkling .water-types__dot { background: #22a06b; }
.water-types__item.is-fast .water-types__dot { background: #f59e0b; }

.water-types__label {
	font-family: var(--font-display);
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #fff;
}

.hero__dots {
	position: absolute;
	z-index: 3;
	left: var(--gutter);
	bottom: 1.5rem;
	display: flex;
	gap: 0.55rem;
}

.hero__dot {
	width: 0.65rem;
	height: 0.65rem;
	border-radius: 999px;
	border: 0;
	padding: 0;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.35);
	transition: background 0.25s ease, transform 0.25s ease;
}

.hero__dot.is-active {
	background: #fff;
	transform: scale(1.2);
}

/* —— Offer (fond eau full-bleed + machine PNG transparente) —— */
.section--offer {
	position: relative;
	overflow: hidden;
	padding: clamp(3.5rem, 8vw, 6.5rem) 0;
	color: #fff;
	background-color: #061428;
	background-image:
		linear-gradient(105deg, rgba(6, 20, 40, 0.82) 0%, rgba(6, 20, 40, 0.55) 42%, rgba(6, 20, 40, 0.28) 68%, rgba(6, 20, 40, 0.18) 100%),
		var(--offer-bg);
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
}

.offer__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: clamp(1.25rem, 3.5vw, 2.5rem);
	align-items: center;
	width: min(100% - (var(--gutter) * 2), var(--wrap));
	margin-inline: auto;
	max-width: 100%;
}

.offer__content {
	max-width: 34rem;
	min-width: 0;
}

.section--offer .section-title {
	color: #fff;
	margin-bottom: 0.85rem;
}

.offer__visual {
	margin: 0;
	min-width: 0;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.45));
}

.offer__visual img {
	width: min(100%, 28rem);
	max-height: min(78vh, 36rem);
	height: auto;
	display: block;
	object-fit: contain;
	object-position: center bottom;
}

.price-hero {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(2.5rem, 6vw, 4rem);
	line-height: 1;
	color: #fff;
	margin: 0.25rem 0 0.75rem;
}

.price-hero span { color: var(--cwg-red); }

.offer-underline {
	display: inline-block;
	font-size: 1.2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.55);
	padding-bottom: 0.2rem;
	margin-bottom: 1.75rem;
	color: rgba(255, 255, 255, 0.95);
}

.icon-list {
	display: grid;
	gap: 0;
	margin-bottom: 1.75rem;
	max-width: 28rem;
}

.section--offer .icon-list,
.section--offer .offer-footer-label {
	color: #fff;
}

.icon-list li {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding: 0.85rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
	font-weight: 600;
}

.icon-list__icon {
	width: 2.35rem;
	height: 2.35rem;
	border-radius: 50%;
	background: var(--cwg-red);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position: relative;
}

.icon-list__icon::before {
	content: '';
	width: 1.05rem;
	height: 1.05rem;
	background: center / contain no-repeat;
}

.icon-list__icon--euro::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.4'%3E%3Cpath d='M18 6a7 7 0 1 0 0 12M5 10h9M5 14h9'/%3E%3C/svg%3E");
}
.icon-list__icon--tool::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.2'%3E%3Cpath d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.8-3.8a6 6 0 0 1-7.9 7.9l-6.9 6.9a2.1 2.1 0 0 1-3-3l6.9-6.9a6 6 0 0 1 7.9-7.9l-3.8 3.8z'/%3E%3C/svg%3E");
}
.icon-list__icon--drop::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M12 2.7 17.7 8.4a8 8 0 1 1-11.4 0L12 2.7z'/%3E%3C/svg%3E");
}
.icon-list__icon--family::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2'%3E%3Ccircle cx='9' cy='7' r='2.2'/%3E%3Ccircle cx='16' cy='8' r='1.8'/%3E%3Cpath d='M3.5 19c.5-3 2.6-4.5 5.5-4.5S14 16 14.5 19M12.5 19c.3-2 1.7-3.2 3.8-3.2 1.5 0 2.8.7 3.4 2'/%3E%3C/svg%3E");
}

.offer-footer-label {
	font-family: var(--font-display);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 1.25rem;
	font-size: 1rem;
}

/* —— Filtration —— */
.filtration-head,
.savings-head {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr;
	gap: 2rem;
	align-items: end;
	margin-bottom: 2.5rem;
}

.filtration-head .section-title,
.savings-head .section-title {
	margin-bottom: 0;
}

.stat-block__value {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(4rem, 10vw, 6.5rem);
	line-height: 0.9;
	color: var(--cwg-red);
	letter-spacing: -0.04em;
}

.stat-block__label {
	margin-top: 0.75rem;
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.82);
	max-width: 28ch;
}

.stages {
	margin-bottom: 2rem;
	padding: 1.5rem;
	border-left: 3px solid var(--cwg-red);
	background: rgba(255, 255, 255, 0.04);
}

.stages__title {
	font-family: var(--font-display);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 1.25rem;
	font-size: 1rem;
}

.stages__list {
	display: grid;
	gap: 1rem;
}

.stages__list li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.9rem;
}

.stages__n {
	font-family: var(--font-display);
	font-weight: 900;
	color: var(--cwg-red);
	font-size: 1.15rem;
}

.stages__list strong {
	display: block;
	font-family: var(--font-display);
	text-transform: uppercase;
	font-size: 1.05rem;
	margin-bottom: 0.15rem;
}

.stages__list span { color: rgba(255, 255, 255, 0.75); }

.filtration-visual {
	margin: 0 0 2.5rem;
	overflow: hidden;
	border-radius: 8px;
}

.filtration-visual img {
	width: 100%;
	max-height: 320px;
	object-fit: cover;
}

.compare__scroll {
	margin-top: 1.25rem;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.03);
	max-width: 100%;
}

.compare__table {
	width: 100%;
	min-width: 640px;
	max-width: none;
	border-collapse: collapse;
	font-size: 0.95rem;
}

.compare__table th,
.compare__table td {
	padding: 0.85rem 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
}

.compare__table thead th {
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.7);
}

.compare__table tbody th {
	text-align: left;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.92);
}

.compare__table .is-focus {
	background: rgba(227, 28, 35, 0.12);
}

.mark {
	display: inline-flex;
	width: 1.55rem;
	height: 1.55rem;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	font-weight: 800;
}

.mark--yes { background: #1f9d55; color: #fff; }
.mark--warn { background: #f59e0b; color: #fff; }
.mark--no { background: rgba(255, 255, 255, 0.12); color: #f87171; }

/* —— Num list / quality —— */
.num-list {
	display: grid;
	gap: 1.25rem;
	margin-bottom: 1.75rem;
}

.num-list li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
}

.num-list__n,
.quality-grid__n {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 1.5rem;
	color: var(--cwg-red);
	line-height: 1;
}

.highlight-line {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(1.25rem, 2.4vw, 1.65rem);
	line-height: 1.3;
	color: var(--cwg-navy);
	padding-top: 1.25rem;
	border-top: 3px solid var(--cwg-red);
	max-width: 28ch;
}

.highlight-line em {
	font-style: normal;
	color: var(--cwg-red);
}

.section--quality .split {
	grid-template-columns: 0.9fr 1.1fr;
	gap: 0;
	align-items: stretch;
}

.section--quality .split__content {
	padding: clamp(2rem, 4vw, 3.5rem);
}

.quality-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	margin-bottom: 1.75rem;
	border-top: 1px solid var(--cwg-line);
	border-left: 1px solid var(--cwg-line);
}

.quality-grid article {
	padding: 1.35rem 1.25rem;
	border-right: 1px solid var(--cwg-line);
	border-bottom: 1px solid var(--cwg-line);
}

.quality-grid strong {
	display: block;
	font-family: var(--font-display);
	font-weight: 800;
	text-transform: uppercase;
	margin: 0.35rem 0 0.4rem;
	font-size: 1rem;
}

.quality-grid p {
	color: var(--cwg-muted);
	font-size: 1.02rem;
}

/* —— Savings —— */
.savings-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.savings-card {
	padding: 1.5rem 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.04);
}

.savings-card h3 {
	font-family: var(--font-display);
	font-size: 0.85rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 0.85rem;
	opacity: 0.85;
}

.savings-card__price {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(1.6rem, 3vw, 2.1rem);
	line-height: 1.1;
	margin-bottom: 0.35rem;
}

.savings-card__price small {
	font-size: 0.55em;
	font-weight: 700;
	opacity: 0.8;
}

.savings-card--cwg {
	border-color: rgba(227, 28, 35, 0.55);
	background: rgba(227, 28, 35, 0.1);
}

.savings-card--result .savings-card__price,
.savings-card__total {
	color: var(--cwg-red);
}

.savings-card__total {
	font-family: var(--font-display);
	font-weight: 800;
	margin-top: 0.5rem;
}

.savings-note {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.8);
}

/* —— Why —— */
.why-layout {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	grid-template-areas:
		"photo eco"
		"list list";
	gap: 1.25rem;
}

.why-layout__photo { grid-area: photo; margin: 0; }
.why-layout__eco { grid-area: eco; }
.why-layout__list { grid-area: list; margin-top: 1rem; }

.why-layout__photo img,
.why-layout__eco img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
	min-height: 260px;
}

.why-layout__eco {
	display: grid;
	gap: 1rem;
	background: var(--cwg-navy);
	color: #fff;
	border-radius: 8px;
	padding: 1.5rem;
	overflow: hidden;
}

.why-layout__eco blockquote {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(1.15rem, 2.2vw, 1.45rem);
	line-height: 1.35;
	font-style: italic;
}

.why-layout__eco img {
	min-height: 160px;
	max-height: 200px;
}

.dash-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem 2rem;
}

.dash-list li {
	padding-left: 1.15rem;
	border-left: 3px solid var(--cwg-red);
}

/* —— Contact —— */
.section--contact {
	background: var(--cwg-soft);
}

.contact-layout {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: start;
}

.contact-layout__lead {
	font-size: 1.2rem;
	color: var(--cwg-muted);
	margin-bottom: 1.75rem;
	max-width: 36ch;
}

.contact-details {
	display: grid;
	gap: 1.15rem;
}

.contact-details li span {
	display: block;
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--cwg-red);
	margin-bottom: 0.25rem;
}

.contact-details a,
.contact-details p {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.2rem;
	color: var(--cwg-navy);
}

.contact-layout__form {
	background: #fff;
	border: 1px solid var(--cwg-line);
	border-radius: 12px;
	padding: clamp(1.25rem, 3vw, 2rem);
	box-shadow: var(--shadow);
}

/* Harmonise un peu le widget formulaire avec la plaquette */
.contact-layout__form .cwdr-request,
.contact-layout__form .cwb-booking {
	--cwb-teal: var(--cwg-red);
	--cwb-teal-dark: var(--cwg-red-dark);
	--cwb-teal-soft: rgba(227, 28, 35, 0.12);
	--cwdr-teal: var(--cwg-red);
	--cwdr-teal-dark: var(--cwg-red-dark);
	--cwdr-teal-soft: rgba(227, 28, 35, 0.12);
}

/* —— Footer —— */
.site-footer {
	background: var(--cwg-navy);
	color: #fff;
	padding: 0 0 2rem;
}

.site-footer__bar {
	height: 6px;
	background: var(--cwg-red);
}

.site-footer__inner {
	width: min(100% - (var(--gutter) * 2), var(--wrap));
	margin: 0 auto;
	padding: 2.5rem 0 1.5rem;
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
	align-items: center;
}

.site-footer__brand img {
	height: 56px;
	width: auto;
	filter: brightness(0) invert(1);
	margin-bottom: 0.5rem;
}

.site-footer__tagline {
	font-size: 0.95rem;
	opacity: 0.75;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-family: var(--font-display);
	font-weight: 600;
}

.site-footer__contact {
	text-align: right;
	display: grid;
	gap: 0.35rem;
}

.site-footer__contact a,
.site-footer__contact p {
	color: rgba(255, 255, 255, 0.88);
}

.site-footer__phone {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 1.65rem;
	color: #fff !important;
}

.site-footer__copy {
	text-align: center;
	font-size: 0.875rem;
	opacity: 0.55;
	padding-top: 0.5rem;
}

/* —— Floating CTA —— */
.floating-cta {
	position: fixed;
	right: 1.25rem;
	bottom: 1.25rem;
	z-index: 90;
	padding: 0.95rem 1.35rem;
	border-radius: 999px;
	background: var(--cwg-red);
	color: #fff;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.95rem;
	box-shadow: 0 12px 32px rgba(227, 28, 35, 0.35);
}

body.cwdr-request-in-view .floating-cta,
body.cwb-booking-in-view .floating-cta,
body.cwb-booking-active .floating-cta {
	opacity: 0;
	pointer-events: none;
}

/* —— Pages —— */
.page-main { padding: 4rem 0; }
.page-article h1 {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(2rem, 4vw, 3rem);
	text-transform: uppercase;
	margin-bottom: 1.5rem;
}

/* —— Responsive —— */
@media (max-width: 1080px) {
	.hero__visual {
		inset: 0;
		opacity: 0.55;
		-webkit-mask-image: linear-gradient(
			180deg,
			transparent 0%,
			#000 18%,
			#000 55%,
			transparent 100%
		);
		mask-image: linear-gradient(
			180deg,
			transparent 0%,
			#000 18%,
			#000 55%,
			transparent 100%
		);
	}

	.hero__visual::after {
		background: linear-gradient(180deg, rgba(6, 20, 40, 0.75) 0%, rgba(6, 20, 40, 0.45) 40%, rgba(6, 20, 40, 0.85) 100%);
	}

	.hero__inner,
	.split,
	.offer__grid,
	.section--quality .split,
	.filtration-head,
	.savings-head,
	.contact-layout,
	.why-layout {
		grid-template-columns: 1fr;
	}

	.offer__visual {
		order: -1;
		max-width: 22rem;
		margin-inline: auto;
		width: 100%;
	}

	.offer__visual img {
		width: 100%;
		max-height: 22rem;
	}

	.section--offer {
		background-image:
			linear-gradient(180deg, rgba(6, 20, 40, 0.72) 0%, rgba(6, 20, 40, 0.45) 45%, rgba(6, 20, 40, 0.35) 100%),
			var(--offer-bg);
		background-position: center 60%;
	}

	.offer__content {
		max-width: none;
	}

	.hero__title,
	.hero__claim {
		max-width: none;
	}

	.hero__product {
		display: none;
	}

	.why-layout {
		grid-template-areas:
			"photo"
			"eco"
			"list";
	}

	.savings-cards { grid-template-columns: 1fr; }

	.dash-list { grid-template-columns: 1fr; }

	.site-footer__contact { text-align: left; }

	.site-header__end .btn { display: none; }

	.site-header__burger { display: inline-flex; }

	.site-nav {
		position: fixed;
		inset: 0;
		z-index: 200;
		background: var(--cwg-navy);
		color: #fff;
		padding: 5rem 1.5rem 2rem;
		transform: translateY(-105%);
		transition: transform 0.4s ease;
		display: flex;
		flex-direction: column;
		gap: 1.5rem;
	}

	body.nav-open .site-nav { transform: translateY(0); }
	body.nav-open { overflow: hidden; }

	.site-nav__list {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.25rem;
	}

	.site-nav__list a {
		color: #fff;
		font-size: 1.35rem;
	}

	.site-nav__close,
	.site-nav__mobile-cta {
		display: inline-flex;
	}

	.site-nav__close {
		position: absolute;
		top: 1.25rem;
		right: 1.25rem;
		width: 44px;
		height: 44px;
		border: 0;
		background: transparent;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 8px;
		cursor: pointer;
	}

	.site-nav__close span {
		display: block;
		width: 22px;
		height: 2px;
		background: #fff;
	}

	.site-nav__close span:first-child { transform: rotate(45deg) translate(3px, 3px); }
	.site-nav__close span:last-child { transform: rotate(-45deg) translate(3px, -3px); }
}

@media (max-width: 640px) {
	.water-types { grid-template-columns: 1fr; }
	.quality-grid { grid-template-columns: 1fr; }
	.floating-cta { left: 1rem; right: 1rem; text-align: center; justify-content: center; }
	.hero__title { font-size: clamp(2.3rem, 12vw, 3.4rem); }
}
