/* ==========================================================================
   Le Cèdre Lounge Spa — feuille de style principale
   Direction artistique : ivoire, sable, taupe, espresso ; accent champagne/doré.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Variables
   -------------------------------------------------------------------------- */
:root {
	/* Couleurs */
	--c-ivory: #F7F3EC;
	--c-cream: #EFE8DC;
	--c-sand: #E2D8C6;
	--c-sand-dark: #CBBFA9;
	--c-taupe: #9A8C79;
	--c-muted: #6F6459;
	--c-ink: #221D19;
	--c-espresso: #26201B;
	--c-charcoal: #1B1714;
	--c-gold: #AD966C;
	--c-gold-soft: #C9B790;
	--c-gold-deep: #8E7A52;
	--c-cedar: #3D4A41;
	--c-error: #9B3A2E;
	--c-success: #4E6B4F;

	/* Sur fond sombre */
	--c-on-dark: #F3EDE3;
	--c-on-dark-muted: rgba(243, 237, 227, 0.68);
	--c-on-dark-line: rgba(243, 237, 227, 0.16);

	/* Typographie */
	--f-serif: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
	--f-sans: "Jost", "Helvetica Neue", Arial, sans-serif;

	--fs-eyebrow: 0.72rem;
	--fs-small: 0.875rem;
	--fs-body: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
	--fs-lead: clamp(1.125rem, 1.05rem + 0.35vw, 1.3rem);
	--fs-h3: clamp(1.45rem, 1.2rem + 1vw, 2rem);
	--fs-h2: clamp(2rem, 1.4rem + 2.6vw, 3.6rem);
	--fs-h1: clamp(2.6rem, 1.6rem + 4.6vw, 5.4rem);

	/* Mise en page */
	--container: 1280px;
	--gutter: clamp(1.25rem, 4vw, 3rem);
	--section: clamp(4.5rem, 6vw + 2rem, 8.5rem);
	--header-h: 84px;
	--mobile-bar-h: 62px;
	--radius: 2px;

	/* Mouvement */
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--dur: 0.9s;
}

/* --------------------------------------------------------------------------
   2. Polices (variables, auto-hébergées)
   -------------------------------------------------------------------------- */
@font-face {
	font-family: "Cormorant Garamond";
	src: url("../fonts/cormorant-garamond.woff2") format("woff2");
	font-weight: 300 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Cormorant Garamond";
	src: url("../fonts/cormorant-garamond-italic.woff2") format("woff2");
	font-weight: 300 700;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: "Jost";
	src: url("../fonts/jost.woff2") format("woff2");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

/* --------------------------------------------------------------------------
   3. Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
	margin: 0;
	background: var(--c-ivory);
	color: var(--c-ink);
	font-family: var(--f-sans);
	font-size: var(--fs-body);
	font-weight: 300;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

body.nav-open {
	overflow: hidden;
}

img,
picture,
svg,
iframe {
	display: block;
	max-width: 100%;
}

img {
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s var(--ease), opacity 0.3s var(--ease);
}

p {
	margin: 0 0 1.2em;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

address {
	font-style: normal;
}

figure {
	margin: 0;
}

button {
	font: inherit;
	color: inherit;
	background: none;
	border: 0;
	cursor: pointer;
}

h1,
h2,
h3,
h4 {
	font-family: var(--f-serif);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: -0.005em;
	margin: 0 0 0.6em;
	color: inherit;
}

h1 em,
h2 em,
h3 em {
	font-style: italic;
	font-weight: 400;
	color: var(--c-gold-deep);
}

.section--dark h2 em,
.page-hero em,
.section-head--light em {
	color: var(--c-gold-soft);
}

:focus-visible {
	outline: 2px solid var(--c-gold);
	outline-offset: 3px;
}

::selection {
	background: var(--c-sand);
	color: var(--c-ink);
}

.skip-link {
	position: absolute;
	left: 1rem;
	top: -100px;
	z-index: 1000;
	padding: 0.75rem 1.25rem;
	background: var(--c-espresso);
	color: var(--c-on-dark);
	font-size: var(--fs-small);
	letter-spacing: 0.08em;
}

.skip-link:focus {
	top: 1rem;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	white-space: nowrap;
}

/* --------------------------------------------------------------------------
   4. Mise en page
   -------------------------------------------------------------------------- */
.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.section {
	position: relative;
	padding-block: var(--section);
}

.section--cream {
	background: var(--c-cream);
}

.section--dark {
	background: var(--c-espresso);
	color: var(--c-on-dark);
}

.section--dark .eyebrow {
	color: var(--c-gold-soft);
}

.section--dark .section-text,
.section--dark .prose {
	color: var(--c-on-dark-muted);
}

/* Boîtes à ratio fixe : l'image remplit toujours le cadre (object-fit) */
.intro__main,
.intro__secondary,
.service-row__media,
.experience__media,
.immersive__item picture,
.about-universe__item picture,
.service-detail__media figure,
.about-story__media figure,
.about-philosophy__media figure,
.about-journey__media,
.error-404__media,
.card__media,
.entry__thumb {
	position: relative;
	overflow: hidden;
}

.intro__main img,
.intro__secondary img,
.service-row__media img,
.experience__media img,
.immersive__item img,
.about-universe__item img,
.service-detail__media img,
.about-story__media img,
.about-philosophy__media img,
.about-journey__media img,
.error-404__media img,
.card__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Grille 12 colonnes réutilisable */
.grid-12 {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	column-gap: clamp(1.25rem, 3vw, 3rem);
}

/* --------------------------------------------------------------------------
   5. Typographie
   -------------------------------------------------------------------------- */
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.9rem;
	margin: 0 0 1.4rem;
	font-family: var(--f-sans);
	font-size: var(--fs-eyebrow);
	font-weight: 400;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--c-gold-deep);
}

.eyebrow::before {
	content: "";
	width: 28px;
	height: 1px;
	background: currentColor;
	opacity: 0.7;
}

.eyebrow--light {
	color: var(--c-gold-soft);
}

.section-title {
	font-size: var(--fs-h2);
	max-width: 22ch;
	margin-bottom: 1.4rem;
}

.section-text {
	font-size: var(--fs-lead);
	line-height: 1.6;
	color: var(--c-muted);
	max-width: 58ch;
	margin-bottom: 0;
}

.section-head {
	margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-head--center {
	text-align: center;
	margin-inline: auto;
	max-width: 760px;
}

.section-head--center .section-title,
.section-head--center .section-text {
	margin-inline: auto;
}

.section-head--center .eyebrow {
	justify-content: center;
}

.section-head--center .eyebrow::before {
	display: none;
}

.section-head--light {
	color: var(--c-on-dark);
}

.section-head--light .section-text {
	color: var(--c-on-dark-muted);
}

.prose {
	color: var(--c-muted);
	max-width: 62ch;
}

.prose .lead,
.lead {
	font-size: var(--fs-lead);
	line-height: 1.55;
	color: var(--c-ink);
	font-weight: 300;
}

.section--dark .lead {
	color: var(--c-on-dark);
}

.prose a {
	color: var(--c-ink);
	border-bottom: 1px solid var(--c-gold);
}

.prose a:hover {
	color: var(--c-gold-deep);
}

.prose h2,
.prose h3 {
	color: var(--c-ink);
	margin-top: 1.8em;
}

.prose ul,
.prose ol {
	padding-left: 1.2em;
	margin: 0 0 1.4em;
}

.prose ul {
	list-style: disc;
}

.prose ol {
	list-style: decimal;
}

.prose li + li {
	margin-top: 0.4em;
}

.prose blockquote {
	margin: 2rem 0;
	padding-left: 1.5rem;
	border-left: 1px solid var(--c-gold);
	font-family: var(--f-serif);
	font-size: 1.35rem;
	font-style: italic;
	color: var(--c-ink);
}

.prose img {
	margin: 2rem 0;
}

.prose--entry {
	max-width: 72ch;
	margin-inline: auto;
}

.page-extra {
	margin-top: 1.5rem;
}

/* --------------------------------------------------------------------------
   6. Boutons
   -------------------------------------------------------------------------- */
.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.85rem;
	min-height: 52px;
	padding: 0.95rem 2rem;
	font-family: var(--f-sans);
	font-size: 0.76rem;
	font-weight: 400;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	line-height: 1;
	white-space: nowrap;
	border: 1px solid transparent;
	border-radius: var(--radius);
	transition: background-color 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
	-webkit-tap-highlight-color: transparent;
}

