/* =========================================================================
   Diamond Spa Casablanca — feuille de style principale
   Architecture : tokens → base → layout → composants → pages → utilitaires
   Aucune dépendance. Mobile-first. ~ 24 Ko non compressé.
   ========================================================================= */

/* ---------- Polices auto-hébergées (latin) ---------- */
@font-face {
	font-family: 'Marcellus';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/marcellus-latin.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: 'Jost';
	font-style: normal;
	font-weight: 300 700;
	font-display: swap;
	src: url('../fonts/jost-latin-var.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Tokens ---------- */
:root {
	--c-ink: #171c21;
	--c-petrol: #14303a;
	--c-petrol-2: #1d4450;
	--c-petrol-3: #0f2229;
	--c-gold: #c4a56a;
	--c-gold-2: #d9c08d;
	--c-gold-3: #f0e6d2;
	--c-ivory: #f8f4ee;
	--c-sand: #efe8dc;
	--c-stone: #d9d0c1;
	--c-white: #ffffff;
	--c-text: #2a2f34;
	--c-muted: #6b727a;
	--c-line: rgba(23, 28, 33, 0.1);
	--c-line-light: rgba(255, 255, 255, 0.14);
	--c-success: #2f7d4f;
	--c-error: #b3413a;

	--f-display: 'Marcellus', 'Times New Roman', Georgia, serif;
	--f-body: 'Jost', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

	--fs-xs: 0.8125rem;
	--fs-sm: 0.9375rem;
	--fs-base: 1.0625rem;
	--fs-md: 1.1875rem;
	--fs-lg: clamp(1.35rem, 1.1rem + 1vw, 1.75rem);
	--fs-xl: clamp(1.75rem, 1.3rem + 2vw, 2.5rem);
	--fs-2xl: clamp(2.1rem, 1.5rem + 3vw, 3.4rem);
	--fs-hero: clamp(2.6rem, 1.6rem + 4.5vw, 5rem);

	--radius: 4px;
	--radius-lg: 8px;
	--shadow: 0 10px 30px -12px rgba(23, 28, 33, 0.18);
	--shadow-lg: 0 30px 60px -30px rgba(23, 28, 33, 0.35);

	--container: 1200px;
	--gutter: clamp(1.1rem, 4vw, 2.5rem);
	--section: clamp(3.5rem, 8vw, 6.5rem);
	--header-h: 76px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }
body {
	margin: 0;
	font-family: var(--f-body);
	font-size: var(--fs-base);
	font-weight: 400;
	line-height: 1.65;
	color: var(--c-text);
	background: var(--c-ivory);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
body.has-mobile-bar { padding-bottom: 64px; }
@media (min-width: 768px) { body.has-mobile-bar { padding-bottom: 0; } }

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.15em; }
a:hover { color: var(--c-petrol); }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4, .h3, .h4 { font-family: var(--f-display); font-weight: 400; line-height: 1.15; color: var(--c-ink); margin: 0 0 0.6em; letter-spacing: 0.005em; }
h1 { font-size: var(--fs-2xl); }
h2 { font-size: var(--fs-xl); }
h3, .h3 { font-size: var(--fs-lg); }
h4, .h4 { font-size: var(--fs-md); }
strong { font-weight: 600; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 3px; }
::selection { background: var(--c-gold-2); color: var(--c-ink); }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); border: 0; white-space: nowrap; }
.skip-link { position: absolute; left: 1rem; top: -100px; z-index: 1000; padding: 0.6rem 1rem; background: var(--c-petrol); color: #fff; border-radius: var(--radius); }
.skip-link:focus { top: 1rem; }
.text-center { text-align: center; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 820px; }
.section { padding-block: var(--section); }
.section--first { padding-top: clamp(2.5rem, 6vw, 4.5rem); }
.section--sand { background: var(--c-sand); }
.section--dark { background: var(--c-petrol); color: rgba(255, 255, 255, 0.86); }
.section--dark h2, .section--dark h3, .section--dark .section-title { color: #fff; }
.section--dark a:hover { color: var(--c-gold-2); }
.section__more { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-top: clamp(2rem, 4vw, 3rem); }

.section-head { max-width: 760px; margin: 0 auto clamp(2.25rem, 5vw, 3.5rem); }
.section-head--center { text-align: center; }
.section-head--left { margin-inline: 0; }
.section-title { margin-bottom: 0.5em; }
.section-title--center { text-align: center; }
.section-intro { font-size: var(--fs-md); color: var(--c-muted); font-weight: 300; }
.section--dark .section-intro { color: rgba(255, 255, 255, 0.72); }
.section-intro--left { max-width: 820px; margin-bottom: clamp(1.75rem, 4vw, 2.5rem); }
.section-icon { display: inline-flex; width: 54px; height: 54px; align-items: center; justify-content: center; border: 1px solid var(--c-gold); border-radius: 50%; color: var(--c-gold); margin-bottom: 1.25rem; }
.section-icon svg { width: 24px; height: 24px; }

.eyebrow {
	display: inline-flex; align-items: center; gap: 0.75rem;
	margin: 0 0 1rem; font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-petrol-2);
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; opacity: 0.6; }
.section-head--center .eyebrow::after { content: ''; width: 28px; height: 1px; background: currentColor; opacity: 0.6; }
.eyebrow--gold { color: var(--c-gold); }
.section--dark .eyebrow { color: var(--c-gold); }

/* ---------- Boutons ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
	min-height: 48px; padding: 0.75rem 1.5rem;
	font-size: var(--fs-sm); font-weight: 500; letter-spacing: 0.04em; text-decoration: none; line-height: 1.2;
	border: 1px solid transparent; border-radius: var(--radius);
	transition: background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
	-webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn__icon { width: 18px; height: 18px; flex: none; }
.btn__icon--end { transition: transform 0.25s var(--ease); }
.btn:hover .btn__icon--end { transform: translateX(3px); }
.btn--small { min-height: 42px; padding: 0.55rem 1.1rem; font-size: var(--fs-xs); }
.btn--large { min-height: 54px; padding: 0.9rem 1.9rem; font-size: var(--fs-base); }
.btn--block { width: 100%; }
.btn--primary { background: var(--c-petrol); color: #fff; border-color: var(--c-petrol); }
.btn--primary:hover { background: var(--c-petrol-2); color: #fff; box-shadow: var(--shadow); }
.btn--gold { background: var(--c-gold); color: var(--c-ink); border-color: var(--c-gold); }
.btn--gold:hover { background: var(--c-gold-2); color: var(--c-ink); box-shadow: 0 12px 30px -12px rgba(196, 165, 106, 0.7); }
.btn--ghost { background: transparent; color: var(--c-petrol); border-color: rgba(20, 48, 58, 0.35); }
.btn--ghost:hover { border-color: var(--c-petrol); background: rgba(20, 48, 58, 0.04); color: var(--c-petrol); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.45); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); color: #fff; }
.btn-group { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.btn-group--center { justify-content: center; }
.link-arrow { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 500; font-size: var(--fs-sm); letter-spacing: 0.03em; color: var(--c-petrol); text-decoration: none; border-bottom: 1px solid var(--c-gold); padding-bottom: 2px; }
.link-arrow:hover .btn__icon--end { transform: translateX(3px); }
.link-arrow .btn__icon { width: 16px; height: 16px; }

/* ---------- Header ---------- */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(248, 244, 238, 0.92);
	backdrop-filter: saturate(160%) blur(10px); -webkit-backdrop-filter: saturate(160%) blur(10px);
	border-bottom: 1px solid var(--c-line);
	transition: box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 8px 30px -18px rgba(23, 28, 33, 0.35); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); }
