/*
 * Accueil 2026 — système visuel isolé de Barista.
 * Les couleurs sont centralisées ici pour demeurer faciles à ajuster.
 */

@font-face {
	font-family: "LCD Cormorant";
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url("../fonts/cormorant-latin.woff2") format("woff2");
}

@font-face {
	font-family: "LCD Figtree";
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url("../fonts/figtree-latin.woff2") format("woff2");
}

body.lcd-header-2026 {
	--lcd-home-green-primary: #17382f;
	--lcd-home-green-secondary: #496b59;
	--lcd-home-green-pale: #d9e0d3;
	--lcd-home-cream: #f6f1e8;
	--lcd-home-copper: #a86f45;
	--lcd-home-ink: #231c17;
	--lcd-home-white: #fff;
	--lcd-home-line: #ded7cc;
	--lcd-home-header-surface: #fbf9f5;
	--lcd-font-heading: "LCD Cormorant", Georgia, serif;
	--lcd-font-interface: "LCD Figtree", "Helvetica Neue", Arial, sans-serif;
}

.lcd-home-promo {
	position: relative;
	z-index: 111;
	width: 100%;
	margin: 0;
	border-bottom: 0;
	color: var(--lcd-home-cream);
	background: var(--lcd-home-green-primary);
	font-family: var(--lcd-font-interface);
}

.lcd-home-promo__link {
	display: flex;
	width: min(100% - 32px, 980px);
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin: 0 auto;
	color: inherit;
	font-size: 13px;
	line-height: 1.35;
	letter-spacing: 0.015em;
	text-decoration: none;
}

.lcd-home-promo__link:hover,
.lcd-home-promo__link:focus,
.lcd-home-promo__link:visited {
	color: var(--lcd-home-cream);
}

.lcd-home-promo__link:focus-visible {
	outline: 2px solid var(--lcd-home-cream);
	outline-offset: -4px;
}

