/* ==========================================================================
   Luxe Azure Concierge
   ========================================================================== */

/* --------------------------------------------------------------- 1. TOKENS */

:root {
	/* Palette */
	--marine:         #0B1A2B;   /* fond par défaut */
	--marine-2:       #12293F;   /* étagement des sections sombres */
	--marine-3:       #143050;   /* fond des placeholders photo */
	--champagne:      #BCB49C;   /* accent unique */
	--champagne-dark: #B4AC9C;
	--champagne-lite: #E4D4BC;
	--ivory:          #F5F1EA;
	--taupe:          #6B6350;

	--grad-champagne: linear-gradient(120deg, var(--champagne-dark), var(--champagne-lite));
	--stripes: repeating-linear-gradient(135deg, #143050 0 14px, #10263E 14px 28px);

	/* Filets */
	--rule:           rgba(188, 180, 156, 0.25);
	--rule-strong:    rgba(188, 180, 156, 0.75);
	--rule-light:     rgba(107, 99, 80, 0.25);

	/* Typo */
	--serif:  'Cormorant Garamond', Georgia, serif;
	--sans:   'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--script: 'Parisienne', cursive;

	/* Rythme */
	--gutter:      80px;
	--section-pad: 150px;
	--maxw:        1280px;

	/* Motion */
	--ease:  cubic-bezier(0.2, 0.6, 0.2, 1);
	--speed: 600ms;
}

/* ----------------------------------------------------------------- 2. BASE */

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

html { scroll-behavior: smooth; }

/* Décalage des ancres sous le header fixe */
[id] { scroll-margin-top: 100px; }

body {
	margin: 0;
	background: var(--marine);
	color: var(--ivory);
	font-family: var(--sans);
	font-weight: 300;
	font-size: 17px;
	line-height: 1.9;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--champagne); text-decoration: none; transition: color 300ms var(--ease); }
a:hover { color: var(--champagne-lite); }

h1, h2, h3 {
	font-family: var(--serif);
	font-weight: 300;
	margin: 0;
	line-height: 1.12;
	text-wrap: pretty;
}

p { margin: 0; text-wrap: pretty; }

::selection { background: var(--champagne); color: var(--marine); }

:focus-visible {
	outline: 1px solid var(--champagne-lite);
	outline-offset: 4px;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 99;
	background: var(--champagne);
	color: var(--marine);
	padding: 14px 24px;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}
.skip-link:focus { left: 0; }

.sr-only {
	position: absolute;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

/* ------------------------------------------------------- 3. PRIMITIVES UI */

.section { padding: var(--section-pad) var(--gutter); }
.section--light { background: var(--ivory); color: var(--taupe); }
.section--marine2 { background: var(--marine-2); }

.wrap { max-width: var(--maxw); margin: 0 auto; }

/* Sur-titre en capitales espacées */
.eyebrow {
	font-size: 12px;
	letter-spacing: 0.42em;
	text-transform: uppercase;
	color: var(--champagne);
	font-weight: 400;
}
.section--light .eyebrow { color: var(--taupe); }

.rule {
	width: 44px;
	height: 1px;
	background: var(--champagne);
	border: 0;
	margin: 28px 0 34px;
}
.rule--center { margin-left: auto; margin-right: auto; }

.section-head { text-align: center; margin-bottom: 76px; }
.section-head h2 { font-size: 58px; color: var(--ivory); margin-top: 22px; }
.section--light .section-head h2 { color: var(--marine); }

/* Boutons */
.btn {
	display: inline-block;
	font-family: var(--sans);
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	padding: 20px 46px;
	text-align: center;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 300ms var(--ease), border-color 300ms var(--ease), color 300ms var(--ease);
}

.btn--primary {
	background: var(--grad-champagne);
	color: var(--marine);
}
.btn--primary:hover { background: var(--champagne-lite); color: var(--marine); }

.btn--secondary {
	border-color: rgba(188, 180, 156, 0.55);
	color: var(--champagne-lite);
	background: transparent;
}
.btn--secondary:hover {
	border-color: var(--champagne-lite);
	background: rgba(188, 180, 156, 0.12);
	color: var(--ivory);
}

.btn--marine { background: var(--marine); color: var(--champagne-lite); }
.btn--marine:hover { background: #12293F; color: var(--ivory); }

.btn--block { display: block; width: 100%; }

/* Lien souligné */
.link-rule {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--champagne);
	padding-bottom: 6px;
	border-bottom: 1px solid rgba(188, 180, 156, 0.4);
	transition: color 300ms var(--ease), border-color 300ms var(--ease);
}
.link-rule:hover { color: var(--champagne-lite); border-bottom-color: var(--champagne-lite); }

/* ------------------------------------------------------------ 4. PHOTOS
   URL injectées par index.php dans les variables --photo-<clé>.
   Motif rayé en repli quand l'emplacement est vide. */

.photo {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-color: var(--marine-3);
	background-image: var(--stripes);
}

.photo--hero         { background-image: var(--photo-hero),         var(--stripes); }
.photo--yachts       { background-image: var(--photo-yachts),       var(--stripes); }
.photo--transport    { background-image: var(--photo-transport),    var(--stripes); }
.photo--villa        { background-image: var(--photo-villa),        var(--stripes); }
.photo--reservations { background-image: var(--photo-reservations), var(--stripes); }
.photo--events       { background-image: var(--photo-events),       var(--stripes); }
.photo--cta          { background-image: var(--photo-cta),          var(--stripes); }

/* Emplacement vide, classe posée par le JS */
.photo--missing::after {
	content: '[ photo — ' attr(data-photo) ' ]';
	position: absolute;
	top: 18px;
	left: 22px;
	font-family: var(--sans);
	font-size: 11px;
	letter-spacing: 0.08em;
	color: rgba(188, 180, 156, 0.45);
	text-transform: none;
}

/* Légende en bas sur les visuels pleine hauteur */
.hero .photo--missing::after,
.cta .photo--missing::after {
	top: auto;
	bottom: 22px;
	left: 26px;
}

/* Voile marine sur les photos. À renforcer si un visuel plus clair est posé. */
.veil {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg,
		rgba(11, 26, 43, 0.02) 0%,
		rgba(11, 26, 43, 0.18) 42%,
		rgba(11, 26, 43, 0.74) 100%);
}
/* Voile du hero : dense en haut et en bas, ouvert au centre */
.veil--hero {
	background: linear-gradient(180deg,
		rgba(11, 26, 43, 0.60) 0%,
		rgba(11, 26, 43, 0.34) 45%,
		rgba(11, 26, 43, 0.78) 100%);
}
.veil--flat { background: rgba(11, 26, 43, 0.8); }
.veil--soft { background: linear-gradient(180deg, rgba(11, 26, 43, 0.02) 0%, rgba(11, 26, 43, 0.16) 40%, rgba(11, 26, 43, 0.74) 100%); }