.btn__icon {
	width: 16px;
	height: 16px;
	flex: none;
	transition: transform 0.4s var(--ease);
}

.btn:hover .icon-arrow {
	transform: translateX(4px);
}

.btn--primary {
	background: var(--c-espresso);
	color: var(--c-on-dark);
	border-color: var(--c-espresso);
}

.btn--primary:hover {
	background: var(--c-gold-deep);
	border-color: var(--c-gold-deep);
	color: #fff;
}

.btn--light {
	background: var(--c-ivory);
	color: var(--c-ink);
	border-color: var(--c-ivory);
}

.btn--light:hover {
	background: var(--c-gold-soft);
	border-color: var(--c-gold-soft);
}

.btn--ghost {
	background: transparent;
	color: var(--c-ink);
	border-color: var(--c-sand-dark);
}

.btn--ghost:hover {
	border-color: var(--c-ink);
	background: var(--c-ink);
	color: var(--c-on-dark);
}

.btn--ghost-light {
	background: transparent;
	color: var(--c-on-dark);
	border-color: rgba(243, 237, 227, 0.45);
}

.btn--ghost-light:hover {
	border-color: var(--c-on-dark);
	background: rgba(243, 237, 227, 0.1);
}

.btn--line,
.btn--line-light {
	min-height: 0;
	padding: 0.4rem 0;
	border: 0;
	border-radius: 0;
	gap: 0.7rem;
	color: var(--c-ink);
}

.btn--line::after,
.btn--line-light::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: currentColor;
	transform-origin: left;
	transition: transform 0.5s var(--ease);
}

.btn--line:hover::after,
.btn--line-light:hover::after {
	transform: scaleX(0.4);
}

.btn--line:hover {
	color: var(--c-gold-deep);
}

.btn--line-light {
	color: var(--c-on-dark);
}

.btn--header {
	min-height: 44px;
	padding: 0.7rem 1.5rem;
	font-size: 0.7rem;
	background: var(--c-espresso);
	color: var(--c-on-dark);
	border-color: var(--c-espresso);
}

.btn--header:hover {
	background: var(--c-gold-deep);
	border-color: var(--c-gold-deep);
}

.btn-group {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem 1.5rem;
	margin-top: 2rem;
}

/* --------------------------------------------------------------------------
   7. Header
   -------------------------------------------------------------------------- */
.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 100;
	height: var(--header-h);
	background: var(--c-ivory);
	border-bottom: 1px solid rgba(34, 29, 25, 0.08);
	transition: background-color 0.5s var(--ease), border-color 0.5s var(--ease), height 0.5s var(--ease), transform 0.5s var(--ease);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	height: 100%;
}

.logo {
	display: inline-flex;
	align-items: center;
	height: 100%;
}

.logo__img {
	width: auto;
	height: 54px;
	transition: height 0.5s var(--ease), opacity 0.4s var(--ease);
}

.logo__img--blanc {
	display: none;
}

/* Header en surimpression sur les pages avec Hero sombre */
body.has-dark-hero .site-header:not(.is-scrolled) {
	background: transparent;
	border-color: transparent;
	color: var(--c-on-dark);
}

body.has-dark-hero .site-header:not(.is-scrolled) .logo__img--or {
	display: none;
}

body.has-dark-hero .site-header:not(.is-scrolled) .logo__img--blanc {
	display: block;
}

body.has-dark-hero .site-header:not(.is-scrolled) .logo__img--custom {
	filter: brightness(0) invert(1);
}

body.has-dark-hero .site-header:not(.is-scrolled) .btn--header {
	background: var(--c-ivory);
	color: var(--c-ink);
	border-color: var(--c-ivory);
}

body.has-dark-hero .site-header:not(.is-scrolled) .btn--header:hover {
	background: var(--c-gold-soft);
	border-color: var(--c-gold-soft);
}

.site-header.is-scrolled {
	height: 70px;
	background: rgba(247, 243, 236, 0.92);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

.site-header.is-scrolled .logo__img {
	height: 44px;
}

.site-header.is-hidden {
	transform: translateY(-100%);
}

.site-nav .menu {
	display: flex;
	align-items: center;
	gap: clamp(1.4rem, 2.4vw, 2.6rem);
}

.site-nav .menu a {
	position: relative;
	display: inline-block;
	padding: 0.5rem 0;
	font-size: 0.74rem;
	font-weight: 400;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.site-nav .menu a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0.15rem;
	width: 100%;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.5s var(--ease);
}

.site-nav .menu a:hover::after,
.site-nav .menu .current-menu-item > a::after,
.site-nav .menu .current_page_item > a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 1.75rem;
}

.site-header__phone {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.82rem;
	letter-spacing: 0.06em;
	font-weight: 400;
}

.site-header__phone .icon {
	width: 16px;
	height: 16px;
}

.site-header__phone:hover {
	color: var(--c-gold-deep);
}

body.has-dark-hero .site-header:not(.is-scrolled) .site-header__phone:hover {
	color: var(--c-gold-soft);
}

/* Bouton menu (mobile) */
.nav-toggle {
	display: none;
	align-items: center;
	gap: 0.8rem;
	padding: 0.6rem 0;
	font-size: 0.72rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	z-index: 210;
	position: relative;
}

.nav-toggle__lines {
	position: relative;
	width: 26px;
	height: 12px;
}

.nav-toggle__lines span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: currentColor;
	transition: transform 0.5s var(--ease), top 0.5s var(--ease), width 0.5s var(--ease);
}

.nav-toggle__lines span:nth-child(1) {
	top: 0;
}

