/* ==========================================================================
   LUEUR D'ESPOIR — Thème enfant Astra
   Palette chaleureuse & moderne, inspirée du logo (nuit étoilée + feu sacré)
   ========================================================================== */

:root {
	--lde-navy:       #0a1a3a;
	--lde-navy-deep:  #050d22;
	--lde-navy-soft:  #1a2b52;
	--lde-gold:       #e8b86d;          /* Décoratif uniquement (sur navy) */
	--lde-gold-text:  #a86f1f;          /* Or contrasté pour texte sur fond crème — WCAG AA */
	--lde-gold-light: #f7d27d;
	--lde-ember:      #e76f51;
	--lde-ember-deep: #c84e2f;
	--lde-ember-text: #b8482a;          /* Ember contrasté pour texte sur fond clair */
	--lde-cream:      #faf3e7;
	--lde-ivory:      #fdfaf3;
	--lde-text:       #1a1f3a;
	--lde-text-soft:  #4a5170;
	--lde-line:       #e7e0cf;

	--lde-radius:     14px;
	--lde-radius-lg:  22px;
	--lde-shadow:     0 6px 24px rgba(10, 26, 58, .08);
	--lde-shadow-lg:  0 18px 50px rgba(10, 26, 58, .14);

	--lde-font-title: "Cormorant Garamond", "Playfair Display", Georgia, serif;
	--lde-font-body:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

	--lde-grad-night:  radial-gradient(ellipse at 70% 20%, #1a2b52 0%, #0a1a3a 60%, #050d22 100%);
	--lde-grad-ember:  linear-gradient(135deg, #f7d27d 0%, #e8b86d 40%, #e76f51 100%);
	--lde-grad-fade:   linear-gradient(180deg, var(--lde-ivory) 0%, var(--lde-cream) 100%);
}

/* === Base === */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.lde-body {
	font-family: var(--lde-font-body);
	color: var(--lde-text);
	background: var(--lde-ivory);
	line-height: 1.7;
	font-size: 17px;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--lde-navy); transition: color .25s; }
a:hover { color: var(--lde-ember); }

h1, h2, h3, h4 {
	font-family: var(--lde-font-title);
	color: var(--lde-navy);
	line-height: 1.2;
	margin: 1.4em 0 .6em;
	font-weight: 600;
}
h1 { font-size: clamp(2.1rem, 4vw, 3.4rem); letter-spacing: -.5px; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

.lde-lead {
	font-size: 1.18rem;
	color: var(--lde-text-soft);
	font-weight: 400;
}

/* === Layout === */
.lde-main { min-height: 60vh; }
.lde-page-content,
.lde-single-content,
.lde-archive,
.lde-search-results,
.lde-page-header,
.lde-single-header,
.lde-single-footer {
	max-width: 980px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 22px;
	padding-right: 22px;
}
.lde-page-content,
.lde-single-content {
	padding-top: 24px;
	padding-bottom: 60px;
}

/* === Header === */
.lde-site-header {
	background: var(--lde-ivory);
	border-bottom: 1px solid var(--lde-line);
	position: sticky; top: 0; z-index: 100;
	background: rgba(253, 250, 243, 0.96);
}
@supports (backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px)) {
	.lde-site-header {
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		background: rgba(253, 250, 243, 0.85);
	}
}
.lde-header-inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 14px 22px;
	display: flex; align-items: center; justify-content: space-between;
	gap: 16px;
}
.lde-brand-link {
	display: flex; align-items: center; gap: 12px;
	text-decoration: none; color: var(--lde-navy);
}
.lde-logo-mark svg { width: 48px; height: 48px; display: block; }
.lde-brand-name { display: flex; flex-direction: column; line-height: 1.1; }
.lde-brand-title {
	font-family: var(--lde-font-title);
	font-size: 1.45rem; font-weight: 600;
	color: var(--lde-navy);
}
.lde-brand-tagline {
	font-size: .78rem;
	color: var(--lde-text-soft);
	letter-spacing: .5px; text-transform: uppercase;
}