/* Filigrane monogramme */
.watermark {
	position: absolute;
	opacity: 0.05;
	pointer-events: none;
	user-select: none;
}

/* --------------------------------------------------------------- 5. HEADER */

.header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 36px var(--gutter);
	background: transparent;
	border-bottom: 1px solid transparent;
	transition: padding 300ms var(--ease), background 300ms var(--ease), border-color 300ms var(--ease);
}
.header.is-scrolled {
	padding: 16px var(--gutter);
	background: rgba(11, 26, 43, 0.97);
	border-bottom-color: rgba(188, 180, 156, 0.22);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

/* Logo complet au repos, réduit au scroll */
.brand { position: relative; display: block; line-height: 0; }
.brand__full { height: 88px; width: auto; transition: height 300ms var(--ease), opacity 300ms var(--ease); }
.brand__compact {
	position: absolute;
	left: 0; top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	gap: 16px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 300ms var(--ease);
	white-space: nowrap;
}
.brand__compact img { height: 40px; width: auto; }
.brand__compact span {
	font-family: var(--serif);
	font-size: 22px;
	letter-spacing: 0.3em;
	color: var(--champagne-lite);
	line-height: 1;
}
.brand__divider { width: 1px; height: 26px; background: rgba(188, 180, 156, 0.35); }

.header.is-scrolled .brand__full { opacity: 0; height: 40px; }
.header.is-scrolled .brand__compact { opacity: 1; pointer-events: auto; }

.nav { display: flex; align-items: center; gap: 44px; }

/* :not(.btn) pour ne pas écraser le style du bouton */
.nav a:not(.btn) {
	color: var(--ivory);
	font-size: 13px;
	font-weight: 300;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	padding-bottom: 4px;
	border-bottom: 1px solid transparent;
}
.nav a:not(.btn):hover { color: var(--champagne-lite); }
.nav a.is-active { color: var(--champagne-lite); border-bottom-color: var(--champagne); }
.header.is-scrolled .nav { gap: 40px; }
.header.is-scrolled .nav a:not(.btn) { font-size: 12px; }

.nav .btn { padding: 14px 26px; font-size: 12px; letter-spacing: 0.2em; }
.header.is-scrolled .nav .btn { padding: 12px 24px; font-size: 11px; }

/* Burger — deux traits, croix à l'ouverture */
.burger {
	display: none;
	flex-direction: column;
	gap: 6px;
	background: none;
	border: 0;
	padding: 10px 0 10px 10px;
	cursor: pointer;
}
.burger span {
	display: block;
	width: 26px;
	height: 1px;
	background: var(--champagne-lite);
	transition: transform 300ms var(--ease), opacity 300ms var(--ease);
}

/* Menu mobile plein écran */
/* Au-dessus du header */
.mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 30;
	background: var(--marine);
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 34px 28px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 300ms var(--ease), visibility 300ms var(--ease);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }

/* Croix de fermeture */
.menu-close {
	position: absolute;
	top: 26px;
	right: 22px;
	width: 44px;
	height: 44px;
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
}
.menu-close span {
	position: absolute;
	left: 9px;
	top: 21px;
	display: block;
	width: 26px;
	height: 1px;
	background: var(--champagne-lite);
}
.menu-close span:first-child { transform: rotate(45deg); }
.menu-close span:last-child { transform: rotate(-45deg); }
.mobile-menu__logo { height: 120px; width: auto; margin-top: 68px; }
.mobile-menu__rule { width: 44px; height: 1px; background: rgba(188, 180, 156, 0.4); margin: 54px 0; border: 0; }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 34px; }
.mobile-menu nav a {
	font-family: var(--serif);
	font-size: 34px;
	font-weight: 300;
	color: var(--ivory);
}
.mobile-menu nav a:hover { color: var(--champagne-lite); }
.mobile-menu__foot { margin-top: auto; width: 100%; }
.mobile-menu__tagline {
	color: rgba(188, 180, 156, 0.7);
	font-size: 10px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	text-align: center;
	margin-top: 26px;
}

