/**
 * Landing page foundation styles — Bien Plus Encore
 * Scoped to .bpe-landing / body.bpe-landing
 */

/* -------------------------------------------------------------------------
   Variables
   ------------------------------------------------------------------------- */

.bpe-landing {
	--bpe-ivoire: #fbf7f2;
	--bpe-lin: #efe3dc;
	--bpe-surface-warm: #f1dfd7;
	--bpe-corail: #f29384;
	--bpe-sauge: #a9b7a4;
	--bpe-sauge-clair: #d8e7d2;
	--bpe-sauge-repos: rgba(216, 231, 210, 0.15);
	--bpe-vert: #526052;
	--bpe-brun: #3f342f;
	--bpe-champagne: #c7a36b;
	--bpe-white: #ffffff;
	--bpe-vert-hover: #465247;
	--bpe-corail-hover: #e68375;

	--bpe-font-display: "Playfair Display", Georgia, serif;
	--bpe-font-subtitle: "Montserrat", system-ui, sans-serif;
	--bpe-font-body: "Montserrat", system-ui, sans-serif;

	--bpe-container: 1140px;
	--bpe-gutter: 24px;
	--bpe-space: 8px;
	--bpe-section-pad: 64px;
	--bpe-radius: 0.25rem;
	--bpe-radius-lg: 0.5rem;

	--bpe-focus-ring: 0 0 0 3px var(--bpe-champagne);

	box-sizing: border-box;
	min-height: 100vh;
	margin: 0;
	background-color: var(--bpe-ivoire);
	color: var(--bpe-brun);
	font-family: var(--bpe-font-body);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

::selection {
	background-color: var(--bpe-sauge);
}

.bpe-landing *,
.bpe-landing *::before,
.bpe-landing *::after {
	box-sizing: border-box;
}

body.bpe-landing {
	margin: 0;
	background-color: var(--bpe-ivoire, #fbf7f2);
}

@media (min-width: 768px) {
	.bpe-landing {
		--bpe-section-pad: 120px;
	}
}

/* -------------------------------------------------------------------------
   Layout
   ------------------------------------------------------------------------- */

.bpe-container {
	width: 100%;
	max-width: var(--bpe-container);
	margin-inline: auto;
	padding-inline: var(--bpe-gutter);
}

.bpe-section {
	padding-block: var(--bpe-section-pad);
}

/* Responsive <picture> wrappers must fill figure aspect boxes. */
.bpe-landing picture {
	display: block;
	width: 100%;
	height: 100%;
}

/* -------------------------------------------------------------------------
   Typography
   ------------------------------------------------------------------------- */

.bpe-landing h1,
.bpe-landing h2,
.bpe-landing h3,
.bpe-landing h4 {
	margin: 0 0 calc(var(--bpe-space) * 2);
	color: var(--bpe-vert);
	font-family: var(--bpe-font-display);
	font-weight: 600;
	line-height: 1.25;
}

.bpe-landing h3,
.bpe-landing h4 {
	font-family: var(--bpe-font-subtitle);
}

.bpe-landing h1 {
	font-size: 1.75rem;
	/* 28px */
	line-height: 2.25rem;
	/* 36px */
	letter-spacing: -0.02em;
}

.bpe-landing h2 {
	font-size: 1.75rem;
	line-height: 2.25rem;
}

.bpe-landing h3 {
	font-size: 1.5rem;
	/* 24px */
	font-weight: 500;
	line-height: 2rem;
}

.bpe-landing p {
	margin: 0 0 calc(var(--bpe-space) * 2);
	max-width: 42rem;
}

.bpe-landing ul,
.bpe-landing ol {
	margin: 0 0 calc(var(--bpe-space) * 2);
	padding-left: 1.25rem;
}

.bpe-landing li {
	margin-bottom: var(--bpe-space);
}

.bpe-lead {
	font-size: 1.125rem;
	/* 18px */
	line-height: 1.75rem;
	/* 28px */
}

.bpe-label {
	margin: 0 0 var(--bpe-space);
	color: var(--bpe-vert);
	font-family: var(--bpe-font-body);
	font-size: 0.875rem;
	/* 14px */
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1.25rem;
	text-transform: uppercase;
}

@media (min-width: 768px) {

	.bpe-landing h1,
	.bpe-landing h2 {
		font-size: 2rem;
		/* 32px */
		line-height: 2.5rem;
		/* 40px */
	}
}

@media (min-width: 1024px) {
	.bpe-landing h1 {
		font-size: 3rem;
		/* 48px */
		line-height: 3.5rem;
		/* 56px */
	}
}

/* -------------------------------------------------------------------------
   Links
   ------------------------------------------------------------------------- */

.bpe-landing a:not(.bpe-btn):not(.bpe-header__link):not(.bpe-drawer__link):not(.bpe-header__brand):not(.bpe-header__cart):not(.bpe-skip-link):not(.bpe-landing-footer__link):not(.bpe-landing-footer__social-link):not(.bpe-legal-doc__nav-link):not(.bpe-legal-doc__mail) {
	color: var(--bpe-vert);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
	transition: color 0.15s ease;
}

.bpe-landing a:not(.bpe-btn):not(.bpe-header__link):not(.bpe-drawer__link):not(.bpe-header__brand):not(.bpe-header__cart):not(.bpe-skip-link):not(.bpe-landing-footer__link):not(.bpe-landing-footer__social-link):not(.bpe-legal-doc__nav-link):not(.bpe-legal-doc__mail):hover {
	color: var(--bpe-vert-hover);
}

.bpe-landing a:not(.bpe-btn):not(.bpe-header__link):not(.bpe-drawer__link):not(.bpe-header__brand):not(.bpe-header__cart):not(.bpe-skip-link):not(.bpe-landing-footer__link):not(.bpe-landing-footer__social-link):not(.bpe-legal-doc__nav-link):not(.bpe-legal-doc__mail):visited {
	color: var(--bpe-brun);
}

.bpe-landing a:focus-visible {
	outline: none;
	box-shadow: var(--bpe-focus-ring);
	border-radius: var(--bpe-radius);
}

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */

.bpe-btn,
.bpe-landing a.bpe-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--bpe-space);
	padding: calc(var(--bpe-space) * 1.5) calc(var(--bpe-space) * 3);
	border: 2px solid transparent;
	border-radius: var(--bpe-radius-lg);
	font-family: var(--bpe-font-body);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1.25rem;
	text-align: center;
	text-decoration: none !important;
	/* Desktop mockup: sentence case. Mobile uppercase via max-width media query below. */
	text-transform: none;
	cursor: pointer;
	box-shadow: none;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.bpe-btn:visited,
.bpe-landing a.bpe-btn:visited {
	/* Keep CTA colors stable when used as links */
	color: inherit;
}

.bpe-btn:focus-visible,
.bpe-landing a.bpe-btn:focus-visible {
	outline: none;
	box-shadow: var(--bpe-focus-ring);
}

.bpe-btn--primary,
.bpe-landing a.bpe-btn--primary {
	background-color: var(--bpe-vert);
	color: var(--bpe-white);
}

.bpe-btn--primary:hover,
.bpe-landing a.bpe-btn--primary:hover {
	background-color: var(--bpe-vert-hover);
	color: var(--bpe-white);
}

.bpe-btn--primary:visited,
.bpe-landing a.bpe-btn--primary:visited {
	color: var(--bpe-white);
}

.bpe-btn--secondary,
.bpe-landing a.bpe-btn--secondary {
	background-color: var(--bpe-corail);
	color: var(--bpe-ivoire);
}

.bpe-btn--secondary:hover,
.bpe-landing a.bpe-btn--secondary:hover {
	background-color: var(--bpe-corail-hover);
	color: var(--bpe-white);
}

.bpe-btn--secondary:visited,
.bpe-landing a.bpe-btn--secondary:visited {
	color: var(--bpe-white);
}

.bpe-btn--tertiary,
.bpe-landing a.bpe-btn--tertiary {
	background-color: transparent;
	border-color: var(--bpe-vert);
	color: var(--bpe-vert);
}

.bpe-btn--tertiary:hover,
.bpe-landing a.bpe-btn--tertiary:hover {
	background-color: var(--bpe-ivoire);
	color: var(--bpe-vert-hover);
	border-color: var(--bpe-vert-hover);
}

.bpe-btn--tertiary:visited,
.bpe-landing a.bpe-btn--tertiary:visited {
	color: var(--bpe-vert);
}

.bpe-btn-group {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: calc(var(--bpe-space) * 1.5);
	margin-top: calc(var(--bpe-space) * 3);
}

.bpe-btn-group .bpe-btn {
	width: 100%;
}

@media (min-width: 768px) {
	.bpe-btn-group {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
	}

	.bpe-btn-group .bpe-btn {
		width: auto;
	}
}

/* Mobile mockup CTAs use uppercase + tracking; same .bpe-btn elements as desktop. */
@media (max-width: 767px) {

	.bpe-btn,
	.bpe-landing a.bpe-btn {
		text-transform: uppercase;
	}
}

/* -------------------------------------------------------------------------
   Skip link
   ------------------------------------------------------------------------- */

.bpe-skip-link {
	position: absolute;
	top: -100%;
	left: var(--bpe-gutter, 24px);
	z-index: 1000;
	padding: calc(var(--bpe-space, 8px) * 1.5) calc(var(--bpe-space, 8px) * 2);
	background-color: var(--bpe-vert, #526052);
	color: var(--bpe-white, #fff);
	border-radius: var(--bpe-radius, 0.25rem);
	text-decoration: none;
}

.bpe-skip-link:focus {
	top: var(--bpe-gutter, 24px);
	color: var(--bpe-white, #fff);
	outline: none;
	box-shadow: var(--bpe-focus-ring, 0 0 0 3px #c7a36b);
}

/* -------------------------------------------------------------------------
   Screen reader only
   ------------------------------------------------------------------------- */

.bpe-landing .screen-reader-text,
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* -------------------------------------------------------------------------
   Header
   ------------------------------------------------------------------------- */

.bpe-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background-color: rgba(251, 247, 242, 0.9);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(199, 163, 107, 0.2);
	box-shadow: 0 1px 2px rgba(63, 52, 47, 0.04);
}

.bpe-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: calc(var(--bpe-space, 8px) * 2);
	min-height: 72px;
	padding-block: calc(var(--bpe-space, 8px) * 2);
	max-width: var(--bpe-container);
}

.bpe-header__brand {
	display: inline-flex;
	align-items: center;
	gap: calc(var(--bpe-space) * 2);
	text-decoration: none !important;
	color: var(--bpe-vert);
	flex-shrink: 0;
}

.bpe-header__brand:visited {
	color: var(--bpe-vert);
}

.bpe-header__logo {
	display: block;
	height: 40px;
	width: auto;
}

.bpe-header__nav {
	display: none;
	align-items: center;
	gap: calc(var(--bpe-space) * 3);
}

.bpe-header__link {
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	line-height: 1.25rem;
	text-decoration: none !important;
	text-transform: none;
	color: var(--bpe-brun);
	border-bottom: 2px solid transparent;
	padding-bottom: 2px;
	transition: color 0.15s ease, border-color 0.15s ease;
}

.bpe-header__link:hover,
.bpe-header__link:focus-visible {
	color: var(--bpe-vert);
}

.bpe-header__link:visited {
	color: var(--bpe-brun);
}

.bpe-header__link--current,
.bpe-header__link--current:visited {
	color: var(--bpe-vert);
	font-weight: 700;
	border-bottom-color: var(--bpe-corail);
}

.bpe-header__link--current:hover,
.bpe-header__link--current:focus-visible {
	color: var(--bpe-vert);
	border-bottom-color: var(--bpe-corail);
}

.bpe-header__cta,
.bpe-landing a.bpe-btn.bpe-header__cta {
	display: none;
	box-sizing: border-box;
	height: 48px;
	padding: 12px 24px;
	flex-shrink: 0;
}

.bpe-header__tools {
	display: flex;
	align-items: center;
	gap: var(--bpe-space);
	flex-shrink: 0;
}

.bpe-header__actions {
	display: flex;
	align-items: center;
}

.bpe-header__actions:empty {
	display: none;
}

.bpe-header__cart,
.bpe-landing a.bpe-header__cart {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: var(--bpe-space);
	margin: 0;
	color: var(--bpe-vert);
	text-decoration: none !important;
	border-radius: var(--bpe-radius);
	flex-shrink: 0;
}

.bpe-header__cart:visited {
	color: var(--bpe-vert);
}

.bpe-header__cart:hover,
.bpe-header__cart:focus-visible {
	color: var(--bpe-vert-hover);
}

.bpe-header__cart:focus-visible {
	outline: none;
	box-shadow: var(--bpe-focus-ring);
}

.bpe-header__cart-icon {
	display: block;
}

.bpe-header__cart-count {
	position: absolute;
	top: 2px;
	right: 0;
	box-sizing: border-box;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	border-radius: 50px;
	background-color: var(--bpe-corail);
	color: #fff;
	font-size: 10px;
	font-weight: 600;
	line-height: 16px;
	text-align: center;
	pointer-events: none;
}

@media (max-width: 767px) {
	.bpe-header__actions:has(.bpe-header__cta) {
		display: none;
	}
}

.bpe-header button.bpe-header__menu-btn,
.bpe-drawer button.bpe-header__menu-btn,
.elementor-kit-6 .bpe-header button.bpe-header__menu-btn,
.elementor-kit-6 .bpe-drawer button.bpe-header__menu-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-width: 0;
	height: auto;
	padding: var(--bpe-space);
	margin: 0;
	border: 0;
	background: transparent;
	background-color: transparent;
	color: var(--bpe-vert);
	cursor: pointer;
	border-radius: var(--bpe-radius);
	flex-shrink: 0;
	box-shadow: none;
	line-height: 1;
}

.bpe-header button.bpe-header__menu-btn:hover,
.bpe-header button.bpe-header__menu-btn:focus,
.bpe-header button.bpe-header__menu-btn:active,
.bpe-drawer button.bpe-header__menu-btn:hover,
.bpe-drawer button.bpe-header__menu-btn:focus,
.bpe-drawer button.bpe-header__menu-btn:active,
.elementor-kit-6 .bpe-header button.bpe-header__menu-btn:hover,
.elementor-kit-6 .bpe-header button.bpe-header__menu-btn:focus,
.elementor-kit-6 .bpe-header button.bpe-header__menu-btn:active,
.elementor-kit-6 .bpe-drawer button.bpe-header__menu-btn:hover,
.elementor-kit-6 .bpe-drawer button.bpe-header__menu-btn:focus,
.elementor-kit-6 .bpe-drawer button.bpe-header__menu-btn:active {
	background: transparent;
	background-color: transparent;
	color: var(--bpe-vert);
	box-shadow: none;
}

.bpe-header button.bpe-header__menu-btn:focus-visible,
.bpe-drawer button.bpe-header__menu-btn:focus-visible {
	outline: none;
	box-shadow: var(--bpe-focus-ring);
	background: transparent;
	background-color: transparent;
}

.bpe-icon {
	display: block;
}

@media (min-width: 768px) {
	.bpe-header__inner {
		min-height: 80px;
	}

	.bpe-header__nav {
		display: flex;
	}

	.bpe-header__cta,
	.bpe-landing a.bpe-btn.bpe-header__cta {
		display: inline-flex;
	}

	.bpe-header__menu-btn,
	.bpe-header button.bpe-header__menu-btn,
	.elementor-kit-6 .bpe-header button.bpe-header__menu-btn {
		display: none;
	}
}

/* Offset main content for fixed header */
main.bpe-landing {
	padding-top: 72px;
}

@media (min-width: 768px) {
	main.bpe-landing {
		padding-top: 80px;
	}
}

/* Keep anchored sections clear of the fixed header */
main.bpe-landing .bpe-section[id] {
	scroll-margin-top: 88px;
}

@media (min-width: 768px) {
	main.bpe-landing .bpe-section[id] {
		scroll-margin-top: 96px;
	}
}

/* WordPress admin bar — fixed header / drawer / anchors */
body.admin-bar .bpe-header {
	top: 32px;
}

body.admin-bar .bpe-drawer {
	top: 32px;
}

body.admin-bar main.bpe-landing {
	padding-top: calc(72px + 32px);
}

body.admin-bar main.bpe-landing .bpe-section[id] {
	scroll-margin-top: calc(88px + 32px);
}

@media (min-width: 768px) {
	body.admin-bar main.bpe-landing {
		padding-top: calc(80px + 32px);
	}

	body.admin-bar main.bpe-landing .bpe-section[id] {
		scroll-margin-top: calc(96px + 32px);
	}
}

@media screen and (max-width: 782px) {
	body.admin-bar .bpe-header {
		top: 46px;
	}

	body.admin-bar .bpe-drawer {
		top: 46px;
	}

	body.admin-bar main.bpe-landing {
		padding-top: calc(72px + 46px);
	}

	body.admin-bar main.bpe-landing .bpe-section[id] {
		scroll-margin-top: calc(88px + 46px);
	}
}

/* -------------------------------------------------------------------------
   Mobile drawer
   ------------------------------------------------------------------------- */

.bpe-drawer {
	position: fixed;
	inset: 0;
	z-index: 60;
	display: flex;
	flex-direction: column;
	padding: calc(var(--bpe-space) * 4) var(--bpe-gutter);
	background-color: var(--bpe-ivoire);
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

.bpe-drawer.is-open {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.bpe-drawer[hidden] {
	display: none;
}

.bpe-drawer.is-open[hidden] {
	display: flex;
}

.bpe-drawer__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: calc(var(--bpe-space) * 6);
}

.bpe-drawer__nav {
	display: flex;
	flex-direction: column;
	gap: calc(var(--bpe-space) * 3);
}

.bpe-drawer__link {
	font-size: 1.25rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	text-decoration: none !important;
	text-transform: none;
	color: var(--bpe-brun);
}

.bpe-drawer__link:hover,
.bpe-drawer__link:focus-visible {
	color: var(--bpe-vert);
}

.bpe-drawer__link:visited {
	color: var(--bpe-brun);
}

.bpe-drawer__link--current,
.bpe-drawer__link--current:visited {
	color: var(--bpe-vert);
	font-weight: 700;
}

.bpe-drawer__footer {
	margin-top: auto;
	padding-top: calc(var(--bpe-space) * 4);
}

.bpe-drawer__cta {
	width: 100%;
}

body.bpe-drawer-open {
	overflow: hidden;
}

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */

.bpe-hero {
	background-color: var(--bpe-ivoire);
}

/* Mobile: re-order children to match mobile mockup (CTA before media, micro after). */
.bpe-hero__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: calc(var(--bpe-space) * 3);
	align-items: center;
	text-align: center;
}

.bpe-hero__content {
	display: contents;
}

.bpe-hero__title {
	order: 1;
	margin-bottom: 0;
}

.bpe-hero__title-accent {
	color: var(--bpe-corail);
}

.bpe-hero__subtitle {
	order: 2;
	margin-inline: auto;
	margin-bottom: 0;
	color: rgba(63, 52, 47, 0.8);
	font-family: var(--bpe-font-subtitle);
}

.bpe-hero__body {
	display: none;
}

.bpe-hero__actions {
	order: 3;
	display: flex;
	justify-content: center;
	margin-top: calc(var(--bpe-space) * 1);
}

.bpe-hero__actions .bpe-btn {
	width: 100%;
}

.bpe-hero__media {
	order: 4;
	margin: calc(var(--bpe-space) * 2) 0 0;
	width: 100%;
	aspect-ratio: 4 / 5;
	border-radius: var(--bpe-radius-lg);
	overflow: hidden;
	border: 1px solid rgba(199, 163, 107, 0.2);
	box-shadow: 0 4px 16px rgba(63, 52, 47, 0.08);
}

.bpe-hero__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bpe-hero__micro {
	order: 5;
	margin: calc(var(--bpe-space) * 1) 0 0;
	margin-inline: auto;
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: rgba(63, 52, 47, 0.6);
	max-width: none;
}

/* Desktop mockup: centered stack, body copy, landscape media (max-w-4xl / aspect-video). */
@media (min-width: 768px) {
	.bpe-hero__inner {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: calc(var(--bpe-space) * 6);
		text-align: center;
	}

	.bpe-hero__content {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: calc(var(--bpe-space) * 4);
		width: 100%;
	}

	.bpe-hero__title,
	.bpe-hero__subtitle,
	.bpe-hero__actions,
	.bpe-hero__micro {
		order: unset;
	}

	.bpe-hero__title-accent {
		font-style: italic;
	}

	.bpe-hero__subtitle {
		margin-inline: auto;
		max-width: 42rem;
		/* max-w-2xl */
		font-weight: 700;
	}

	.bpe-hero__body {
		display: block;
		max-width: 48rem;
		/* max-w-3xl */
		margin-inline: auto;
		color: rgba(63, 52, 47, 0.8);
	}

	.bpe-hero__body p {
		max-width: none;
		margin-bottom: calc(var(--bpe-space) * 2);
	}

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

	.bpe-hero__actions {
		justify-content: center;
		margin-top: 0;
	}

	.bpe-hero__actions .bpe-btn {
		width: auto;
	}

	.bpe-hero__media {
		order: unset;
		margin: 0;
		width: 100%;
		max-width: 56rem;
		/* max-w-4xl */
		aspect-ratio: 16 / 9;
		height: auto;
		min-height: 0;
		box-shadow:
			0 10px 15px -3px rgba(63, 52, 47, 0.1),
			0 4px 6px -4px rgba(63, 52, 47, 0.1);
	}

	.bpe-hero__micro {
		margin: 0;
		margin-inline: auto;
	}
}

/* -------------------------------------------------------------------------
   Identification (tu-te-reconnais)
   ------------------------------------------------------------------------- */

.bpe-identification {
	/* Mobile mockup: surface-container-highest */
	background-color: var(--bpe-surface-warm);
}

.bpe-identification__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: calc(var(--bpe-space) * 4);
	align-items: center;
}

.bpe-identification__content {
	display: flex;
	flex-direction: column;
	gap: calc(var(--bpe-space) * 3);
	order: 1;
}

.bpe-identification__title {
	margin-bottom: 0;
	text-align: center;
}

.bpe-identification__body {
	color: rgba(63, 52, 47, 0.85);
	text-align: justify;
}

.bpe-identification__body p {
	margin-bottom: calc(var(--bpe-space) * 1.5);
}

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

.bpe-identification__highlight {
	padding: calc(var(--bpe-space) * 3);
	margin-top: calc(var(--bpe-space) * 1);
	background-color: color-mix(in srgb, var(--bpe-ivoire) 50%, transparent);
	border-top: 1px solid rgba(199, 163, 107, 0.3);
	border-radius: var(--bpe-radius-lg);
	text-align: justify;
}

.bpe-identification__highlight p {
	margin: 0 0 calc(var(--bpe-space) * 2);
	color: var(--bpe-vert);
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-weight: 600;
}

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

.bpe-identification__media {
	position: relative;
	order: 2;
	margin: 0;
	width: 100%;
	max-width: 28rem;
	margin-inline: auto;
	aspect-ratio: 1 / 1;
	border-radius: var(--bpe-radius-lg);
	overflow: hidden;
	border: 1px solid rgba(199, 163, 107, 0.2);
}

.bpe-identification__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bpe-identification__words {
	position: absolute;
	bottom: calc(var(--bpe-space) * 2);
	left: calc(var(--bpe-space) * 2);
	right: calc(var(--bpe-space) * 2);
	margin: 0;
	padding: calc(var(--bpe-space) * 1.25) calc(var(--bpe-space) * 2);
	background-color: color-mix(in srgb, var(--bpe-ivoire) 80%, transparent);
	border-radius: var(--bpe-radius);
	color: var(--bpe-vert);
	font-family: var(--bpe-font-display);
	font-size: 0.875rem;
	font-style: italic;
	line-height: 1.25rem;
	text-align: center;
}

@media (min-width: 768px) {
	.bpe-header__logo {
		display: block;
		height: 50px;
		width: auto;
	}

	.bpe-identification {
		/* Desktop mockup: lin-rosé */
		background-color: var(--bpe-lin);
	}

	.bpe-identification__grid {
		grid-template-columns: 1fr 1fr;
		gap: calc(var(--bpe-space) * 6);
	}

	.bpe-identification__content {
		order: 1;
	}

	.bpe-identification__media {
		order: 2;
		max-width: none;
		margin-inline: 0;
		aspect-ratio: 3 / 4;
	}

	.bpe-identification__title {
		text-align: left;
	}

	.bpe-identification__body,
	.bpe-identification__highlight {
		text-align: left;
	}
}

/* -------------------------------------------------------------------------
   Nouvelle perspective (pas-besoin-etre-parfaite)
   ------------------------------------------------------------------------- */

.bpe-perspective {
	/* Mobile mockup: inherits ivoire (no section bg class) */
	background-color: var(--bpe-ivoire);
}

.bpe-perspective__inner {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 2rem;
	/* mockup space-y-8 */
	text-align: justify;
}

.bpe-landing h2.bpe-perspective__title {
	margin: 0;
	max-width: none;
	text-align: center;
}

.bpe-perspective__prose {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	/* mockup space-y-6 */
	max-width: 42rem;
	/* mockup max-w-2xl */
	margin-inline: auto;
	width: 100%;
}

.bpe-perspective__intro,
.bpe-perspective__body,
.bpe-perspective__transition {
	color: rgba(63, 52, 47, 0.85);
}

.bpe-perspective__intro {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	/* same rhythm as mockup space-y-6 between paragraphs */
}

.bpe-perspective__intro p,
.bpe-perspective__body p {
	margin-bottom: 0;
	max-width: none;
}

.bpe-landing .bpe-perspective__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: calc(var(--bpe-space) * 2);
	margin: 0;
	padding: 1.5rem 0 1.5rem calc(var(--bpe-space) * 2);
	/* mockup py-6 */
	list-style: none;
	text-align: left;
	border-left: 2px solid rgba(82, 96, 82, 0.2);
}