.lcd-home-promo__icon {
	flex: 0 0 auto;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.65;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.lcd-home-promo__message {
	display: inline-flex;
	align-items: baseline;
	gap: 5px;
}

.lcd-home-promo__message strong,
.lcd-home-promo__action {
	font-weight: 700;
	letter-spacing: 0.055em;
	text-transform: uppercase;
}

.lcd-home-promo__action {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	margin-left: 18px;
	white-space: nowrap;
}

.lcd-home-promo__action > span {
	font-size: 17px;
	line-height: 1;
	transition: transform 180ms ease;
}

.lcd-home-promo__link:hover .lcd-home-promo__action > span,
.lcd-home-promo__link:focus-visible .lcd-home-promo__action > span {
	transform: translateX(3px);
}

/* Bloc 2 — navigation claire inspirée de la maquette 11. */
body.lcd-header-2026 .edgtf-page-header,
body.lcd-header-2026 .edgtf-mobile-header {
	display: none !important;
}

body.lcd-header-2026 .edgtf-content {
	margin-top: 0 !important;
}

/* Le corps WPBakery historique est conservé en base, mais non rendu. */
body.lcd-home-2026 .edgtf-content > .edgtf-content-inner > .edgtf-full-width {
	display: none;
}

.lcd-home-header {
	position: sticky;
	z-index: 110;
	top: 0;
	width: 100%;
	box-sizing: border-box;
	border-top: 0;
	border-bottom: 1px solid var(--lcd-home-line);
	color: var(--lcd-home-ink);
	background: rgba(251, 249, 245, 0.98);
	box-shadow: 0 5px 24px rgba(35, 28, 23, 0.05);
	font-family: var(--lcd-font-interface);
	backdrop-filter: blur(12px);
}

.admin-bar .lcd-home-header {
	top: 32px;
}

.lcd-home-header__inner {
	display: flex;
	width: min(calc(100% - (var(--lcd-layout-gutter) * 2)), var(--lcd-layout-container-wide));
	min-height: 116px;
	align-items: center;
	gap: clamp(26px, 3vw, 58px);
	margin: 0 auto;
}

.lcd-home-header__brand {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	align-self: stretch;
	gap: 24px;
	padding: 14px 0;
	color: var(--lcd-home-green-primary);
	text-decoration: none;
}

.lcd-home-header__brand:hover,
.lcd-home-header__brand:focus,
.lcd-home-header__brand:visited {
	color: var(--lcd-home-green-primary);
}

.lcd-home-header__brand:focus-visible {
	outline: 2px solid var(--lcd-home-green-primary);
	outline-offset: 5px;
}

.lcd-home-header__brand img {
	display: block;
	width: auto;
	height: 68px;
	padding-right: 23px;
	border-right: 1px solid var(--lcd-home-line);
	box-sizing: content-box;
	object-fit: contain;
}

.lcd-home-header__wordmark {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.lcd-home-header__wordmark > span {
	font: 600 34px/0.95 var(--lcd-font-heading);
	letter-spacing: -0.025em;
	white-space: nowrap;
}

.lcd-home-header__wordmark small {
	font: 700 10px/1.2 var(--lcd-font-interface);
	letter-spacing: 0.23em;
	text-transform: uppercase;
	white-space: nowrap;
}

.lcd-home-header__menu {
	flex: 1 1 auto;
}

.lcd-home-header__desktop-nav {
	display: flex;
	justify-content: flex-end;
}

.lcd-home-header__mobile-menu {
	display: none;
}

.lcd-home-header summary {
	list-style: none;
}

.lcd-home-header summary::-webkit-details-marker {
	display: none;
}

.lcd-home-header__nav-list {
	display: flex;
	align-items: center;
	gap: clamp(20px, 2.5vw, 42px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.lcd-home-header__nav-list a {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 30px 0;
	border: 0;
	color: var(--lcd-home-ink);
	background: transparent;
	cursor: pointer;
	font: 700 12px/1.2 var(--lcd-font-interface);
	letter-spacing: 0.065em;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

.lcd-home-header__nav-list a:hover,
.lcd-home-header__nav-list a:focus-visible,
.lcd-home-header__nav-list .current-menu-item > a,
.lcd-home-header__nav-list .current-menu-ancestor > a {
	color: var(--lcd-home-green-secondary);
}

.lcd-home-header__nav-list > .menu-item-has-children {
	position: relative;
}

.lcd-home-header__nav-list > .menu-item-has-children > a::after {
	content: "⌄";
	position: relative;
	top: -2px;
	margin-left: 7px;
	font-size: 13px;
}

.lcd-home-header__nav-list .sub-menu {
	position: absolute;
	z-index: 4;
	top: calc(100% - 18px);
	left: -24px;
	display: none;
	width: max-content;
	min-width: 220px;
	margin: 0;
	padding: 12px 0;
	border: 1px solid var(--lcd-home-line);
	background: var(--lcd-home-header-surface);
	box-shadow: 0 14px 34px rgba(35, 28, 23, 0.12);
	list-style: none;
}

.lcd-home-header__nav-list li:hover > .sub-menu,
.lcd-home-header__nav-list li:focus-within > .sub-menu {
	display: block;
}

.lcd-home-header__nav-list .sub-menu a {
	display: block;
	padding: 11px 24px;
	font-size: 11px;
}

.lcd-home-header__nav-list .sub-menu .sub-menu {
	top: -13px;
	left: 100%;
}

.lcd-home-menu__subscription-pending > a {
	cursor: default;
	opacity: 0.72;
	pointer-events: none;
}

.lcd-home-header__actions {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 18px;
	padding-left: 26px;
	border-left: 1px solid var(--lcd-home-line);
}

.lcd-home-header__actions > a,
.lcd-home-header__search > summary {
	position: relative;
	display: inline-flex;
	width: 38px;
	height: 38px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	cursor: pointer;
	transition: background-color 180ms ease;
}

.lcd-home-header__actions > a:hover,
.lcd-home-header__actions > a:focus-visible,
.lcd-home-header__search > summary:hover,
.lcd-home-header__search > summary:focus-visible {
	background: var(--lcd-home-green-pale);
	outline: none;
}

.lcd-home-header__actions img {
	display: block;
	width: 24px;
	height: 24px;
}

.lcd-home-header__search {
	position: relative;
}

.lcd-home-header__search form {
	position: absolute;
	z-index: 6;
	top: calc(100% + 18px);
	right: -84px;
	width: min(420px, calc(100vw - 30px));
	padding: 22px;
	border: 1px solid var(--lcd-home-line);
	background: var(--lcd-home-header-surface);
	box-shadow: 0 14px 34px rgba(35, 28, 23, 0.14);
}

.lcd-home-header__search form label {
	display: block;
	margin-bottom: 8px;
	color: var(--lcd-home-ink);
	font-size: 13px;
	font-weight: 700;
}

.lcd-home-header__search form > div {
	display: flex;
}

.lcd-home-header__search input[type="search"] {
	min-width: 0;
	flex: 1 1 auto;
	border: 1px solid var(--lcd-home-green-secondary);
	background: var(--lcd-home-white);
	font-family: var(--lcd-font-interface);
}

.lcd-home-header__search button {
	padding: 0 18px;
	border: 1px solid var(--lcd-home-green-primary);
	color: var(--lcd-home-cream);
	background: var(--lcd-home-green-primary);
	font: 700 11px/1 var(--lcd-font-interface);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.lcd-home-header__cart-count {
	position: absolute;
	top: 0;
	right: -1px;
	display: inline-flex;
	min-width: 18px;
	height: 18px;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
	box-sizing: border-box;
	border: 2px solid var(--lcd-home-header-surface);
	border-radius: 999px;
	color: var(--lcd-home-white);
	background: var(--lcd-home-green-primary);
	font: 700 9px/1 var(--lcd-font-interface);
}

/* Bloc 3 — hero statique, sans carrousel ni texte intégré à l'image. */
.lcd-home-hero {
	position: relative;
	display: flex;
	min-height: clamp(520px, 33.333vw, 724px);
	isolation: isolate;
	overflow: hidden;
	color: var(--lcd-home-ink);
	background: var(--lcd-home-cream);
}

.lcd-home-hero__media,
.lcd-home-hero__media::after {
	position: absolute;
	inset: 0;
}

.lcd-home-hero__media {
	z-index: -2;
}

.lcd-home-hero__media::after {
	content: "";
	background: linear-gradient(90deg, rgba(246, 241, 232, 0.58) 0%, rgba(246, 241, 232, 0.2) 37%, rgba(246, 241, 232, 0) 60%);
}

.lcd-home-hero__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.lcd-home-hero__inner {
	display: flex;
	width: min(calc(100% - (var(--lcd-layout-gutter) * 2)), var(--lcd-layout-container));
	align-items: center;
	margin: 0 auto;
	padding: clamp(64px, 6vw, 112px) 0;
	box-sizing: border-box;
}

.lcd-home-hero__content {
	width: min(760px, 53%);
}

.lcd-home-hero h1 {
	margin: 0;
	color: var(--lcd-home-green-primary);
	font: 600 clamp(52px, 4.5vw, 86px)/0.98 var(--lcd-font-heading);
	letter-spacing: -0.035em;
	text-transform: none;
}

.lcd-home-hero h1 span {
	color: var(--lcd-home-copper);
}

.lcd-home-hero p {
	margin: 28px 0 0;
	color: var(--lcd-home-ink);
	font: 500 clamp(17px, 1.3vw, 22px)/1.55 var(--lcd-font-interface);
}

.lcd-home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 34px;
}

.lcd-home-button {
	display: inline-flex;
	min-height: 54px;
	align-items: center;
	justify-content: center;
	padding: 0 32px;
	box-sizing: border-box;
	border: 2px solid var(--lcd-home-green-primary);
	font: 700 12px/1.2 var(--lcd-font-interface);
	letter-spacing: 0.075em;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 180ms ease, background-color 180ms ease;
}

.lcd-home-button--primary,
.lcd-home-button--primary:visited {
	color: var(--lcd-home-cream);
	background: var(--lcd-home-green-primary);
}

.lcd-home-button--secondary,
.lcd-home-button--secondary:visited {
	color: var(--lcd-home-green-primary);
	background: rgba(246, 241, 232, 0.64);
}

.lcd-home-button:hover,
.lcd-home-button:focus-visible {
	color: var(--lcd-home-cream);
	background: var(--lcd-home-green-secondary);
}

.lcd-home-button:focus-visible {
	outline: 3px solid var(--lcd-home-cream);
	outline-offset: 3px;
}

/* Bloc 4 — engagements sous le hero. */
.lcd-home-visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.lcd-home-trust {
	color: var(--lcd-home-ink);
	background: var(--lcd-home-header-surface);
	border-top: 1px solid rgba(73, 107, 89, 0.35);
	border-bottom: 1px solid rgba(73, 107, 89, 0.35);
}

.lcd-home-trust__list {
	display: grid;
	width: min(calc(100% - (var(--lcd-layout-gutter) * 2)), var(--lcd-layout-container-wide));
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0 auto;
	padding: 28px 0;
	list-style: none;
}

.lcd-home-trust__item {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: clamp(14px, 1.35vw, 24px);
	padding: 0 clamp(20px, 2.2vw, 42px);
	box-sizing: border-box;
	text-align: left;
}

.lcd-home-trust__item + .lcd-home-trust__item {
	border-left: 1px solid var(--lcd-home-line);
}

.lcd-home-trust__icon {
	display: block;
	width: clamp(66px, 5.4vw, 88px);
	height: clamp(66px, 5.4vw, 88px);
	flex: 0 0 clamp(66px, 5.4vw, 88px);
}

.lcd-home-trust__icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.lcd-home-trust h3 {
	margin: 0;
	color: var(--lcd-home-ink);
	font: 700 clamp(13px, 0.95vw, 16px)/1.25 var(--lcd-font-interface);
	letter-spacing: 0.01em;
	text-transform: uppercase;
}

.lcd-home-trust p {
	margin: 7px 0 0;
	color: var(--lcd-home-ink);
	font: 400 clamp(13px, 0.9vw, 15px)/1.45 var(--lcd-font-interface);
}

/* Bloc 5 — cafés populaires alimentés par WooCommerce. */
.lcd-home-coffees {
	padding: clamp(64px, 6vw, 104px) 0;
	color: var(--lcd-home-ink);
	background: var(--lcd-home-white);
}

.lcd-home-coffees__inner {
	width: min(calc(100% - (var(--lcd-layout-gutter) * 2)), var(--lcd-layout-container-wide));
	margin: 0 auto;
}

.lcd-home-coffees__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 40px;
}

.lcd-home-coffees__header h2 {
	margin: 0;
	color: var(--lcd-home-green-primary);
	font: 600 clamp(40px, 3.6vw, 66px)/1 var(--lcd-font-heading);
	letter-spacing: -0.025em;
	text-transform: none;
}

.lcd-home-coffees__header > a {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	padding: 8px 0;
	color: var(--lcd-home-green-primary);
	font: 700 14px/1.2 var(--lcd-font-interface);
	letter-spacing: 0.035em;
	text-decoration: none;
	text-transform: uppercase;
}

.lcd-home-coffees__header > a span {
	font-size: 26px;
	font-weight: 400;
	transition: transform 180ms ease;
}

.lcd-home-coffees__header > a:hover span,
.lcd-home-coffees__header > a:focus-visible span {
	transform: translateX(4px);
}

.lcd-home-coffees__header > a:focus-visible,
.lcd-home-coffee-card a:focus-visible {
	outline: 3px solid var(--lcd-home-copper);
	outline-offset: 4px;
}

.lcd-home-coffees__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: clamp(14px, 1.35vw, 24px);
}

.lcd-home-coffee-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--lcd-home-line);
	border-radius: 14px;
	background: #fffdfa;
}

.lcd-home-coffee-card__image {
	display: block;
	aspect-ratio: 1 / 1.26;
	overflow: hidden;
	background: var(--lcd-home-cream);
}

.lcd-home-coffee-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 240ms ease;
}

.lcd-home-coffee-card__image:hover img,
.lcd-home-coffee-card__image:focus-visible img {
	transform: scale(1.025);
}

.lcd-home-coffee-card__body {
	display: flex;
	min-height: 210px;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 22px 22px 20px;
}

.lcd-home-coffee-card h3 {
	margin: 0;
	font: 600 clamp(20px, 1.45vw, 25px)/1.15 var(--lcd-font-heading);
	text-transform: none;
}

.lcd-home-coffee-card h3 a,
.lcd-home-coffee-card h3 a:visited {
	color: var(--lcd-home-green-primary);
	text-decoration: none;
}

.lcd-home-coffee-card p {
	margin: 12px 0 20px;
	color: #4d4843;
	font: 400 clamp(14px, 0.9vw, 16px)/1.5 var(--lcd-font-interface);
}

.lcd-home-coffee-card footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: auto;
}

.lcd-home-coffee-card__price {
	color: var(--lcd-home-green-primary);
	font: 700 clamp(16px, 1.05vw, 19px)/1.2 var(--lcd-font-interface);
}

.lcd-home-coffee-card__price del {
	display: none;
}

.lcd-home-coffee-card__price ins {
	text-decoration: none;
}