/* ----------------------------------------------------------------- 6. HERO */

.hero {
	position: relative;
	min-height: 900px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
/* Posee sur la photo du hero, qui reste le repli et l'element mesure par le
   LCP. Fondu a l'arrivee pour eviter le saut photo / premiere image. */
.hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 900ms var(--ease);
	pointer-events: none;
}
.hero__video.is-playing { opacity: 1; }

.hero__watermark { right: -60px; bottom: -40px; width: 620px; }
.hero__inner {
	position: relative;
	text-align: center;
	max-width: 940px;
	padding: 0 40px;
	text-shadow: 0 2px 28px rgba(11, 26, 43, 0.6);
}
.hero h1 {
	font-size: 92px;
	line-height: 1.06;
	letter-spacing: -0.01em;
	color: var(--ivory);
	margin-top: 34px;
}
.hero__lede {
	margin: 36px auto 0;
	max-width: 640px;
	color: rgba(245, 241, 234, 0.72);
	font-size: 18px;
	font-weight: 200;
	line-height: 1.85;
}
.hero__actions {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-top: 54px;
	flex-wrap: wrap;
}

.scroll-hint {
	position: absolute;
	bottom: 46px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}
.scroll-hint span {
	color: rgba(188, 180, 156, 0.7);
	font-size: 10px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
}
.scroll-hint i {
	width: 1px;
	height: 54px;
	background: linear-gradient(180deg, rgba(188, 180, 156, 0.7), rgba(188, 180, 156, 0));
}

/* --------------------------------------------------- 7. BANDE RÉASSURANCE */

.reassurance {
	background: var(--marine-2);
	border-top: 1px solid rgba(188, 180, 156, 0.16);
	border-bottom: 1px solid rgba(188, 180, 156, 0.16);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin: 0;
	padding: 0;
	list-style: none;
}
.reassurance li {
	padding: 30px 20px;
	text-align: center;
	color: rgba(245, 241, 234, 0.78);
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	border-right: 1px solid rgba(188, 180, 156, 0.16);
}
.reassurance li:last-child { border-right: 0; }

/* ---------------------------------------------------------------- 8. INTRO */

.intro { position: relative; overflow: hidden; text-align: center; padding: 160px var(--gutter); }
.intro__watermark { left: 50%; top: 50%; transform: translate(-50%, -50%); width: 700px; }
.intro__inner { position: relative; max-width: 900px; margin: 0 auto; }
.intro h2 { font-size: 60px; line-height: 1.16; color: var(--marine); }
.intro p:not(.eyebrow) {
	margin: 40px auto 0;
	max-width: 720px;
	color: var(--taupe);
	font-size: 17px;
	line-height: 2;
}

/* ------------------------------------------------------------- 9. SERVICES */

.services { padding: var(--section-pad) var(--gutter) 160px; }

/* -- Variante A : grille éditoriale, 1 carte large + 4 -- */
.services-a { display: flex; flex-direction: column; gap: 24px; }
.services-a__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.svc-card {
	position: relative;
	height: 420px;
	overflow: hidden;
	display: block;
	color: inherit;
}
.svc-card--wide { height: 460px; }
/* Remontée de luminosité : les visuels sont des prises nocturnes */
.svc-card .photo {
	filter: brightness(1.28) contrast(1.04);
	transition: transform var(--speed) var(--ease), filter var(--speed) var(--ease);
}
.svc-card:hover .photo { transform: scale(1.04); filter: brightness(1.36) contrast(1.04); }

.svc-card__body {
	position: absolute;
	left: 28px; right: 28px; bottom: 34px;
	text-shadow: 0 1px 16px rgba(11, 26, 43, 0.75);
}
.svc-card--wide .svc-card__body { left: 56px; right: 56px; bottom: 48px; }

.svc-card__body h3 { font-size: 28px; color: var(--ivory); line-height: 1.2; }
.svc-card--wide .svc-card__body h3 { font-size: 46px; }

.svc-card__rule { width: 30px; height: 1px; background: var(--champagne); margin: 18px 0 16px; border: 0; }
.svc-card--wide .svc-card__rule { width: 40px; margin: 22px 0; }

.svc-card__list {
	margin: 0;
	padding: 0;
	list-style: none;
	color: rgba(245, 241, 234, 0.72);
	font-size: 13px;
	line-height: 2;
	opacity: 0.85;
	transition: opacity var(--speed) var(--ease);
}
.svc-card:hover .svc-card__list { opacity: 1; }
.svc-card--wide .svc-card__list {
	display: flex;
	flex-wrap: wrap;
	gap: 34px;
	font-size: 14px;
	letter-spacing: 0.06em;
	color: rgba(245, 241, 234, 0.8);
}
.svc-card--wide .svc-card__list li + li::before {
	content: '·';
	color: var(--champagne);
	margin-right: 34px;
}

/* ------------------------------------------------------------- 10. PACKAGES */

.packages-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	align-items: stretch;
}

.pack {
	border: 1px solid rgba(188, 180, 156, 0.3);
	background: rgba(11, 26, 43, 0.5);
	padding: 56px 42px;
	display: flex;
	flex-direction: column;
	transition: border-color 300ms var(--ease);
}
.pack:hover { border-color: rgba(188, 180, 156, 0.6); }
.pack--featured {
	border-color: var(--rule-strong);
	background: rgba(11, 26, 43, 0.85);
	padding: 72px 42px;
	margin-top: -16px;
}
.pack h3 { font-size: 34px; color: var(--ivory); }
.pack__rule { height: 1px; background: var(--rule); margin: 34px 0; border: 0; }
.pack--featured .pack__rule { background: rgba(188, 180, 156, 0.35); }
.pack__list {
	margin: 0; padding: 0; list-style: none;
	color: rgba(245, 241, 234, 0.76);
	font-size: 15px;
	line-height: 2.3;
	flex: 1;
}
.pack--featured .pack__list { color: rgba(245, 241, 234, 0.82); }
.pack .btn { margin-top: 40px; padding: 17px 0; font-size: 12px; }