.bpe-landing .bpe-perspective__list li {
	display: flex;
	align-items: center;
	gap: calc(var(--bpe-space) * 1);
	margin-bottom: 0;
	color: rgba(63, 52, 47, 0.85);
}

.bpe-perspective__check {
	flex-shrink: 0;
	width: 0.875rem;
	height: 0.875rem;
	color: var(--bpe-vert);
}

.bpe-perspective__quote {
	margin: 2rem 0;
	/* mockup my-8 */
	padding: 1.5rem 0;
	/* mockup py-6 */
	border-top: 1px solid rgba(82, 96, 82, 0.2);
	border-bottom: 1px solid rgba(82, 96, 82, 0.2);
	color: var(--bpe-vert);
	font-family: var(--bpe-font-display);
	font-size: 1.375rem;
	font-style: italic;
	font-weight: 400;
	line-height: 2rem;
	text-align: center;
}

.bpe-perspective__transition {
	margin: 0;
	max-width: none;
}

.bpe-perspective__transition strong {
	font-weight: 600;
}

@media (min-width: 480px) {
	.bpe-landing .bpe-perspective__list {
		grid-template-columns: 1fr 1fr;
		width: 100%;
		max-width: 38rem;
		/* mockup max-w-xl */
		margin-inline: auto;
		padding-left: 10px;
		padding-right: 0;
		border-left: 0;
	}
}