.lcd-home-coffee-card__action {
	display: inline-flex;
	width: 48px;
	height: 48px;
	align-items: center;
	justify-content: center;
	flex: 0 0 48px;
	box-sizing: border-box;
	border-radius: 50%;
	color: var(--lcd-home-white);
	background: var(--lcd-home-green-primary);
	text-decoration: none;
	transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.lcd-home-coffee-card__action:hover,
.lcd-home-coffee-card__action:focus-visible {
	color: var(--lcd-home-white);
	background: var(--lcd-home-green-secondary);
	transform: translateY(-2px);
}

.lcd-home-coffee-card__action svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* Bloc 6 — aperçu d'abonnement, sans parcours transactionnel actif. */
.lcd-home-subscription {
	padding: 0 0 clamp(64px, 6vw, 104px);
	color: var(--lcd-home-white);
	background: var(--lcd-home-white);
}

.lcd-home-subscription__inner {
	position: relative;
	width: min(calc(100% - (var(--lcd-layout-gutter) * 2)), var(--lcd-layout-container));
	min-height: clamp(500px, 34vw, 580px);
	margin: 0 auto;
	overflow: hidden;
	border-radius: 28px;
	background: var(--lcd-home-green-primary);
}

.lcd-home-subscription__media {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.lcd-home-subscription__inner::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(13, 40, 33, 0.36) 0%, rgba(13, 40, 33, 0.12) 42%, rgba(13, 40, 33, 0) 62%);
	content: "";
}

.lcd-home-subscription__content {
	position: relative;
	z-index: 1;
	width: min(49%, 720px);
	padding: clamp(44px, 4.5vw, 76px) clamp(42px, 4.8vw, 82px);
	box-sizing: border-box;
}

.lcd-home-subscription__eyebrow {
	margin: 0 0 18px;
	color: #d2ac7e;
	font: 700 clamp(14px, 1vw, 18px)/1.2 var(--lcd-font-interface);
	letter-spacing: 0.055em;
	text-transform: uppercase;
}

.lcd-home-subscription h2 {
	margin: 0;
	color: var(--lcd-home-white);
	font: 500 clamp(44px, 4vw, 70px)/0.98 var(--lcd-font-heading);
	letter-spacing: -0.025em;
	text-transform: none;
}

.lcd-home-subscription__lead {
	margin: 24px 0 22px;
	color: var(--lcd-home-white);
	font: 500 clamp(18px, 1.35vw, 24px)/1.35 var(--lcd-font-interface);
}

.lcd-home-subscription ul {
	margin: 0 0 28px;
	padding: 0;
	list-style: none;
}

.lcd-home-subscription li {
	position: relative;
	margin: 0 0 9px;
	padding-left: 40px;
	font: 400 clamp(15px, 1.05vw, 19px)/1.35 var(--lcd-font-interface);
}

.lcd-home-subscription li::before {
	position: absolute;
	top: -1px;
	left: 0;
	display: grid;
	width: 25px;
	height: 25px;
	place-items: center;
	border: 1.5px solid #d2ac7e;
	border-radius: 50%;
	color: #d2ac7e;
	content: "✓";
	font-size: 15px;
	font-weight: 700;
}

.lcd-home-subscription__button {
	display: inline-flex;
	min-height: 60px;
	align-items: center;
	justify-content: center;
	padding: 0 38px;
	border-radius: 8px;
	color: var(--lcd-home-green-primary);
	background: var(--lcd-home-cream);
	font: 700 clamp(14px, 1vw, 18px)/1.2 var(--lcd-font-interface);
	letter-spacing: 0.025em;
	text-transform: uppercase;
}

.lcd-home-subscription__button[href] {
	text-decoration: none;
	transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.lcd-home-subscription__button[href]:hover,
.lcd-home-subscription__button[href]:focus-visible {
	color: var(--lcd-home-cream);
	background: var(--lcd-home-copper);
	transform: translateY(-2px);
}

.lcd-home-subscription__badge {
	position: absolute;
	top: clamp(30px, 3.2vw, 54px);
	right: clamp(32px, 4.5vw, 76px);
	z-index: 2;
	display: flex;
	width: clamp(150px, 12vw, 210px);
	aspect-ratio: 1;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border-radius: 50%;
	color: var(--lcd-home-green-primary);
	background: var(--lcd-home-cream);
	text-align: center;
	text-transform: uppercase;
}

.lcd-home-subscription__badge strong {
	font: 600 clamp(44px, 4vw, 72px)/0.9 var(--lcd-font-heading);
}

.lcd-home-subscription__badge span {
	margin-top: 8px;
	font: 800 clamp(12px, 1vw, 17px)/1.05 var(--lcd-font-interface);
}

/* Bloc 7 — les quatre parcours de machines existants. */
.lcd-home-machines {
	padding: clamp(64px, 6vw, 104px) 0;
	color: var(--lcd-home-ink);
	background: var(--lcd-home-white);
}

.lcd-home-machines__inner {
	width: min(calc(100% - (var(--lcd-layout-gutter) * 2)), var(--lcd-layout-container-wide));
	margin: 0 auto;
}

.lcd-home-machines__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: clamp(30px, 3vw, 48px);
}

.lcd-home-machines__header h2 {
	margin: 0;
	color: var(--lcd-home-green-primary);
	font: 500 clamp(44px, 4vw, 68px)/1 var(--lcd-font-heading);
	letter-spacing: -0.025em;
	text-transform: none;
}

.lcd-home-machines__header > a {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	color: var(--lcd-home-green-primary);
	font: 700 clamp(12px, 1vw, 16px)/1.2 var(--lcd-font-interface);
	letter-spacing: 0.055em;
	text-decoration: none;
	text-transform: uppercase;
}

.lcd-home-machines__header > a span {
	font-size: 1.7em;
	font-weight: 400;
	line-height: 0;
	transition: transform 180ms ease;
}

.lcd-home-machines__header > a:hover span,
.lcd-home-machines__header > a:focus-visible span {
	transform: translateX(4px);
}

.lcd-home-machines__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(16px, 1.4vw, 24px);
}

.lcd-home-machine-card {
	position: relative;
	display: block;
	min-height: clamp(420px, 31vw, 520px);
	overflow: hidden;
	border-radius: 22px;
	color: var(--lcd-home-white);
	background: var(--lcd-home-ink);
	box-shadow: 0 12px 28px rgba(35, 28, 23, 0.1);
	text-decoration: none;
}

.lcd-home-machine-card::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(18, 16, 13, 0) 38%, rgba(18, 16, 13, 0.32) 58%, rgba(18, 16, 13, 0.96) 100%);
	content: "";
}

.lcd-home-machine-card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 300ms ease;
}

.lcd-home-machine-card__content {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	padding: clamp(24px, 2vw, 34px);
}

.lcd-home-machine-card__title {
	max-width: 320px;
	color: var(--lcd-home-white);
	font: 500 clamp(29px, 2.2vw, 40px)/0.98 var(--lcd-font-heading);
	letter-spacing: -0.02em;
}

.lcd-home-machine-card__description {
	margin-top: 13px;
	color: rgba(255, 255, 255, 0.93);
	font: 400 clamp(14px, 1vw, 17px)/1.35 var(--lcd-font-interface);
}

.lcd-home-machine-card__link {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	margin-top: 22px;
	color: var(--lcd-home-white);
	font: 700 clamp(12px, 0.9vw, 15px)/1.2 var(--lcd-font-interface);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.lcd-home-machine-card__link span {
	font-size: 1.65em;
	font-weight: 400;
	line-height: 0;
	transition: transform 180ms ease;
}

.lcd-home-machine-card:hover,
.lcd-home-machine-card:focus,
.lcd-home-machine-card:visited {
	color: var(--lcd-home-white);
}

.lcd-home-machine-card:hover img,
.lcd-home-machine-card:focus-visible img {
	transform: scale(1.025);
}

.lcd-home-machine-card:hover .lcd-home-machine-card__link span,
.lcd-home-machine-card:focus-visible .lcd-home-machine-card__link span {
	transform: translateX(4px);
}

.lcd-home-machine-card:focus-visible {
	outline: 3px solid var(--lcd-home-copper);
	outline-offset: 4px;
}

/* Bloc 8 — offre de café à l'achat d'une machine admissible. */
.lcd-home-machine-offer {
	padding: 0 0 clamp(64px, 6vw, 104px);
	color: var(--lcd-home-ink);
	background: var(--lcd-home-white);
}

.lcd-home-machine-offer__inner {
	position: relative;
	width: min(calc(100% - (var(--lcd-layout-gutter) * 2)), var(--lcd-layout-container));
	min-height: clamp(300px, 20vw, 360px);
	margin: 0 auto;
	overflow: hidden;
	border: 1px solid rgba(168, 111, 69, 0.16);
	border-radius: 24px;
	background: var(--lcd-home-cream);
	box-shadow: 0 12px 28px rgba(35, 28, 23, 0.07);
}

.lcd-home-machine-offer__media {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.lcd-home-machine-offer__inner::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(255, 251, 244, 0.58) 0%, rgba(255, 251, 244, 0.16) 43%, rgba(255, 251, 244, 0) 62%);
	content: "";
}