.packages__note {
	margin-top: 60px;
	text-align: center;
	color: rgba(245, 241, 234, 0.6);
	font-size: 15px;
}
.packages__cta { margin-top: 18px; text-align: center; }

/* ------------------------------------------------------------ 11. HOW IT WORKS */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 70px; }
.step__num {
	font-family: var(--serif);
	font-size: 64px;
	color: var(--champagne);
	line-height: 1;
	font-variant-numeric: lining-nums;
}
.step__rule { height: 1px; background: var(--rule-light); margin: 26px 0; border: 0; }
.step h3 { font-size: 30px; font-weight: 400; color: var(--marine); }
/* :not() pour préserver le style du chiffre */
.step p:not(.step__num) { color: var(--taupe); font-size: 16px; line-height: 1.95; margin-top: 16px; }

/* --------------------------------------------------------------- 12. FOUNDER */

/* Bloc fondatrice, centré dans une largeur contenue */
.founder {
	position: relative;
	overflow: hidden;
	padding: var(--section-pad) var(--gutter);
}

.founder__inner {
	position: relative;
	z-index: 1;
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
}

/* Décor palmiers, sous le contenu */
.palms {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 58%;
	z-index: 0;
	pointer-events: none;
}
.palms svg { width: 100%; height: 100%; display: block; }

.founder__inner { position: relative; z-index: 1; }
.founder__text { max-width: 100%; }
.founder .rule { margin-left: auto; margin-right: auto; }
.founder h2 { font-size: 52px; color: var(--ivory); margin-top: 18px; }
.founder p:not(.eyebrow):not(.founder__signature) {
	color: rgba(245, 241, 234, 0.72);
	font-size: 18px;
	font-weight: 200;
	line-height: 2;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}
.founder__signature {
	font-family: var(--script);
	font-size: 46px;
	color: var(--champagne);
	margin-top: 44px;
	line-height: 1;
}

/* -------------------------------------------------------------- 13. CTA FINAL */

.cta {
	position: relative;
	min-height: 620px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	text-align: center;
	padding: 96px 28px;
}
.cta__inner { position: relative; }
.cta h2 { font-size: 68px; color: var(--ivory); }
.cta p:not(.cta__reply) { color: rgba(245, 241, 234, 0.7); font-size: 18px; font-weight: 200; margin-top: 24px; }
.cta .btn { margin-top: 46px; padding: 20px 50px; }
.cta__reply {
	color: rgba(188, 180, 156, 0.75);
	font-size: 12px;
	letter-spacing: 0.14em;
	margin-top: 22px;
}

/* --------------------------------------------------------------- 14. CONTACT */

/* Colonnes inegales : le formulaire a besoin de 588 px pour poser le
   reCAPTCHA (304) et le bouton (260) cote a cote. */
.contact {
	display: grid;
	grid-template-columns: 1.25fr 0.75fr;
	gap: 110px;
	padding: var(--section-pad) var(--gutter) 160px;
}
.contact h2 { font-size: 52px; color: var(--marine); margin-top: 20px; }

.form { display: flex; flex-direction: column; gap: 34px; margin-top: 52px; }
.field { display: flex; flex-direction: column; }
.field label {
	color: var(--taupe);
	font-size: 11px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
}
.field input,
.field textarea {
	font-family: var(--sans);
	font-size: 16px;
	font-weight: 300;
	color: var(--marine);
	background: transparent;
	border: 0;
	border-bottom: 1px solid rgba(107, 99, 80, 0.3);
	padding: 12px 0;
	margin-top: 2px;
	transition: border-color 300ms var(--ease);
	border-radius: 0;
}
.field textarea { resize: vertical; min-height: 56px; line-height: 1.8; }
.field input:focus,
.field textarea:focus {
	outline: none;
	border-bottom-color: var(--champagne);
}
.form .btn { width: 260px; padding: 20px 0; font-size: 12px; align-self: flex-end; }

.contact__aside { padding-top: 96px; }
.contact-card { border: 1px solid rgba(107, 99, 80, 0.35); padding: 44px; }
.contact-card__label {
	color: var(--taupe);
	font-size: 11px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
}
.contact-card h3 { font-size: 38px; color: var(--marine); margin-top: 14px; }
.contact-card p:not(.contact-card__label) { color: var(--taupe); font-size: 15px; margin-top: 10px; }
.contact-card .btn { margin-top: 28px; padding: 18px 0; font-size: 12px; }

.contact-list { display: flex; flex-direction: column; gap: 26px; margin-top: 46px; }
.contact-list dt {
	color: var(--taupe);
	font-size: 11px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
}
.contact-list dd {
	margin: 8px 0 0;
	color: var(--marine);
	font-size: 17px;
	font-weight: 300;
}
.contact-list dd a { color: var(--marine); }
.contact-list dd a:hover { color: var(--taupe); }

/* --------------------------------------------- CALENDRIER (flatpickr) */