@media (min-width: 768px) {
	.bpe-perspective__inner {
		text-align: center;
	}
}

/* -------------------------------------------------------------------------
   Presentation du journal (presentation-journal)
   ------------------------------------------------------------------------- */

.bpe-presentation {
	/* Mobile mockup: lin-rosé */
	background-color: var(--bpe-lin);
}

.bpe-presentation__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: calc(var(--bpe-space) * 4);
	align-items: center;
}

.bpe-presentation__content {
	order: 1;
	display: flex;
	flex-direction: column;
	gap: calc(var(--bpe-space) * 3);
}

.bpe-presentation__title {
	margin-bottom: 0;
	text-align: center;
}

.bpe-presentation__body {
	color: rgba(63, 52, 47, 0.85);
	text-align: justify;
}

.bpe-presentation__body p {
	margin-bottom: calc(var(--bpe-space) * 1.5);
}

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

.bpe-presentation__list {
	margin: 0;
	padding: calc(var(--bpe-space) * 1) 0 calc(var(--bpe-space) * 1) calc(var(--bpe-space) * 2);
	list-style: none;
	border-left: 2px solid rgba(82, 96, 82, 0.2);
	color: rgba(63, 52, 47, 0.85);
	text-align: left;
}

.bpe-presentation__list li {
	margin-bottom: calc(var(--bpe-space) * 1);
	padding-left: calc(var(--bpe-space) * 0.5);
}

.bpe-presentation__list li:last-child {
	margin-bottom: 0;
}

.bpe-presentation__list li::before {
	content: "•";
	margin-right: calc(var(--bpe-space) * 1);
	color: var(--bpe-vert);
}

.bpe-presentation__highlight {
	padding: calc(var(--bpe-space) * 3);
	margin-top: calc(var(--bpe-space) * 1);
	background-color: var(--bpe-ivoire);
	border: 1px solid rgba(199, 163, 107, 0.2);
	border-radius: calc(var(--bpe-radius-lg) * 1.5);
	box-shadow: 0 1px 3px rgba(63, 52, 47, 0.05);
	color: rgba(63, 52, 47, 0.9);
	font-size: 0.9375rem;
	line-height: 1.6;
	text-align: justify;
}

.bpe-presentation__highlight p {
	margin: 0 0 calc(var(--bpe-space) * 1.5);
}

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

.bpe-presentation__actions {
	display: flex;
	justify-content: center;
	margin-top: calc(var(--bpe-space) * 1);
}