.nav-toggle__lines span:nth-child(2) {
	top: 11px;
	width: 70%;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__lines span:nth-child(1) {
	top: 5px;
	transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__lines span:nth-child(2) {
	top: 5px;
	width: 100%;
	transform: rotate(-45deg);
}

body.nav-open .site-header {
	z-index: 210;
	color: var(--c-on-dark);
	background: transparent;
	border-color: transparent;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}

body.nav-open .site-header .logo__img--or {
	display: none;
}

body.nav-open .site-header .logo__img--blanc {
	display: block;
}

/* Panneau de navigation mobile */
.nav-overlay {
	position: fixed;
	inset: 0;
	z-index: 200;
	background: var(--c-espresso);
	color: var(--c-on-dark);
	clip-path: inset(0 0 100% 0);
	visibility: hidden;
	transition: clip-path 0.7s var(--ease), visibility 0s linear 0.7s;
	overflow-y: auto;
}

.nav-overlay.is-open {
	clip-path: inset(0 0 0 0);
	visibility: visible;
	transition: clip-path 0.7s var(--ease), visibility 0s;
}

.nav-overlay__inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100%;
	padding-top: calc(var(--header-h) + 2rem);
	padding-bottom: calc(var(--mobile-bar-h) + 2rem);
	gap: 3rem;
}

.menu--overlay {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.menu--overlay a {
	display: inline-block;
	padding: 0.4rem 0;
	font-family: var(--f-serif);
	font-size: clamp(2.2rem, 8vw, 3.4rem);
	line-height: 1.15;
	color: var(--c-on-dark);
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), color 0.3s;
}

.menu--overlay .current-menu-item > a,
.menu--overlay .current_page_item > a {
	color: var(--c-gold-soft);
}

.menu--overlay a:hover {
	color: var(--c-gold-soft);
}

.nav-overlay.is-open .menu--overlay a {
	opacity: 1;
	transform: none;
}

.nav-overlay.is-open .menu--overlay li:nth-child(1) a { transition-delay: 0.25s; }
.nav-overlay.is-open .menu--overlay li:nth-child(2) a { transition-delay: 0.32s; }
.nav-overlay.is-open .menu--overlay li:nth-child(3) a { transition-delay: 0.39s; }
.nav-overlay.is-open .menu--overlay li:nth-child(4) a { transition-delay: 0.46s; }
.nav-overlay.is-open .menu--overlay li:nth-child(n+5) a { transition-delay: 0.53s; }

.nav-overlay__aside {
	padding-top: 2rem;
	border-top: 1px solid var(--c-on-dark-line);
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.6s var(--ease) 0.5s, transform 0.6s var(--ease) 0.5s;
}

.nav-overlay.is-open .nav-overlay__aside {
	opacity: 1;
	transform: none;
}

.nav-overlay__link {
	display: block;
	font-family: var(--f-serif);
	font-size: 1.4rem;
	margin-bottom: 0.4rem;
}

.nav-overlay__link:hover {
	color: var(--c-gold-soft);
}

.nav-overlay__meta {
	margin: 1.2rem 0 0;
	font-size: var(--fs-small);
	color: var(--c-on-dark-muted);
	line-height: 1.7;
}

/* --------------------------------------------------------------------------
   8. Hero (accueil)
   -------------------------------------------------------------------------- */
.hero {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 100vh;
	min-height: 100svh;
	color: var(--c-on-dark);
	background: var(--c-charcoal);
	overflow: hidden;
}

.hero__media {
	position: absolute;
	inset: 0;
}

.hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(27, 23, 20, 0.45) 0%, rgba(27, 23, 20, 0.1) 35%, rgba(27, 23, 20, 0.2) 60%, rgba(27, 23, 20, 0.82) 100%);
}

.hero__media picture,
.hero__media img {
	width: 100%;
	height: 100%;
}

.hero__img {
	object-fit: cover;
	object-position: 50% 45%;
	animation: hero-zoom 8s var(--ease) forwards;
}

@keyframes hero-zoom {
	from { transform: scale(1.08); }
	to { transform: scale(1); }
}

.hero__content {
	position: relative;
	z-index: 1;
	padding-top: calc(var(--header-h) + 3rem);
	padding-bottom: clamp(3rem, 7vh, 6rem);
	max-width: min(var(--container), 100%);
}

.hero__eyebrow,
.hero__title,
.hero__text,
.hero__actions {
	opacity: 0;
	transform: translateY(20px);
	animation: rise 1.1s var(--ease) forwards;
}

.hero__eyebrow { animation-delay: 0.2s; }
.hero__title { animation-delay: 0.35s; }
.hero__text { animation-delay: 0.5s; }
.hero__actions { animation-delay: 0.65s; }

@keyframes rise {
	to {
		opacity: 1;
		transform: none;
	}
}

.hero__title {
	font-size: var(--fs-h1);
	font-weight: 300;
	line-height: 1.02;
	max-width: 15ch;
	margin-bottom: 1.6rem;
	color: #fff;
}

.hero__text {
	font-size: var(--fs-lead);
	line-height: 1.55;
	max-width: 52ch;
	color: var(--c-on-dark-muted);
	color: rgba(243, 237, 227, 0.82);
}

.hero__actions {
	margin-top: 2.4rem;
}

.hero__footer {
	position: relative;
	z-index: 1;
	border-top: 1px solid var(--c-on-dark-line);
	background: rgba(27, 23, 20, 0.25);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
}

.hero__footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	min-height: 64px;
}

.hero__scroll {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	font-size: 0.7rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--c-on-dark-muted);
}

.hero__scroll .icon {
	width: 14px;
	height: 14px;
	animation: nudge 2.4s ease-in-out infinite;
}

@keyframes nudge {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(4px); }
}

.hero__scroll:hover {
	color: var(--c-on-dark);
}

.hero__facts {
	display: flex;
	align-items: center;
	gap: 2.5rem;
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	color: var(--c-on-dark-muted);
}

.hero__facts li {
	position: relative;
}

.hero__facts li + li::before {
	content: "";
	position: absolute;
	left: -1.25rem;
	top: 50%;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--c-gold-soft);
	transform: translateY(-50%);
}

.hero__facts a:hover {
	color: var(--c-on-dark);
}

/* --------------------------------------------------------------------------
   9. Hero de page intérieure
   -------------------------------------------------------------------------- */
.page-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 66vh;
	min-height: 66svh;
	padding-top: var(--header-h);
	color: var(--c-on-dark);
	background: var(--c-charcoal);
	overflow: hidden;
}

.page-hero__media {
	position: absolute;
	inset: 0;
}

.page-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(27, 23, 20, 0.5) 0%, rgba(27, 23, 20, 0.15) 40%, rgba(27, 23, 20, 0.85) 100%);
}

.page-hero__media picture,
.page-hero__media img {
	width: 100%;
	height: 100%;
}

.page-hero__img {
	object-fit: cover;
	object-position: 50% 50%;
}

.page-hero__content {
	position: relative;
	z-index: 1;
	padding-block: clamp(2.5rem, 6vh, 5rem);
}

.page-hero__title {
	font-size: clamp(2.4rem, 1.6rem + 3.8vw, 4.6rem);
	font-weight: 300;
	line-height: 1.05;
	max-width: 18ch;
	margin-bottom: 1.2rem;
	color: #fff;
}

.page-hero__text {
	font-size: var(--fs-lead);
	line-height: 1.55;
	max-width: 56ch;
	color: rgba(243, 237, 227, 0.82);
	margin: 0;
}

/* --------------------------------------------------------------------------
   10. Accueil — Introduction
   -------------------------------------------------------------------------- */
.intro__grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	column-gap: clamp(1.25rem, 3vw, 3rem);
	align-items: center;
}

.intro__text {
	grid-column: 1 / 7;
}

.intro__media {
	grid-column: 8 / 13;
	position: relative;
	padding-bottom: 14%;
	padding-left: 12%;
}

.intro__main {
	aspect-ratio: 4 / 5;
	overflow: hidden;
}

.intro__main img,
.intro__secondary img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.intro__secondary img {
	object-position: 50% 82%;
}

.intro__secondary {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 46%;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	border: 10px solid var(--c-ivory);
	box-shadow: 0 30px 60px -30px rgba(34, 29, 25, 0.35);
}

/* --------------------------------------------------------------------------
   11. Accueil — Services éditoriaux
   -------------------------------------------------------------------------- */
.services-home__list {
	display: flex;
	flex-direction: column;
	gap: clamp(3.5rem, 7vw, 7rem);
}

.service-row__grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	column-gap: clamp(1.25rem, 3vw, 3rem);
	align-items: center;
}

.service-row__media {
	grid-column: 1 / 7;
	aspect-ratio: 4 / 5;
	overflow: hidden;
}

.service-row__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.4s var(--ease);
}

.service-row:hover .service-row__media img {
	transform: scale(1.03);
}

.service-row__body {
	grid-column: 8 / 13;
}

.service-row--reverse .service-row__media {
	grid-column: 7 / 13;
	grid-row: 1;
}