.flatpickr-calendar {
	background: var(--ivory);
	border: 1px solid rgba(107, 99, 80, 0.3);
	border-radius: 0;
	box-shadow: 0 24px 60px rgba(11, 26, 43, 0.25);
	font-family: var(--sans);
}
.flatpickr-calendar.arrowTop::before,
.flatpickr-calendar.arrowTop::after { border-bottom-color: var(--ivory); }

.flatpickr-months .flatpickr-month,
.flatpickr-current-month,
.flatpickr-weekdays,
span.flatpickr-weekday {
	background: var(--ivory);
	color: var(--taupe);
	fill: var(--taupe);
}
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
	font-family: var(--serif);
	font-size: 17px;
	color: var(--marine);
}
span.flatpickr-weekday {
	font-size: 10px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-weight: 400;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg { fill: var(--champagne); }

.flatpickr-day {
	color: var(--marine);
	border-radius: 0;
	border-color: transparent;
	font-size: 14px;
}
.flatpickr-day:hover { background: rgba(188, 180, 156, 0.25); border-color: transparent; }
.flatpickr-day.today { border-color: var(--champagne); }

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
	background: var(--marine);
	border-color: var(--marine);
	color: var(--champagne-lite);
}
.flatpickr-day.inRange {
	background: rgba(188, 180, 156, 0.32);
	border-color: transparent;
	box-shadow: -5px 0 0 rgba(188, 180, 156, 0.32), 5px 0 0 rgba(188, 180, 156, 0.32);
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay { color: rgba(107, 99, 80, 0.35); }

/* Champ anti-robots, masqué sans display:none */
.honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* ------------------------------------------------- 14 bis. PAGES LÉGALES */

.legal { background: var(--ivory); color: var(--taupe); }
.legal__inner { max-width: 820px; margin: 0 auto; }
.legal h1 { font-size: 52px; color: var(--marine); margin-top: 20px; }
.legal h2 {
	font-size: 28px;
	color: var(--marine);
	margin: 44px 0 12px;
}
.legal p { margin-bottom: 16px; font-size: 16px; line-height: 1.9; }
.legal a { color: var(--marine); border-bottom: 1px solid var(--rule-light); }
.legal a:hover { color: var(--taupe); }
.legal__updated { margin-top: 44px; font-size: 13px; opacity: 0.7; }

.legal--center { text-align: center; }
.legal--center h1 { font-size: 60px; }
.legal__actions { display: flex; gap: 16px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }

@media (max-width: 768px) {
	.legal h1 { font-size: 36px; }
	.legal--center h1 { font-size: 40px; }
	.legal h2 { font-size: 24px; margin-top: 34px; }
	.legal p { font-size: 15px; }
}

/* ---------------------------------------------------------------- 15. FOOTER */

.footer {
	background: var(--marine);
	/* 130 px et non 44 : la barre legale passe au-dessus du bouton
	   WhatsApp flottant, au lieu de partager sa ligne. */
	padding: 90px var(--gutter) 130px;
	border-top: 1px solid rgba(188, 180, 156, 0.18);
}
/* Pied de page en 4 colonnes */
.footer__top {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1.3fr 1fr;
	gap: 48px;
	align-items: start;
}
.footer__logo { height: 96px; width: auto; }
.footer__tagline {
	color: var(--champagne);
	font-size: 12px;
	letter-spacing: 0.34em;
	text-transform: uppercase;
	margin-top: 26px;
}

.footer__col-title {
	color: var(--champagne);
	font-size: 11px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	margin-bottom: 22px;
}
.footer__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
	color: rgba(245, 241, 234, 0.7);
	font-size: 13px;
	letter-spacing: 0.06em;
}
.footer__col a {
	color: rgba(245, 241, 234, 0.7);
	font-size: 13px;
	letter-spacing: 0.06em;
}
.footer__col a:hover { color: var(--champagne-lite); }
.footer__cta { margin-top: 26px; font-size: 11px; }
.footer__rule { height: 1px; background: rgba(188, 180, 156, 0.18); margin: 56px 0 26px; border: 0; }
.footer__bottom {
	display: flex;
	justify-content: space-between;
	/* 0.58 et non 0.45 : a 12 px, l'ivoire a 45 pour cent ne donnait que 4,09
	   de contraste sur le marine, sous le minimum de 4,5 exige. */
	color: rgba(245, 241, 234, 0.58);
	font-size: 12px;
	letter-spacing: 0.1em;
	gap: 20px;
	flex-wrap: wrap;
}
.footer__bottom a { color: rgba(245, 241, 234, 0.58); }
.footer__bottom a:hover { color: var(--champagne); }
.footer__legal { display: flex; gap: 30px; }

/* Le decalage lateral reste, en second rideau : si la barre venait a redescendre
   sur la ligne du bouton, elle ne passerait toujours pas dessous. */
.footer__bottom { padding-right: 215px; }

/* ------------------------------------------------------- 16. WHATSAPP FLOTTANT */

.wa-float {
	position: fixed;
	right: 40px;
	bottom: 40px;
	z-index: 18;
	display: flex;
	align-items: center;
	gap: 14px;
	border: 1px solid rgba(188, 180, 156, 0.6);
	background: rgba(11, 26, 43, 0.92);
	padding: 16px 26px;
	color: var(--champagne-lite);
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	backdrop-filter: blur(6px);
	transition: border-color 300ms var(--ease), background 300ms var(--ease);
}
.wa-float:hover { border-color: var(--champagne-lite); background: rgba(11, 26, 43, 1); }
.wa-float i {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--champagne);
	flex: none;
}