.site-logo { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--c-ink); }
.site-logo__mark { width: 34px; height: 34px; color: var(--c-gold); flex: none; }
.site-logo__text { display: flex; flex-direction: column; line-height: 1; }
.site-logo__name { font-family: var(--f-display); font-size: clamp(1rem, 0.7rem + 1.2vw, 1.25rem); letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; }
.site-logo__city { font-size: 0.62rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--c-muted); margin-top: 0.3rem; }
.site-logo--light { color: #fff; }
.site-logo--light .site-logo__city { color: var(--c-gold-2); }
.site-logo__img { max-height: 48px; width: auto; }
.nav { display: none; }
.nav__list { display: flex; gap: clamp(1rem, 2vw, 1.75rem); list-style: none; }
.nav__list a { display: inline-block; padding: 0.4rem 0; font-size: var(--fs-sm); font-weight: 500; letter-spacing: 0.04em; text-decoration: none; color: var(--c-ink); position: relative; }
.nav__list a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--c-gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease); }
.nav__list a:hover::after, .nav__list .current-menu-item > a::after { transform: scaleX(1); }
.nav__list .current-menu-item > a { color: var(--c-petrol); }
.site-header__actions { display: flex; align-items: center; gap: 0.9rem; }
.site-header__cta { display: none; }
.lang-switch { display: inline-flex; align-items: center; gap: 0.25rem; font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.1em; }
.lang-switch a { padding: 0.3rem 0.4rem; text-decoration: none; color: var(--c-muted); border-radius: 2px; }
.lang-switch a.is-active { color: var(--c-ink); text-decoration: underline; text-decoration-color: var(--c-gold); text-underline-offset: 0.3em; }
.lang-switch a + a::before { content: ''; }
.lang-switch--large { font-size: var(--fs-base); gap: 1rem; margin-bottom: 1rem; }
.lang-switch--footer a { color: rgba(255, 255, 255, 0.6); }
.lang-switch--footer a.is-active { color: #fff; }
.nav-toggle { display: inline-flex; align-items: center; gap: 0.5rem; min-height: 44px; padding: 0.4rem 0.6rem; background: none; border: 1px solid var(--c-line); border-radius: var(--radius); color: var(--c-ink); }
.nav-toggle__label { font-size: var(--fs-xs); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; }
.nav-toggle__icon { width: 22px; height: 22px; }
.nav-toggle__icon--close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon--open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon--close { display: block; }
.mobile-nav { border-top: 1px solid var(--c-line); background: var(--c-ivory); max-height: calc(100dvh - var(--header-h)); overflow-y: auto; }
.mobile-nav[hidden] { display: none; }
.mobile-nav__inner { padding-block: 1.25rem 2rem; }
.mobile-nav__list { list-style: none; }
.mobile-nav__list a { display: block; padding: 0.85rem 0; font-family: var(--f-display); font-size: 1.35rem; text-decoration: none; color: var(--c-ink); border-bottom: 1px solid var(--c-line); }
.mobile-nav__list .current-menu-item > a { color: var(--c-petrol); }
.mobile-nav__footer { display: grid; gap: 0.75rem; margin-top: 1.5rem; }
body.nav-open { overflow: hidden; }
@media (min-width: 1024px) {
	.nav { display: block; }
	.nav-toggle, .mobile-nav { display: none !important; }
	.site-header__cta { display: inline-flex; }
}

/* ---------- Hero (accueil) ---------- */
.hero {
	position: relative; overflow: hidden; color: #fff;
	background: radial-gradient(120% 90% at 85% 10%, rgba(196, 165, 106, 0.22), transparent 55%), linear-gradient(160deg, var(--c-petrol-2), var(--c-petrol) 45%, var(--c-petrol-3));
}
.hero::after { content: ''; position: absolute; inset: auto 0 0; height: 1px; background: linear-gradient(90deg, transparent, var(--c-gold), transparent); opacity: 0.6; }
.hero__inner { display: grid; gap: 2.5rem; padding-block: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.hero__title { font-size: var(--fs-hero); color: #fff; margin-bottom: 1rem; letter-spacing: 0.02em; }
.hero__subtitle { display: block; margin-top: 0.5rem; font-family: var(--f-body); font-weight: 300; font-size: clamp(1.15rem, 0.9rem + 1vw, 1.6rem); letter-spacing: 0.02em; color: var(--c-gold-2); }
.hero__text { font-size: var(--fs-md); font-weight: 300; color: rgba(255, 255, 255, 0.82); max-width: 560px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; list-style: none; margin-top: 2rem; font-size: var(--fs-sm); color: rgba(255, 255, 255, 0.78); }
.hero__badges li { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__badge-icon { width: 16px; height: 16px; color: var(--c-gold); }
.hero__media { position: relative; }
.hero__figure { position: relative; margin: 0; }
.hero__figure::before { content: ''; position: absolute; inset: 14px -14px -14px 14px; border: 1px solid rgba(196, 165, 106, 0.55); border-radius: var(--radius-lg); pointer-events: none; }
.hero__img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero__rating {
	position: absolute; left: 0.75rem; bottom: 1.25rem; display: inline-flex; flex-direction: column; gap: 0.2rem;
	padding: 0.75rem 1rem; background: var(--c-ivory); color: var(--c-ink); text-decoration: none; border-radius: var(--radius); box-shadow: var(--shadow-lg);
	font-size: var(--fs-xs); letter-spacing: 0.02em;
}
.hero__stars { display: inline-flex; gap: 2px; color: var(--c-gold); }
.hero__star { width: 14px; height: 14px; }
@media (min-width: 640px) { .hero__img { aspect-ratio: 5 / 6; } }
@media (min-width: 1024px) {
	.hero__inner { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; min-height: min(calc(100vh - var(--header-h)), 820px); }
	.hero__media { padding-left: 1.5rem; }
	.hero__img { aspect-ratio: 4 / 5; max-height: min(calc(100vh - var(--header-h) - 8rem), 680px); }
	.hero__rating { left: 0; }
}

/* ---------- Page hero (pages intérieures) ---------- */
.page-hero { background: var(--c-petrol); color: #fff; padding-block: clamp(2rem, 5vw, 3.5rem) clamp(2.5rem, 6vw, 4rem); position: relative; }
.page-hero::after { content: ''; position: absolute; inset: auto 0 0; height: 1px; background: linear-gradient(90deg, transparent, var(--c-gold), transparent); opacity: 0.6; }
.page-hero__title { color: #fff; max-width: 900px; margin-bottom: 0.5em; }
.page-hero__lead { font-size: var(--fs-md); font-weight: 300; color: rgba(255, 255, 255, 0.78); max-width: 720px; margin: 0; }
.breadcrumb { margin-bottom: 1.25rem; font-size: var(--fs-xs); letter-spacing: 0.04em; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 0.35rem; list-style: none; color: rgba(255, 255, 255, 0.6); }
.breadcrumb li + li::before { content: '/'; margin-right: 0.35rem; opacity: 0.5; }
.breadcrumb a { color: rgba(255, 255, 255, 0.78); text-decoration: none; }
.breadcrumb a:hover { color: var(--c-gold-2); }
.breadcrumb [aria-current] { color: var(--c-gold-2); }

/* ---------- Intro + piliers ---------- */
.intro { display: grid; gap: 2.5rem; align-items: start; }
.intro__text p { font-size: var(--fs-md); font-weight: 300; color: var(--c-text); }
.intro__text .link-arrow { margin-top: 0.75rem; }
.intro__media { margin: 0; }
.intro__img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.pillars { display: grid; gap: 1rem; list-style: none; }
.pillar { padding: 1.5rem; background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius-lg); }
.pillar__icon, .feature__icon { display: inline-flex; width: 46px; height: 46px; align-items: center; justify-content: center; border-radius: 50%; background: var(--c-gold-3); color: var(--c-petrol); margin-bottom: 1rem; }
.pillar__icon svg, .feature__icon svg { width: 22px; height: 22px; }
.pillar__title, .feature__title { font-size: var(--fs-md); margin-bottom: 0.4em; }
.pillar p, .feature p { font-size: var(--fs-sm); color: var(--c-muted); margin: 0; }
@media (min-width: 768px) { .intro { grid-template-columns: 1.1fr 0.9fr; gap: 3.5rem; } .intro--simple { align-items: center; } }
@media (min-width: 1024px) { .intro { gap: 5rem; } }

/* ---------- Cartes d'offre (3 univers) ---------- */
.offer-grid { display: grid; gap: 1.5rem; }
.offer { display: flex; flex-direction: column; background: var(--c-white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--c-line); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.offer:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.offer__media { display: block; overflow: hidden; }
.offer__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.8s var(--ease); }
.offer:hover .offer__img { transform: scale(1.04); }
.offer__body { display: flex; flex-direction: column; flex: 1; padding: 1.5rem; }
.offer__price { font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 0.5rem; }
.offer__title { font-size: var(--fs-lg); margin-bottom: 0.5rem; }
.offer__title a { text-decoration: none; }
.offer__text { font-size: var(--fs-sm); color: var(--c-muted); }
.offer__result { font-family: var(--f-display); font-style: italic; color: var(--c-petrol); font-size: var(--fs-base); margin-top: auto; padding-top: 0.5rem; }
.offer__actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--c-line); }
@media (min-width: 640px) { .offer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .offer-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

/* ---------- Split (image + texte) ---------- */
.split { display: grid; gap: 2.5rem; align-items: center; }
.split--top { align-items: start; }
.split__media { margin: 0; position: relative; }
.split__img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split__content > p { font-size: var(--fs-md); font-weight: 300; }
.split__price { font-family: var(--f-display); font-size: var(--fs-lg); color: var(--c-petrol); margin-top: 1.25rem; }
.section--dark .split__price { color: var(--c-gold-2); }
.check-list { list-style: none; display: grid; gap: 0.6rem; margin-top: 1.25rem; }
.check-list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: var(--fs-base); }
.check-list svg { width: 18px; height: 18px; flex: none; margin-top: 0.3em; color: var(--c-gold); }
.check-list--light { color: rgba(255, 255, 255, 0.86); }
.check-list--compact li { font-size: var(--fs-sm); }
.check-list--two { margin-block: 1.5rem 0; }
@media (min-width: 640px) { .check-list--two { grid-template-columns: 1fr 1fr; gap: 0.8rem 2rem; } }
@media (min-width: 900px) {
	.split { grid-template-columns: 1fr 1fr; gap: 4rem; }
	.split--reverse .split__media { order: 2; }
	.split__img { aspect-ratio: 5 / 6; }
}
@media (min-width: 1200px) { .split { gap: 5.5rem; } }

/* ---------- Étapes ---------- */
.steps { display: grid; gap: 1.25rem; list-style: none; counter-reset: step; }
.step { position: relative; padding: 1.75rem 1.5rem 1.5rem; background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius-lg); }
.step__num { display: block; font-family: var(--f-display); font-size: 2rem; line-height: 1; color: var(--c-gold); margin-bottom: 0.9rem; }
.step__title { font-size: var(--fs-md); margin-bottom: 0.4em; }
.step p { font-size: var(--fs-sm); color: var(--c-muted); margin: 0; }
.steps--light .step { background: rgba(255, 255, 255, 0.05); border-color: var(--c-line-light); }
.steps--light .step__title { color: #fff; }
.steps--light .step p { color: rgba(255, 255, 255, 0.72); }
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); } .steps--3 { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Tarifs ---------- */
.price-grid { display: grid; gap: 1.5rem; }
.price-block { padding: 1.5rem; background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius-lg); }
.price-block__title { display: flex; align-items: center; gap: 0.7rem; font-size: var(--fs-lg); padding-bottom: 0.9rem; margin-bottom: 0.5rem; border-bottom: 1px solid var(--c-gold); }
.price-block__icon { width: 22px; height: 22px; color: var(--c-gold); }
.price-block .link-arrow { margin-top: 1.25rem; }
.price-table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.price-table th, .price-table td { padding: 0.85rem 0.25rem; border-bottom: 1px dashed var(--c-line); vertical-align: top; text-align: left; }
.price-table tbody tr:last-child th, .price-table tbody tr:last-child td { border-bottom: 0; }
.price-table th[scope="row"] { font-weight: 500; color: var(--c-ink); }
.price-table th[scope="row"] a { text-decoration: none; }
.price-table th[scope="row"] a:hover { color: var(--c-petrol); text-decoration: underline; text-decoration-color: var(--c-gold); }
.price-table__tag { display: block; font-size: var(--fs-xs); font-weight: 400; color: var(--c-muted); margin-top: 0.15rem; }
.price-table__dur { white-space: nowrap; color: var(--c-muted); }
.price-table__price { text-align: right !important; white-space: nowrap; font-family: var(--f-display); font-size: var(--fs-md); color: var(--c-petrol); }
.price-table__price small, .care-card__price small { display: block; font-family: var(--f-body); font-size: var(--fs-xs); color: var(--c-muted); line-height: 1.2; }
.price-table--two thead th { font-size: var(--fs-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-muted); font-weight: 500; text-align: right; }
.price-table--two thead th:first-child { text-align: left; }
.price-note { font-size: var(--fs-xs); color: var(--c-muted); text-align: center; margin-top: 1.5rem; }
@media (max-width: 639px) {
	.price-block { padding: 1.25rem 1rem; }
	.price-block--wide .price-table__tag { display: none; }
	.price-table th, .price-table td { padding: 0.75rem 0.2rem; }
	.price-table__price { font-size: var(--fs-base); }
}
@media (min-width: 900px) {
	.price-grid { grid-template-columns: 1fr 1fr; }
	.price-block--wide { grid-column: 1 / -1; }
	.price-block--wide .price-table, .price-block--wide .price-table tbody { display: block; }
	.price-block--wide .price-table thead { display: none; }
	.price-block--wide .price-table tbody { display: grid; grid-template-columns: 1fr 1fr; column-gap: 3rem; }
	.price-block--wide .price-table tr { display: grid; grid-template-columns: 1fr auto auto; gap: 0 1rem; align-items: baseline; border-bottom: 1px dashed var(--c-line); }
	.price-block--wide .price-table th, .price-block--wide .price-table td { border-bottom: 0; }
	.price-block--wide .price-table tbody tr:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ---------- Cartes de soins ---------- */
.care-grid { display: grid; gap: 1.5rem; }
.care-card { position: relative; display: flex; flex-direction: column; padding: 1.75rem 1.5rem 1.5rem; background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius-lg); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); scroll-margin-top: calc(var(--header-h) + 1.5rem); }
.care-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.care-card--featured { border-color: var(--c-gold); background: linear-gradient(180deg, #fffdf8, var(--c-white)); }
.care-card__badge { position: absolute; top: -0.7rem; left: 1.5rem; padding: 0.2rem 0.7rem; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; background: var(--c-gold); color: var(--c-ink); border-radius: 2px; }
.care-card__tag { font-size: var(--fs-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-gold); font-weight: 500; margin-bottom: 0.4rem; }
.care-card__title { font-size: var(--fs-lg); margin-bottom: 0.75rem; }
.care-card__meta { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 0.5rem 1rem; padding: 0.75rem 0; border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); margin-bottom: 1rem; }
.care-card__price { font-family: var(--f-display); font-size: 1.5rem; color: var(--c-petrol); }
.care-card__duration { display: inline-flex; align-items: center; gap: 0.35rem; font-size: var(--fs-sm); color: var(--c-muted); }
.care-card__icon { width: 15px; height: 15px; }
.care-card__prices { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin: 0 0 1rem; padding: 0.75rem 0; border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); }
.care-card__prices div + div { border-left: 1px solid var(--c-line); padding-left: 0.75rem; }
.care-card__prices dt { display: inline-flex; align-items: center; gap: 0.3rem; font-size: var(--fs-xs); color: var(--c-muted); letter-spacing: 0.06em; }
.care-card__prices dd { margin: 0.15rem 0 0; font-family: var(--f-display); font-size: 1.35rem; color: var(--c-petrol); }
.care-card__desc { font-size: var(--fs-sm); color: var(--c-text); }
.care-card__list { list-style: none; display: grid; gap: 0.45rem; margin: 0.5rem 0 0; font-size: var(--fs-sm); }
.care-card__list li { display: flex; gap: 0.5rem; align-items: flex-start; color: var(--c-text); }
.care-card__check { width: 16px; height: 16px; flex: none; margin-top: 0.3em; color: var(--c-gold); }
.care-card__actions { margin-top: auto; padding-top: 1.25rem; }
@media (min-width: 640px) { .care-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .care-grid--4 { grid-template-columns: repeat(4, 1fr); } .care-grid--packs { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Guide (services) ---------- */
.guide-grid { display: grid; gap: 1.5rem; }
.guide { padding: 1.75rem; border: 1px solid var(--c-line); border-left: 3px solid var(--c-gold); border-radius: var(--radius-lg); background: var(--c-white); }
.guide__title { font-size: var(--fs-md); }
.guide p { font-size: var(--fs-sm); color: var(--c-muted); margin-bottom: 1rem; }
@media (min-width: 900px) { .guide-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Bienfaits ---------- */
.benefits { list-style: none; display: grid; gap: 0.9rem; margin: 1rem 0 1.5rem; }
.benefits li { display: grid; gap: 0.15rem; padding-left: 1.25rem; border-left: 2px solid var(--c-gold); }
.benefits strong { font-weight: 500; color: var(--c-ink); }
.benefits span { font-size: var(--fs-sm); color: var(--c-muted); }

/* ---------- Galerie ---------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.gallery__item { position: relative; display: block; overflow: hidden; border-radius: var(--radius); background: var(--c-stone); }
.gallery__img { width: 100%; height: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 0.8s var(--ease), filter 0.5s var(--ease); }
.gallery__item:hover .gallery__img { transform: scale(1.04); }
.gallery__item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(23, 28, 33, 0.35)); opacity: 0; transition: opacity 0.4s var(--ease); }
.gallery__item:hover::after { opacity: 1; }
.gallery--row { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) {
	.gallery { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
	.gallery--row { grid-template-columns: repeat(4, 1fr); }
}
.lightbox { padding: 0; border: 0; background: transparent; max-width: 100vw; max-height: 100vh; width: 100%; height: 100%; }
.lightbox::backdrop { background: rgba(15, 34, 41, 0.94); }
.lightbox__inner { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1rem; }
.lightbox__img { max-width: min(96vw, 1200px); max-height: 82vh; width: auto; height: auto; object-fit: contain; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox__caption { margin-top: 0.9rem; color: rgba(255, 255, 255, 0.8); font-size: var(--fs-sm); text-align: center; max-width: 60ch; }
.lightbox__btn { position: absolute; display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 50%; background: rgba(255, 255, 255, 0.06); color: #fff; }
.lightbox__btn:hover { background: rgba(255, 255, 255, 0.16); }
.lightbox__btn svg { width: 22px; height: 22px; }
.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__prev { left: 0.75rem; top: 50%; transform: translateY(-50%) rotate(90deg); }
.lightbox__next { right: 0.75rem; top: 50%; transform: translateY(-50%) rotate(-90deg); }
body.lightbox-open { overflow: hidden; }

/* ---------- Atouts ---------- */
.features { display: grid; gap: 1.25rem; list-style: none; }
.feature { padding: 1.75rem 1.5rem; background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius-lg); }
@media (min-width: 640px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features { grid-template-columns: repeat(3, 1fr); } .features--4 { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Localisation / NAP ---------- */
.location { display: grid; gap: 2.5rem; align-items: center; }
.location__content > p { font-size: var(--fs-md); font-weight: 300; }
.location__card { padding: 1.75rem; background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.nap { display: grid; gap: 1.1rem; margin: 0; }
.nap__row { display: grid; gap: 0.25rem; }
.nap__row dt { display: flex; align-items: center; gap: 0.5rem; font-size: var(--fs-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-muted); font-weight: 500; }
.nap__icon { width: 15px; height: 15px; color: var(--c-gold); }
.nap__row dd { margin: 0; font-size: var(--fs-base); color: var(--c-ink); }
.nap__row dd a { text-decoration: none; }
.nap__row dd a:hover { text-decoration: underline; text-decoration-color: var(--c-gold); }
.nap__line { display: block; }
.nap--compact { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--c-line); }
@media (min-width: 900px) { .location { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; } }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0.75rem; }
.faq__item { background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius-lg); }
.faq__item[open] { border-color: rgba(196, 165, 106, 0.6); }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.25rem; cursor: pointer; list-style: none; font-family: var(--f-display); font-size: var(--fs-md); color: var(--c-ink); }
.faq__q::-webkit-details-marker { display: none; }
.faq__chevron { width: 20px; height: 20px; flex: none; color: var(--c-gold); transition: transform 0.3s var(--ease); }
.faq__item[open] .faq__chevron { transform: rotate(180deg); }
.faq__a { padding: 0 1.25rem 1.25rem; color: var(--c-text); font-size: var(--fs-base); }
.section--sand .faq__item { background: var(--c-white); }

/* ---------- CTA final ---------- */
.cta-banner { position: relative; overflow: hidden; color: #fff; text-align: center; isolation: isolate; }
.cta-banner__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta-banner::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(15, 34, 41, 0.78), rgba(15, 34, 41, 0.86)); }
.cta-banner__inner { padding-block: clamp(4rem, 10vw, 7rem); }
.cta-banner__title { color: #fff; font-size: var(--fs-xl); max-width: 800px; margin-inline: auto; }
.cta-banner__text { font-size: var(--fs-md); font-weight: 300; color: rgba(255, 255, 255, 0.8); max-width: 620px; margin-inline: auto; }

/* ---------- Formulaires ---------- */
.form-card { padding: 1.5rem; background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius-lg); box-shadow: var(--shadow); margin-top: 1.5rem; scroll-margin-top: calc(var(--header-h) + 1rem); }
.form__grid { display: grid; gap: 1rem; }
.form__field { display: grid; gap: 0.35rem; }
.form__field label { font-size: var(--fs-xs); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; color: var(--c-muted); }
.form__field input, .form__field select, .form__field textarea {
	width: 100%; min-height: 48px; padding: 0.7rem 0.9rem; font: inherit; font-size: var(--fs-base); color: var(--c-ink);
	background: var(--c-ivory); border: 1px solid var(--c-stone); border-radius: var(--radius); transition: border-color 0.2s, box-shadow 0.2s;
}
.form__field textarea { min-height: 120px; resize: vertical; }
.form__field input:focus, .form__field select:focus, .form__field textarea:focus { outline: none; border-color: var(--c-gold); box-shadow: 0 0 0 3px rgba(196, 165, 106, 0.25); background: #fff; }
.form__field input:user-invalid, .form__field select:user-invalid, .form__field textarea:user-invalid { border-color: var(--c-error); }
.form__notice { font-size: var(--fs-xs); color: var(--c-muted); margin: 1rem 0 0; }
.form__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; margin-top: 1.25rem; }
.form__or { font-size: var(--fs-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-muted); }
.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form-notice { display: flex; gap: 0.75rem; align-items: flex-start; padding: 1rem 1.1rem; margin-bottom: 1.25rem; border-radius: var(--radius); font-size: var(--fs-sm); }
.form-notice p { margin: 0.2rem 0 0; }
.form-notice--success { background: #eef7f0; color: #1d5a35; border: 1px solid #bfe0c9; }
.form-notice--error { background: #fbeeed; color: #7a2b26; border: 1px solid #efc7c3; }
.form-notice__icon { width: 20px; height: 20px; flex: none; margin-top: 0.15rem; }
@media (min-width: 640px) { .form__grid { grid-template-columns: 1fr 1fr; } .form__field--full { grid-column: 1 / -1; } }

/* ---------- Réservation / contact ---------- */
.booking { display: grid; gap: 2.5rem; align-items: start; }
.booking__main > p { font-size: var(--fs-md); font-weight: 300; }
.aside-card { padding: 1.5rem; background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius-lg); }
.aside-card + .aside-card { margin-top: 1.25rem; }
.aside-card--sand { background: var(--c-sand); }
.aside-card__title { font-size: var(--fs-md); }
.aside-card .btn + .btn { margin-top: 0.6rem; }
.aside-card > p { font-size: var(--fs-sm); color: var(--c-muted); }
.contact { display: grid; gap: 2.5rem; align-items: start; }
.contact__form > p { font-size: var(--fs-md); font-weight: 300; }
.contact-list { list-style: none; display: grid; gap: 1.25rem; margin: 1.5rem 0; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list__icon { display: inline-flex; width: 42px; height: 42px; flex: none; align-items: center; justify-content: center; border-radius: 50%; background: var(--c-gold-3); color: var(--c-petrol); }
.contact-list__icon svg { width: 20px; height: 20px; }
.contact-list strong { display: block; font-size: var(--fs-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-muted); font-weight: 500; margin-bottom: 0.2rem; }
.contact-list a { text-decoration: none; }
.contact-list a:hover { text-decoration: underline; text-decoration-color: var(--c-gold); }
.contact-list div span { display: block; }
.map-block { display: grid; gap: 2rem; align-items: start; }
.map-block__text .btn { margin-block: 0.5rem 2rem; }
.map-block__map { position: relative; aspect-ratio: 16 / 11; border-radius: var(--radius-lg); overflow: hidden; background: var(--c-petrol); box-shadow: var(--shadow); }
.map-block__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.35; filter: saturate(0.6); }
.map-block__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; padding: 1.5rem; text-align: center; }
.map-block__note { font-size: var(--fs-xs); color: rgba(255, 255, 255, 0.8); max-width: 34ch; margin: 0; }
.map-block__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (min-width: 900px) { .booking { grid-template-columns: 1.3fr 0.7fr; gap: 3.5rem; } .contact { grid-template-columns: 0.9fr 1.1fr; gap: 4rem; } .map-block { grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; } }