.service-row--reverse .service-row__body {
	grid-column: 1 / 6;
	grid-row: 1;
}

.service-row__index {
	font-family: var(--f-serif);
	font-size: 3.4rem;
	line-height: 1;
	color: var(--c-sand-dark);
	margin: 0 0 1.2rem;
}

.service-row__title {
	font-size: clamp(1.8rem, 1.3rem + 1.6vw, 2.6rem);
	max-width: 18ch;
}

.service-row__text {
	color: var(--c-muted);
	max-width: 50ch;
}

.service-row__from {
	font-size: var(--fs-small);
	letter-spacing: 0.06em;
	color: var(--c-muted);
	margin-bottom: 1.6rem;
}

.service-row__from strong {
	font-family: var(--f-serif);
	font-size: 1.25rem;
	font-weight: 500;
	letter-spacing: 0;
	color: var(--c-ink);
	margin-left: 0.2rem;
}

.services-home__footer {
	display: flex;
	justify-content: center;
	margin-top: clamp(3.5rem, 7vw, 6rem);
}

/* --------------------------------------------------------------------------
   12. Accueil — Expérience (sombre)
   -------------------------------------------------------------------------- */
.experience__grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	column-gap: clamp(1.25rem, 3vw, 3rem);
	align-items: start;
}

.experience__media {
	grid-column: 1 / 6;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	position: sticky;
	top: calc(var(--header-h) + 2rem);
}

.experience__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.experience__body {
	grid-column: 7 / 13;
}

.pillars {
	border-top: 1px solid var(--c-on-dark-line);
}

.pillar {
	display: grid;
	grid-template-columns: 3.5rem 1fr;
	gap: 1rem;
	padding: 1.75rem 0;
	border-bottom: 1px solid var(--c-on-dark-line);
}

.pillar__num {
	font-family: var(--f-serif);
	font-size: 1.1rem;
	color: var(--c-gold-soft);
	padding-top: 0.3rem;
}

.pillar__title {
	font-size: 1.5rem;
	margin-bottom: 0.4rem;
}

.pillar__text {
	margin: 0;
	color: var(--c-on-dark-muted);
	max-width: 46ch;
}

/* --------------------------------------------------------------------------
   13. Accueil — Immersive
   -------------------------------------------------------------------------- */
.immersive__grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: clamp(1rem, 2.5vw, 2.5rem) clamp(1.25rem, 3vw, 3rem);
	align-items: end;
}

.immersive__item {
	position: relative;
	overflow: hidden;
}

.immersive__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.4s var(--ease);
}

.immersive__item:hover img {
	transform: scale(1.03);
}

.immersive__item figcaption {
	margin-top: 0.9rem;
	font-size: 0.72rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--c-taupe);
}

.immersive__item picture {
	overflow: hidden;
}

.immersive__item--a { grid-column: 1 / 9; }
.immersive__item--a picture { aspect-ratio: 4 / 3; }

.immersive__item--b { grid-column: 9 / 13; }
.immersive__item--b picture { aspect-ratio: 3 / 4; }

.immersive__item--c { grid-column: 1 / 4; align-self: start; }
.immersive__item--c picture { aspect-ratio: 3 / 4; }

.immersive__item--d { grid-column: 4 / 7; align-self: start; margin-top: clamp(2rem, 6vw, 5rem); }
.immersive__item--d picture { aspect-ratio: 3 / 4; }

.immersive__item--e { grid-column: 7 / 13; align-self: start; }
.immersive__item--e picture { aspect-ratio: 4 / 3; }

/* --------------------------------------------------------------------------
   14. Témoignages
   -------------------------------------------------------------------------- */
.testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.5rem, 3vw, 3rem);
}

.testimonials__grid--two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 960px;
	margin-inline: auto;
}

.testimonial {
	position: relative;
	margin: 0;
	padding: 2.4rem 0 0;
	border-top: 1px solid var(--c-sand-dark);
}

.testimonial::before {
	content: "“";
	position: absolute;
	top: 1.1rem;
	left: 0;
	font-family: var(--f-serif);
	font-size: 3.2rem;
	line-height: 1;
	color: var(--c-gold);
}

.testimonial__quote {
	font-family: var(--f-serif);
	font-size: 1.3rem;
	line-height: 1.45;
	font-style: italic;
	color: var(--c-ink);
	margin: 1.4rem 0 1.2rem;
}

.testimonial__author {
	font-size: 0.72rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--c-taupe);
}

/* --------------------------------------------------------------------------
   15. Accueil — Local
   -------------------------------------------------------------------------- */
.local__grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	column-gap: clamp(1.25rem, 3vw, 3rem);
	align-items: start;
}

.local__text {
	grid-column: 1 / 8;
}

.local__card {
	grid-column: 9 / 13;
	padding: clamp(1.75rem, 3vw, 2.5rem);
	background: var(--c-cream);
	border: 1px solid var(--c-sand);
}

.local__card .btn-group {
	margin-top: 1.5rem;
}

.contact-details {
	display: grid;
	gap: 1.4rem;
}

.contact-details li {
	display: grid;
	grid-template-columns: 22px 1fr;
	gap: 1rem;
	align-items: start;
}

.contact-details .icon {
	width: 20px;
	height: 20px;
	color: var(--c-gold-deep);
	margin-top: 0.2rem;
}

.contact-details__label {
	display: block;
	font-size: 0.68rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--c-taupe);
	margin-bottom: 0.15rem;
}

.contact-details a,
.contact-details span:not(.contact-details__label) {
	font-family: var(--f-serif);
	font-size: 1.3rem;
	line-height: 1.3;
	color: var(--c-ink);
}

.contact-details a:hover {
	color: var(--c-gold-deep);
}

/* --------------------------------------------------------------------------
   16. Bande CTA
   -------------------------------------------------------------------------- */
.cta-band {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 70vh;
	padding-block: clamp(5rem, 10vw, 8rem);
	color: var(--c-on-dark);
	background: var(--c-charcoal);
	overflow: hidden;
	text-align: center;
}

.cta-band__media {
	position: absolute;
	inset: 0;
}

.cta-band__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(27, 23, 20, 0.66);
}

.cta-band__media picture,
.cta-band__media img {
	width: 100%;
	height: 100%;
}

.cta-band__img {
	object-fit: cover;
	object-position: 50% 40%;
}

.cta-band__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.cta-band__content .eyebrow::before {
	display: none;
}

.cta-band__title {
	font-size: clamp(2.4rem, 1.6rem + 3.6vw, 4.6rem);
	font-weight: 300;
	max-width: 20ch;
	margin-bottom: 1.2rem;
	color: #fff;
}

.cta-band__text {
	font-size: var(--fs-lead);
	max-width: 52ch;
	color: rgba(243, 237, 227, 0.8);
	margin: 0;
}

.cta-band .btn-group {
	justify-content: center;
	margin-top: 2.5rem;
}

.cta-band__phone {
	margin: 1.75rem 0 0;
	font-size: var(--fs-small);
	letter-spacing: 0.06em;
	color: var(--c-on-dark-muted);
}

.cta-band__phone a {
	font-family: var(--f-serif);
	font-size: 1.3rem;
	letter-spacing: 0;
	color: var(--c-on-dark);
	border-bottom: 1px solid var(--c-gold-soft);
	margin-left: 0.3rem;
}

.cta-band__phone a:hover {
	color: var(--c-gold-soft);
}

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.site-footer {
	background: var(--c-charcoal);
	color: var(--c-on-dark-muted);
	padding-block: clamp(3.5rem, 6vw, 5.5rem) 2rem;
	font-size: var(--fs-small);
}

.site-footer__top {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 2.5rem clamp(1.25rem, 3vw, 3rem);
	padding-bottom: clamp(2.5rem, 5vw, 4rem);
	border-bottom: 1px solid var(--c-on-dark-line);
}