/* ----------------------------------------------------------- 17. ANIMATIONS */

.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity var(--speed) var(--ease), transform var(--speed) var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ------------------------------------------------------------ 18. RESPONSIVE */

@media (max-width: 1439px) {
	:root { --gutter: 56px; --section-pad: 120px; }
	.hero h1 { font-size: 76px; }
	.section-head h2, .intro h2 { font-size: 50px; }
	.founder h2 { font-size: 46px; }
	.cta h2 { font-size: 58px; }
}

/* Sous 1200 px la colonne tombe sous 588 px : une seule colonne. */
@media (max-width: 1200px) {
	.contact { grid-template-columns: 1fr; gap: 70px; }
}

@media (max-width: 1024px) {
	:root { --gutter: 40px; --section-pad: 100px; }

	/* 3 colonnes → 2 */
	.services-a__row { grid-template-columns: repeat(2, 1fr); }
	.packages-grid { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
	.pack--featured { margin-top: 0; padding: 56px 42px; }
	.steps { grid-template-columns: 1fr 1fr; gap: 50px; }
	.contact { grid-template-columns: 1fr; gap: 70px; }
	.contact__aside { padding-top: 0; }

	.nav a:not(.btn) { display: none; }
	.hero h1 { font-size: 64px; }
}

@media (max-width: 768px) {
	:root { --gutter: 28px; --section-pad: 84px; }

	body { font-size: 15px; }

	.header { padding: 20px var(--gutter); }
	.header.is-scrolled { padding: 14px var(--gutter); }
	.brand__full { height: 54px; }
	.header.is-scrolled .brand__full { opacity: 1; height: 44px; }
	.header.is-scrolled .brand__compact { opacity: 0; }
	.nav { display: none; }
	.burger { display: flex; }

	.hero { min-height: 720px; }
	.hero h1 { font-size: 52px; line-height: 1.08; margin-top: 22px; }
	.hero .eyebrow { font-size: 10px; letter-spacing: 0.36em; }
	.hero__lede { font-size: 15px; margin-top: 22px; }
	.hero__actions { flex-direction: column; gap: 12px; margin-top: 36px; }
	.hero__actions .btn { width: 100%; padding: 18px 0; font-size: 12px; }
	.hero__watermark { width: 380px; right: -80px; }
	.scroll-hint { display: none; }

	.reassurance { grid-template-columns: 1fr 1fr; }
	.reassurance li {
		padding: 20px 14px;
		font-size: 10px;
		letter-spacing: 0.16em;
		border-bottom: 1px solid rgba(188, 180, 156, 0.16);
	}
	.reassurance li:nth-child(even) { border-right: 0; }
	.reassurance li:nth-last-child(-n+2) { border-bottom: 0; }

	.intro { padding: var(--section-pad) var(--gutter); }
	.intro h2 { font-size: 38px; line-height: 1.18; }
	.intro p { font-size: 15px; line-height: 1.95; margin-top: 24px; }
	.intro__watermark { width: 340px; }
	.section-head { margin-bottom: 40px; }
	.section-head h2 { font-size: 38px; margin-top: 14px; }
	.eyebrow { font-size: 10px; letter-spacing: 0.36em; }

	/* Services : toutes les cartes au même format */
	.services { padding: var(--section-pad) 22px; }
	.services-a__row { grid-template-columns: 1fr; gap: 16px; }
	.services-a { gap: 16px; }
	.svc-card, .svc-card--wide { height: 260px; }
	.svc-card__body, .svc-card--wide .svc-card__body { left: 22px; right: 22px; bottom: 22px; }
	.svc-card__body h3, .svc-card--wide .svc-card__body h3 { font-size: 26px; }
	.svc-card__rule, .svc-card--wide .svc-card__rule { display: none; }
	.svc-card__list, .svc-card--wide .svc-card__list {
		display: block;
		font-size: 12px;
		line-height: 1.9;
		margin-top: 10px;
		color: rgba(245, 241, 234, 0.7);
	}
	.svc-card__list li { display: inline; }
	.svc-card__list li + li::before,
	.svc-card--wide .svc-card__list li + li::before {
		content: ' · ';
		color: var(--champagne);
		margin: 0;
	}


	.packages-grid { gap: 18px; }
	.pack, .pack--featured { padding: 34px 26px; }
	.pack h3 { font-size: 28px; }
	.pack__list { font-size: 14px; line-height: 2.1; }
	.packages__note { margin-top: 34px; font-size: 14px; }

	.steps { grid-template-columns: 1fr; gap: 40px; }
	p.step__num { font-size: 46px; }
	.step h3 { font-size: 26px; }
	.step p { font-size: 15px; }

	.founder__text { max-width: 100%; }
	.founder .rule { margin-left: auto; margin-right: auto; }
	.founder h2 { font-size: 40px; }
	.founder p { font-size: 15px; line-height: 1.95; }
	.founder__signature { font-size: 36px; margin-top: 26px; }

	.cta { min-height: 0; padding: 96px var(--gutter); }
	.cta h2 { font-size: 42px; line-height: 1.15; }
	.cta p { font-size: 15px; }
	.cta .btn { width: 100%; margin-top: 30px; }

	.contact { padding: var(--section-pad) var(--gutter); gap: 40px; }
	.contact h2 { font-size: 38px; }
	.form { gap: 28px; margin-top: 36px; }
	.form .btn { width: 100%; align-self: stretch; }
	.contact-card { padding: 28px; }
	.contact-card h3 { font-size: 30px; }

	.footer { padding: 60px var(--gutter) 110px; text-align: center; }
	.footer__top { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 40px; }
	.footer__col ul { align-items: center; }
	.footer__logo { height: 82px; margin: 0 auto; }
	/* Empile et centre : la reserve se prend en hauteur, pas en largeur. Le
	   bouton y mesure environ 43 px et se tient a 24 px du bord. */

	.footer__bottom { flex-direction: column; align-items: center; gap: 12px; font-size: 11px; padding-right: 0; }

	.wa-float { right: 20px; bottom: 24px; padding: 14px 20px; font-size: 11px; }
}

@media (max-width: 390px) {
	:root { --gutter: 22px; }
	.hero h1 { font-size: 46px; }
	.intro h2, .section-head h2 { font-size: 34px; }
}

/* ------------------------------------------------------ 19. ACCESSIBILITÉ */

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
	.reveal { opacity: 1; transform: none; }
}