.lcd-home-machine-offer__content {
	position: relative;
	z-index: 1;
	display: flex;
	width: min(54%, 850px);
	min-height: clamp(300px, 20vw, 360px);
	align-items: center;
	gap: clamp(24px, 2.4vw, 42px);
	padding: clamp(34px, 3.5vw, 58px);
	box-sizing: border-box;
}

.lcd-home-machine-offer__icon {
	display: grid;
	width: clamp(82px, 7vw, 116px);
	aspect-ratio: 1;
	place-items: center;
	flex: 0 0 clamp(82px, 7vw, 116px);
	border: 2px solid rgba(73, 107, 89, 0.48);
	border-radius: 50%;
	color: var(--lcd-home-green-primary);
}

.lcd-home-machine-offer__icon svg {
	width: 58%;
	height: 58%;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.lcd-home-machine-offer__copy h2 {
	margin: 0;
	color: var(--lcd-home-green-primary);
	font: 500 clamp(38px, 3.2vw, 58px)/0.98 var(--lcd-font-heading);
	letter-spacing: -0.025em;
	text-transform: none;
}

.lcd-home-machine-offer__copy p {
	margin: 8px 0 24px;
	font: 500 clamp(17px, 1.25vw, 22px)/1.3 var(--lcd-font-interface);
}

.lcd-home-machine-offer__copy a {
	display: inline-flex;
	min-height: 56px;
	align-items: center;
	justify-content: center;
	padding: 0 clamp(24px, 2.4vw, 42px);
	border: 2px solid var(--lcd-home-green-primary);
	border-radius: 7px;
	color: var(--lcd-home-white);
	background: var(--lcd-home-green-primary);
	font: 700 clamp(12px, 0.9vw, 15px)/1.2 var(--lcd-font-interface);
	letter-spacing: 0.055em;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 180ms ease, background-color 180ms ease;
}

.lcd-home-machine-offer__copy a:hover,
.lcd-home-machine-offer__copy a:focus-visible {
	color: var(--lcd-home-green-primary);
	background: var(--lcd-home-white);
}

.lcd-home-machine-offer__copy a:focus-visible {
	outline: 3px solid var(--lcd-home-copper);
	outline-offset: 4px;
}

.lcd-home-machine-offer__badge {
	position: absolute;
	top: clamp(22px, 2.2vw, 38px);
	right: clamp(24px, 3vw, 52px);
	z-index: 1;
	display: flex;
	width: clamp(130px, 10vw, 170px);
	aspect-ratio: 1;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border-radius: 50%;
	color: var(--lcd-home-green-primary);
	background: #e8b252;
	text-align: center;
	text-transform: uppercase;
	transform: rotate(-2deg);
}

.lcd-home-machine-offer__badge small {
	font: 800 clamp(10px, 0.75vw, 13px)/1 var(--lcd-font-interface);
}

.lcd-home-machine-offer__badge strong {
	margin: 4px 0 2px;
	font: 600 clamp(28px, 2.3vw, 40px)/0.95 var(--lcd-font-heading);
}

.lcd-home-machine-offer__badge span {
	font: 800 clamp(11px, 0.85vw, 14px)/1.05 var(--lcd-font-interface);
}

/* Bloc 9 — démarche de torréfaction artisanale. */
.lcd-home-roasting {
	padding: 0 0 clamp(64px, 6vw, 104px);
	color: var(--lcd-home-cream);
	background: var(--lcd-home-white);
}

.lcd-home-roasting__inner {
	position: relative;
	display: grid;
	width: min(calc(100% - (var(--lcd-layout-gutter) * 2)), var(--lcd-layout-container));
	min-height: clamp(310px, 21vw, 370px);
	margin: 0 auto;
	overflow: hidden;
	grid-template-columns: minmax(280px, 31%) minmax(520px, 1fr);
	align-items: center;
	border: 1px solid rgba(217, 190, 143, 0.2);
	border-radius: 24px;
	background: var(--lcd-home-green-primary);
	box-shadow: 0 12px 28px rgba(35, 28, 23, 0.08);
}

.lcd-home-roasting__media {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.lcd-home-roasting__inner::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(10, 45, 36, 0.88) 0%, rgba(10, 45, 36, 0.24) 46%, rgba(10, 45, 36, 0.9) 100%);
	content: "";
}

.lcd-home-roasting__content,
.lcd-home-roasting__steps {
	position: relative;
	z-index: 1;
}

.lcd-home-roasting__content {
	padding: clamp(34px, 3.2vw, 58px);
}

.lcd-home-roasting__content h2 {
	margin: 0 0 16px;
	color: var(--lcd-home-cream);
	font: 500 clamp(36px, 2.35vw, 48px)/1 var(--lcd-font-heading);
	letter-spacing: -0.025em;
	white-space: nowrap;
	text-transform: none;
}

.lcd-home-roasting__content p {
	max-width: 420px;
	margin: 0 0 20px;
	color: rgba(255, 251, 244, 0.92);
	font: 450 clamp(14px, 1vw, 17px)/1.55 var(--lcd-font-interface);
}

.lcd-home-roasting__content a {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--lcd-home-cream);
	font: 750 clamp(12px, 0.85vw, 14px)/1.2 var(--lcd-font-interface);
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.lcd-home-roasting__content a span {
	display: inline-block;
	font-size: 1.35em;
	transition: transform 180ms ease;
}

.lcd-home-roasting__content a:hover span,
.lcd-home-roasting__content a:focus-visible span {
	transform: translateX(5px);
}

.lcd-home-roasting__content a:focus-visible {
	outline: 3px solid var(--lcd-home-copper);
	outline-offset: 6px;
}

.lcd-home-roasting__steps {
	display: grid;
	margin: 0;
	padding: clamp(30px, 3vw, 54px) clamp(28px, 3vw, 56px);
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(18px, 2vw, 36px);
	list-style: none;
}

.lcd-home-roasting__steps li {
	display: flex;
	min-width: 0;
	align-items: center;
	flex-direction: column;
	text-align: center;
}

.lcd-home-roasting__steps img {
	display: block;
	width: clamp(76px, 6.3vw, 106px);
	height: auto;
	margin-bottom: 16px;
}

.lcd-home-roasting__steps strong,
.lcd-home-roasting__steps span {
	display: block;
	color: var(--lcd-home-cream);
	font: 750 clamp(11px, 0.84vw, 14px)/1.25 var(--lcd-font-interface);
	letter-spacing: 0.035em;
	text-transform: uppercase;
}

.lcd-home-roasting__steps span {
	color: rgba(255, 251, 244, 0.9);
}

/* Bloc 10 — contenus éditoriaux et raccourcis vers les guides d’infusion. */
.lcd-home-pause {
	padding: 0 0 clamp(72px, 7vw, 120px);
	color: var(--lcd-home-ink);
	background: var(--lcd-home-white);
}

.lcd-home-pause__inner {
	width: min(calc(100% - (var(--lcd-layout-gutter) * 2)), var(--lcd-layout-container));
	margin: 0 auto;
}

.lcd-home-pause__header,
.lcd-home-methods__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: clamp(28px, 2.6vw, 44px);
}

.lcd-home-pause__header h2,
.lcd-home-methods__header h2 {
	margin: 0;
	color: var(--lcd-home-green-primary);
	font: 500 clamp(46px, 4vw, 68px)/0.95 var(--lcd-font-heading);
	letter-spacing: -0.035em;
	text-transform: none;
}

.lcd-home-pause__header > a,
.lcd-home-methods__header > a {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	padding: 8px 0;
	color: var(--lcd-home-green-primary);
	font: 750 clamp(12px, 0.9vw, 15px)/1.2 var(--lcd-font-interface);
	letter-spacing: 0.045em;
	text-decoration: none;
	text-transform: uppercase;
}

.lcd-home-pause__header > a span,
.lcd-home-methods__header > a span {
	display: inline-block;
	color: var(--lcd-home-copper);
	font-size: 1.65em;
	transition: transform 180ms ease;
}

.lcd-home-pause__header > a:hover span,
.lcd-home-pause__header > a:focus-visible span,
.lcd-home-methods__header > a:hover span,
.lcd-home-methods__header > a:focus-visible span {
	transform: translateX(5px);
}