.bpe-presentation__actions .bpe-btn {
	width: 100%;
	text-align: center;
}

.bpe-presentation__media {
	order: 2;
}

.bpe-presentation__figure {
	margin: 0;
	aspect-ratio: 0.75;
	overflow: hidden;
	border-radius: var(--bpe-radius-lg);
	border: 1px solid rgba(199, 163, 107, 0.2);
}

.bpe-presentation__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (min-width: 1024px) {

	.bpe-presentation__grid {
		grid-template-columns: 1fr 1fr;
		gap: calc(var(--bpe-space) * 6);
	}

	.bpe-presentation__media {
		order: 1;
	}

	.bpe-presentation__content {
		order: 2;
	}

	.bpe-presentation__title {
		text-align: left;
	}

	.bpe-presentation__body,
	.bpe-presentation__highlight {
		text-align: left;
	}

	.bpe-presentation__highlight {
		border-radius: var(--bpe-radius-lg);
		box-shadow: none;
	}

	.bpe-presentation__list {
		padding-left: calc(var(--bpe-space) * 2.5);
		border-left: 0;
		list-style: disc;
		padding-inline-start: 1.25rem;
	}

	.bpe-presentation__list li::before {
		content: none;
		margin: 0;
	}

	.bpe-presentation__actions {
		justify-content: flex-start;
	}

	.bpe-presentation__actions .bpe-btn {
		width: auto;
	}

	.bpe-presentation__figure {
		aspect-ratio: unset;
	}
}

/* -------------------------------------------------------------------------
   Contenu du journal (contenu-journal)
   ------------------------------------------------------------------------- */

.bpe-contenu {
	/* Mobile mockup: inherits ivoire (no section bg class) */
	background-color: var(--bpe-ivoire);
}

.bpe-contenu__header {
	max-width: 42rem;
	margin: 0 auto calc(var(--bpe-space) * 6);
	text-align: center;
}

.bpe-contenu__title {
	margin-bottom: calc(var(--bpe-space) * 3);
}

.bpe-contenu__intro {
	color: rgba(63, 52, 47, 0.85);
	text-align: justify;
}

.bpe-contenu__intro p {
	margin: 0;
}

.bpe-contenu__features {
	display: grid;
	grid-template-columns: 1fr;
	gap: calc(var(--bpe-space) * 4);
	margin-bottom: calc(var(--bpe-space) * 6);
}

.bpe-contenu__feature {
	padding: calc(var(--bpe-space) * 3);
	background-color: var(--bpe-lin);
	border: 1px solid rgba(199, 163, 107, 0.1);
	border-radius: var(--bpe-radius-lg);
	box-shadow: 0 1px 3px rgba(63, 52, 47, 0.05);
}

.bpe-contenu__feature-title {
	margin: 0 0 calc(var(--bpe-space) * 2);
	color: var(--bpe-vert);
	font-family: var(--bpe-font-subtitle);
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.4;
}

.bpe-contenu__feature-body {
	color: rgba(63, 52, 47, 0.85);
	font-size: 0.9375rem;
	line-height: 1.6;
	text-align: justify;
}

.bpe-contenu__feature-body p {
	margin: 0 0 calc(var(--bpe-space) * 1.5);
}

.bpe-contenu__feature-body p:last-child {
	margin-bottom: 0;
}

.bpe-contenu__list {
	margin: 0 0 calc(var(--bpe-space) * 1.5);
	padding-inline-start: 1.25rem;
	list-style: disc;
}

.bpe-contenu__list li {
	margin-bottom: calc(var(--bpe-space) * 0.5);
}

.bpe-contenu__list li:last-child {
	margin-bottom: 0;
}

.bpe-contenu__note {
	font-size: 0.8125rem;
	font-style: italic;
	color: rgba(63, 52, 47, 0.65);
}

.bpe-contenu__actions {
	display: flex;
	justify-content: center;
	margin-bottom: calc(var(--bpe-space) * 4);
}

.bpe-contenu__actions .bpe-btn {
	width: 100%;
	text-align: center;
}

.bpe-contenu__gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: calc(var(--bpe-space) * 1);
}

.bpe-contenu__gallery-item {
	margin: 0;
	aspect-ratio: 1;
	overflow: hidden;
	border-radius: var(--bpe-radius-lg);
	border: 1px solid rgba(199, 163, 107, 0.2);
}

.bpe-contenu__gallery-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (min-width: 768px) {
	.bpe-contenu__features {
		grid-template-columns: 1fr 1fr;
		gap: calc(var(--bpe-space) * 4);
	}

	.bpe-contenu__feature {
		padding: calc(var(--bpe-space) * 4);
		background-color: var(--bpe-white);
		border-color: var(--bpe-lin);
	}

	.bpe-contenu__feature-body {
		text-align: left;
	}

	.bpe-contenu__intro {
		text-align: center;
	}

	.bpe-contenu__actions {
		margin-bottom: 0;
	}

	.bpe-contenu__actions .bpe-btn {
		width: auto;
	}

	.bpe-contenu__gallery {
		display: none;
	}
}

@media (min-width: 1024px) {
	.bpe-contenu__features {
		grid-template-columns: 1fr 1fr 1fr;
		gap: calc(var(--bpe-space) * 4);
	}
}

/* -------------------------------------------------------------------------
   Plus qu’un carnet (plus-qu-un-carnet)
   ------------------------------------------------------------------------- */

.bpe-plus {
	background-color: var(--bpe-sauge-clair);
}

.bpe-plus__header {
	max-width: 42rem;
	margin-inline: auto;
	margin-bottom: calc(var(--bpe-space) * 4);
	text-align: center;
}

.bpe-plus__title {
	margin-bottom: calc(var(--bpe-space) * 2);
}

.bpe-plus__intro {
	text-align: justify;
}

.bpe-plus__intro p {
	margin: 0;
	color: rgba(63, 52, 47, 0.8);
}

.bpe-plus__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: calc(var(--bpe-space) * 2);
}

.bpe-plus__card {
	padding: calc(var(--bpe-space) * 3);
	background-color: var(--bpe-ivoire);
	border: 1px solid var(--bpe-ivoire);
	border-radius: calc(var(--bpe-radius-lg) * 1.5);
	box-shadow: 0 1px 3px rgba(63, 52, 47, 0.05);
}

.bpe-plus__card-title {
	margin: 0 0 calc(var(--bpe-space) * 1);
	color: var(--bpe-vert);
	font-family: var(--bpe-font-subtitle);
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.4;
}

.bpe-plus__card-body {
	text-align: justify;
}

.bpe-plus__card-body p {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.6;
	color: rgba(63, 52, 47, 0.8);
}

@media (min-width: 640px) {
	.bpe-plus__grid {
		grid-template-columns: 1fr 1fr;
		gap: calc(var(--bpe-space) * 3);
	}
}

@media (min-width: 768px) {
	.bpe-plus {
		background-color: var(--bpe-white);
	}

	.bpe-plus__header {
		margin-bottom: calc(var(--bpe-space) * 6);
	}

	.bpe-plus__intro {
		text-align: center;
	}

	.bpe-plus__card {
		background-color: var(--bpe-ivoire);
		border-color: rgba(199, 163, 107, 0.3);
		border-radius: var(--bpe-radius-lg);
		box-shadow: none;
	}

	.bpe-plus__card-body {
		text-align: left;
	}
}

@media (min-width: 1024px) {
	.bpe-plus__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* -------------------------------------------------------------------------
   Avant / Après (avant-apres)
   ------------------------------------------------------------------------- */

.bpe-avant {
	background-color: var(--bpe-ivoire);
}

.bpe-avant__header {
	max-width: 48rem;
	margin-inline: auto;
	margin-bottom: calc(var(--bpe-space) * 4);
	text-align: center;
}

.bpe-avant__title {
	margin-bottom: calc(var(--bpe-space) * 2);
}

.bpe-avant__intro {
	text-align: justify;
}

.bpe-avant__intro p {
	margin: 0;
	color: rgba(63, 52, 47, 0.8);
}

.bpe-avant__compare {
	display: flex;
	flex-direction: column;
	gap: calc(var(--bpe-space) * 3);
	max-width: 56rem;
	margin-inline: auto;
}

.bpe-avant__panel {
	position: relative;
	padding: calc(var(--bpe-space) * 3);
	overflow: hidden;
	border-radius: calc(var(--bpe-radius-lg) * 1.5);
}

.bpe-avant__panel--sans {
	background-color: var(--bpe-surface-warm);
	border: 1px solid rgba(63, 52, 47, 0.08);
}

.bpe-avant__panel--sans::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background-color: rgba(242, 147, 132, 0.55);
}

.bpe-avant__panel--avec {
	background-color: rgba(82, 96, 82, 0.05);
	border: 1px solid rgba(82, 96, 82, 0.2);
}

.bpe-avant__panel--avec::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background-color: var(--bpe-vert);
}

/* Mobile: label-md uppercase (beat .bpe-landing h3) */
.bpe-landing h3.bpe-avant__panel-title {
	margin: 0 0 calc(var(--bpe-space) * 2);
	color: inherit;
	font-family: var(--bpe-font-subtitle);
	font-size: 0.875rem;
	/* 14px — mockup label-md */
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1.25rem;
	text-transform: uppercase;
}

.bpe-avant__panel--sans .bpe-avant__panel-title {
	color: rgba(63, 52, 47, 0.6);
}

.bpe-avant__panel--avec .bpe-avant__panel-title {
	color: var(--bpe-vert);
}

.bpe-avant__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.bpe-avant__list li {
	display: flex;
	align-items: flex-start;
	gap: calc(var(--bpe-space) * 1);
	margin-bottom: calc(var(--bpe-space) * 1.5);
	font-size: 0.875rem;
	line-height: 1.5;
	color: rgba(63, 52, 47, 0.8);
}

.bpe-avant__list li span {
	flex: 1;
	min-width: 0;
	text-align: justify;
}

.bpe-avant__list li:last-child {
	margin-bottom: 0;
}