@media print {
	.header, .wa-float, .mobile-menu, .scroll-hint { display: none !important; }
	body { background: #fff; color: #000; }
}

/* --------------------------------------------------- 20. BANDEAU COOKIES */

/* Bandeau bas. Masqué par `hidden` tant que le script n'a pas tranché. */

.cookies {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 60;
	background: var(--marine-2);
	border-top: 1px solid var(--rule-strong);
	padding: 24px var(--gutter);
	box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.4);
}

.cookies[hidden] { display: none; }

.cookies__inner {
	max-width: var(--maxw);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.cookies__text {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.8;
	color: rgba(245, 241, 234, 0.78);
	max-width: 720px;
}

.cookies__actions {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

/* Boutons plus compacts que ceux du site, le bandeau doit rester discret */
.cookies__btn {
	padding: 14px 32px;
	font-size: 11px;
	letter-spacing: 0.2em;
}

/* Le bouton WhatsApp remonte tant que le bandeau occupe le bas. */
.cookies:not([hidden]) ~ .wa-float { bottom: 148px; }

@media (max-width: 860px) {
	.cookies { padding: 20px 24px; }
	.cookies__inner { flex-direction: column; align-items: stretch; gap: 18px; }
	.cookies__text { font-size: 13px; max-width: 100%; }
	.cookies__actions { justify-content: stretch; }
	.cookies__btn { flex: 1; padding: 14px 10px; }
	.cookies:not([hidden]) ~ .wa-float { bottom: 210px; }
}

/* -------------------------------------------------- 21. PAGES DE SERVICE */

/* En-tête, plus court que le hero pour tenir au-dessus de la ligne de
   flottaison sur mobile. */
.svc-hero {
	position: relative;
	min-height: 62vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	text-align: center;
	padding: 160px var(--gutter) 110px;
}

.svc-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 860px;
}

.svc-hero h1 {
	font-size: 62px;
	color: var(--ivory);
	margin-top: 20px;
}

.svc-hero__lede {
	color: rgba(245, 241, 234, 0.82);
	font-size: 19px;
	font-weight: 200;
	line-height: 1.85;
	max-width: 700px;
	margin: 0 auto;
}

/* Fil d'Ariane discret, doublé en JSON-LD */
.svc-crumb {
	font-size: 11px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: rgba(245, 241, 234, 0.5);
	margin-bottom: 26px;
}
.svc-crumb a { color: rgba(245, 241, 234, 0.7); }
.svc-crumb a:hover { color: var(--champagne-lite); }
.svc-crumb span { margin: 0 8px; }

/* Colonne de lecture, calibree pour de la prose suivie. */
.svc-body__inner {
	max-width: 780px;
	margin: 0 auto;
}

.svc-body h2,
.svc-included h2,
.svc-faq h2,
.svc-others h2 {
	font-size: 40px;
	color: var(--ivory);
	margin-bottom: 0;
}

/* Filet champagne sous les titres, motif .rule repris en ::after. */
.svc-body h2::after,
.svc-included h2::after,
.svc-faq h2::after,
.svc-others h2::after {
	content: '';
	display: block;
	width: 44px;
	height: 1px;
	background: var(--champagne);
	margin: 28px 0 34px;
}

.svc-body p {
	color: rgba(245, 241, 234, 0.76);
	font-size: 17px;
	font-weight: 300;
	line-height: 1.95;
	margin-bottom: 22px;
}

.svc-included__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 40px;
}

.svc-included__list li {
	position: relative;
	padding: 16px 0 16px 26px;
	border-bottom: 1px solid var(--rule);
	color: rgba(245, 241, 234, 0.8);
	font-size: 16px;
	font-weight: 300;
}

.svc-included__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 27px;
	width: 12px;
	height: 1px;
	background: var(--champagne);
}

/* FAQ : liste de définitions, la structure que lisent les moteurs de réponse */
.svc-faq__list { margin: 0; }

.svc-faq__item {
	padding: 26px 0;
	border-bottom: 1px solid var(--rule);
}
.svc-faq__item:first-child { padding-top: 0; }

.svc-faq__list dt {
	position: relative;
	padding-left: 30px;
	font-family: var(--serif);
	font-size: 24px;
	font-weight: 400;
	color: var(--ivory);
	margin-bottom: 12px;
	line-height: 1.35;
}

/* Tiret champagne, repris de la liste des prestations. */
.svc-faq__list dt::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.7em;
	width: 16px;
	height: 1px;
	background: var(--champagne);
}