.lcd-home-pause__header > a:focus-visible,
.lcd-home-methods__header > a:focus-visible,
.lcd-home-pause-card:focus-visible,
.lcd-home-methods a:focus-visible {
	outline: 3px solid var(--lcd-home-copper);
	outline-offset: 5px;
}

.lcd-home-pause__cards {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
	grid-template-rows: repeat(2, minmax(0, 1fr));
	align-items: stretch;
	gap: clamp(18px, 1.7vw, 30px);
}

.lcd-home-pause-card {
	position: relative;
	display: grid;
	min-height: clamp(205px, 16vw, 275px);
	box-sizing: border-box;
	align-items: center;
	grid-template-columns: minmax(88px, 25%) minmax(0, 1fr);
	gap: clamp(18px, 1.8vw, 32px);
	padding: clamp(26px, 2.5vw, 44px);
	border: 1px solid rgba(35, 28, 23, 0.13);
	border-radius: 20px;
	color: var(--lcd-home-ink);
	background: #fffdfa;
	box-shadow: 0 10px 28px rgba(35, 28, 23, 0.045);
	text-decoration: none;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.lcd-home-pause-card:hover {
	border-color: rgba(168, 111, 69, 0.42);
	box-shadow: 0 16px 36px rgba(35, 28, 23, 0.09);
	transform: translateY(-3px);
}

.lcd-home-pause-card > img {
	display: block;
	width: min(100%, 160px);
	height: auto;
	justify-self: center;
}

.lcd-home-pause-card--featured {
	grid-row: 1 / span 2;
	min-height: clamp(440px, 34vw, 580px);
	grid-template-columns: minmax(170px, 40%) minmax(0, 1fr);
	padding: clamp(34px, 3.4vw, 60px);
}

.lcd-home-pause-card--compact {
	min-height: clamp(205px, 16vw, 275px);
	grid-template-columns: minmax(88px, 25%) minmax(0, 1fr);
	padding: clamp(24px, 2vw, 34px);
}

.lcd-home-pause-card--featured > img {
	width: min(100%, 230px);
}

.lcd-home-pause-card--compact > img {
	width: min(100%, 115px);
}

.lcd-home-pause-card__copy {
	display: block;
	padding-right: 20px;
}

.lcd-home-pause-card__copy strong {
	display: block;
	margin-bottom: 18px;
	color: var(--lcd-home-green-primary);
	font: 500 clamp(27px, 2vw, 36px)/1.04 var(--lcd-font-heading);
	letter-spacing: -0.02em;
}

.lcd-home-pause-card--featured .lcd-home-pause-card__copy strong {
	font-size: clamp(34px, 3vw, 48px);
}

.lcd-home-pause-card--compact .lcd-home-pause-card__copy strong {
	margin-bottom: 10px;
	font-size: clamp(24px, 1.8vw, 31px);
}

.lcd-home-pause-card__copy > span {
	display: block;
	color: rgba(35, 28, 23, 0.74);
	font: 450 clamp(14px, 1.05vw, 18px)/1.55 var(--lcd-font-interface);
}

.lcd-home-pause-card__arrow {
	position: absolute;
	right: clamp(24px, 2vw, 36px);
	bottom: clamp(20px, 1.7vw, 30px);
	color: var(--lcd-home-copper);
	font: 500 30px/1 var(--lcd-font-interface);
	transition: transform 180ms ease;
}

.lcd-home-pause-card:hover .lcd-home-pause-card__arrow,
.lcd-home-pause-card:focus-visible .lcd-home-pause-card__arrow {
	transform: translateX(5px);
}

.lcd-home-methods {
	margin-top: clamp(58px, 6vw, 96px);
	padding-top: clamp(34px, 3.6vw, 58px);
	border-top: 1px solid var(--lcd-home-line);
}

.lcd-home-methods nav ul {
	display: grid;
	margin: 0;
	padding: 0;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	background: var(--lcd-home-white);
	list-style: none;
}

.lcd-home-methods li {
	position: relative;
	min-width: 0;
}

.lcd-home-methods li + li::before {
	position: absolute;
	top: 8%;
	bottom: 8%;
	left: 0;
	width: 1px;
	background: var(--lcd-home-line);
	content: "";
}

.lcd-home-methods li > a {
	display: flex;
	min-height: 190px;
	box-sizing: border-box;
	align-items: center;
	justify-content: flex-end;
	flex-direction: column;
	gap: 18px;
	padding: 18px;
	color: var(--lcd-home-green-primary);
	text-align: center;
	text-decoration: none;
}

.lcd-home-methods img {
	display: block;
	width: clamp(82px, 7vw, 116px);
	height: auto;
	transition: transform 180ms ease;
}

.lcd-home-methods strong {
	font: 750 clamp(12px, 0.95vw, 15px)/1.25 var(--lcd-font-interface);
	letter-spacing: 0.035em;
	text-transform: uppercase;
}

.lcd-home-methods a:hover img,
.lcd-home-methods a:focus-visible img {
	transform: translateY(-5px);
}

@media (max-width: 980px) {
	.lcd-home-pause__inner {
		width: min(100% - 48px, 720px);
	}

	.lcd-home-pause__cards {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}

	.lcd-home-pause-card--featured {
		min-height: 300px;
		grid-row: auto;
		grid-template-columns: 170px 1fr;
	}

	.lcd-home-pause-card--compact {
		min-height: 220px;
		grid-template-columns: 140px 1fr;
	}

	.lcd-home-methods nav ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1px;
		background: var(--lcd-home-white);
	}

	.lcd-home-methods li {
		background: var(--lcd-home-white);
	}

	.lcd-home-methods li + li::before {
		display: none;
	}
}