.bpe-avant__panel--avec .bpe-avant__list li {
	color: rgba(63, 52, 47, 0.9);
	font-weight: 500;
}

.bpe-avant__icon {
	flex-shrink: 0;
	margin-top: 0.125rem;
}

.bpe-avant__icon--close {
	color: rgba(242, 147, 132, 0.7);
}

.bpe-avant__icon--check {
	color: var(--bpe-vert);
}

.bpe-avant__divider {
	display: flex;
	justify-content: center;
	margin-block: calc(var(--bpe-space) * -1);
	position: relative;
	z-index: 1;
}

.bpe-avant__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	background-color: var(--bpe-ivoire);
	border: 1px solid rgba(199, 163, 107, 0.2);
	border-radius: 50%;
	color: var(--bpe-corail);
}

.bpe-avant__conclusion {
	max-width: 42rem;
	margin: calc(var(--bpe-space) * 4) auto 0;
	padding: calc(var(--bpe-space) * 3);
	text-align: center;
	background-color: var(--bpe-ivoire);
	border: 1px solid rgba(82, 96, 82, 0.2);
	border-radius: calc(var(--bpe-radius-lg) * 1.5);
	box-shadow: 0 1px 3px rgba(63, 52, 47, 0.05);
}

.bpe-avant__conclusion p {
	margin: 0;
	color: var(--bpe-vert);
	font-weight: 500;
}

@media (min-width: 768px) {
	.bpe-avant {
		background-color: var(--bpe-sauge-clair);
	}

	.bpe-avant__header {
		margin-bottom: calc(var(--bpe-space) * 6);
	}

	.bpe-avant__intro {
		text-align: center;
	}

	.bpe-avant__compare {
		display: flex;
		flex-direction: row;
		align-items: stretch;
		gap: calc(var(--bpe-space) * 4);
	}

	.bpe-avant__divider {
		display: none;
	}

	.bpe-avant__panel {
		display: flex;
		flex-direction: column;
		flex: 1 1 0;
		min-height: 0;
		padding: calc(var(--bpe-space) * 4);
		border-radius: var(--bpe-radius-lg);
	}

	.bpe-avant__panel--sans {
		background-color: rgba(251, 247, 242, 0.6);
		border: none;
	}

	.bpe-avant__panel--sans::before,
	.bpe-avant__panel--avec::before {
		display: none;
	}

	.bpe-avant__panel--avec {
		background-color: var(--bpe-ivoire);
		border: none;
		border-top: 4px solid var(--bpe-vert);
		box-shadow: 0 4px 12px rgba(63, 52, 47, 0.08);
	}

	/* Desktop: title case, larger — still beat .bpe-landing h3 */
	.bpe-landing h3.bpe-avant__panel-title {
		padding-bottom: calc(var(--bpe-space) * 2);
		margin-bottom: calc(var(--bpe-space) * 3);
		font-family: var(--bpe-font-subtitle);
		font-size: 1.125rem;
		font-weight: 600;
		letter-spacing: normal;
		line-height: 1.4;
		text-align: center;
		text-transform: none;
		border-bottom: 1px solid rgba(63, 52, 47, 0.1);
	}

	.bpe-avant__panel--avec .bpe-avant__panel-title {
		border-bottom-color: rgba(199, 163, 107, 0.2);
	}

	.bpe-avant__icon--close {
		color: rgba(63, 52, 47, 0.4);
	}

	.bpe-avant__list li {
		gap: calc(var(--bpe-space) * 1.5);
		margin-bottom: calc(var(--bpe-space) * 2);
	}

	.bpe-avant__list li span {
		text-align: left;
	}

	.bpe-avant__conclusion {
		margin-top: calc(var(--bpe-space) * 6);
		padding: calc(var(--bpe-space) * 3) 0 0;
		background: none;
		border: none;
		border-radius: 0;
		box-shadow: none;
	}

	.bpe-avant__conclusion p {
		font-family: var(--bpe-font-body);
		font-size: 1.125rem;
		font-style: italic;
		font-weight: 600;
		line-height: 1.6;
	}
}

/* -------------------------------------------------------------------------
   Pour qui (pour-qui)
   ------------------------------------------------------------------------- */

.bpe-pour {
	background-color: var(--bpe-lin);
}

.bpe-landing h2.bpe-pour__title {
	margin-bottom: 3rem;
	text-align: center;
}

.bpe-pour__grid {
	display: flex;
	flex-direction: column;
	gap: calc(var(--bpe-space) * 3);
}

.bpe-pour__card {
	display: flex;
	align-items: flex-start;
	gap: calc(var(--bpe-space) * 2);
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
}

.bpe-pour__icon {
	flex-shrink: 0;
	color: var(--bpe-corail);
}

/* Mobile: label-md + text-lg (Montserrat 18px / 600) */
.bpe-landing .bpe-pour__card-title {
	margin: 0 0 calc(var(--bpe-space) * 0.5);
	color: var(--bpe-vert);
	font-family: var(--bpe-font-subtitle);
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.4;
}

.bpe-pour__card-body {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.6;
	color: rgba(63, 52, 47, 0.8);
}

@media (min-width: 768px) {
	.bpe-pour {
		background-color: var(--bpe-ivoire);
	}

	.bpe-landing h2.bpe-pour__title {
		margin-bottom: 3rem;
	}

	.bpe-pour__grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: calc(var(--bpe-space) * 3);
	}

	.bpe-pour__card {
		display: block;
		padding: calc(var(--bpe-space) * 3);
		background-color: rgba(239, 227, 220, 0.5);
		border-radius: var(--bpe-radius-lg);
	}

	.bpe-pour__icon {
		display: none;
	}

	/* Desktop: headline-md (Montserrat 18px / 500) */
	.bpe-landing .bpe-pour__card-title {
		margin-bottom: calc(var(--bpe-space) * 1);
		font-family: var(--bpe-font-subtitle);
		font-weight: 500;
	}
}