.site-footer__brand {
	grid-column: 1 / 5;
}

.logo--footer {
	display: block;
	height: auto;
	margin-bottom: 1.5rem;
}

.logo--footer .logo__img {
	height: 96px;
}

.logo--footer .logo__img--blanc {
	display: block;
}

.site-footer__intro {
	max-width: 36ch;
	line-height: 1.75;
}

.site-footer__col:nth-child(2) { grid-column: 6 / 8; }
.site-footer__col:nth-child(3) { grid-column: 8 / 10; }
.site-footer__col--contact { grid-column: 10 / 13; }

.site-footer__heading {
	font-size: 0.68rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--c-gold-soft);
	margin-bottom: 1.4rem;
}

.footer-menu li + li {
	margin-top: 0.55rem;
}

.footer-menu a {
	color: var(--c-on-dark-muted);
}

.footer-menu a:hover,
.site-footer__address a:hover,
.site-footer__line a:hover {
	color: var(--c-on-dark);
}

.site-footer__address {
	margin-bottom: 1.2rem;
	line-height: 1.7;
	color: var(--c-on-dark);
}

.site-footer__line {
	display: flex;
	flex-direction: column;
	margin-bottom: 1rem;
	color: var(--c-on-dark);
}

.site-footer__sub {
	font-size: 0.66rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--c-on-dark-muted);
	margin-top: 0.1rem;
}

.social-list {
	display: flex;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.social-list a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--c-on-dark-line);
	border-radius: 50%;
	color: var(--c-on-dark-muted);
	transition: border-color 0.3s, color 0.3s;
}

.social-list a:hover {
	color: var(--c-on-dark);
	border-color: var(--c-gold-soft);
}

.social-list .icon {
	width: 16px;
	height: 16px;
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.75rem 2rem;
	padding-top: 1.75rem;
	font-size: 0.78rem;
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__legal {
	display: flex;
	gap: 1.75rem;
}

.site-footer__legal a:hover {
	color: var(--c-on-dark);
}

/* --------------------------------------------------------------------------
   18. Barre mobile Appeler / WhatsApp
   -------------------------------------------------------------------------- */
.mobile-bar {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 150;
	grid-template-columns: 1fr 1fr;
	background: rgba(38, 32, 27, 0.94);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border-top: 1px solid rgba(243, 237, 227, 0.12);
	padding-bottom: env(safe-area-inset-bottom);
}

.mobile-bar__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	min-height: var(--mobile-bar-h);
	font-size: 0.72rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--c-on-dark);
}

.mobile-bar__item + .mobile-bar__item {
	border-left: 1px solid rgba(243, 237, 227, 0.12);
}

.mobile-bar__item .icon {
	width: 18px;
	height: 18px;
	color: var(--c-gold-soft);
}

.mobile-bar__item:active {
	background: rgba(243, 237, 227, 0.08);
}

/* --------------------------------------------------------------------------
   19. Navigation d'ancres (page Services)
   -------------------------------------------------------------------------- */
.anchor-nav {
	position: sticky;
	top: 70px;
	z-index: 90;
	background: var(--c-ivory);
	border-bottom: 1px solid rgba(34, 29, 25, 0.08);
}

.anchor-nav__inner {
	display: flex;
	gap: clamp(1.5rem, 3vw, 3rem);
	overflow-x: auto;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.anchor-nav__inner::-webkit-scrollbar {
	display: none;
}

.anchor-nav a {
	position: relative;
	flex: none;
	padding: 1.1rem 0;
	font-size: 0.7rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--c-muted);
	white-space: nowrap;
}

.anchor-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 1px;
	background: var(--c-ink);
	transform: scaleX(0);
	transition: transform 0.4s var(--ease);
}

.anchor-nav a:hover,
.anchor-nav a.is-active {
	color: var(--c-ink);
}

.anchor-nav a.is-active::after {
	transform: scaleX(1);
}

/* --------------------------------------------------------------------------
   20. Page Services
   -------------------------------------------------------------------------- */
.services-intro__grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	column-gap: clamp(1.25rem, 3vw, 3rem);
}

.services-intro__grid > :first-child {
	grid-column: 1 / 6;
}

.services-intro__grid > :last-child {
	grid-column: 7 / 13;
}

.service-detail__grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	column-gap: clamp(1.25rem, 3vw, 3rem);
	align-items: start;
}

.service-detail__media {
	grid-column: 1 / 6;
	position: sticky;
	top: calc(var(--header-h) + 3.5rem);
}

.service-detail__media figure {
	aspect-ratio: 3 / 4;
	overflow: hidden;
}

.service-detail__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-detail__body {
	grid-column: 7 / 13;
}

.service-detail--reverse .service-detail__media {
	grid-column: 8 / 13;
	grid-row: 1;
}

.service-detail--reverse .service-detail__body {
	grid-column: 1 / 7;
	grid-row: 1;
}

.service-detail__aside {
	margin-top: 2.5rem;
	padding: clamp(1.5rem, 3vw, 2.25rem);
	background: var(--c-cream);
	border: 1px solid var(--c-sand);
}

.section--cream .service-detail__aside {
	background: var(--c-ivory);
}

.service-detail__aside .btn-group {
	margin-top: 1.75rem;
}

.why__label {
	font-size: 0.68rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--c-gold-deep);
	margin-bottom: 0.5rem;
}

.why__text {
	font-family: var(--f-serif);
	font-size: 1.3rem;
	line-height: 1.4;
	color: var(--c-ink);
	margin-bottom: 1.75rem;
}

/* Listes de prix */
.price-list {
	margin: 0;
}

.price-list__row {
	display: flex;
	align-items: baseline;
	gap: 0.75rem;
	padding: 0.7rem 0;
	border-bottom: 1px solid var(--c-sand-dark);
}

.price-list__row:first-child {
	border-top: 1px solid var(--c-sand-dark);
}

.price-list dt {
	flex: 1;
	display: flex;
	align-items: baseline;
	gap: 0.75rem;
	font-weight: 400;
}

.price-list dt::after {
	content: "";
	flex: 1;
	border-bottom: 1px dotted var(--c-sand-dark);
	transform: translateY(-0.3em);
	min-width: 1rem;
}

.price-list__meta {
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--c-taupe);
	order: -1;
}

.price-list dd {
	margin: 0;
	font-family: var(--f-serif);
	font-size: 1.25rem;
	font-weight: 500;
	white-space: nowrap;
}

.price-list--light .price-list__row,
.price-list--light .price-list__row:first-child {
	border-color: var(--c-on-dark-line);
}

.price-list--light dt::after {
	border-color: rgba(243, 237, 227, 0.3);
}

.price-list--light .price-list__meta {
	color: var(--c-on-dark-muted);
}

.price-list--light dd {
	color: var(--c-gold-soft);
}

/* Packs */
.packs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
	margin-top: 2.5rem;
}

.pack {
	display: flex;
	flex-direction: column;
	padding: 1.75rem;
	background: var(--c-ivory);
	border: 1px solid var(--c-sand);
	transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.pack:hover {
	transform: translateY(-3px);
	box-shadow: 0 30px 50px -30px rgba(34, 29, 25, 0.25);
}

.pack--featured {
	background: var(--c-espresso);
	color: var(--c-on-dark);
	border-color: var(--c-espresso);
}

.pack__head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 1rem;
	margin-bottom: 0.6rem;
}

.pack__name {
	font-size: 1.5rem;
	margin: 0;
}

.pack__price {
	font-family: var(--f-serif);
	font-size: 1.35rem;
	font-weight: 500;
	margin: 0;
	color: var(--c-gold-deep);
	white-space: nowrap;
}