/* ---------- Blog ---------- */
.posts-grid { display: grid; gap: 1.75rem; }
.post-card { display: flex; flex-direction: column; background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.post-card__img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.post-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.5rem; }
.post-card__date { font-size: var(--fs-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-gold); font-weight: 500; }
.post-card__title { font-size: var(--fs-lg); margin: 0.5rem 0 0.6rem; }
.post-card__title a { text-decoration: none; }
.post-card__excerpt { font-size: var(--fs-sm); color: var(--c-muted); flex: 1; }
@media (min-width: 640px) { .posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .posts-grid { grid-template-columns: repeat(3, 1fr); } }
.pagination { margin-top: 2.5rem; text-align: center; }
.pagination .nav-links { display: inline-flex; flex-wrap: wrap; gap: 0.35rem; justify-content: center; }
.pagination .page-numbers { display: inline-flex; align-items: center; min-height: 42px; padding: 0.5rem 0.9rem; border: 1px solid var(--c-line); border-radius: var(--radius); text-decoration: none; font-size: var(--fs-sm); color: var(--c-ink); background: var(--c-white); }
.pagination .page-numbers.current { background: var(--c-petrol); color: #fff; border-color: var(--c-petrol); }
.empty-state { text-align: center; padding: 3rem 1rem; }
.empty-state p { font-size: var(--fs-md); color: var(--c-muted); margin-bottom: 1.5rem; }
.single-post__media { margin-top: -2rem; position: relative; z-index: 1; }
.single-post__img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.single-post__footer { padding-bottom: var(--section); }
.single-post__tags a { display: inline-block; margin: 0 0.4rem 0.4rem 0; padding: 0.2rem 0.6rem; font-size: var(--fs-xs); border: 1px solid var(--c-line); border-radius: 2px; text-decoration: none; }
.post-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--c-line); font-size: var(--fs-sm); }
.post-nav a { text-decoration: none; color: var(--c-petrol); }
.post-nav__next { margin-left: auto; text-align: right; }