/* La reponse s'aligne sur la question, pas sur le tiret. */
.svc-faq__list dd { padding-left: 30px; }

.svc-faq__list dd {
	margin: 0;
	color: rgba(245, 241, 234, 0.74);
	font-size: 16px;
	font-weight: 300;
	line-height: 1.9;
}

/* Maillage vers les autres services */
.svc-others__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.svc-others__list li { border-bottom: 1px solid var(--rule); }

.svc-others__list a {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 24px;
	padding: 22px 0;
	color: var(--ivory);
	transition: color 300ms var(--ease);
}
.svc-others__list a:hover { color: var(--champagne-lite); }

.svc-others__name {
	font-family: var(--serif);
	font-size: 24px;
	font-weight: 400;
}

.svc-others__note {
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(188, 180, 156, 0.7);
	text-align: right;
	flex-shrink: 0;
}

@media (max-width: 860px) {
	.svc-hero { min-height: 0; padding: 130px 24px 80px; }
	.svc-hero h1 { font-size: 40px; }
	.svc-hero__lede { font-size: 16px; }
	.svc-body h2,
	.svc-included h2,
	.svc-faq h2,
	.svc-others h2 { font-size: 30px; }
	.svc-included__list { grid-template-columns: 1fr; gap: 0; }
	.svc-faq__list dt { font-size: 20px; padding-left: 22px; }
	.svc-faq__list dt::before { width: 12px; }
	.svc-faq__list dd { padding-left: 22px; }
	.svc-others__list a { flex-direction: column; gap: 6px; }
	.svc-others__name { font-size: 20px; }
	.svc-others__note { text-align: left; }
}

/* Lien de la carte vers sa page de service. */
.svc-card__more {
	display: inline-block;
	margin-top: 16px;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--champagne);
	border-bottom: 1px solid rgba(188, 180, 156, 0.4);
	padding-bottom: 5px;
	transition: color 300ms var(--ease), border-color 300ms var(--ease);
}
.svc-card__more:hover { color: var(--champagne-lite); border-bottom-color: var(--champagne-lite); }

/* Image qui remplit son conteneur, comme le ferait un fond en cover. */
.photo-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	background-color: var(--marine-3);
}

/* Image de contenu d'une page de service : pleine largeur de la colonne de
   lecture, filet champagne decale, lisere interne. */
.svc-figure {
	margin: 0 0 -44px;
	padding: 0 var(--gutter);
	position: relative;
	z-index: 0;
}

/* Le bas de l'image glisse sous la section suivante, qui la recouvre et
   projette son ombre vers le haut. Une ombre portee sous le cadre donnait
   l'effet inverse : l'image semblait posee par-dessus le bloc. */
.svc-figure + section {
	position: relative;
	z-index: 1;
	box-shadow: 0 -16px 32px rgba(0, 0, 0, 0.55);
}

.svc-figure__frame {
	position: relative;
	max-width: 1100px;
	margin: 0 auto;
}

/* Filet decale vers le haut a gauche, comme un tirage sur une planche
   contact. Opacite volontairement basse sur une image pleine largeur. */
.svc-figure__frame::before {
	content: '';
	position: absolute;
	inset: -14px 14px 14px -14px;
	border: 1px solid rgba(188, 180, 156, 0.32);
	pointer-events: none;
}

/* Lisere interne, qui adoucit le bord franc de la photo */
.svc-figure__frame::after {
	content: '';
	position: absolute;
	inset: 8px;
	border: 1px solid rgba(245, 241, 234, 0.15);
	pointer-events: none;
}

.svc-figure__img {
	display: block;
	width: 100%;
	height: clamp(240px, 42vw, 520px);
	object-fit: cover;
	object-position: center;
	background-color: var(--marine-3);
}

@media (max-width: 860px) {
	.svc-figure { padding: 0 24px; margin-bottom: -26px; }
	.svc-figure__img { height: 240px; }

	/* Ramene a l'interieur : une gouttiere de 24 px ne suffit pas. */
	.svc-figure__frame::before { inset: -8px 8px 8px -8px; }
	.svc-figure__frame::after { inset: 6px; }
}

/* reCAPTCHA a gauche, bouton d'envoi a droite. Le bouton est cale par
   justify-content, pour rester a droite meme sans widget. */
.form__submit {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 24px;
}

/* Iframe externe, non stylable : 304 x 78 px imposes. */
.form__submit .g-recaptcha { margin-right: auto; }

/* Annule le align-self: flex-end de .form .btn, hors sujet en ligne. */
.form__submit .btn { align-self: center; }

/* Sous 340 px le widget deborde : mise a l'echelle, boite comprise. */
@media (max-width: 340px) {
	.form__submit .g-recaptcha {
		width: 274px;
		height: 70px;
		transform: scale(0.9);
		transform-origin: left top;
	}
}

/* Liens dans le texte courant : soulignes, la couleur seule ne donne
   que 1,2 de contraste avec le paragraphe la ou 3 sont exiges. */
.svc-body p a,
.svc-included__list a,
.svc-faq__list dd a {
	text-decoration: underline;
	text-decoration-color: rgba(188, 180, 156, 0.5);
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
	transition: color 300ms var(--ease), text-decoration-color 300ms var(--ease);
}

.svc-body p a:hover,
.svc-included__list a:hover,
.svc-faq__list dd a:hover {
	color: var(--champagne-lite);
	text-decoration-color: var(--champagne-lite);
}