@media (max-width: 680px) {
	.lcd-home-pause {
		padding-bottom: 58px;
	}

	.lcd-home-pause__inner {
		width: calc(100% - 32px);
	}

	.lcd-home-pause__header,
	.lcd-home-methods__header {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
	}

	.lcd-home-pause__header h2,
	.lcd-home-methods__header h2 {
		font-size: clamp(38px, 12vw, 50px);
	}

	.lcd-home-pause__header > a,
	.lcd-home-methods__header > a {
		font-size: 12px;
	}

	.lcd-home-pause-card,
	.lcd-home-pause-card--featured,
	.lcd-home-pause-card--compact {
		min-height: 0;
		grid-row: auto;
		grid-template-columns: 86px 1fr;
		gap: 16px;
		padding: 22px 20px 48px;
		border-radius: 16px;
	}

	.lcd-home-pause-card--featured > img,
	.lcd-home-pause-card--compact > img {
		width: 86px;
	}

	.lcd-home-pause-card__copy {
		padding-right: 0;
	}

	.lcd-home-pause-card--featured .lcd-home-pause-card__copy strong,
	.lcd-home-pause-card--compact .lcd-home-pause-card__copy strong {
		margin-bottom: 8px;
		font-size: 24px;
	}

	.lcd-home-pause-card__copy > span {
		font-size: 14px;
	}

	.lcd-home-pause-card__arrow {
		right: 20px;
		bottom: 16px;
	}

	.lcd-home-methods {
		margin-top: 42px;
		padding-top: 34px;
	}

	.lcd-home-methods nav ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lcd-home-methods li > a {
		min-height: 156px;
		gap: 12px;
		padding: 16px 10px;
	}

	.lcd-home-methods img {
		width: 82px;
	}

	.lcd-home-methods strong {
		font-size: 11px;
	}

	.lcd-home-methods li:last-child:nth-child(odd) {
		grid-column: 1 / -1;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lcd-home-promo__action > span,
	.lcd-home-header__actions > a,
	.lcd-home-header__search > summary,
	.lcd-home-button {
		transition: none;
	}

	.lcd-home-coffees__header > a span,
	.lcd-home-coffee-card__image img,
	.lcd-home-coffee-card__action {
		transition: none;
	}

	.lcd-home-machines__header > a span,
	.lcd-home-machine-card img,
	.lcd-home-machine-card__link span {
		transition: none;
	}

	.lcd-home-machine-offer__copy a {
		transition: none;
	}

	.lcd-home-roasting__content a span {
		transition: none;
	}

	.lcd-home-pause__header > a span,
	.lcd-home-methods__header > a span,
	.lcd-home-pause-card,
	.lcd-home-pause-card__arrow,
	.lcd-home-methods img {
		transition: none;
	}
}

@media (max-width: 1380px) {
	.lcd-home-subscription__badge {
		right: 4%;
	}

	.lcd-home-coffees__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.lcd-home-coffee-card__image {
		aspect-ratio: 1 / 1.05;
	}
}

@media (max-width: 1380px) {
	.lcd-home-header__inner {
		width: min(100% - 34px, 1120px);
		gap: 18px;
	}

	.lcd-home-header__brand {
		gap: 16px;
	}

	.lcd-home-header__brand img {
		height: 58px;
		padding-right: 16px;
	}

	.lcd-home-header__wordmark > span {
		font-size: 27px;
	}

	.lcd-home-header__wordmark small {
		font-size: 8px;
	}

	.lcd-home-header__nav-list {
		gap: 16px;
	}

	.lcd-home-header__nav-list a {
		font-size: 11px;
	}

	.lcd-home-header__actions {
		gap: 10px;
		padding-left: 16px;
	}
}

@media (max-width: 980px) {
	.lcd-home-roasting__inner {
		width: min(100% - 48px, 720px);
		min-height: 650px;
		grid-template-columns: 1fr;
		align-content: space-between;
	}

	.lcd-home-roasting__media {
		object-position: 54% center;
	}

	.lcd-home-roasting__inner::after {
		background: rgba(10, 45, 36, 0.74);
	}

	.lcd-home-roasting__content {
		padding: 44px 44px 12px;
	}

	.lcd-home-roasting__content h2 {
		white-space: normal;
	}

	.lcd-home-roasting__steps {
		padding: 24px 40px 42px;
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.lcd-home-machine-offer__inner {
		width: min(100% - 48px, 720px);
		min-height: 520px;
	}

	.lcd-home-machine-offer__media {
		object-position: 60% center;
	}

	.lcd-home-machine-offer__inner::after {
		background: linear-gradient(90deg, rgba(255, 251, 244, 0.96) 0%, rgba(255, 251, 244, 0.88) 52%, rgba(255, 251, 244, 0.08) 100%);
	}

	.lcd-home-machine-offer__content {
		width: 66%;
		min-height: 520px;
		align-items: flex-start;
		justify-content: center;
		flex-direction: column;
		gap: 18px;
		padding: 42px;
	}

	.lcd-home-machine-offer__icon {
		width: 82px;
		flex-basis: 82px;
	}

	.lcd-home-machine-offer__badge {
		top: 24px;
		right: 24px;
		width: 120px;
	}

	.lcd-home-machines__inner {
		width: min(100% - 48px, 720px);
	}

	.lcd-home-machines__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lcd-home-machine-card {
		min-height: 440px;
	}

	.lcd-home-subscription__inner {
		width: min(100% - 48px, 720px);
		min-height: 650px;
	}

	.lcd-home-subscription__media {
		object-position: 64% center;
	}

	.lcd-home-subscription__inner::after {
		background: linear-gradient(90deg, rgba(13, 40, 33, 0.94) 0%, rgba(13, 40, 33, 0.82) 58%, rgba(13, 40, 33, 0.15) 100%);
	}

	.lcd-home-subscription__content {
		width: 70%;
		padding: 52px 46px;
	}

	.lcd-home-subscription__badge {
		top: 34px;
		right: 34px;
		width: 135px;
	}

	.lcd-home-coffees__inner {
		width: min(100% - 48px, 720px);
	}

	.lcd-home-coffees__header {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
		margin-bottom: 30px;
	}

	.lcd-home-trust__list {
		width: min(100% - 48px, 720px);
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding: 18px 0;
	}

	.lcd-home-trust__item {
		align-items: center;
		flex-direction: row;
		gap: 16px;
		padding: 22px 24px;
		text-align: left;
	}

	.lcd-home-trust__item + .lcd-home-trust__item {
		border-left: 0;
	}

	.lcd-home-trust__item:nth-child(even) {
		border-left: 1px solid var(--lcd-home-line);
	}

	.lcd-home-trust__item:nth-child(n + 3) {
		border-top: 1px solid var(--lcd-home-line);
	}

	.lcd-home-trust__icon {
		width: 68px;
		height: 68px;
		flex: 0 0 68px;
		margin: 0;
	}

	.lcd-home-trust p {
		margin-top: 6px;
	}

	.lcd-home-hero {
		min-height: 680px;
	}

	.lcd-home-hero__media::after {
		background: linear-gradient(180deg, rgba(246, 241, 232, 0.04) 10%, rgba(246, 241, 232, 0.86) 54%, rgba(246, 241, 232, 0.98) 100%);
	}

	.lcd-home-hero__media img {
		object-position: 68% center;
	}

	.lcd-home-hero__inner {
		width: min(100% - 48px, 720px);
		align-items: flex-end;
		padding: 280px 0 50px;
	}

	.lcd-home-hero__content {
		width: min(600px, 100%);
	}

	.lcd-home-hero h1 {
		font-size: clamp(48px, 8vw, 66px);
	}

	.lcd-home-header__inner {
		position: relative;
		min-height: 76px;
	}

	.lcd-home-header__brand {
		gap: 0;
		padding: 8px 0;
	}

	.lcd-home-header__brand img {
		height: 54px;
		padding-right: 0;
		border-right: 0;
	}

	.lcd-home-header__wordmark {
		display: none;
	}

	.lcd-home-header__menu {
		flex: 0 0 auto;
		margin-left: auto;
	}

	.lcd-home-header__desktop-nav {
		display: none;
	}

	.lcd-home-header__mobile-menu {
		display: block;
	}

	.lcd-home-header__mobile-menu > summary {
		display: inline-flex;
		min-height: 44px;
		align-items: center;
		gap: 9px;
		cursor: pointer;
		font-size: 12px;
		font-weight: 700;
		letter-spacing: 0.06em;
		text-transform: uppercase;
	}

	.lcd-home-header__menu-icon {
		display: inline-flex;
		width: 22px;
		flex-direction: column;
		gap: 4px;
	}

	.lcd-home-header__menu-icon span {
		display: block;
		width: 100%;
		height: 2px;
		background: var(--lcd-home-green-primary);
	}

	.lcd-home-header__mobile-menu:not([open]) > nav {
		display: none !important;
	}

	.lcd-home-header__mobile-menu[open] > nav {
		position: absolute;
		top: 100%;
		right: -17px;
		left: -17px;
		display: block !important;
		padding: 12px 24px 24px;
		border-top: 1px solid var(--lcd-home-line);
		background: var(--lcd-home-header-surface);
		box-shadow: 0 18px 30px rgba(35, 28, 23, 0.12);
	}

	.lcd-home-header__nav-list {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.lcd-home-header__nav-list a {
		display: flex;
		width: 100%;
		box-sizing: border-box;
		justify-content: space-between;
		padding: 13px 0;
		font-size: 12px;
	}

	.lcd-home-header__nav-list .sub-menu {
		position: static;
		display: none;
		width: auto;
		min-width: 0;
		padding: 0 0 5px 18px;
		border: 0;
		background: transparent;
		box-shadow: none;
	}

	.lcd-home-header__nav-list li:hover > .sub-menu,
	.lcd-home-header__nav-list li:focus-within > .sub-menu {
		display: block;
	}

	.lcd-home-header__nav-list .sub-menu a {
		padding: 10px 0;
		font-size: 11px;
	}

	.lcd-home-header__actions {
		margin-left: 0;
		gap: 8px;
		padding-left: 12px;
	}

	.lcd-home-header__search form {
		right: -92px;
	}
}

@media (max-width: 680px) {
	.lcd-home-roasting {
		padding-bottom: 52px;
	}

	.lcd-home-roasting__inner {
		width: calc(100% - 32px);
		min-height: 760px;
		border-radius: 18px;
	}

	.lcd-home-roasting__media {
		object-position: 55% center;
	}

	.lcd-home-roasting__inner::after {
		background: rgba(8, 39, 31, 0.82);
	}

	.lcd-home-roasting__content {
		padding: 30px 24px 18px;
	}

	.lcd-home-roasting__content h2 {
		font-size: clamp(36px, 11vw, 48px);
	}

	.lcd-home-roasting__content p {
		font-size: 15px;
	}

	.lcd-home-roasting__steps {
		padding: 18px 20px 28px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px 16px;
	}

	.lcd-home-roasting__steps img {
		width: 76px;
		margin-bottom: 12px;
	}

	.lcd-home-roasting__steps strong,
	.lcd-home-roasting__steps span {
		font-size: 11px;
	}

	.lcd-home-machine-offer {
		padding-bottom: 52px;
	}

	.lcd-home-machine-offer__inner {
		width: calc(100% - 32px);
		min-height: 610px;
		border-radius: 18px;
	}

	.lcd-home-machine-offer__media {
		object-position: 63% bottom;
	}

	.lcd-home-machine-offer__inner::after {
		background: linear-gradient(180deg, rgba(255, 251, 244, 0.99) 0%, rgba(255, 251, 244, 0.96) 50%, rgba(255, 251, 244, 0.35) 72%, rgba(255, 251, 244, 0.04) 100%);
	}

	.lcd-home-machine-offer__content {
		width: 100%;
		min-height: auto;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 16px;
		padding: 28px 24px;
	}

	.lcd-home-machine-offer__icon {
		width: 64px;
		flex-basis: 64px;
	}

	.lcd-home-machine-offer__copy h2 {
		font-size: clamp(32px, 9.8vw, 42px);
	}

	.lcd-home-machine-offer__copy p {
		margin-bottom: 18px;
		font-size: 16px;
	}

	.lcd-home-machine-offer__copy a {
		min-height: 52px;
		padding: 0 20px;
		font-size: 11px;
	}

	.lcd-home-machine-offer__badge {
		top: auto;
		right: 20px;
		bottom: 20px;
		width: 108px;
	}

	.lcd-home-machines {
		padding: 52px 0;
	}

	.lcd-home-machines__inner {
		width: calc(100% - 32px);
	}

	.lcd-home-machines__header {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
		margin-bottom: 28px;
	}

	.lcd-home-machines__header h2 {
		font-size: clamp(36px, 11vw, 48px);
	}

	.lcd-home-machines__header > a {
		font-size: 12px;
	}

	.lcd-home-machines__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.lcd-home-machine-card {
		min-height: clamp(390px, 112vw, 520px);
		border-radius: 18px;
	}

	.lcd-home-machine-card__title {
		font-size: clamp(30px, 9vw, 38px);
	}

	.lcd-home-subscription {
		padding-bottom: 52px;
	}

	.lcd-home-subscription__inner {
		width: calc(100% - 32px);
		min-height: 690px;
		border-radius: 18px;
	}

	.lcd-home-subscription__media {
		object-position: 69% center;
	}

	.lcd-home-subscription__inner::after {
		background: linear-gradient(90deg, rgba(13, 40, 33, 0.97) 0%, rgba(13, 40, 33, 0.9) 72%, rgba(13, 40, 33, 0.55) 100%);
	}

	.lcd-home-subscription__content {
		width: 100%;
		padding: 34px 24px;
	}

	.lcd-home-subscription h2 {
		max-width: 100%;
		font-size: clamp(32px, 8.6vw, 38px);
		line-height: 1.02;
	}

	.lcd-home-subscription__lead {
		max-width: 250px;
		margin-top: 18px;
		font-size: 17px;
	}

	.lcd-home-subscription__badge {
		top: 230px;
		right: auto;
		left: 24px;
		width: 112px;
	}

	.lcd-home-subscription ul {
		margin-top: 144px;
	}

	.lcd-home-subscription__badge strong {
		font-size: 42px;
	}

	.lcd-home-subscription__badge span {
		font-size: 10px;
	}

	.lcd-home-subscription li {
		padding-left: 34px;
		font-size: 15px;
	}

	.lcd-home-subscription li::before {
		width: 22px;
		height: 22px;
	}

	.lcd-home-subscription__button {
		width: 100%;
		min-height: 54px;
		padding: 0 18px;
		box-sizing: border-box;
		font-size: 13px;
	}

	.lcd-home-coffees {
		padding: 52px 0;
	}

	.lcd-home-coffees__inner {
		width: calc(100% - 32px);
	}

	.lcd-home-coffees__header h2 {
		font-size: clamp(36px, 11vw, 48px);
	}

	.lcd-home-coffees__header > a {
		font-size: 12px;
	}

	.lcd-home-coffees__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.lcd-home-coffee-card {
		border-radius: 10px;
	}

	.lcd-home-coffee-card__image {
		aspect-ratio: 1 / 1.15;
	}

	.lcd-home-coffee-card__body {
		min-height: 180px;
		padding: 16px 14px 14px;
	}

	.lcd-home-coffee-card h3 {
		font-size: 18px;
	}

	.lcd-home-coffee-card p {
		margin: 9px 0 16px;
		font-size: 13px;
	}

	.lcd-home-coffee-card footer {
		gap: 8px;
	}

	.lcd-home-coffee-card__price {
		font-size: 14px;
	}

	.lcd-home-coffee-card__action {
		width: 40px;
		height: 40px;
		flex-basis: 40px;
	}

	.lcd-home-coffee-card__action svg {
		width: 20px;
		height: 20px;
	}

	.lcd-home-trust__list {
		width: calc(100% - 32px);
		grid-template-columns: 1fr;
		padding: 12px 0;
	}

	.lcd-home-trust__item {
		gap: 16px;
		padding: 18px 4px;
	}

	.lcd-home-trust__item:nth-child(even) {
		border-left: 0;
	}

	.lcd-home-trust__item + .lcd-home-trust__item,
	.lcd-home-trust__item:nth-child(n + 3) {
		border-top: 1px solid var(--lcd-home-line);
	}

	.lcd-home-trust__icon {
		width: 60px;
		height: 60px;
		flex-basis: 60px;
	}

	.lcd-home-trust h3 {
		font-size: 14px;
	}

	.lcd-home-trust p {
		font-size: 15px;
	}

	.lcd-home-hero {
		min-height: 650px;
	}

	.lcd-home-hero__inner {
		width: calc(100% - 32px);
		padding: 250px 0 36px;
	}

	.lcd-home-hero h1 {
		font-size: clamp(40px, 12vw, 54px);
		line-height: 0.98;
	}

	.lcd-home-hero p {
		margin-top: 20px;
		font-size: 16px;
		line-height: 1.45;
	}

	.lcd-home-hero__actions {
		align-items: stretch;
		flex-direction: column;
		gap: 10px;
		margin-top: 26px;
	}

	.lcd-home-button {
		width: 100%;
		min-height: 50px;
		padding: 0 20px;
	}

	.admin-bar .lcd-home-header {
		top: 46px;
	}

	.lcd-home-header__inner {
		width: calc(100% - 24px);
		gap: 12px;
	}

	.lcd-home-header__brand img {
		height: 50px;
	}

	.lcd-home-header__actions > a,
	.lcd-home-header__search > summary {
		width: 34px;
		height: 34px;
	}

	.lcd-home-header__actions img {
		width: 22px;
		height: 22px;
	}

	.lcd-home-header__search form {
		position: fixed;
		top: auto;
		right: 12px;
		left: 12px;
		width: auto;
	}

	.lcd-home-promo__link {
		width: min(100% - 24px, 520px);
		min-height: 66px;
		gap: 9px;
		padding: 8px 0;
		font-size: 11px;
	}

	.lcd-home-promo__icon {
		width: 20px;
		height: 20px;
	}

	.lcd-home-promo__message {
		align-items: flex-start;
		flex: 1 1 auto;
		flex-direction: column;
		gap: 1px;
	}

	.lcd-home-promo__action {
		gap: 5px;
		margin-left: 2px;
		font-size: 10px;
	}
}

@media (max-width: 390px) {
	.lcd-home-header__mobile-menu > summary > span:last-child {
		display: none;
	}

	.lcd-home-promo__link {
		width: calc(100% - 18px);
		gap: 7px;
	}

	.lcd-home-promo__action {
		max-width: 82px;
		white-space: normal;
	}
}

/* Bloc 11 — témoignages clients validés, avec note confirmée et sans automatisation. */
.lcd-home-testimonials {
	overflow: hidden;
	padding: 88px 0 82px;
	color: var(--lcd-home-ink);
	background: var(--lcd-home-white);
	font-family: var(--lcd-font-interface);
}

.lcd-home-testimonials__inner {
	width: min(calc(100% - (var(--lcd-layout-gutter) * 2)), var(--lcd-layout-container));
	margin: 0 auto;
}

.lcd-home-testimonials__header {
	width: 100%;
	margin: 0 0 42px;
}

.lcd-home-testimonials__eyebrow {
	display: block;
	width: 58px;
	height: 22px;
	margin-bottom: 12px;
	color: var(--lcd-home-copper);
}

.lcd-home-testimonials__eyebrow svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: currentColor;
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-linecap: round;
}

.lcd-home-testimonials__header h2 {
	margin: 0;
	color: var(--lcd-home-green-primary);
	font-family: var(--lcd-font-heading);
	font-size: clamp(46px, 5vw, 78px);
	font-weight: 500;
	line-height: 0.98;
	letter-spacing: -0.025em;
}

.lcd-home-testimonials__header p {
	margin: 18px 0 0;
	color: #4c4742;
	font-size: 18px;
	line-height: 1.55;
}

.lcd-home-testimonials__carousel {
	position: relative;
	width: 100%;
}

.lcd-home-testimonials__viewport {
	overflow-x: auto;
	overflow-y: hidden;
	padding: 10px 72px 24px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.lcd-home-testimonials__viewport::-webkit-scrollbar {
	display: none;
}

.lcd-home-testimonials__viewport:focus-visible {
	outline: 2px solid var(--lcd-home-green-primary);
	outline-offset: 5px;
}

.lcd-home-testimonials__track {
	display: flex;
	gap: 24px;
	align-items: stretch;
	margin: 0;
	padding: 0;
	list-style: none;
}

.lcd-home-testimonial {
	position: relative;
	display: flex;
	min-width: 0;
	flex: 0 0 calc((100% - 48px) / 3);
	min-height: 292px;
	overflow: hidden;
	box-sizing: border-box;
	border: 1px solid #e7dfd2;
	border-radius: 18px;
	background: linear-gradient(145deg, #fff 0%, #fdfbf7 100%);
	box-shadow: 0 12px 30px rgba(35, 28, 23, 0.08);
	scroll-snap-align: start;
}

.lcd-home-testimonial__botanical {
	position: absolute;
	right: -22px;
	bottom: -28px;
	width: 180px;
	height: 180px;
	background: url("../images/home-2026-testimonial-leaves.webp") center / contain no-repeat;
	opacity: 0.5;
	pointer-events: none;
}

.lcd-home-testimonial figure {
	position: relative;
	z-index: 1;
	display: flex;
	width: 100%;
	flex-direction: column;
	margin: 0;
	padding: 28px 30px 31px;
}

.lcd-home-testimonial figcaption {
	display: flex;
	min-height: 52px;
	flex-direction: column;
	gap: 5px;
	padding-bottom: 15px;
}

.lcd-home-testimonial figcaption::after {
	display: block;
	width: 126px;
	height: 1px;
	margin-top: 10px;
	background: rgba(168, 111, 69, 0.38);
	content: "";
}

.lcd-home-testimonial figcaption strong {
	color: var(--lcd-home-green-primary);
	font-family: var(--lcd-font-heading);
	font-size: 28px;
	font-weight: 600;
	line-height: 1.02;
}

.lcd-home-testimonial figcaption span {
	color: var(--lcd-home-copper);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.lcd-home-testimonial figcaption .lcd-home-testimonial__context {
	text-transform: none;
}

.lcd-home-testimonial figcaption .lcd-home-testimonial__rating {
	display: inline-flex;
	font-size: 16px;
	letter-spacing: 0.12em;
	line-height: 1;
	text-transform: none;
}

.lcd-home-testimonial blockquote {
	margin: 16px 0 0;
	padding: 0;
	border: 0;
}

.lcd-home-testimonial blockquote > span {
	display: block;
	height: 31px;
	color: rgba(168, 111, 69, 0.48);
	font-family: Georgia, serif;
	font-size: 48px;
	line-height: 1;
}

.lcd-home-testimonial blockquote p {
	position: relative;
	z-index: 1;
	max-width: calc(100% - 38px);
	margin: 0;
	color: var(--lcd-home-ink);
	font-size: 17px;
	font-style: normal;
	line-height: 1.55;
}

.lcd-home-testimonial blockquote p + p {
	margin-top: 12px;
}

.lcd-home-testimonials__arrow {
	position: absolute;
	z-index: 3;
	top: 50%;
	display: none;
	width: 54px;
	height: 54px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid #ded7cc;
	border-radius: 50%;
	color: var(--lcd-home-green-primary);
	background: var(--lcd-home-white);
	box-shadow: 0 8px 24px rgba(35, 28, 23, 0.13);
	cursor: pointer;
	font-size: 22px;
	line-height: 1;
	transform: translateY(-50%);
	transition: color 160ms ease, background-color 160ms ease, opacity 160ms ease;
}

.lcd-home-testimonials__carousel.is-ready .lcd-home-testimonials__arrow {
	display: flex;
}

.lcd-home-testimonials__arrow--previous {
	left: 7px;
}

.lcd-home-testimonials__arrow--next {
	right: 7px;
}

.lcd-home-testimonials__arrow:hover,
.lcd-home-testimonials__arrow:focus-visible {
	color: var(--lcd-home-white);
	background: var(--lcd-home-green-primary);
}

.lcd-home-testimonials__arrow:focus-visible {
	outline: 3px solid rgba(168, 111, 69, 0.45);
	outline-offset: 3px;
}

.lcd-home-testimonials__arrow:disabled {
	opacity: 0.34;
	cursor: default;
}

.lcd-home-testimonials__dots {
	display: none;
	min-height: 18px;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 12px;
}

.lcd-home-testimonials__dots.is-ready {
	display: flex;
}

.lcd-home-testimonials__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #d8c7ae;
	cursor: pointer;
}

.lcd-home-testimonials__dot[aria-current="true"] {
	background: var(--lcd-home-green-primary);
}

.lcd-home-testimonials__dot:focus-visible {
	outline: 2px solid var(--lcd-home-green-primary);
	outline-offset: 3px;
}

@media (max-width: 980px) {
	.lcd-home-testimonials__inner {
		width: min(100% - 32px, 1780px);
	}

	.lcd-home-testimonials__viewport {
		padding-right: 62px;
		padding-left: 62px;
	}

	.lcd-home-testimonial {
		flex-basis: calc((100% - 20px) / 2);
	}

	.lcd-home-testimonials__track {
		gap: 20px;
	}
}

@media (max-width: 680px) {
	.lcd-home-testimonials {
		padding: 60px 0 58px;
	}

	.lcd-home-testimonials__inner {
		width: calc(100% - 24px);
	}

	.lcd-home-testimonials__header {
		margin-bottom: 28px;
		padding: 0 4px;
	}

	.lcd-home-testimonials__header h2 {
		font-size: clamp(39px, 12vw, 54px);
		line-height: 1;
	}

	.lcd-home-testimonials__header p {
		margin-top: 14px;
		font-size: 16px;
	}

	.lcd-home-testimonials__viewport {
		padding: 8px 10px 22px;
	}

	.lcd-home-testimonials__track {
		gap: 14px;
	}

	.lcd-home-testimonial {
		flex-basis: 100%;
		min-height: 270px;
		border-radius: 14px;
	}

	.lcd-home-testimonial figure {
		padding: 26px 24px 29px;
	}

	.lcd-home-testimonial figcaption strong {
		font-size: 27px;
	}

	.lcd-home-testimonial blockquote p {
		max-width: calc(100% - 24px);
		font-size: 16px;
	}

	.lcd-home-testimonial__botanical {
		right: -20px;
		bottom: -24px;
		width: 150px;
		height: 150px;
	}

	.lcd-home-testimonials__arrow {
		top: auto;
		bottom: -3px;
		width: 46px;
		height: 46px;
		transform: none;
	}

	.lcd-home-testimonials__arrow--previous {
		left: 8px;
	}

	.lcd-home-testimonials__arrow--next {
		right: 8px;
	}

	.lcd-home-testimonials__dots {
		max-width: calc(100% - 126px);
		margin: 11px auto 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lcd-home-testimonials__viewport {
		scroll-behavior: auto;
	}

	.lcd-home-testimonials__arrow {
		transition: none;
	}
}

/* ===========================================================================
   Rythme vertical global de l'accueil
   Une seule section porte l'espace entre deux blocs afin d'eviter les cumuls.
   ========================================================================== */

body.lcd-home-2026 {
	--lcd-home-section-gap: clamp(64px, 5vw, 88px);
	--lcd-home-heading-gap: clamp(28px, 2.4vw, 40px);
}

.lcd-home-coffees {
	padding-top: var(--lcd-home-section-gap, clamp(64px, 5vw, 88px));
	padding-bottom: var(--lcd-home-section-gap, clamp(64px, 5vw, 88px));
}

.lcd-home-subscription,
.lcd-home-machines,
.lcd-home-machine-offer,
.lcd-home-roasting,
.lcd-home-pause,
.lcd-home-testimonials {
	padding-top: 0;
	padding-bottom: var(--lcd-home-section-gap, clamp(64px, 5vw, 88px));
}

.lcd-home-coffees__header,
.lcd-home-machines__header,
.lcd-home-pause__header,
.lcd-home-methods__header,
.lcd-home-testimonials__header {
	margin-bottom: var(--lcd-home-heading-gap, clamp(28px, 2.4vw, 40px));
}

.lcd-home-methods {
	margin-top: clamp(40px, 3vw, 52px);
	padding-top: clamp(28px, 2vw, 36px);
}

@media (max-width: 980px) {
	body.lcd-home-2026 {
		--lcd-home-section-gap: 60px;
		--lcd-home-heading-gap: 30px;
	}
}

@media (max-width: 680px) {
	body.lcd-home-2026 {
		--lcd-home-section-gap: 48px;
		--lcd-home-heading-gap: 26px;
	}

	.lcd-home-methods {
		margin-top: 32px;
		padding-top: 24px;
	}
}