.lde-primary-nav { display: flex; align-items: center; gap: 22px; flex-wrap: nowrap; }
.lde-menu {
	list-style: none; margin: 0; padding: 0;
	display: flex; gap: 4px; align-items: center;
	flex-wrap: nowrap;
}
.lde-menu li { position: relative; }
.lde-menu a {
	text-decoration: none;
	color: var(--lde-navy);
	font-weight: 500;
	font-size: .94rem;
	padding: 8px 12px;
	border-radius: 10px;
	white-space: nowrap;
	position: relative;
	transition: all .25s;
}
.lde-menu a::after {
	content: "";
	position: absolute; left: 50%; bottom: 4px;
	width: 0; height: 2px;
	background: var(--lde-grad-ember);
	border-radius: 2px;
	transform: translateX(-50%);
	transition: width .25s;
}
.lde-menu a:hover { color: var(--lde-ember); }
.lde-menu a:hover::after { width: calc(100% - 24px); }

.lde-menu .sub-menu {
	display: none;
	position: absolute; top: 100%; left: 0;
	background: var(--lde-ivory);
	box-shadow: var(--lde-shadow);
	border-radius: var(--lde-radius);
	min-width: 240px;
	padding: 10px 0;
	list-style: none;
	margin: 0;
}
.lde-menu li:hover > .sub-menu { display: block; }
.lde-menu .sub-menu li { padding: 0; }
.lde-menu .sub-menu a {
	display: block; padding: 8px 18px; border: 0;
}

.lde-header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.lde-header-phone {
	display: inline-flex; align-items: center; gap: 6px;
	background: var(--lde-grad-ember);
	color: #fff !important;
	padding: 9px 18px;
	border-radius: 999px;
	font-weight: 600;
	font-size: .88rem;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(231, 111, 81, .35);
	transition: transform .2s, box-shadow .2s;
	white-space: nowrap;
	line-height: 1;
}
.lde-header-phone:hover {
	transform: translateY(-1px);
	color: #fff !important;
	box-shadow: 0 8px 22px rgba(231, 111, 81, .45);
}
@media (max-width: 1180px) {
	.lde-menu { gap: 0; }
	.lde-menu a { padding: 8px 10px; font-size: .9rem; }
}
@media (max-width: 1040px) {
	.lde-header-phone { padding: 9px; width: 40px; height: 40px; justify-content: center; }
	.lde-header-phone-num { display: none; }
	.lde-header-phone svg { width: 18px; height: 18px; }
}

.lde-lang-switch {
	display: flex; gap: 6px; align-items: center;
	font-size: .85rem; color: var(--lde-text-soft);
}
.lde-lang {
	text-decoration: none; padding: 4px 8px;
	border-radius: 6px; color: var(--lde-navy);
	font-weight: 600;
}
.lde-lang.is-active { background: var(--lde-navy); color: var(--lde-gold-light); }