@media (min-width: 1024px) {
	.bpe-pour__grid {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

/* -------------------------------------------------------------------------
   Bénéfices (benefices)
   ------------------------------------------------------------------------- */

.bpe-benefices {
	background-color: var(--bpe-ivoire);
}

.bpe-landing h2.bpe-benefices__title {
	margin-bottom: 3rem;
	text-align: center;
}

.bpe-benefices__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: calc(var(--bpe-space) * 2);
	margin-bottom: calc(var(--bpe-space) * 4);
}

.bpe-benefices__item {
	display: flex;
	align-items: center;
	gap: calc(var(--bpe-space) * 2);
	padding: calc(var(--bpe-space) * 2);
	background-color: var(--bpe-lin);
	border: 1px solid rgba(199, 163, 107, 0.2);
	border-radius: calc(var(--bpe-radius-lg) * 1.5);
	box-shadow: 0 1px 3px rgba(63, 52, 47, 0.05);
}

.bpe-benefices__icon-wrap--desktop {
	display: none;
}

.bpe-benefices__icon-wrap--mobile {
	display: flex;
	flex-shrink: 0;
	color: var(--bpe-vert);
}

.bpe-benefices__item-title {
	margin: 0;
	color: var(--bpe-vert);
	font-family: var(--bpe-font-subtitle);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
}

.bpe-benefices__item-body {
	margin: calc(var(--bpe-space) * 0.5) 0 0;
	font-size: 0.875rem;
	/* slightly larger than mockup text-xs for mobile readability */
	line-height: 1.5;
	color: rgba(63, 52, 47, 0.7);
	text-align: justify;
}

.bpe-benefices__footer {
	text-align: center;
}

.bpe-benefices__conclusion {
	margin: 0 0 calc(var(--bpe-space) * 3);
	font-style: italic;
	color: rgba(63, 52, 47, 0.8);
}

.bpe-benefices__cta {
	width: 100%;
}

@media (min-width: 768px) {

	.bpe-avant__intro p {
		margin: 0;
		margin-left: auto;
		margin-right: auto;
		color: rgba(63, 52, 47, 0.8);
	}

	.bpe-benefices {
		background-color: var(--bpe-lin);
	}

	.bpe-landing h2.bpe-benefices__title {
		margin-bottom: 3rem;
	}

	.bpe-benefices__grid {
		grid-template-columns: 1fr 1fr;
		gap: calc(var(--bpe-space) * 5) calc(var(--bpe-space) * 4);
		max-width: 64rem;
		margin-inline: auto;
		margin-bottom: calc(var(--bpe-space) * 6);
	}

	.bpe-benefices__item {
		flex-direction: column;
		align-items: center;
		gap: calc(var(--bpe-space) * 1.5);
		padding: 0;
		text-align: center;
		background: none;
		border: none;
		border-radius: 0;
		box-shadow: none;
	}

	.bpe-benefices__icon-wrap--mobile {
		display: none;
	}

	.bpe-benefices__icon-wrap--desktop {
		display: flex;
		color: var(--bpe-corail);
	}

	.bpe-benefices__item-title {
		font-size: 1.125rem;
	}

	.bpe-benefices__item-body {
		margin-top: 0;
		font-size: 0.875rem;
		color: rgba(63, 52, 47, 0.8);
		text-align: center;
	}

	.bpe-benefices__footer {
		max-width: 42rem;
		margin-inline: auto;
		padding-top: calc(var(--bpe-space) * 4);
		border-top: 1px solid rgba(199, 163, 107, 0.2);
	}

	.bpe-benefices__cta {
		width: auto;
	}
}

@media (min-width: 1024px) {
	.bpe-benefices__grid {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

/* -------------------------------------------------------------------------
   Avis clients (avis)
   Mobile-first = warm band + stacked ivoire cards; desktop resets to ivoire + 3-col white cards
   ------------------------------------------------------------------------- */

.bpe-avis {
	background-color: var(--bpe-sauge-clair);
}

.bpe-avis__header {
	max-width: 42rem;
	margin: 0 auto calc(var(--bpe-space) * 4);
	text-align: center;
}

.bpe-landing h2.bpe-avis__title {
	margin-bottom: calc(var(--bpe-space) * 2);
}

.bpe-avis__intro {
	margin: 0 auto;
	color: rgba(63, 52, 47, 0.8);
	text-align: justify;
}

.bpe-avis__grid {
	display: flex;
	flex-direction: column;
	gap: calc(var(--bpe-space) * 3);
}

.bpe-avis__card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: calc(var(--bpe-space) * 3);
	background-color: var(--bpe-ivoire);
	border: 1px solid var(--bpe-ivoire);
	border-radius: calc(var(--bpe-radius-lg) * 1.5);
	box-shadow: 0 1px 3px rgba(63, 52, 47, 0.05);
}

.bpe-avis__quote-icon {
	position: absolute;
	top: calc(var(--bpe-space) * 2);
	right: calc(var(--bpe-space) * 2);
	color: var(--bpe-champagne);
	opacity: 0.3;
	pointer-events: none;
}

.bpe-avis__stars {
	display: flex;
	gap: 2px;
	margin-bottom: calc(var(--bpe-space) * 1.5);
	color: var(--bpe-champagne);
}

.bpe-avis__star {
	flex-shrink: 0;
}

.bpe-avis__quote {
	margin: 0;
	padding: 0;
	border: none;
}

.bpe-avis__quote p {
	margin: 0 0 calc(var(--bpe-space) * 2);
	max-width: none;
	font-size: 0.875rem;
	font-style: italic;
	line-height: 1.6;
	color: rgba(63, 52, 47, 0.8);
}

.bpe-avis__author {
	margin: 0;
	max-width: none;
	color: var(--bpe-vert);
	font-size: 0.875rem;
	font-weight: 600;
}

.bpe-avis__footer {
	margin-top: calc(var(--bpe-space) * 4);
	text-align: center;
}

.bpe-avis__cta {
	width: 100%;
}

@media (min-width: 768px) {
	.bpe-avis {
		background-color: var(--bpe-ivoire);
	}

	.bpe-avis__header {
		margin-bottom: calc(var(--bpe-space) * 6);
	}

	.bpe-avis__intro {
		text-align: center;
	}

	.bpe-avis__grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: calc(var(--bpe-space) * 3);
	}

	.bpe-avis__card {
		padding: calc(var(--bpe-space) * 4);
		background-color: var(--bpe-white);
		border-radius: var(--bpe-radius-lg);
	}

	.bpe-avis__quote-icon {
		display: none;
	}

	.bpe-avis__stars {
		margin-bottom: calc(var(--bpe-space) * 2);
		color: var(--bpe-corail);
	}

	.bpe-avis__quote p {
		font-size: 1rem;
	}

	.bpe-avis__author {
		margin-top: calc(var(--bpe-space) * 3);
		font-size: 1rem;
		font-weight: 700;
	}

	.bpe-avis__footer {
		margin-top: calc(var(--bpe-space) * 6);
	}

	.bpe-avis__cta {
		width: auto;
	}
}

/* -------------------------------------------------------------------------
   Commander (product / price)
   Mobile-first = stacked intro → image → details; desktop = sauge shell + 2-col ivoire card
   ------------------------------------------------------------------------- */

.bpe-commander {
	background-color: var(--bpe-ivoire);
}

.bpe-commander__card {
	display: flex;
	flex-direction: column;
	gap: calc(var(--bpe-space) * 3);
}

.bpe-commander__intro {
	text-align: center;
}

.bpe-landing h2.bpe-commander__title {
	margin-bottom: calc(var(--bpe-space) * 2);
}

p.bpe-commander__lead {
	margin: 0 auto;
	max-width: 42rem;
	color: rgba(63, 52, 47, 0.8);
}

.bpe-commander__media {
	position: relative;
	display: flex;
	flex-direction: column;
	margin: 0;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border-radius: calc(var(--bpe-radius-lg) * 1.5);
	border: 1px solid rgba(199, 163, 107, 0.2);
	box-shadow: 0 1px 3px rgba(63, 52, 47, 0.05);
}

.bpe-commander-carousel__viewport {
	position: absolute;
	inset: 0;
	display: flex;
	min-width: 0;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	overscroll-behavior-x: contain;
}

.bpe-commander-carousel__viewport::-webkit-scrollbar {
	display: none;
}

.bpe-commander-carousel__track {
	display: contents;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bpe-landing ul.bpe-commander-carousel__track {
	margin: 0;
	padding: 0;
}

.bpe-commander-carousel__slide {
	flex: 0 0 100%;
	width: 100%;
	min-width: 0;
	height: 100%;
	margin: 0;
	padding: 0;
	display: block;
	list-style: none;
	scroll-snap-align: start;
	scroll-snap-stop: always;
}

.bpe-landing li.bpe-commander-carousel__slide {
	margin: 0;
	padding: 0;
}

.bpe-commander-carousel__slide picture {
	display: block;
	width: 100%;
	height: 100%;
}

.bpe-commander__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.bpe-commander-carousel__controls {
	position: absolute;
	inset-inline: calc(var(--bpe-space) * 1);
	bottom: calc(var(--bpe-space) * 1.5);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: calc(var(--bpe-space) * 1);
	pointer-events: none;
	z-index: 1;
}

.bpe-landing button.bpe-commander-carousel__btn,
.bpe-landing button.bpe-commander-carousel__dot {
	appearance: none;
	-webkit-appearance: none;
	margin: 0;
	font: inherit;
	line-height: 1;
	pointer-events: auto;
}

.bpe-landing button.bpe-commander-carousel__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 2.25rem;
	height: 2.25rem;
	min-width: 2.25rem;
	min-height: 2.25rem;
	padding: 0;
	border: 1px solid color-mix(in srgb, var(--bpe-champagne) 40%, transparent);
	border-radius: var(--bpe-radius);
	background-color: var(--bpe-ivoire);
	color: var(--bpe-vert);
	font-size: 1.5rem;
	box-shadow: 0 1px 4px color-mix(in srgb, var(--bpe-brun) 15%, transparent);
	cursor: pointer;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}

.bpe-landing button.bpe-commander-carousel__btn:hover:not(:disabled) {
	background-color: var(--bpe-lin);
	border-color: var(--bpe-champagne);
	color: var(--bpe-vert-hover);
}

.bpe-landing button.bpe-commander-carousel__btn:focus-visible,
.bpe-landing button.bpe-commander-carousel__btn:focus {
	background-color: var(--bpe-ivoire);
	border-color: var(--bpe-champagne);
	color: var(--bpe-vert);
	outline: none;
	box-shadow: var(--bpe-focus-ring);
}

.bpe-landing button.bpe-commander-carousel__btn:disabled {
	opacity: 0.35;
	cursor: default;
}

.bpe-commander-carousel__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 1 auto;
	gap: calc(var(--bpe-space) * 1.25);
	padding: calc(var(--bpe-space) * 1) calc(var(--bpe-space) * 1.5);
	border-radius: 999px;
	background-color: color-mix(in srgb, var(--bpe-ivoire) 90%, transparent);
	border: 1px solid color-mix(in srgb, var(--bpe-champagne) 35%, transparent);
	box-shadow: 0 1px 4px color-mix(in srgb, var(--bpe-brun) 10%, transparent);
}

.bpe-landing button.bpe-commander-carousel__dot {
	display: block;
	flex: 0 0 auto;
	width: 0.625rem;
	height: 0.625rem;
	min-width: 0.625rem;
	min-height: 0.625rem;
	padding: 0;
	border: 2px solid var(--bpe-vert);
	border-radius: 50%;
	background-color: transparent;
	cursor: pointer;
	transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.bpe-landing button.bpe-commander-carousel__dot.is-active,
.bpe-landing button.bpe-commander-carousel__dot[aria-selected="true"] {
	background-color: var(--bpe-vert);
	border-color: var(--bpe-vert);
	transform: scale(1.2);
}

.bpe-landing button.bpe-commander-carousel__dot:hover {
	border-color: var(--bpe-corail);
}

.bpe-landing button.bpe-commander-carousel__dot:focus-visible {
	outline: none;
	box-shadow: var(--bpe-focus-ring);
}

.bpe-commander__features {
	padding: calc(var(--bpe-space) * 3);
	background-color: var(--bpe-surface-warm);
	border: 1px solid rgba(199, 163, 107, 0.2);
	border-radius: calc(var(--bpe-radius-lg) * 1.5);
}

.bpe-landing h3.bpe-commander__features-title {
	margin: 0 0 calc(var(--bpe-space) * 2);
	font-family: var(--bpe-font-subtitle);
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.4;
}

.bpe-commander__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: calc(var(--bpe-space) * 1);
	margin: 0;
	padding-left: 1.25rem;
	font-size: 0.875rem;
	line-height: 1.5;
	color: rgba(63, 52, 47, 0.8);
}

.bpe-commander__list li {
	margin: 0;
}

/* Mobile: space features card from price block (mockup gap-6 + mt-4 ≈ 40px) */
.bpe-commander__details {
	display: flex;
	flex-direction: column;
	gap: calc(var(--bpe-space) * 5);
}

.bpe-commander__purchase {
	text-align: center;
}

p.bpe-commander__price {
	margin: 0;
	max-width: none;
	color: var(--bpe-vert);
	font-family: var(--bpe-font-display);
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.1;
}

p.bpe-commander__availability {
	margin: calc(var(--bpe-space) * 1) 0 0;
	max-width: none;
	font-size: 0.875rem;
	color: rgba(63, 52, 47, 0.8);
}

.bpe-commander__cta {
	width: 100%;
	margin-top: calc(var(--bpe-space) * 2);
}

.bpe-landing p.bpe-commander__micro {
	margin: calc(var(--bpe-space) * 2) 0 0;
	max-width: none;
	font-size: 0.875rem;
	color: rgba(63, 52, 47, 0.65);
}

@media (min-width: 640px) {
	.bpe-commander__list {
		grid-template-columns: 1fr 1fr;
		gap: calc(var(--bpe-space) * 1) calc(var(--bpe-space) * 4);
	}
}