/* ---------- Contenu éditorial (Gutenberg / classique) ---------- */
.entry-content { font-size: var(--fs-md); font-weight: 300; }
.entry-content > * + * { margin-top: 1.25em; }
.entry-content h2, .entry-content h3 { margin-top: 1.8em; }
.entry-content img { border-radius: var(--radius-lg); }
.entry-content ul, .entry-content ol { padding-left: 1.4em; }
.entry-content li + li { margin-top: 0.4em; }
.entry-content blockquote { margin: 1.5em 0; padding: 0.5em 0 0.5em 1.5em; border-left: 3px solid var(--c-gold); font-family: var(--f-display); font-size: var(--fs-lg); color: var(--c-petrol); }
.entry-content a { color: var(--c-petrol); text-decoration-color: var(--c-gold); }
.entry-content .wp-block-button__link { background: var(--c-petrol); color: #fff; border-radius: var(--radius); text-decoration: none; }
.entry-content figcaption { font-size: var(--fs-xs); color: var(--c-muted); text-align: center; }
.entry-content .alignwide { margin-inline: calc(50% - 50vw); max-width: 100vw; width: 100vw; }
@media (min-width: 1100px) { .entry-content .alignwide { margin-inline: -8rem; width: calc(100% + 16rem); max-width: none; } }
.section--editor { padding-top: 0; }
.search-wrap { max-width: 520px; margin: 2.5rem auto 0; }
.search-form { display: flex; gap: 0.5rem; }
.search-form__input { flex: 1; min-height: 48px; padding: 0.6rem 0.9rem; font: inherit; border: 1px solid var(--c-stone); border-radius: var(--radius); background: #fff; }
.section--404 .section-title { font-size: var(--fs-2xl); }

/* ---------- Classes WordPress standard ---------- */
.alignleft { float: left; margin: 0.4em 1.5em 1em 0; }
.alignright { float: right; margin: 0.4em 0 1em 1.5em; }
.aligncenter { display: block; margin-inline: auto; text-align: center; }
.wp-caption { max-width: 100%; margin-bottom: 1.5em; }
.wp-caption img { margin-bottom: 0.5em; }
.wp-caption-text, .gallery-caption { font-size: var(--fs-xs); color: var(--c-muted); text-align: center; }
.sticky { position: relative; }
.sticky .post-card__title::before { content: '★ '; color: var(--c-gold); }
.bypostauthor .comment-body { border-left: 2px solid var(--c-gold); padding-left: 1rem; }
.screen-reader-text:focus { clip: auto; clip-path: none; width: auto; height: auto; }

/* ---------- Commentaires (minimal) ---------- */
.comments-area { margin-top: 3rem; }
.comment-list { list-style: none; }
.comment-body { padding: 1rem 0; border-bottom: 1px solid var(--c-line); font-size: var(--fs-sm); }
.comment-form input:not([type="submit"]), .comment-form textarea { width: 100%; padding: 0.6rem 0.9rem; border: 1px solid var(--c-stone); border-radius: var(--radius); font: inherit; }
.comment-form .submit { display: inline-flex; min-height: 44px; padding: 0.6rem 1.2rem; background: var(--c-petrol); color: #fff; border: 0; border-radius: var(--radius); }

/* ---------- Footer ---------- */
.site-footer { background: var(--c-petrol-3); color: rgba(255, 255, 255, 0.78); padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem; font-size: var(--fs-sm); }
.site-footer__grid { display: grid; gap: 2.5rem; }
.site-footer__tagline { margin: 1.25rem 0 1.5rem; max-width: 34ch; color: rgba(255, 255, 255, 0.7); }
.site-footer__title { font-family: var(--f-body); font-size: var(--fs-xs); letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-gold); font-weight: 500; margin-bottom: 1.1rem; }
.site-footer__list { list-style: none; display: grid; gap: 0.55rem; }
.site-footer__list a, .site-footer__address a { text-decoration: none; color: rgba(255, 255, 255, 0.82); }
.site-footer__list a:hover, .site-footer__address a:hover, .site-footer__gbp a:hover { color: var(--c-gold-2); }
.site-footer__address { font-style: normal; display: grid; gap: 0.55rem; }
.site-footer__address p { display: flex; gap: 0.6rem; align-items: flex-start; margin: 0; }
.site-footer__icon { width: 16px; height: 16px; flex: none; margin-top: 0.3em; color: var(--c-gold); }
.site-footer__gbp { margin-top: 1rem; }
.site-footer__gbp a { display: inline-flex; align-items: center; gap: 0.4rem; text-decoration: none; color: #fff; border-bottom: 1px solid var(--c-gold); padding-bottom: 2px; }
.site-footer__ext { width: 14px; height: 14px; }
.site-footer__social { display: flex; gap: 1rem; margin-top: 1rem; }
.site-footer__social a { text-decoration: none; color: rgba(255, 255, 255, 0.82); }
.site-footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem; margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid var(--c-line-light); font-size: var(--fs-xs); color: rgba(255, 255, 255, 0.55); }
.site-footer__bottom p { margin: 0; }
@media (min-width: 640px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr; gap: 3rem; } }

/* ---------- Barre mobile fixe ---------- */
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: grid; grid-template-columns: 1fr 1fr; background: var(--c-petrol-3); border-top: 1px solid var(--c-line-light); padding-bottom: env(safe-area-inset-bottom); }
.mobile-bar__btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; min-height: 60px; font-size: var(--fs-sm); font-weight: 500; letter-spacing: 0.04em; color: #fff; text-decoration: none; }
.mobile-bar__btn + .mobile-bar__btn { border-left: 1px solid var(--c-line-light); }
.mobile-bar__btn--wa { background: var(--c-gold); color: var(--c-ink); }
.mobile-bar__icon { width: 20px; height: 20px; }
@media (min-width: 768px) { .mobile-bar { display: none; } }

/* ---------- Animations d'apparition (légères, opt-in via JS) ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Impression ---------- */
@media print {
	.site-header, .mobile-bar, .cta-banner, .site-footer__bottom, .btn, .nav-toggle { display: none !important; }
	body { background: #fff; color: #000; }
}