.pack--featured .pack__price {
	color: var(--c-gold-soft);
}

.pack__tagline {
	font-size: var(--fs-small);
	color: var(--c-muted);
	margin-bottom: 1.2rem;
}

.pack--featured .pack__tagline {
	color: var(--c-on-dark-muted);
}

.pack__items {
	flex: 1;
	margin-bottom: 1.5rem;
	border-top: 1px solid var(--c-sand);
}

.pack--featured .pack__items {
	border-color: var(--c-on-dark-line);
}

.pack__items li {
	padding: 0.55rem 0;
	border-bottom: 1px solid var(--c-sand);
	font-size: 0.92rem;
	font-weight: 400;
}

.pack--featured .pack__items li {
	border-color: var(--c-on-dark-line);
}

.pack__items li::before {
	content: "—";
	color: var(--c-gold);
	margin-right: 0.6rem;
}

.pack__link {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.7rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--c-ink);
}

.pack--featured .pack__link {
	color: var(--c-on-dark);
}

.pack__link .icon {
	width: 14px;
	height: 14px;
	transition: transform 0.4s var(--ease);
}

.pack__link:hover .icon {
	transform: translateX(4px);
}

.pack__link:hover {
	color: var(--c-gold-deep);
}

.pack--featured .pack__link:hover {
	color: var(--c-gold-soft);
}

/* Tarifs (section sombre) */
.pricing__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2.5rem clamp(2rem, 5vw, 5rem);
	max-width: 1040px;
	margin-inline: auto;
}

.pricing__group-title {
	font-size: 1.6rem;
	margin-bottom: 1rem;
	color: var(--c-on-dark);
}

.pricing__note {
	max-width: 62ch;
	margin: 3rem auto 0;
	text-align: center;
	font-size: var(--fs-small);
	color: var(--c-on-dark-muted);
}

/* FAQ */
.faq__grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	column-gap: clamp(1.25rem, 3vw, 3rem);
}

.faq__grid > :first-child {
	grid-column: 1 / 5;
}

.faq__list {
	grid-column: 6 / 13;
	border-top: 1px solid var(--c-sand-dark);
}

.faq__item {
	border-bottom: 1px solid var(--c-sand-dark);
}

.faq__item summary {
	position: relative;
	display: block;
	padding: 1.4rem 3rem 1.4rem 0;
	font-family: var(--f-serif);
	font-size: 1.4rem;
	line-height: 1.3;
	cursor: pointer;
	list-style: none;
}

.faq__item summary::-webkit-details-marker {
	display: none;
}

.faq__item summary::before,
.faq__item summary::after {
	content: "";
	position: absolute;
	right: 0.5rem;
	top: 50%;
	width: 16px;
	height: 1px;
	background: var(--c-gold-deep);
	transition: transform 0.4s var(--ease);
}

.faq__item summary::after {
	transform: rotate(90deg);
}

.faq__item[open] summary::after {
	transform: rotate(0);
}

.faq__item p {
	color: var(--c-muted);
	max-width: 60ch;
	margin: 0 0 1.5rem;
}

/* --------------------------------------------------------------------------
   21. Page À propos
   -------------------------------------------------------------------------- */
.about-story__grid,
.about-philosophy__grid,
.about-journey__grid,
.about-commitment__grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	column-gap: clamp(1.25rem, 3vw, 3rem);
	align-items: center;
}

.about-story__text { grid-column: 1 / 8; }
.about-story__media { grid-column: 9 / 13; }

.about-story__media figure,
.about-philosophy__media figure {
	aspect-ratio: 3 / 4;
	overflow: hidden;
}

.about-story__media img,
.about-philosophy__media img,
.about-universe__item img,
.about-journey__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-philosophy__media { grid-column: 1 / 6; }
.about-philosophy__text { grid-column: 7 / 13; }

.check-list {
	margin-top: 2rem;
	display: grid;
	gap: 0.7rem;
}

.check-list li {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	font-weight: 400;
}

.check-list .icon {
	width: 18px;
	height: 18px;
	color: var(--c-gold-deep);
	flex: none;
}

.about-universe__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.25rem, 3vw, 3rem);
	align-items: start;
}

.about-universe__item picture {
	aspect-ratio: 3 / 4;
	overflow: hidden;
}

.about-universe__item--offset {
	margin-top: clamp(2rem, 5vw, 4.5rem);
}

.about-universe__item figcaption {
	margin-top: 0.9rem;
	font-size: 0.72rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--c-taupe);
}

.about-journey__grid {
	align-items: start;
}

.about-journey__text { grid-column: 1 / 8; }

.about-journey__media {
	grid-column: 9 / 13;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	position: sticky;
	top: calc(var(--header-h) + 2rem);
}

.steps {
	border-top: 1px solid var(--c-on-dark-line);
	max-width: 620px;
}

.step {
	display: grid;
	grid-template-columns: 3.5rem 1fr;
	gap: 1rem;
	padding: 1.75rem 0;
	border-bottom: 1px solid var(--c-on-dark-line);
}

.step__num {
	font-family: var(--f-serif);
	font-size: 1.1rem;
	color: var(--c-gold-soft);
	padding-top: 0.3rem;
}

.step__title {
	font-size: 1.5rem;
	margin-bottom: 0.4rem;
}

.step p {
	margin: 0;
	color: var(--c-on-dark-muted);
}

.about-commitment__grid {
	align-items: start;
}

.about-commitment__grid > :first-child { grid-column: 1 / 5; }
.commitments { grid-column: 6 / 13; }

.commitments {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 clamp(1.5rem, 3vw, 3rem);
}

.commitment {
	padding: 1.5rem 0;
	border-top: 1px solid var(--c-sand-dark);
}

.commitment__title {
	font-size: 1.4rem;
	margin-bottom: 0.4rem;
}

.commitment p {
	margin: 0;
	color: var(--c-muted);
}

/* --------------------------------------------------------------------------
   22. Page Contact
   -------------------------------------------------------------------------- */
.contact__grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	column-gap: clamp(1.25rem, 3vw, 3rem);
	align-items: start;
}

.contact__info {
	grid-column: 1 / 6;
}

.contact__form {
	grid-column: 7 / 13;
	padding: clamp(1.75rem, 3.5vw, 3rem);
	background: var(--c-cream);
	border: 1px solid var(--c-sand);
}

.contact__form-title {
	font-size: var(--fs-h3);
	margin-bottom: 1.5rem;
}

.contact__quick {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin: 2.5rem 0;
}

.quick-card {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	padding: 1.5rem;
	border: 1px solid var(--c-sand-dark);
	transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.quick-card:hover {
	background: var(--c-cream);
	border-color: var(--c-gold);
	transform: translateY(-2px);
}

.quick-card .icon {
	width: 22px;
	height: 22px;
	color: var(--c-gold-deep);
	margin-bottom: 0.8rem;
}

.quick-card__label {
	font-size: 0.68rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--c-taupe);
}

.quick-card__value {
	font-family: var(--f-serif);
	font-size: 1.35rem;
	line-height: 1.2;
}

.contact-details--stack {
	padding-top: 2rem;
	border-top: 1px solid var(--c-sand-dark);
}

/* Formulaire */
.form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem 1.5rem;
}

.form-field--wide {
	grid-column: 1 / -1;
}

.form-field label {
	display: block;
	font-size: 0.7rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--c-muted);
	margin-bottom: 0.5rem;
}

.form-field .req {
	color: var(--c-gold-deep);
}

.form-field input,
.form-field textarea {
	width: 100%;
	padding: 0.85rem 0;
	font: inherit;
	font-weight: 400;
	color: var(--c-ink);
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--c-sand-dark);
	border-radius: 0;
	transition: border-color 0.3s;
	-webkit-appearance: none;
	appearance: none;
}