.lde-burger {
	display: none; background: none; border: 0; cursor: pointer;
	width: 40px; height: 40px; padding: 0; position: relative;
}
.lde-burger span {
	display: block; width: 24px; height: 2px;
	background: var(--lde-navy);
	margin: 5px auto;
	transition: all .25s;
}
.lde-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lde-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.lde-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === Hero === */
.lde-hero {
	position: relative;
	background: var(--lde-grad-night);
	color: var(--lde-cream);
	padding: clamp(80px, 14vw, 160px) 22px clamp(80px, 14vw, 140px);
	text-align: center;
	overflow: hidden;
}
.lde-hero-stars {
	position: absolute; inset: 0;
	background-image:
		radial-gradient(1px 1px at 12% 22%, #fff 50%, transparent),
		radial-gradient(1px 1px at 38% 64%, #fff 50%, transparent),
		radial-gradient(1px 1px at 65% 18%, #fff 50%, transparent),
		radial-gradient(2px 2px at 85% 48%, #fff 50%, transparent),
		radial-gradient(1px 1px at 22% 82%, #f7d27d 50%, transparent),
		radial-gradient(1.5px 1.5px at 78% 88%, #f7d27d 50%, transparent),
		radial-gradient(1px 1px at 50% 35%, #fff 50%, transparent);
	opacity: .85;
	animation: lde-twinkle 6s ease-in-out infinite;
}
.lde-hero-inner { position: relative; max-width: 880px; margin: 0 auto; }
.lde-hero-title {
	font-size: clamp(2.8rem, 7vw, 5.2rem);
	color: var(--lde-cream);
	margin: 0 0 .4em;
	letter-spacing: -1px;
}
.lde-hero-title::after {
	content: "";
	display: block;
	width: 80px; height: 3px;
	background: var(--lde-grad-ember);
	margin: 18px auto 0;
	border-radius: 4px;
}
.lde-hero-subtitle {
	font-size: 1.15rem;
	color: var(--lde-gold-light);
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin: 0 0 24px;
	font-weight: 500;
}
.lde-hero-baseline {
	font-family: var(--lde-font-title);
	font-style: italic;
	font-size: clamp(1.15rem, 2vw, 1.6rem);
	color: rgba(250, 243, 231, .92);
	max-width: 720px;
	margin: 0 auto 36px;
	line-height: 1.5;
}
.lde-hero-cta {
	display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* === Boutons === */
.lde-btn {
	display: inline-block;
	padding: 14px 28px;
	border-radius: 30px;
	font-weight: 600;
	text-decoration: none;
	font-size: .98rem;
	letter-spacing: .3px;
	transition: all .25s;
	border: 2px solid transparent;
	cursor: pointer;
}
.lde-btn-primary {
	background: var(--lde-grad-ember);
	color: #fff !important;
	box-shadow: 0 8px 24px rgba(231, 111, 81, .35);
}
.lde-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(231, 111, 81, .45);
	color: #fff !important;
}
.lde-btn-ghost {
	background: transparent;
	color: var(--lde-cream) !important;
	border-color: rgba(247, 210, 125, .5);
}
.lde-btn-ghost:hover {
	background: rgba(247, 210, 125, .15);
	border-color: var(--lde-gold-light);
	color: var(--lde-gold-light) !important;
}
.lde-page-content .lde-btn-ghost,
.lde-single-content .lde-btn-ghost {
	color: var(--lde-navy) !important;
	border-color: var(--lde-navy);
}
.lde-page-content .lde-btn-ghost:hover,
.lde-single-content .lde-btn-ghost:hover {
	background: var(--lde-navy);
	color: var(--lde-cream) !important;
}

/* === Services grid === */
.lde-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 22px;
	margin: 36px auto;
	max-width: 1100px;
	padding: 0 22px;
}
.lde-service-card {
	display: flex; flex-direction: column;
	background: #fff;
	border-radius: var(--lde-radius-lg);
	padding: 32px 26px;
	text-decoration: none;
	color: var(--lde-text);
	box-shadow: var(--lde-shadow);
	border: 1px solid var(--lde-line);
	transition: all .3s;
	position: relative;
	overflow: hidden;
}
.lde-service-card::before {
	content: "";
	position: absolute; top: 0; left: 0; right: 0; height: 4px;
	background: var(--lde-grad-ember);
	transform: scaleX(0); transform-origin: left;
	transition: transform .35s;
}
.lde-service-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--lde-shadow-lg);
}
.lde-service-card:hover::before { transform: scaleX(1); }
.lde-service-icon {
	font-size: 2rem;
	margin-bottom: 12px;
	display: inline-block;
}
.lde-service-title {
	font-size: 1.3rem;
	margin: 0 0 10px;
}
.lde-service-desc {
	color: var(--lde-text-soft);
	margin: 0 0 18px;
	flex: 1;
}
.lde-service-link {
	color: var(--lde-ember);
	font-weight: 600;
	font-size: .92rem;
}

/* === Tarifs === */
.lde-tarifs {
	display: grid; gap: 32px;
	max-width: 900px;
	margin: 30px auto;
}
.lde-tarif-group {
	background: #fff;
	border-radius: var(--lde-radius-lg);
	padding: 32px 30px;
	box-shadow: var(--lde-shadow);
	border-left: 4px solid var(--lde-ember);
}
.lde-tarif-group h2 { margin-top: 0; }
.lde-tarif-list {
	list-style: none; margin: 18px 0 0; padding: 0;
}
.lde-tarif-list li {
	display: flex; justify-content: space-between; align-items: center;
	gap: 16px;
	padding: 14px 0;
	border-bottom: 1px dashed var(--lde-line);
}
.lde-tarif-list li:last-child { border-bottom: 0; }
.lde-t-label { flex: 1; }
.lde-t-price {
	font-family: var(--lde-font-title);
	font-size: 1.7rem;
	color: var(--lde-ember);
	font-weight: 600;
}
.lde-tarif-note, .lde-tarif-info {
	margin-top: 18px;
	padding: 16px;
	background: var(--lde-cream);
	border-radius: var(--lde-radius);
	font-size: .94rem;
	color: var(--lde-text-soft);
	font-style: italic;
}
.lde-tarif-cta {
	text-align: center;
	display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* === Paiement === */
.lde-paiement { max-width: 1000px; margin: 0 auto; }
.lde-paiement-intro {
	text-align: center;
	font-size: 1.1rem;
	color: var(--lde-text-soft);
	margin-bottom: 28px;
}
.lde-pay-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 18px;
	margin: 30px 0;
}
.lde-pay-card {
	background: #fff;
	border-radius: var(--lde-radius-lg);
	padding: 26px;
	box-shadow: var(--lde-shadow);
	text-decoration: none;
	color: var(--lde-text);
	transition: transform .25s, box-shadow .25s;
	display: flex; flex-direction: column; align-items: flex-start;
}
.lde-pay-card:not(.lde-pay-static):hover {
	transform: translateY(-4px);
	box-shadow: var(--lde-shadow-lg);
}
.lde-pay-icon { font-size: 2rem; margin-bottom: 10px; }
.lde-pay-card h3 { margin: 0 0 10px; font-size: 1.25rem; }
.lde-pay-card p { margin: 0 0 12px; color: var(--lde-text-soft); }
.lde-pay-action {
	margin-top: auto;
	color: var(--lde-ember);
	font-weight: 600;
}
.lde-pay-static { background: var(--lde-cream); }
.lde-iban { font-size: .88rem; line-height: 1.7; }
.lde-mono {
	font-family: ui-monospace, "SF Mono", Menlo, monospace;
	font-size: .82rem;
	background: rgba(10, 26, 58, .05);
	padding: 2px 6px;
	border-radius: 4px;
	word-break: break-all;
}
.lde-paiement-confirm {
	margin-top: 28px;
	padding: 22px;
	background: var(--lde-cream);
	border-radius: var(--lde-radius);
	text-align: center;
	font-size: 1.02rem;
}

/* === Contact === */
.lde-contact {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 40px;
	max-width: 1000px;
	margin: 0 auto;
}
.lde-contact-coord {
	background: var(--lde-grad-night);
	color: var(--lde-cream);
	padding: 36px;
	border-radius: var(--lde-radius-lg);
}
.lde-contact-coord h2 { color: var(--lde-gold-light); margin-top: 0; }
.lde-contact-coord a { color: var(--lde-gold-light); text-decoration: underline; }
.lde-contact-form {
	background: #fff;
	padding: 32px;
	border-radius: var(--lde-radius-lg);
	box-shadow: var(--lde-shadow);
}
.lde-contact-form label {
	display: block;
	margin-bottom: 16px;
	font-weight: 500;
	color: var(--lde-navy);
	font-size: .92rem;
}
.lde-contact-form input,
.lde-contact-form select,
.lde-contact-form textarea {
	display: block;
	width: 100%;
	margin-top: 6px;
	padding: 12px 14px;
	border: 1.5px solid var(--lde-line);
	border-radius: 10px;
	font-family: inherit;
	font-size: 1rem;
	background: var(--lde-ivory);
	transition: border-color .2s, box-shadow .2s;
}
.lde-contact-form input:focus,
.lde-contact-form select:focus,
.lde-contact-form textarea:focus {
	outline: none;
	border-color: var(--lde-ember);
	box-shadow: 0 0 0 3px rgba(231, 111, 81, .15);
}

/* === FAQ === */
.lde-faq { max-width: 820px; margin: 0 auto; }
.lde-faq-item {
	background: #fff;
	border-radius: var(--lde-radius);
	margin-bottom: 12px;
	box-shadow: var(--lde-shadow);
	overflow: hidden;
	transition: box-shadow .2s;
}
.lde-faq-item[open] { box-shadow: var(--lde-shadow-lg); }
.lde-faq-item summary {
	padding: 20px 24px;
	cursor: pointer;
	font-weight: 600;
	color: var(--lde-navy);
	list-style: none;
	display: flex; align-items: center; gap: 14px;
	font-family: var(--lde-font-title);
	font-size: 1.18rem;
}
.lde-faq-item summary::-webkit-details-marker { display: none; }
.lde-faq-item summary::before {
	content: "✦";
	color: var(--lde-ember);
	font-size: 1.2rem;
	transition: transform .25s;
}
.lde-faq-item[open] summary::before { transform: rotate(45deg); }
.lde-faq-answer {
	padding: 0 24px 22px 54px;
	color: var(--lde-text-soft);
	line-height: 1.7;
}

/* === Témoignages === */
.lde-temoignages {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 22px;
	max-width: 1100px;
	margin: 30px auto;
}
.lde-temoignage {
	background: #fff;
	padding: 30px;
	border-radius: var(--lde-radius-lg);
	box-shadow: var(--lde-shadow);
	margin: 0;
	border-top: 4px solid var(--lde-gold);
	position: relative;
}
.lde-temoignage::before {
	content: "“";
	position: absolute; top: 0; right: 22px;
	font-family: var(--lde-font-title);
	font-size: 5rem; line-height: 1;
	color: var(--lde-cream);
	pointer-events: none;
}
.lde-temoignage blockquote {
	margin: 0 0 18px; border: 0; padding: 0;
	font-family: var(--lde-font-title);
	font-style: italic;
	font-size: 1.08rem;
	line-height: 1.6;
	color: var(--lde-text);
}
.lde-temoignage figcaption {
	color: var(--lde-text-soft);
	font-size: .92rem;
	display: flex; justify-content: space-between; align-items: center; gap: 8px;
}
.lde-stars { color: var(--lde-gold); letter-spacing: 2px; }

/* === TLDR / speakable === */
.lde-tldr {
	background: var(--lde-cream);
	border-left: 4px solid var(--lde-ember);
	padding: 18px 22px;
	border-radius: 0 var(--lde-radius) var(--lde-radius) 0;
	margin: 0 0 28px;
	font-size: 1.02rem;
}

/* === Single article === */
.lde-single-header { padding-top: 50px; padding-bottom: 30px; text-align: center; }
.lde-breadcrumbs {
	font-size: .86rem;
	color: var(--lde-text-soft);
	margin-bottom: 18px;
}
.lde-breadcrumbs a { color: var(--lde-text-soft); }
.lde-single-meta {
	color: var(--lde-text-soft);
	font-size: .92rem;
	margin: 14px 0 24px;
}
.lde-single-thumb {
	margin-top: 30px;
	border-radius: var(--lde-radius-lg);
	overflow: hidden;
	box-shadow: var(--lde-shadow-lg);
}
.lde-single-thumb img { display: block; width: 100%; }
.lde-single-content h2 {
	margin-top: 2em;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--lde-line);
}
.lde-single-content blockquote {
	border-left: 4px solid var(--lde-ember);
	padding: 16px 22px;
	background: var(--lde-cream);
	font-style: italic;
	margin: 30px 0;
	border-radius: 0 var(--lde-radius) var(--lde-radius) 0;
}
.lde-author-card {
	margin: 50px 0 30px;
	padding: 30px;
	background: var(--lde-cream);
	border-radius: var(--lde-radius-lg);
	text-align: center;
}
.lde-post-nav {
	display: flex; justify-content: space-between; gap: 16px;
	margin-top: 40px;
	font-size: .94rem;
}
.lde-post-nav a { text-decoration: none; }

/* === Archive / cards === */
.lde-archive-header, .lde-search-results header {
	text-align: center; padding: 60px 22px 30px;
}
.lde-posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 26px;
	max-width: 1100px;
	margin: 0 auto;
	padding: 22px;
}
.lde-post-card {
	background: #fff;
	border-radius: var(--lde-radius-lg);
	overflow: hidden;
	box-shadow: var(--lde-shadow);
	transition: transform .25s, box-shadow .25s;
}
.lde-post-card:hover { transform: translateY(-4px); box-shadow: var(--lde-shadow-lg); }
.lde-post-card-link {
	display: block; padding: 24px; text-decoration: none; color: var(--lde-text);
}
.lde-post-card-thumb { margin: -24px -24px 18px; }
.lde-post-card-thumb img { display: block; width: 100%; height: 200px; object-fit: cover; }
.lde-post-card-title {
	font-size: 1.25rem;
	margin: 0 0 10px;
	color: var(--lde-navy);
}
.lde-post-card-excerpt {
	color: var(--lde-text-soft);
	font-size: .94rem;
	margin: 0 0 12px;
}
.lde-post-card-meta { color: var(--lde-text-soft); font-size: .82rem; }

/* === Footer === */
.lde-site-footer {
	background: var(--lde-grad-night);
	color: var(--lde-cream);
	margin-top: 60px;
}
.lde-footer-inner {
	max-width: 1240px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 32px;
	padding: 60px 22px 30px;
}
.lde-footer-col h3 {
	color: var(--lde-gold-light);
	font-size: 1.1rem;
	margin: 0 0 14px;
}
.lde-footer-col p { font-size: .92rem; color: rgba(250, 243, 231, .82); }
.lde-footer-col a { color: var(--lde-cream); }
.lde-footer-col a:hover { color: var(--lde-gold-light); }
.lde-footer-menu, .lde-footer-pay {
	list-style: none; margin: 0; padding: 0;
}
.lde-footer-menu li, .lde-footer-pay li {
	padding: 6px 0;
	font-size: .92rem;
}
.lde-footer-bottom {
	border-top: 1px solid rgba(247, 210, 125, .2);
	padding: 22px;
	text-align: center;
	font-size: .82rem;
	color: rgba(250, 243, 231, .65);
	max-width: 1240px;
	margin: 0 auto;
}
.lde-disclaimer { margin-top: 8px; font-style: italic; }

/* === 404 === */
.lde-404 {
	position: relative;
	background: var(--lde-grad-night);
	color: var(--lde-cream);
	text-align: center;
	padding: 120px 22px;
	overflow: hidden;
}
.lde-404-stars {
	position: absolute; inset: 0;
	background-image:
		radial-gradient(1.5px 1.5px at 18% 28%, #fff 50%, transparent),
		radial-gradient(1px 1px at 42% 66%, #fff 50%, transparent),
		radial-gradient(2px 2px at 72% 22%, #f7d27d 50%, transparent),
		radial-gradient(1px 1px at 88% 58%, #fff 50%, transparent);
	opacity: .8;
}
.lde-404 h1 {
	font-size: clamp(5rem, 14vw, 10rem);
	color: var(--lde-gold-light);
	margin: 0;
	letter-spacing: 4px;
}
.lde-404-lead { font-size: 1.2rem; margin: 18px 0 30px; }
.lde-404-inner { position: relative; max-width: 600px; margin: 0 auto; }

/* === Skip link === */
.skip-link {
	position: absolute; left: -9999px; top: 0;
	background: var(--lde-navy); color: var(--lde-cream);
	padding: 12px 20px; z-index: 1000;
	border-radius: 0 0 var(--lde-radius) 0;
}
.skip-link:focus { left: 0; }
.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px,1px,1px,1px);
}

/* === Responsive === */
@media (max-width: 880px) {
	.lde-burger { display: block; }
	.lde-primary-nav {
		position: fixed; top: 70px; right: -100%; bottom: 0;
		width: min(85vw, 360px);
		flex-direction: column;
		background: var(--lde-ivory);
		padding: 28px 22px;
		gap: 16px;
		box-shadow: -10px 0 40px rgba(10, 26, 58, .12);
		transition: right .3s;
		align-items: stretch;
		overflow-y: auto;
	}
	.lde-primary-nav.is-open { right: 0; }
	.lde-menu { flex-direction: column; gap: 4px; }
	.lde-menu a {
		display: block; padding: 12px 0;
		border-bottom: 1px solid var(--lde-line);
		border-top: 0; border-left: 0; border-right: 0;
	}
	.lde-menu .sub-menu {
		position: static; box-shadow: none; padding: 0;
		background: transparent; display: block;
		margin-left: 14px;
	}
	.lde-menu .sub-menu a { padding: 8px 0; font-size: .92rem; }
	.lde-header-actions { flex-direction: column; align-items: stretch; gap: 12px; margin-top: 12px; }
	.lde-contact { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
	.lde-brand-tagline { display: none; }
	.lde-hero { padding: 70px 18px; }
	.lde-tarif-group { padding: 22px 20px; }
	.lde-t-price { font-size: 1.4rem; }
}

/* === Réservation === */
.lde-booking {
	max-width: 720px;
	margin: 0 auto;
	background: #fff;
	padding: 36px;
	border-radius: var(--lde-radius-lg);
	box-shadow: var(--lde-shadow);
	position: relative;
}
.lde-bk-row { margin-bottom: 18px; }
.lde-bk-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
.lde-bk-2col > .lde-bk-row { margin: 0; }
.lde-booking label {
	display: block;
	font-weight: 500;
	color: var(--lde-navy);
	font-size: .92rem;
}
.lde-booking input,
.lde-booking select,
.lde-booking textarea {
	display: block; width: 100%;
	margin-top: 6px;
	padding: 12px 14px;
	border: 1.5px solid var(--lde-line);
	border-radius: 10px;
	font-family: inherit;
	font-size: 1rem;
	background: var(--lde-ivory);
	transition: border-color .2s, box-shadow .2s;
}
.lde-booking input:focus,
.lde-booking select:focus,
.lde-booking textarea:focus {
	outline: none;
	border-color: var(--lde-ember);
	box-shadow: 0 0 0 3px rgba(231, 111, 81, .15);
}
.lde-booking select:disabled { opacity: .6; cursor: not-allowed; }
.lde-bk-status {
	margin: 14px 0 0;
	padding: 12px 14px;
	border-radius: 10px;
	font-size: .94rem;
	display: none;
}
.lde-bk-status.is-loading { display: block; background: var(--lde-cream); color: var(--lde-text-soft); }
.lde-bk-status.is-ok { display: block; background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.lde-bk-status.is-ko { display: block; background: #fdecea; color: #c0392b; border: 1px solid #f5c6c0; }
.lde-bk-note {
	font-size: .85rem;
	color: var(--lde-text-soft);
	font-style: italic;
	margin: 14px 0 0;
}

/* === Formulaire contact natif === */
.lde-form-notice {
	padding: 14px 18px;
	border-radius: var(--lde-radius);
	margin-bottom: 18px;
	font-weight: 500;
}
.lde-form-ok { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.lde-form-ko { background: #fdecea; color: #c0392b; border: 1px solid #f5c6c0; }
.lde-consent {
	display: flex !important;
	gap: 10px;
	align-items: flex-start;
	font-size: .84rem !important;
	font-weight: 400 !important;
	color: var(--lde-text-soft);
	margin-top: 8px;
}
.lde-consent input { width: auto !important; margin: 4px 0 0 !important; flex-shrink: 0; }

/* === Bouton flottant réserver === */
@media (max-width: 720px) {
	.lde-bk-2col { grid-template-columns: 1fr; }
	.lde-booking { padding: 24px; }
}

/* === Espace cliente === */
.lde-client-login, .lde-client-area {
	max-width: 820px; margin: 0 auto;
	background: #fff; padding: 36px;
	border-radius: var(--lde-radius-lg);
	box-shadow: var(--lde-shadow);
}
.lde-client-login h2 { margin-top: 0; }
.lde-client-login input[type="text"],
.lde-client-login input[type="password"] {
	display: block; width: 100%;
	padding: 12px 14px;
	border: 1.5px solid var(--lde-line);
	border-radius: 10px;
	font-size: 1rem;
	background: var(--lde-ivory);
	margin-bottom: 14px;
}
.lde-client-login .button-primary,
.lde-client-login #wp-submit {
	background: var(--lde-grad-ember);
	color: #fff; border: 0; padding: 12px 28px;
	border-radius: 30px; font-weight: 600; cursor: pointer;
	font-size: 1rem;
	box-shadow: 0 6px 18px rgba(231, 111, 81, .35);
}
.lde-client-login p { margin: 0 0 14px; }
.lde-forgot { margin-top: 16px; font-size: .92rem; }

.lde-client-header {
	display: flex; justify-content: space-between; align-items: center;
	margin-bottom: 22px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--lde-line);
}
.lde-client-header h2 { margin: 0; }
.lde-client-logout {
	font-size: .88rem; color: var(--lde-text-soft);
	text-decoration: none;
	padding: 8px 14px;
	border: 1px solid var(--lde-line);
	border-radius: 20px;
}
.lde-client-logout:hover { color: var(--lde-ember); border-color: var(--lde-ember); }

.lde-client-info, .lde-client-bookings, .lde-client-cta {
	margin-bottom: 32px;
}
.lde-client-info h3, .lde-client-bookings h3, .lde-client-cta h3 {
	font-size: 1.2rem;
	color: var(--lde-navy);
	margin-bottom: 14px;
}
.lde-bookings-list { display: grid; gap: 10px; }
.lde-booking-row {
	display: grid;
	grid-template-columns: 130px 1fr auto;
	gap: 16px; align-items: center;
	padding: 16px 18px;
	background: var(--lde-cream);
	border-left: 4px solid var(--lde-gold);
	border-radius: 0 var(--lde-radius) var(--lde-radius) 0;
}
.lde-bk-confirmed { border-left-color: #2ecc71; }
.lde-bk-cancelled { border-left-color: #999; opacity: .65; }
.lde-bk-date strong { display: block; color: var(--lde-navy); }
.lde-bk-date span { color: var(--lde-text-soft); font-size: .9rem; }
.lde-bk-service { font-size: .94rem; }
.lde-bk-statuslbl {
	background: #fff;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: .82rem;
	color: var(--lde-text-soft);
	font-weight: 500;
}
.lde-empty {
	padding: 24px;
	background: var(--lde-cream);
	border-radius: var(--lde-radius);
	text-align: center;
	color: var(--lde-text-soft);
}

@media (max-width: 540px) {
	.lde-booking-row { grid-template-columns: 1fr; gap: 6px; }
	.lde-client-header { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* === Carrousel avis Google === */
.lde-google-reviews {
	max-width: 980px; margin: 30px auto;
	background: #fff;
	padding: 32px;
	border-radius: var(--lde-radius-lg);
	box-shadow: var(--lde-shadow);
	position: relative;
}
.lde-gr-header {
	display: flex; justify-content: space-between; align-items: center; gap: 16px;
	margin-bottom: 22px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--lde-line);
	flex-wrap: wrap;
}
.lde-gr-brand { display: flex; gap: 12px; align-items: center; }
.lde-gr-brand strong { display: block; font-size: 1.05rem; }
.lde-gr-rating-line { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; font-size: .92rem; color: var(--lde-text-soft); }
.lde-gr-rating-num { font-weight: 700; color: var(--lde-navy); font-size: 1.1rem; }
.lde-gr-stars { color: #fbbc05; letter-spacing: 2px; font-size: 1rem; }
.lde-gr-link {
	font-size: .88rem; color: var(--lde-navy);
	text-decoration: none; padding: 8px 14px;
	border: 1px solid var(--lde-line); border-radius: 20px;
}
.lde-gr-link:hover { background: var(--lde-cream); color: var(--lde-ember); }

.lde-gr-track-wrap {
	position: relative;
	display: flex; align-items: center; gap: 10px;
}
.lde-gr-track {
	flex: 1;
	display: flex;
	overflow: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
}
.lde-gr-slide {
	flex: 0 0 100%;
	scroll-snap-align: start;
	padding: 8px 16px;
	min-height: 220px;
	display: flex; flex-direction: column; justify-content: space-between; gap: 18px;
}
.lde-gr-quote .lde-gr-stars { font-size: 1.2rem; margin-bottom: 12px; display: block; }
.lde-gr-quote blockquote {
	font-family: var(--lde-font-title);
	font-style: italic;
	font-size: 1.08rem;
	line-height: 1.6;
	margin: 0;
	color: var(--lde-text);
	border: 0; padding: 0;
}
.lde-gr-foot { display: flex; gap: 12px; align-items: center; }
.lde-gr-avatar {
	width: 44px; height: 44px;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	background: var(--lde-grad-ember);
	color: #fff; font-weight: 600;
	object-fit: cover;
	flex-shrink: 0;
}
.lde-gr-avatar-fallback { font-family: var(--lde-font-title); font-size: 1.1rem; }
.lde-gr-foot strong { display: block; color: var(--lde-navy); }
.lde-gr-date { color: var(--lde-text-soft); font-size: .85rem; }

.lde-gr-arrow {
	background: #fff;
	border: 1px solid var(--lde-line);
	width: 40px; height: 40px;
	border-radius: 50%;
	font-size: 1.6rem; line-height: 1;
	cursor: pointer;
	color: var(--lde-navy);
	transition: all .2s;
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}
.lde-gr-arrow:hover { background: var(--lde-ember); color: #fff; border-color: var(--lde-ember); transform: scale(1.05); }
.lde-gr-arrow:disabled { opacity: .35; cursor: default; }

.lde-gr-dots {
	display: flex; gap: 8px; justify-content: center;
	margin-top: 18px;
}
.lde-gr-dot {
	width: 9px; height: 9px;
	border-radius: 50%;
	background: var(--lde-line);
	border: 0; padding: 0;
	cursor: pointer;
	transition: all .2s;
}
.lde-gr-dot.is-active { background: var(--lde-ember); transform: scale(1.3); }
.lde-gr-dot:hover { background: var(--lde-gold); }

@media (max-width: 560px) {
	.lde-google-reviews { padding: 22px 18px; }
	.lde-gr-header { flex-direction: column; align-items: flex-start; }
	.lde-gr-arrow { display: none; }
	.lde-gr-track { scroll-snap-type: x mandatory; }
}

/* === Accessibilité === */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

/* === Print === */
@media print {
	.lde-site-header, .lde-site-footer, .lde-hero-cta, .lde-burger { display: none; }
	body { background: #fff; color: #000; }
	a { color: #000; text-decoration: underline; }
}