@media (min-width: 768px) {
	.bpe-commander {
		background-color: var(--bpe-lin);
	}

	.bpe-commander__features {
		background-color: var(--bpe-ivoire);
	}
}

@media (min-width: 1024px) {
	.bpe-commander {
		background-color: var(--bpe-sauge-clair);
	}

	.bpe-commander__card {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-areas:
			"media intro"
			"media details";
		gap: 0;
		overflow: hidden;
		background-color: var(--bpe-ivoire);
		border-radius: 1rem;
		box-shadow: 0 20px 40px rgba(63, 52, 47, 0.12);
	}

	.bpe-commander__intro {
		grid-area: intro;
		padding: calc(var(--bpe-space) * 6) calc(var(--bpe-space) * 6) 0;
		text-align: left;
	}

	p.bpe-commander__lead {
		margin: 0;
		max-width: none;
	}

	.bpe-commander__media {
		grid-area: media;
		display: flex;
		flex-direction: column;
		align-self: stretch;
		min-height: 400px;
		aspect-ratio: auto;
		border: none;
		border-radius: 0;
		box-shadow: none;
	}

	.bpe-commander__img {
		object-position: center top;
	}

	.bpe-commander-carousel__slide--focus-right .bpe-commander__img {
		object-position: right top;
	}

	.bpe-commander-carousel__slide--focus-left .bpe-commander__img {
		object-position: left top;
	}

	.bpe-commander__details {
		grid-area: details;
		display: flex;
		flex-direction: column;
		gap: calc(var(--bpe-space) * 3);
		padding: calc(var(--bpe-space) * 3) calc(var(--bpe-space) * 6) calc(var(--bpe-space) * 6);
	}

	.bpe-commander__features {
		padding: calc(var(--bpe-space) * 2);
		background-color: rgba(239, 227, 220, 0.5);
		border: none;
		border-radius: var(--bpe-radius-lg);
	}

	.bpe-landing h3.bpe-commander__features-title {
		margin-bottom: calc(var(--bpe-space) * 1);
		font-size: 0.875rem;
		font-weight: 700;
		letter-spacing: 0.05em;
		text-transform: uppercase;
	}

	.bpe-commander__purchase {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		padding-top: calc(var(--bpe-space) * 2);
		border-top: 1px solid rgba(199, 163, 107, 0.2);
		text-align: left;
	}

	p.bpe-commander__price {
		order: 1;
		margin-bottom: calc(var(--bpe-space) * 2);
		font-size: 2.25rem;
		font-weight: 600;
	}

	.bpe-commander__cta {
		order: 2;
		width: auto;
		margin-top: 0;
	}

	.bpe-landing p.bpe-commander__micro {
		order: 3;
		margin-top: calc(var(--bpe-space) * 1.5);
		font-size: 0.75rem;
		text-align: left;
	}

	p.bpe-commander__availability {
		order: 4;
		margin-top: calc(var(--bpe-space) * 0.5);
		font-size: 0.75rem;
		color: rgba(63, 52, 47, 0.6);
	}
}

/* -------------------------------------------------------------------------
   Livraison / paiement (livraison-paiement)
   Mobile-first = lin-rosé + bordered cards; desktop = ivoire + flat 3-col
   ------------------------------------------------------------------------- */

.bpe-livraison {
	background-color: var(--bpe-lin);
}

.bpe-landing h2.bpe-livraison__title {
	margin-bottom: calc(var(--bpe-space) * 4);
	text-align: center;
}

.bpe-livraison__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: calc(var(--bpe-space) * 3);
}

.bpe-livraison__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: calc(var(--bpe-space) * 1.5);
	padding: calc(var(--bpe-space) * 3);
	text-align: center;
	background-color: var(--bpe-ivoire);
	border: 1px solid rgba(199, 163, 107, 0.2);
	border-radius: calc(var(--bpe-radius-lg) * 1.5);
	box-shadow: 0 1px 3px rgba(63, 52, 47, 0.05);
}

.bpe-livraison__icon-wrap {
	color: var(--bpe-corail);
}

.bpe-livraison__icon-wrap--desktop {
	display: none;
}

.bpe-livraison__icon-wrap--mobile {
	display: flex;
}

.bpe-landing h3.bpe-livraison__item-title {
	margin: 0;
	font-family: var(--bpe-font-subtitle);
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.4;
}

.bpe-livraison__item-body {
	margin: 0;
	max-width: none;
	font-size: 0.875rem;
	line-height: 1.6;
	color: rgba(63, 52, 47, 0.8);
}

@media (min-width: 768px) {
	.bpe-livraison {
		background-color: var(--bpe-ivoire);
	}

	.bpe-landing h2.bpe-livraison__title {
		margin-bottom: calc(var(--bpe-space) * 6);
	}

	.bpe-livraison__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: calc(var(--bpe-space) * 4);
		max-width: 56rem;
		margin-inline: auto;
	}

	.bpe-livraison__item {
		gap: calc(var(--bpe-space) * 2);
		padding: 0;
		background: none;
		border: none;
		border-radius: 0;
		box-shadow: none;
	}

	.bpe-livraison__icon-wrap--mobile {
		display: none;
	}

	.bpe-livraison__icon-wrap--desktop {
		display: flex;
	}

	.bpe-landing h3.bpe-livraison__item-title {
		font-family: var(--bpe-font-subtitle);
		font-size: 1.125rem;
		font-weight: 500;
	}
}

/* -------------------------------------------------------------------------
   FAQ
   Mobile-first = ivoire section + surface-warm items; desktop = lin + ivoire items
   Constrained column (~48rem) for title + accordion
   ------------------------------------------------------------------------- */

.bpe-faq {
	background-color: var(--bpe-ivoire);
}

.bpe-faq__inner {
	max-width: 48rem;
	margin-inline: auto;
	padding-inline: var(--bpe-gutter);
}

.bpe-landing h2.bpe-faq__title {
	margin-bottom: calc(var(--bpe-space) * 4);
	text-align: center;
}

.bpe-faq__list {
	display: flex;
	flex-direction: column;
	gap: calc(var(--bpe-space) * 2);
}

.bpe-faq__item {
	padding: calc(var(--bpe-space) * 2);
	background-color: var(--bpe-surface-warm);
	border: 1px solid rgba(199, 163, 107, 0.2);
	border-radius: var(--bpe-radius-lg);
	box-shadow: 0 1px 2px rgba(63, 52, 47, 0.04);
}

.bpe-faq__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: calc(var(--bpe-space) * 2);
	cursor: pointer;
	list-style: none;
	font-family: var(--bpe-font-subtitle);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
	color: var(--bpe-vert);
}

.bpe-faq__summary::-webkit-details-marker {
	display: none;
}

.bpe-faq__summary::marker {
	content: '';
}

.bpe-faq__summary:focus-visible {
	outline: none;
	box-shadow: var(--bpe-focus-ring);
	border-radius: var(--bpe-radius);
}

.bpe-faq__question {
	flex: 1;
	text-align: left;
}

.bpe-faq__chevron {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bpe-vert);
	transition: transform 0.2s ease;
}

.bpe-faq__item[open] .bpe-faq__chevron {
	transform: rotate(180deg);
}

.bpe-faq__answer {
	margin-top: calc(var(--bpe-space) * 1.5);
	padding-top: calc(var(--bpe-space) * 1.5);
	border-top: 1px solid rgba(199, 163, 107, 0.2);
}

.bpe-faq__answer p {
	margin: 0 0 calc(var(--bpe-space) * 1.5);
	font-size: 0.875rem;
	line-height: 1.6;
	color: rgba(63, 52, 47, 0.8);
	text-align: justify;
}

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

@media (min-width: 768px) {
	.bpe-faq {
		background-color: var(--bpe-lin);
	}

	.bpe-landing h2.bpe-faq__title {
		margin-bottom: calc(var(--bpe-space) * 5);
	}

	.bpe-faq__list {
		gap: calc(var(--bpe-space) * 3);
	}

	.bpe-faq__item {
		padding: 0;
		background-color: var(--bpe-ivoire);
		box-shadow: 0 1px 3px rgba(63, 52, 47, 0.05);
	}

	.bpe-faq__summary {
		padding: calc(var(--bpe-space) * 3);
		font-family: var(--bpe-font-subtitle);
		font-size: 1.125rem;
		font-weight: 500;
	}

	.bpe-faq__answer {
		margin-top: 0;
		padding: 0 calc(var(--bpe-space) * 3) calc(var(--bpe-space) * 3);
		border-top-color: rgba(199, 163, 107, 0.1);
	}

	.bpe-faq__answer p {
		margin-bottom: calc(var(--bpe-space) * 1.5);
		text-align: left;
	}
}

/* -------------------------------------------------------------------------
   CTA final
   Mobile = lin-rosé + photo + primary button; desktop = vert band, inverted CTA
   ------------------------------------------------------------------------- */

.bpe-cta-final {
	background-color: var(--bpe-lin);
	text-align: center;
}

/* Mobile: flex gap avoids collapsed margins (mockup gap-8 ≈ 2rem). */
.bpe-cta-final>.bpe-container {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.bpe-cta-final__intro {
	display: flex;
	flex-direction: column;
	gap: calc(var(--bpe-space) * 3);
}

.bpe-landing h2.bpe-cta-final__title {
	margin: 0;
	color: var(--bpe-vert);
}

.bpe-cta-final__prose {
	display: flex;
	flex-direction: column;
	gap: calc(var(--bpe-space) * 2);
	text-align: justify;
}

.bpe-cta-final__prose p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(63, 52, 47, 0.8);
}

.bpe-cta-final__simple-extra {
	display: none;
}

.bpe-cta-final__list {
	margin: 0;
	padding: 0 0 0 calc(var(--bpe-space) * 2);
	list-style: none;
	border-left: 2px solid rgba(82, 96, 82, 0.2);
}

.bpe-cta-final__list li {
	margin: 0 0 calc(var(--bpe-space) * 1);
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(63, 52, 47, 0.8);
}

.bpe-cta-final__list li:last-child {
	margin-bottom: 0;
}