.form-field textarea {
	resize: vertical;
	min-height: 120px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
	color: var(--c-taupe);
	opacity: 1;
}

.form-field input:focus,
.form-field textarea:focus {
	outline: none;
	border-color: var(--c-ink);
}

.form-field.has-error input,
.form-field.has-error textarea {
	border-color: var(--c-error);
}

.form-error {
	display: none;
	margin: 0.5rem 0 0;
	font-size: 0.8rem;
	color: var(--c-error);
}

.form-field.has-error .form-error {
	display: block;
}

.hp-field {
	position: absolute !important;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.25rem 2rem;
	margin-top: 2rem;
}

.form-footer__note {
	flex: 1 1 240px;
	margin: 0;
	font-size: 0.78rem;
	color: var(--c-taupe);
	line-height: 1.6;
}

.btn[disabled] {
	opacity: 0.6;
	cursor: wait;
}

.form-notice {
	display: flex;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	margin-bottom: 2rem;
	border: 1px solid;
	font-size: var(--fs-small);
}

.form-notice p {
	margin: 0;
}

.form-notice__title {
	font-family: var(--f-serif);
	font-size: 1.25rem;
	margin-bottom: 0.2rem !important;
}

.form-notice .icon {
	width: 22px;
	height: 22px;
	flex: none;
}

.form-notice--success {
	border-color: var(--c-success);
	color: var(--c-success);
	background: rgba(78, 107, 79, 0.06);
}

.form-notice--error {
	border-color: var(--c-error);
	color: var(--c-error);
	background: rgba(155, 58, 46, 0.06);
}

/* Carte */
.contact-map__head {
	margin-bottom: 2.5rem;
}

.contact-map__head .btn {
	margin-top: 1.5rem;
}

.map-frame {
	position: relative;
	aspect-ratio: 16 / 7;
	overflow: hidden;
	background: var(--c-sand);
	border: 1px solid var(--c-sand);
}

.map-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	filter: saturate(0.75) contrast(1.02);
}

/* --------------------------------------------------------------------------
   23. Articles / archives / 404 / commentaires
   -------------------------------------------------------------------------- */
.entry__inner {
	max-width: 820px;
}

.entry__inner--wide {
	max-width: 1040px;
}

.entry__thumb {
	margin-bottom: 2.5rem;
	overflow: hidden;
}

.entry__header {
	padding-top: calc(var(--header-h) + var(--section));
	padding-bottom: 2rem;
}

.post-nav {
	display: flex;
	justify-content: space-between;
	gap: 1.5rem;
	margin-top: 3.5rem;
	padding-top: 1.75rem;
	border-top: 1px solid var(--c-sand-dark);
	font-family: var(--f-serif);
	font-size: 1.15rem;
}

.post-nav a:hover {
	color: var(--c-gold-deep);
}

.archive {
	padding-top: calc(var(--header-h) + var(--section));
}

.archive__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2.5rem clamp(1.25rem, 3vw, 3rem);
}

.card__media {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	margin-bottom: 1.25rem;
}

.card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card__title {
	font-size: 1.6rem;
	margin-bottom: 0.6rem;
}

.card__title a:hover {
	color: var(--c-gold-deep);
}

.card__excerpt {
	color: var(--c-muted);
}

.pagination,
.navigation.pagination {
	margin-top: 3.5rem;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

.nav-links .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 0 0.75rem;
	border: 1px solid var(--c-sand-dark);
	font-size: 0.78rem;
	letter-spacing: 0.1em;
}

.nav-links .page-numbers.current {
	background: var(--c-espresso);
	color: var(--c-on-dark);
	border-color: var(--c-espresso);
}

.error-404 {
	padding-top: calc(var(--header-h) + var(--section));
}

.error-404__grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	column-gap: clamp(1.25rem, 3vw, 3rem);
	align-items: center;
}

.error-404__grid > :first-child {
	grid-column: 1 / 8;
}

.error-404__media {
	grid-column: 9 / 13;
	aspect-ratio: 3 / 4;
	overflow: hidden;
}

.error-404__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.comments {
	padding-top: 0;
}

.comment-list {
	margin-bottom: 3rem;
}

.comment-list .comment {
	padding: 1.5rem 0;
	border-top: 1px solid var(--c-sand-dark);
}

.comment-form label {
	display: block;
	font-size: 0.7rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--c-muted);
	margin-bottom: 0.4rem;
}

.comment-form input:not([type="submit"]):not([type="checkbox"]),
.comment-form textarea {
	width: 100%;
	padding: 0.75rem 0;
	margin-bottom: 1.25rem;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--c-sand-dark);
	font: inherit;
}

/* Contenu WordPress (alignements, légendes) */
.alignwide,
.alignfull {
	max-width: none;
}

.wp-caption {
	max-width: 100%;
}

.wp-caption-text,
figcaption.wp-element-caption {
	font-size: 0.8rem;
	color: var(--c-taupe);
	margin-top: 0.6rem;
}

.alignleft {
	float: left;
	margin: 0.5rem 1.5rem 1rem 0;
}

.alignright {
	float: right;
	margin: 0.5rem 0 1rem 1.5rem;
}

.aligncenter {
	margin-inline: auto;
}

/* --------------------------------------------------------------------------
   24. Animations d'apparition
   -------------------------------------------------------------------------- */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
	transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

.reveal-img {
	clip-path: inset(6% 0 6% 0);
	opacity: 0;
	transition: clip-path 1.2s var(--ease), opacity 1s var(--ease);
	transition-delay: var(--delay, 0ms);
}

.reveal-img img {
	transform: scale(1.06);
	transition: transform 1.6s var(--ease);
	transition-delay: var(--delay, 0ms);
}

.reveal-img.is-visible {
	clip-path: inset(0 0 0 0);
	opacity: 1;
}

.reveal-img.is-visible img {
	transform: scale(1);
}

/* Sans JavaScript : tout est visible */
.no-js .reveal,
.no-js .reveal-img {
	opacity: 1;
	transform: none;
	clip-path: none;
}

.no-js .reveal-img img {
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		transition-delay: 0ms !important;
	}

	.reveal,
	.reveal-img {
		opacity: 1;
		transform: none;
		clip-path: none;
	}

	.reveal-img img {
		transform: none;
	}

	.hero__eyebrow,
	.hero__title,
	.hero__text,
	.hero__actions {
		opacity: 1;
		transform: none;
	}

	.hero__img {
		animation: none;
	}
}