.bpe-cta-final__highlight {
	margin: 0;
	padding: calc(var(--bpe-space) * 3);
	text-align: center;
	background-color: var(--bpe-ivoire);
	border: 1px solid rgba(82, 96, 82, 0.2);
	border-radius: calc(var(--bpe-radius-lg) * 1.5);
	box-shadow: 0 1px 3px rgba(63, 52, 47, 0.05);
}

.bpe-landing h3.bpe-cta-final__highlight-title {
	margin: 0 0 calc(var(--bpe-space) * 1);
	font-family: var(--bpe-font-subtitle);
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.35;
	color: var(--bpe-vert);
	text-align: center;
}

.bpe-cta-final__highlight-lines {
	display: flex;
	flex-direction: column;
	gap: calc(var(--bpe-space) * 0.5);
	text-align: center;
}

.bpe-cta-final__highlight-lines p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(82, 96, 82, 0.8);
}

.bpe-cta-final__media {
	position: relative;
	width: 100%;
	margin: 0;
	overflow: hidden;
	border: 1px solid rgba(199, 163, 107, 0.2);
	border-radius: calc(var(--bpe-radius-lg) * 1.5);
	box-shadow: 0 1px 3px rgba(63, 52, 47, 0.05);
}

.bpe-cta-final__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bpe-cta-final__actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: calc(var(--bpe-space) * 1);
	margin: 0;
	/* Extra air under the photo (mockup mt-4 on top of gap-8). */
	padding-top: calc(var(--bpe-space) * 2);
}

.bpe-cta-final__cta,
.bpe-landing a.bpe-cta-final__cta {
	width: 100%;
	padding-block: calc(var(--bpe-space) * 2);
	font-size: 1.125rem;
}

.bpe-landing p.bpe-cta-final__micro {
	margin: 0;
	font-size: 0.75rem;
	line-height: 1.5;
	text-align: center;
	color: rgba(63, 52, 47, 0.7);
}

@media (min-width: 768px) {
	.bpe-cta-final {
		background-color: var(--bpe-vert);
		color: var(--bpe-ivoire);
	}

	.bpe-cta-final>.bpe-container {
		gap: calc(var(--bpe-space) * 5);
	}

	.bpe-cta-final__intro {
		max-width: 42rem;
		margin-inline: auto;
		gap: calc(var(--bpe-space) * 3);
		text-align: center;
	}

	.bpe-landing h2.bpe-cta-final__title {
		color: var(--bpe-ivoire);
	}

	.bpe-cta-final__prose {
		gap: calc(var(--bpe-space) * 2);
		text-align: center;
	}

	.bpe-cta-final__prose p {
		font-size: 1.125rem;
		color: rgba(251, 247, 242, 0.8);
	}

	.bpe-cta-final__simple-extra {
		display: inline;
	}

	.bpe-cta-final__list-lead {
		display: none;
	}

	.bpe-cta-final__list {
		padding: calc(var(--bpe-space) * 2) 0;
		border-left: none;
	}

	.bpe-cta-final__list li {
		margin-bottom: calc(var(--bpe-space) * 1);
		font-size: 1.125rem;
		color: rgba(251, 247, 242, 0.8);
	}

	.bpe-cta-final__highlight {
		max-width: 50rem;
		margin-inline: auto;
		padding: calc(var(--bpe-space) * 4) 0 0;
		text-align: center;
		background: none;
		border: none;
		border-top: 1px solid rgba(251, 247, 242, 0.2);
		border-radius: 0;
		box-shadow: none;
	}

	.bpe-landing h3.bpe-cta-final__highlight-title {
		margin-bottom: calc(var(--bpe-space) * 3);
		font-size: 1.875rem;
		font-weight: 500;
		color: var(--bpe-corail);
	}

	/* Match mockup: stacked headline-lg lines with space-y-4, centered. */
	.bpe-cta-final__highlight-lines {
		align-items: center;
		gap: calc(var(--bpe-space) * 2);
		text-align: center;
	}

	.bpe-cta-final__highlight-lines p {
		max-width: none;
		margin-inline: auto;
		font-family: var(--bpe-font-display);
		font-size: 2rem;
		font-weight: 600;
		line-height: 2.5rem;
		text-align: center;
		color: var(--bpe-ivoire);
	}

	.bpe-cta-final__media {
		display: none;
	}

	.bpe-cta-final__actions {
		align-items: center;
		padding-top: 0;
	}

	.bpe-cta-final__cta,
	.bpe-landing a.bpe-cta-final__cta {
		width: auto;
		padding: calc(var(--bpe-space) * 2.5) calc(var(--bpe-space) * 5);
		background-color: var(--bpe-ivoire);
		color: var(--bpe-vert);
		font-size: 1.125rem;
		box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
	}

	.bpe-cta-final__cta:hover,
	.bpe-landing a.bpe-cta-final__cta:hover {
		background-color: var(--bpe-surface-warm);
		color: var(--bpe-vert);
	}

	.bpe-cta-final__cta:visited,
	.bpe-landing a.bpe-cta-final__cta:visited {
		color: var(--bpe-vert);
	}

	.bpe-landing p.bpe-cta-final__micro {
		margin-top: calc(var(--bpe-space) * 2);
		color: rgba(251, 247, 242, 0.6);
	}
}

/* -------------------------------------------------------------------------
   Mobile sticky cart
   ------------------------------------------------------------------------- */

.bpe-sticky-cart {
	display: none;
}

@media (max-width: 767px) {
	.bpe-sticky-cart {
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: 40;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: calc(var(--bpe-space) * 2);
		width: 100%;
		padding: calc(var(--bpe-space) * 2) calc(var(--bpe-space) * 3);
		background-color: rgba(241, 223, 215, 0.95);
		border-top: 1px solid rgba(199, 163, 107, 0.2);
		box-shadow: 0 -4px 20px rgba(84, 98, 84, 0.15);
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
		transform: translateY(150%);
		transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
		pointer-events: none;
	}

	.bpe-sticky-cart.is-visible {
		transform: translateY(0);
		pointer-events: auto;
	}

	.bpe-sticky-cart__info {
		display: flex;
		flex-direction: column;
		gap: 2px;
		min-width: 0;
	}

	.bpe-sticky-cart__label {
		font-family: var(--bpe-font-body);
		font-size: 0.875rem;
		font-weight: 600;
		line-height: 1.3;
		color: var(--bpe-vert);
	}

	.bpe-sticky-cart__price {
		font-size: 0.75rem;
		line-height: 1.3;
		color: rgba(63, 52, 47, 0.7);
	}

	.bpe-sticky-cart__cta,
	.bpe-landing a.bpe-sticky-cart__cta {
		flex-shrink: 0;
		padding: calc(var(--bpe-space) * 1) calc(var(--bpe-space) * 3);
		/* Mobile mockup rounded-full token = 0.75rem */
		border-radius: 0.75rem;
		font-size: 0.875rem;
		/* Mobile sticky cart mockup: sentence case (no uppercase class). */
		text-transform: none;
	}

	body.bpe-sticky-cart-visible .bpe-cta-final {
		padding-bottom: calc(var(--bpe-section-pad) + 4.5rem);
	}

	body.bpe-sticky-cart-visible .bpe-landing-footer {
		padding-bottom: calc(var(--bpe-section-pad) + 5rem);
	}
}

/* -------------------------------------------------------------------------
   Landing footer
   ------------------------------------------------------------------------- */

.bpe-landing-footer {
	position: relative;
	z-index: 51;
	padding-block: var(--bpe-section-pad);
	padding-inline: var(--bpe-gutter);
	background-color: var(--bpe-vert);
	color: var(--bpe-ivoire);
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bpe-landing-footer__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: calc(var(--bpe-space) * 4);
	max-width: var(--bpe-container);
	margin-inline: auto;
}

.bpe-landing-footer__brand {
	margin: 0;
	font-family: var(--bpe-font-display);
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: -0.01em;
	color: var(--bpe-ivoire);
}

.bpe-landing-footer__nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: calc(var(--bpe-space) * 3);
}

.bpe-landing-footer__link,
.bpe-landing a.bpe-landing-footer__link {
	font-size: 1rem;
	line-height: 1.5;
	color: rgba(251, 247, 242, 0.8);
	text-decoration: none !important;
}

.bpe-landing-footer__link:hover,
.bpe-landing a.bpe-landing-footer__link:hover {
	color: var(--bpe-ivoire);
}

.bpe-landing-footer__link:visited,
.bpe-landing a.bpe-landing-footer__link:visited {
	color: rgba(251, 247, 242, 0.8);
}

.bpe-landing-footer__social {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: calc(var(--bpe-space) * 2);
}

.bpe-landing-footer__social-link,
.bpe-landing a.bpe-landing-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	color: var(--bpe-ivoire);
	text-decoration: none !important;
	transition: opacity 0.15s ease;
}

.bpe-landing-footer__social-link:hover,
.bpe-landing a.bpe-landing-footer__social-link:hover {
	color: var(--bpe-ivoire);
	opacity: 0.8;
}

.bpe-landing-footer__social-link:visited,
.bpe-landing a.bpe-landing-footer__social-link:visited {
	color: var(--bpe-ivoire);
}

.bpe-landing-footer__social-icon {
	display: block;
	flex-shrink: 0;
}

.bpe-landing-footer__copy {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.5;
	color: rgba(251, 247, 242, 0.6);
}

@media (min-width: 768px) {
	.bpe-landing-footer__social {
		gap: calc(var(--bpe-space) * 3);
	}

	.bpe-landing-footer__social-link,
	.bpe-landing a.bpe-landing-footer__social-link {
		width: 24px;
		height: 24px;
	}
}

/* -------------------------------------------------------------------------
   Accessibility
   ------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

	.bpe-landing,
	.bpe-landing *,
	.bpe-landing *::before,
	.bpe-landing *::after,
	.bpe-header,
	.bpe-header *,
	.bpe-drawer,
	.bpe-drawer *,
	.bpe-sticky-cart,
	.bpe-landing-footer,
	.bpe-landing-footer * {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}