/* --------------------------------------------------------------------------
   25. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1199px) {
	.site-header__phone {
		display: none;
	}

	.intro__text {
		grid-column: 1 / 7;
	}

	.intro__media {
		grid-column: 7 / 13;
	}

	.local__text {
		grid-column: 1 / 8;
	}

	.local__card {
		grid-column: 8 / 13;
	}

	.site-footer__brand { grid-column: 1 / 13; }
	.site-footer__col:nth-child(2) { grid-column: 1 / 4; }
	.site-footer__col:nth-child(3) { grid-column: 4 / 8; }
	.site-footer__col--contact { grid-column: 8 / 13; }
}

@media (max-width: 1023px) {
	.service-detail__media,
	.experience__media,
	.about-journey__media {
		position: relative;
		top: auto;
	}

	.services-intro__grid > :first-child,
	.services-intro__grid > :last-child,
	.faq__grid > :first-child,
	.faq__list,
	.about-commitment__grid > :first-child,
	.commitments {
		grid-column: 1 / -1;
	}

	.faq__list,
	.commitments {
		margin-top: 2rem;
	}

	.service-detail__media {
		grid-column: 1 / 6;
	}

	.service-detail__body {
		grid-column: 6 / 13;
	}

	.service-detail--reverse .service-detail__media {
		grid-column: 8 / 13;
	}

	.service-detail--reverse .service-detail__body {
		grid-column: 1 / 8;
	}

	.packs {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 899px) {
	:root {
		--header-h: 72px;
	}

	.intro__grid,
	.service-row__grid,
	.experience__grid,
	.local__grid,
	.site-footer__top,
	.services-intro__grid,
	.service-detail__grid,
	.faq__grid,
	.about-story__grid,
	.about-philosophy__grid,
	.about-journey__grid,
	.about-commitment__grid,
	.contact__grid,
	.error-404__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	body {
		padding-bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom));
	}

	.site-nav,
	.btn--header {
		display: none;
	}

	.nav-toggle {
		display: inline-flex;
	}

	.mobile-bar {
		display: grid;
	}

	.site-header.is-scrolled {
		height: 64px;
	}

	.anchor-nav {
		top: 64px;
	}

	.logo__img {
		height: 46px;
	}

	.site-header.is-scrolled .logo__img {
		height: 40px;
	}

	.hero__facts {
		display: none;
	}

	.hero__footer-inner {
		justify-content: center;
	}

	.hero {
		padding-bottom: var(--mobile-bar-h);
	}

	.hero__content {
		padding-bottom: 2.5rem;
	}

	.hero__media::after {
		background:
			linear-gradient(180deg, rgba(27, 23, 20, 0.5) 0%, rgba(27, 23, 20, 0.3) 30%, rgba(27, 23, 20, 0.55) 55%, rgba(27, 23, 20, 0.9) 100%);
	}

	.hero__img {
		object-position: 50% 50%;
	}

	.page-hero {
		min-height: 60vh;
		min-height: 60svh;
	}

	/* Intro */
	.intro__text,
	.intro__media {
		grid-column: 1 / -1;
	}

	.intro__media {
		margin-top: 3rem;
		padding-left: 0;
		padding-bottom: 0;
		display: grid;
		grid-template-columns: 1.4fr 1fr;
		gap: 1rem;
		align-items: end;
	}

	.intro__secondary {
		position: static;
		width: auto;
		border: 0;
		box-shadow: none;
	}

	/* Services */
	.service-row__media,
	.service-row__body,
	.service-row--reverse .service-row__media,
	.service-row--reverse .service-row__body {
		grid-column: 1 / -1;
		grid-row: auto;
	}

	.service-row__media {
		aspect-ratio: 4 / 3;
		margin-bottom: 1.75rem;
	}

	.service-row__index {
		font-size: 2.6rem;
		margin-bottom: 0.6rem;
	}

	/* Expérience */
	.experience__media,
	.experience__body {
		grid-column: 1 / -1;
	}

	.experience__media {
		aspect-ratio: 4 / 3;
		margin-bottom: 2.5rem;
	}

	/* Immersive */
	.immersive__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1rem;
	}

	.immersive__item--a,
	.immersive__item--e {
		grid-column: 1 / -1;
	}

	.immersive__item--b,
	.immersive__item--c {
		grid-column: auto;
	}

	.immersive__item--d {
		display: none;
	}

	.immersive__item--e {
		margin-top: 0;
	}

	/* Témoignages */
	.testimonials__grid,
	.testimonials__grid--two {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	/* Local */
	.local__text,
	.local__card {
		grid-column: 1 / -1;
	}

	.local__card {
		margin-top: 2.5rem;
	}

	/* CTA */
	.cta-band {
		min-height: 0;
	}

	/* Footer */
	.site-footer__brand,
	.site-footer__col:nth-child(2),
	.site-footer__col:nth-child(3),
	.site-footer__col--contact {
		grid-column: 1 / -1;
	}

	.site-footer__top {
		row-gap: 2.25rem;
	}

	.logo--footer .logo__img {
		height: 80px;
	}

	.site-footer__bottom {
		flex-direction: column;
	}

	/* Services page */
	.service-detail__media,
	.service-detail__body,
	.service-detail--reverse .service-detail__media,
	.service-detail--reverse .service-detail__body {
		grid-column: 1 / -1;
		grid-row: auto;
	}

	.service-detail__media figure {
		aspect-ratio: 4 / 3;
	}

	.service-detail__body {
		margin-top: 2rem;
	}

	.pricing__grid {
		grid-template-columns: 1fr;
	}

	/* À propos */
	.about-story__text,
	.about-story__media,
	.about-philosophy__media,
	.about-philosophy__text,
	.about-journey__text,
	.about-journey__media {
		grid-column: 1 / -1;
	}

	.about-story__media,
	.about-journey__media {
		margin-top: 2.5rem;
	}

	.about-philosophy__text {
		margin-top: 2.5rem;
	}

	.about-story__media figure,
	.about-philosophy__media figure,
	.about-journey__media {
		aspect-ratio: 4 / 3;
	}

	.about-universe__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.about-universe__item--offset {
		margin-top: 0;
	}

	.about-universe__item:last-child {
		grid-column: 1 / -1;
	}

	.about-universe__item:last-child picture {
		aspect-ratio: 16 / 10;
	}

	.commitments {
		grid-template-columns: 1fr;
	}

	/* Contact */
	.contact__info,
	.contact__form {
		grid-column: 1 / -1;
	}

	.contact__form {
		margin-top: 3rem;
	}

	.map-frame {
		aspect-ratio: 4 / 3;
	}

	/* Archives / 404 */
	.archive__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.error-404__grid > :first-child,
	.error-404__media {
		grid-column: 1 / -1;
	}

	.error-404__media {
		margin-top: 2.5rem;
		aspect-ratio: 4 / 3;
	}
}

@media (max-width: 599px) {
	.section-title {
		max-width: none;
	}

	.btn {
		max-width: 100%;
		white-space: normal;
		text-align: center;
		line-height: 1.5;
	}

	.hero__title {
		max-width: none;
	}

	.hero__actions .btn,
	.cta-band .btn,
	.btn-group .btn:not(.btn--line) {
		width: 100%;
	}

	.hero__scroll {
		display: none;
	}

	.hero__footer {
		display: none;
	}

	.intro__media {
		grid-template-columns: 1fr;
	}

	.intro__secondary {
		display: none;
	}

	.immersive__item--b,
	.immersive__item--c {
		grid-column: 1 / -1;
	}

	.immersive__item--b picture,
	.immersive__item--c picture {
		aspect-ratio: 4 / 3;
	}

	.contact__quick,
	.form-grid {
		grid-template-columns: 1fr;
	}

	.about-universe__grid {
		grid-template-columns: 1fr;
	}

	.about-universe__item picture {
		aspect-ratio: 4 / 3;
	}

	.archive__grid {
		grid-template-columns: 1fr;
	}

	.pack__head {
		flex-direction: column;
		gap: 0.25rem;
	}

	.price-list dt::after {
		display: none;
	}

	.price-list__row {
		justify-content: space-between;
	}

	.site-footer__legal {
		flex-direction: column;
		gap: 0.5rem;
	}
}

@media (max-width: 379px) {
	:root {
		--fs-eyebrow: 0.66rem;
	}

	.logo__img {
		height: 40px;
	}

	.nav-toggle__label {
		display: none;
	}

	.btn {
		padding-inline: 1.5rem;
		letter-spacing: 0.16em;
	}
}

@media (min-width: 1600px) {
	:root {
		--container: 1360px;
	}
}

@media print {
	.site-header,
	.mobile-bar,
	.nav-overlay,
	.cta-band,
	.hero__footer {
		display: none !important;
	}

	.reveal,
	.reveal-img {
		opacity: 1 !important;
		transform: none !important;
		clip-path: none !important;
	}
}
