/* ══ VARIABLES ════════════════════════════════════ */
:root {
	--ch: #1e1710;
	--ch2: #2a2018;
	--td: #5d4f3e;
	--t: #8b7b6b;
	--g: #c8a456;
	--gl: #e8d49a;
	--gd: #9b7a2e;
	--cr: #f9f4ec;
	--cr2: #efe6d5;
	--cr3: #e5d9c5;
	--w: #fdfaf6;
	--tx: #3c3028;
	--mu: #7a6e62;
	--r: 4px;
	--rl: 10px;
	--ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ══ RESET ════════════════════════════════════════ */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
	font-size: 18px;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
body {
	font-family: 'Jost', system-ui, sans-serif;
	background: var(--w);
	color: var(--tx);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}
a {
	text-decoration: none;
	color: inherit;
}
ul {
	list-style: none;
}
.skip-link {
	position: absolute;
	top: -100%;
	left: 1rem;
	background: var(--g);
	color: var(--ch);
	padding: 0.5rem 1rem;
	font-weight: 600;
	border-radius: var(--r);
	z-index: 9999;
	transition: top 0.2s;
}
.skip-link:focus {
	top: 1rem;
}

/* ══ TYPE ══════════════════════════════════════════ */
h1,
h2,
h3,
h4 {
	font-family: 'Cormorant Garamond', Georgia, serif;
	line-height: 1.08;
	font-weight: 600;
	color: var(--ch2);
}
h1 {
	font-size: clamp(3rem, 6.5vw, 5.8rem);
}
h2 {
	font-size: clamp(2rem, 3.8vw, 3.2rem);
}
h3 {
	font-size: clamp(1.15rem, 2vw, 1.55rem);
	font-weight: 500;
}
p {
	line-height: 1.8;
	font-weight: 400;
	color: var(--mu);
	font-size: 19px;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--g);
	margin-bottom: 1rem;
}
.eyebrow::before {
	content: '';
	width: 2rem;
	height: 1px;
	background: var(--g);
	flex-shrink: 0;
}
.gold-rule {
	width: 3rem;
	height: 1px;
	background: var(--g);
	margin: 1.5rem 0;
}
.gold-rule.c {
	margin-left: auto;
	margin-right: auto;
}

/* ══ BTN ═══════════════════════════════════════════ */
.btn {
	display: inline-block;
	padding: 0.9rem 2rem;
	font-family: 'Jost', sans-serif;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	cursor: pointer;
	border: none;
	border-radius: var(--r);
	transition:
		transform 0.3s var(--ease),
		box-shadow 0.3s,
		background 0.3s,
		color 0.3s;
	text-align: center;
}
.btn:focus-visible {
	outline: 2px solid var(--g);
	outline-offset: 3px;
}
.btn-g {
	background: var(--g);
	color: var(--ch);
}
.btn-g:hover {
	background: var(--gl);
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(200, 164, 86, 0.3);
}
.btn-ghost {
	background: transparent;
	border: 1px solid var(--g);
	color: var(--g);
}
.btn-ghost:hover {
	background: var(--g);
	color: var(--ch);
	transform: translateY(-2px);
}

/* ══ REVEAL ════════════════════════════════════════ */
.rv {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity 0.6s var(--ease),
		transform 0.6s var(--ease);
}
.rv.on {
	opacity: 1;
	transform: none;
}
.d1 {
	transition-delay: 0.1s;
}
.d2 {
	transition-delay: 0.2s;
}
.d3 {
	transition-delay: 0.3s;
}
.d4 {
	transition-delay: 0.4s;
}
.d5 {
	transition-delay: 0.5s;
}

/* ══ LOI 25 BANDEAU ════════════════════════════════ */
#cb {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--ch);
	border-top: 1px solid rgba(200, 164, 86, 0.22);
	z-index: 9000;
	padding: 1.3rem 5%;
	display: flex;
	align-items: flex-start;
	gap: 2rem;
	flex-wrap: wrap;
	transform: translateY(100%);
	transition: transform 0.4s var(--ease);
}
#cb.show {
	transform: translateY(0);
}
#cb.hide {
	transform: translateY(110%);
	pointer-events: none;
}
.cb-txt {
	flex: 1;
	min-width: 240px;
}
.cb-txt p {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.65;
	margin: 0;
}
.cb-txt p a {
	color: var(--gl);
	text-decoration: underline;
}
.cb-txt strong {
	display: block;
	font-size: 0.8rem;
	color: var(--gl);
	margin-bottom: 0.3rem;
	font-family: 'Jost', sans-serif;
}
.cb-act {
	display: flex;
	gap: 0.7rem;
	align-items: center;
	flex-wrap: wrap;
	flex-shrink: 0;
}
.cb-a {
	padding: 0.6rem 1.4rem;
	font-size: 0.7rem;
	background: var(--g);
	color: var(--ch);
	border: none;
	border-radius: var(--r);
	font-family: 'Jost', sans-serif;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.3s;
}
.cb-a:hover {
	background: var(--gl);
}
.cb-r {
	padding: 0.6rem 1.1rem;
	font-size: 0.7rem;
	background: transparent;
	color: rgba(255, 255, 255, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--r);
	font-family: 'Jost', sans-serif;
	font-weight: 500;
	cursor: pointer;
	transition:
		border-color 0.3s,
		color 0.3s;
}
.cb-r:hover {
	border-color: rgba(255, 255, 255, 0.4);
	color: rgba(255, 255, 255, 0.7);
}
.cb-s {
	font-size: 0.7rem;
	color: rgba(255, 255, 255, 0.25);
	background: none;
	border: none;
	cursor: pointer;
	font-family: 'Jost', sans-serif;
	text-decoration: underline;
	padding: 0.3rem;
	transition: color 0.3s;
}
.cb-s:hover {
	color: var(--gl);
}

/* ══ NAV ═══════════════════════════════════════════ */
#nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 800;
	height: 68px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 5%;
	background: var(--ch);
	border-bottom: 1px solid rgba(200, 164, 86, 0.15);
}
.nav-logo {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--w);
	letter-spacing: 0.03em;
	white-space: nowrap;
	flex-shrink: 0;
}
.nav-logo em {
	color: var(--g);
	font-style: italic;
}
.nav-links {
	display: flex;
	align-items: center;
	gap: clamp(0.4rem, 1.2vw, 2rem);
}
.nav-links a {
	font-size: clamp(14px, 1vw, 17px);
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	transition: color 0.25s;
	white-space: nowrap;
}
.nav-links a:hover,
.nav-links a:focus-visible {
	color: var(--g);
	outline: none;
}
.nav-cta {
	padding: 0.6rem 1.3rem;
	font-size: clamp(14px, 1vw, 17px);
	flex-shrink: 0;
}

/* Hamburger */
.hbg {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 36px;
	height: 36px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	flex-shrink: 0;
}
.hbg span {
	display: block;
	height: 1.5px;
	background: var(--w);
	border-radius: 2px;
	transition:
		transform 0.3s var(--ease),
		opacity 0.3s;
	transform-origin: center;
}
.hbg[aria-expanded='true'] span:nth-child(1) {
	transform: translateY(6.5px) rotate(45deg);
}
.hbg[aria-expanded='true'] span:nth-child(2) {
	opacity: 0;
}
.hbg[aria-expanded='true'] span:nth-child(3) {
	transform: translateY(-6.5px) rotate(-45deg);
}

#mob-menu {
	position: fixed;
	top: 68px;
	left: 0;
	right: 0;
	background: var(--ch);
	border-bottom: 1px solid rgba(200, 164, 86, 0.18);
	z-index: 799;
	padding: 0 5%;
	max-height: 0;
	overflow: hidden;
	transition:
		max-height 0.4s var(--ease),
		padding 0.4s;
}
#mob-menu.open {
	max-height: 450px;
	overflow-y: auto;
	padding: 1.5rem 5% 2rem;
}
#mob-menu a {
	display: block;
	padding: 0.9rem 0;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	transition: color 0.2s;
}
#mob-menu a:hover {
	color: var(--g);
}
#mob-menu .btn {
	display: block;
	width: 100%;
	text-align: center;
	margin-top: 1.2rem;
	padding: 0.9rem;
}

@media (max-width: 1199px) {
	.nav-links,
	#mob-menu .btn {
		display: none;
	}
	.nav-cta {
		margin-left: auto;
	}
	.hbg {
		display: flex;
	}
}

@media (max-width: 991px) {
	.nav-cta {
		display: none;
	}
	#mob-menu .btn {
		display: block;
	}
}

/* ══ HERO SPLIT ════════════════════════════════════ */
#hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: calc(100vh - 68px);
	margin-top: 68px;
	background: var(--ch);
	overflow: hidden;
}

/* Côté gauche — contenu */
.hero-left {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 6% 12% 7% 6%;
	background: var(--ch);
}
/* Diagonale de séparation vers la droite */
.hero-left::after {
	content: '';
	position: absolute;
	top: 0;
	right: -56px;
	width: 112px;
	height: 100%;
	background: var(--ch);
	clip-path: polygon(0 0, 40% 0, 100% 100%, 0 100%);
	z-index: 3;
}

.hero-label {
	font-size: 0.58rem;
	font-weight: 600;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: var(--g);
	margin-bottom: 1.6rem;
	display: flex;
	align-items: center;
	gap: 0.9rem;
}
.hero-label::before {
	content: '';
	width: 3rem;
	height: 1px;
	background: var(--g);
}

.hero-title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: clamp(3.8rem, 5.5vw, 5.8rem);
	font-weight: 700;
	color: var(--w);
	line-height: 1;
	margin-bottom: 0.4rem;
}
.hero-title em {
	display: block;
	color: var(--g);
	font-style: italic;
}

.hero-tagline {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: clamp(1rem, 1.6vw, 1.25rem);
	font-weight: 400;
	font-style: italic;
	color: rgba(255, 255, 255, 0.45);
	margin-bottom: 2.2rem;
	letter-spacing: 0.02em;
}

.hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin-bottom: 2.5rem;
}
.badge {
	padding: 0.36rem 0.85rem;
	border: 1px solid rgba(200, 164, 86, 0.32);
	border-radius: 2px;
	font-size: 0.6rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(232, 212, 154, 0.75);
}

.hero-form {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(200, 164, 86, 0.18);
	border-radius: var(--rl);
	padding: 1.1rem;
	/*backdrop-filter: blur(8px);*/ /*Cause un bug ou ça fait une ligne qui flash sur Chromium. Aucun intérêt à garder ça de toute façon, c'est pas sur un fond avec image.*/
}
.hero-form input {
	flex: 1;
	min-width: 140px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: var(--r);
	padding: 0.72rem 0.95rem;
	font-family: 'Jost', sans-serif;
	font-size: 0.88rem;
	font-weight: 300;
	color: var(--w);
	outline: none;
	transition: border-color 0.25s;
}
.hero-form input::placeholder {
	color: rgba(255, 255, 255, 0.32);
}
.hero-form input:focus {
	border-color: var(--g);
}
.hero-form .btn {
	flex-shrink: 0;
	padding: 0.72rem 1.4rem;
}

/* Gold accent line */
.hero-gold-line {
	position: absolute;
	left: 0;
	top: 15%;
	bottom: 15%;
	width: 3px;
	background: linear-gradient(to bottom, transparent, var(--g) 30%, var(--g) 70%, transparent);
	z-index: 4;
	opacity: 0.5;
}

/* Côté droit — slideshow */
.hero-right {
	position: relative;
	overflow: hidden;
	background: var(--ch2);
}

/* Ken Burns slides */
.hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 1.4s ease;
}
.hero-slide.active {
	opacity: 1;
}
.hero-slide img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform-origin: center;
	animation: none;
}
.hero-slide.active img {
	animation: kenburns 8s ease-out forwards;
}
.hero-slide.out img {
	animation: kenburnsOut 1.5s ease-in forwards;
}

@keyframes kenburns {
	0% {
		transform: scale(1.08) translate(0, 0);
	}
	100% {
		transform: scale(1) translate(0, 0);
	}
}
@keyframes kenburnsOut {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.04);
	}
}

/* overlay sur photo */
.hero-slide::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(30, 23, 16, 0.85) 0%, rgba(30, 23, 16, 0.15) 40%, rgba(30, 23, 16, 0) 100%);
	z-index: 1;
}

/* Caption photo */
.slide-cap {
	position: absolute;
	bottom: 1.5rem;
	right: 1.5rem;
	z-index: 10;
	font-size: 0.62rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.5);
	font-family: 'Jost', sans-serif;
	text-align: right;
	pointer-events: none;
	transition: opacity 0.5s;
}

/* Indicateurs de slides */
.slide-dots {
	position: absolute;
	bottom: 1.4rem;
	left: 6%;
	z-index: 10;
	display: flex;
	gap: 0.5rem;
}
.slide-dot {
	width: 24px;
	height: 2px;
	background: rgba(255, 255, 255, 0.25);
	border-radius: 2px;
	cursor: pointer;
	transition:
		background 0.3s,
		width 0.3s;
	border: none;
	padding: 0;
}
.slide-dot.active {
	background: var(--g);
	width: 36px;
}

@media (max-width: 991px) {
	#hero {
		grid-template-columns: 1fr;
		min-height: auto;
	}
	.hero-right {
		height: 55vw;
		min-height: 240px;
		order: -1;
	}
	.hero-left {
		padding: 5% 5% 7%;
		min-height: auto;
	}
	.hero-left::after {
		display: none;
	}
	.hero-gold-line {
		display: none;
	}
}

/* ══ SECTIONS ══════════════════════════════════════ */
.section {
	padding: 6.5rem 5%;
}
.wrap {
	max-width: 1180px;
	margin: 0 auto;
}
.sec-hd {
	max-width: 620px;
	margin-bottom: 4rem;
}
.sec-hd.c {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

/* ══ CITATION ══════════════════════════════════════ */
#citation {
	background: var(--ch2);
	padding: 5rem 5%;
}
.cit-inner {
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	padding: 0 2rem;
}
.cit-inner blockquote {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	font-weight: 400;
	font-style: italic;
	color: var(--gl);
	line-height: 1.55;
	margin-bottom: 1.5rem;
}
.cit-src {
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--t);
}
.cit-deco {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 8rem;
	color: var(--g);
	opacity: 0.12;
	line-height: 0.4;
	position: absolute;
	user-select: none;
	pointer-events: none;
}
.cit-deco:first-child {
	top: 0;
	left: 0.5rem;
}
.cit-deco:last-child {
	bottom: 0;
	right: 0.5rem;
}

/* ══ STORYTELLING ══════════════════════════════════ */
#story {
	padding: 0;
}
.story-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 560px;
}
.story-ph {
	overflow: hidden;
	position: relative;
	cursor: pointer;
}
.story-ph img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.4s var(--ease);
	display: block;
}
.story-ph:hover img {
	transform: scale(1.04);
}
.lb-hint {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	width: 50px;
	height: 50px;
	background: rgba(200, 164, 86, 0.85);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s var(--ease);
	pointer-events: none;
	z-index: 2;
}
.lb-hint svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: var(--ch);
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.story-ph:hover .lb-hint,
.plan-card:hover .lb-hint,
.cour-ph:hover .lb-hint {
	transform: translate(-50%, -50%) scale(1);
}
.story-bd {
	background: var(--ch2);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 8% 7%;
}
.story-bd h2 {
	color: var(--w);
	margin-bottom: 1.3rem;
}
.story-bd p {
	color: rgba(255, 255, 255, 0.48);
	line-height: 1.85;
	margin-bottom: 1rem;
}
.story-bd p:last-of-type {
	margin-bottom: 2rem;
}
@media (max-width: 760px) {
	.story-split {
		grid-template-columns: 1fr;
	}
	.story-ph {
		height: 280px;
	}
	.story-bd {
		padding: 2.8rem 6%;
	}
}

/* ══ AVANTAGES ══════════════════════════════════════ */
#av {
	background: var(--w);
}
.av-title-grid {
	display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: start;
	margin-bottom: 4rem;
}
.av-title-grid .sec-hd {
	max-width: unset;
	margin-bottom: unset;
}
@media (max-width: 900px) {
    .av-title-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
.av-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5px;
	background: var(--cr3);
	border-radius: var(--rl);
	overflow: hidden;
}
.av-card {
	background: var(--w);
	padding: 2.3rem 1.9rem;
	position: relative;
	overflow: hidden;
	transition: background 0.3s;
}
.av-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--g);
	transition: width 0.4s var(--ease);
}
.av-card:hover {
	background: var(--cr);
}
.av-card:hover::after {
	width: 100%;
}
.av-ico {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--cr2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	margin-bottom: 1.3rem;
}
.av-card h3 {
	color: var(--ch2);
	margin-bottom: 0.55rem;
}
.av-card p {
}
@media (max-width: 760px) {
	.av-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 460px) {
	.av-grid {
		grid-template-columns: 1fr;
	}
}

/* ══ GALERIE ═══════════════════════════════════════ */
#gal {
	background: var(--ch2);
}
#gal .sec-hd h2 {
	color: var(--w);
}
#gal .sec-hd p {
	color: rgba(255, 255, 255, 0.42);
}
.gal-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: 280px 280px;
	gap: 6px;
}
.gi {
	overflow: hidden;
	position: relative;
	cursor: pointer;
	border-radius: 3px;
}
.gi img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s var(--ease);
	display: block;
}
.gi:hover img {
	transform: scale(1.06);
}
.gi-cap {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(30, 23, 16, 0.9));
	padding: 2rem 0.9rem 0.75rem;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	opacity: 0;
	transition: opacity 0.3s;
}
.gi:hover .gi-cap {
	opacity: 1;
}
.gi-cap span {
	font-size: 0.66rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: var(--gl);
	font-family: 'Jost', sans-serif;
}
.gi-cap svg {
	width: 16px;
	height: 16px;
	stroke: var(--g);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	flex-shrink: 0;
}
.g1 {
	grid-column: span 5;
	grid-row: span 2;
}
.g2 {
	grid-column: span 4;
}
.g3 {
	grid-column: span 3;
}
.g4 {
	grid-column: span 3;
}
.g5 {
	grid-column: span 4;
}
@media (max-width: 760px) {
	.gal-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
	}
	.g1,
	.g2,
	.g3,
	.g4,
	.g5 {
		grid-column: span 1;
		grid-row: span 1;
		height: 200px;
	}
	.g1 {
		grid-column: span 2;
		height: 260px;
	}
}
@media (max-width: 400px) {
	.gal-grid {
		grid-template-columns: 1fr;
	}
	.g1,
	.g2,
	.g3,
	.g4,
	.g5 {
		grid-column: span 1;
		height: 220px;
	}
}

/* ══ PIÈCES ════════════════════════════════════════ */
#pieces {
	background: var(--cr);
}
.pieces-lay {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 4.5rem;
	align-items: start;
}
.stats-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5px;
	background: var(--cr3);
	border-radius: var(--rl);
	overflow: hidden;
	margin-bottom: 2.2rem;
}
.stat-cell {
	background: var(--w);
	padding: 1.4rem 1.1rem;
	text-align: center;
}
.stat-v {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 2.3rem;
	font-weight: 600;
	color: var(--ch2);
	line-height: 1;
	margin-bottom: 0.25rem;
}
.stat-v em {
	color: var(--g);
	font-style: normal;
}
.stat-l {
	font-size: 0.6rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--mu);
}
/* Tableau 2 colonnes */
.pd-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5px;
	background: var(--cr3);
	border-radius: var(--rl);
	overflow: hidden;
	margin-bottom: 2.2rem;
	font-size: 0.87rem;
}
.pd-row {
	background: var(--w);
	padding: 0.85rem 0.95rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.2s;
}
.pd-row:hover {
	background: rgba(200, 164, 86, 0.06);
}
.pd-n {
	font-weight: 500;
	color: var(--tx);
	font-size: 18px;
}
.pd-d {
	color: var(--t);
	font-family: 'Jost', sans-serif;
	font-size: 18px;
}
/* Plan */
.plan-card {
	background: var(--w);
	border-radius: var(--rl);
	overflow: hidden;
	box-shadow: 0 12px 48px rgba(42, 32, 24, 0.1);
	cursor: pointer;
	position: relative;
}
.plan-card img {
	width: 100%;
	padding: 1.3rem;
	background: var(--w);
}
.plan-card .lb-hint {
	transform: translate(-50%, -50%) scale(0);
}
@media (max-width: 900px) {
	.pieces-lay {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
}
@media (max-width: 540px) {
	.pd-grid {
		grid-template-columns: 1fr;
	}
}

/* ══ COUR ══════════════════════════════════════════ */
#cour {
	padding: 0;
}
.cour-split {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	min-height: 520px;
}
.cour-ph {
	overflow: hidden;
	position: relative;
	cursor: pointer;
}
.cour-ph img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.2s var(--ease);
}
.cour-ph:hover img {
	transform: scale(1.03);
}
.cour-bd {
	background: var(--ch2);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 8% 7%;
}
.cour-bd h2 {
	color: var(--w);
	margin-bottom: 1.4rem;
}
.cour-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	padding: 0.72rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	font-weight: 300;
	color: rgba(255, 255, 255, 0.52);
}
.cour-list li::before {
	content: '—';
	color: var(--g);
	flex-shrink: 0;
}
.cour-bd .btn {
	margin-top: 1.9rem;
	align-self: flex-start;
}
@media (max-width: 760px) {
	.cour-split {
		grid-template-columns: 1fr;
	}
	.cour-ph {
		height: 280px;
	}
	.cour-bd {
		padding: 2.8rem 6%;
	}
}

/* ══ SECTEUR ═══════════════════════════════════════ */
#secteur, #politique-confidentialite {
	background: var(--cr);
}
.sec3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5px;
	background: var(--cr3);
	border-radius: var(--rl);
	overflow: hidden;
	margin-top: 3rem;
}
.sec3-card {
	background: var(--w);
	padding: 2.2rem 1.8rem;
}
.sec3-card h3 {
	color: var(--ch2);
	margin-bottom: 0.85rem;
}
.sec3-card p {
}
.sec3-card .eyebrow {
	font-size: 0.8rem;
}
.sec3-card .btn {
	margin-top: 1.2rem;
	padding: 0.55rem 1.05rem;
	font-size: 0.63rem;
}
@media (max-width: 760px) {
	.sec3 {
		grid-template-columns: 1fr;
	}
}

/* ══ RARETÉ ════════════════════════════════════════ */
#rarete {
	background: var(--ch2);
	padding: 6.5rem 5%;
	text-align: center;
}
.rar-inner {
	max-width: 800px;
	margin: 0 auto;
}
.rar-inner h2 {
	color: var(--w);
	font-size: clamp(1.9rem, 4vw, 3rem);
	margin-bottom: 1.1rem;
}
.rar-inner h2 em {
	color: var(--g);
	font-style: italic;
}
.rar-inner > p {
	color: rgba(255, 255, 255, 0.43);
	line-height: 1.85;
	max-width: 570px;
	margin: 0 auto 2.4rem;
}
.chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.65rem;
	margin-bottom: 2.8rem;
}
.chip {
	padding: 0.42rem 1rem;
	background: rgba(200, 164, 86, 0.1);
	border: 1px solid rgba(200, 164, 86, 0.25);
	border-radius: 100px;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: var(--gl);
}
.rar-tel {
	margin-top: 1.5rem !important;
	color: rgba(255, 255, 255, 0.28);
}
.rar-tel a {
	color: var(--g);
	font-weight: 500;
}

.rar-tel a:hover {
	color: var(--gl);
}

/* ══ FORMULAIRE ════════════════════════════════════ */
#formulaire {
	background: var(--w);
}
/* Intro section — pleine largeur */
.form-intro {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 5rem;
	align-items: center;
	margin-bottom: 4rem;
	padding-bottom: 4rem;
	border-bottom: 1px solid var(--cr2);
}
.form-intro h2 {
	color: var(--ch2);
	margin-bottom: 1rem;
}
.form-intro > p {
	font-size: 0.93rem;
	line-height: 1.8;
}
.fi-contact {
	background: var(--ch2);
	border-radius: var(--rl);
	padding: 1.6rem;
}
.fi-contact p {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.42);
	margin-bottom: 0.35rem;
}
.fi-contact a {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 1.42rem;
	color: var(--g);
	font-weight: 600;
	display: block;
	margin-bottom: 0.35rem;
}

.fi-contact a:hover {
	color: var(--gl);
}

/* Formulaire — pleine largeur */
.form-card {
	background: var(--w);
	border-radius: var(--rl);
	box-shadow: 0 20px 80px rgba(42, 32, 24, 0.08);
	padding: 3rem;
	border: 1px solid var(--cr2);
}
.fsec {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 1.12rem;
	font-weight: 600;
	color: var(--ch2);
	padding-bottom: 0.55rem;
	border-bottom: 1px solid var(--cr2);
	margin-bottom: 1.5rem;
	margin-top: 2rem;
}
.fsec:first-child {
	margin-top: 0;
}
/* Champs en 3 colonnes pour maximiser l'espace sur la rangée principale */
.frow {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1rem;
}
.frow.c2 {
	grid-template-columns: 1fr 1fr;
}
.frow.c4 {
	grid-template-columns: 1fr 1fr 1fr 1fr;
}
.frow.full {
	grid-template-columns: 1fr;
}
.field {
	display: flex;
	flex-direction: column;
	gap: 0.38rem;
	margin-bottom: 1rem;
}
.field label {
	font-size: 0.67rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--td);
}
.field input,
.field select,
.field textarea {
	padding: 0.82rem 0.95rem;
	border: 1px solid var(--cr2);
	border-radius: var(--r);
	font-family: 'Jost', sans-serif;
	font-size: 0.93rem;
	font-weight: 300;
	color: var(--tx);
	background: var(--cr);
	outline: none;
	transition:
		border-color 0.25s,
		box-shadow 0.25s,
		background 0.25s;
	width: 100%;
	appearance: none;
	-webkit-appearance: none;
}

.field input.error,
.field select.error,
.field textarea.error {
	border: 2px solid #f90f25;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
	border-color: var(--g);
	box-shadow: 0 0 0 3px rgba(200, 164, 86, 0.13);
	background: var(--w);
}
.field textarea {
	min-height: 90px;
	height: calc(100% - 47px);
	resize: vertical;
}
.field select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B7B6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.9rem center;
	padding-right: 2.2rem;
}
.field select[multiple] {
	background-image: none;
	height: auto;
	min-height: 105px;
}

/* Clauses */
.cls-list {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}
.cls {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	padding: 0.95rem 1.05rem;
	background: var(--cr);
	border: 1px solid var(--cr2);
	border-radius: var(--r);
	cursor: pointer;
	transition: border-color 0.2s;
}

.cls.error {
	border: 2px solid #f90f25;
}
.cls:hover {
	border-color: rgba(200, 164, 86, 0.4);
}
.cls input[type='checkbox'] {
	width: 18px;
	height: 18px;
	min-width: 18px;
	margin-top: 0.1rem;
	accent-color: var(--gd);
	cursor: pointer;
	appearance: auto;
	-webkit-appearance: checkbox;
	padding: 0;
	background: none;
	border: none;
	box-shadow: none;
}
.cls-body {
	line-height: 1.65;
	color: var(--tx);
	cursor: pointer;
}
.cls-body strong {
	display: block;
	font-weight: 600;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--gd);
	margin-bottom: 0.3rem;
}

.btn-sub {
	width: 100%;
	padding: 1.1rem;
	font-size: 0.78rem;
	margin-top: 1.2rem;
	border-radius: var(--r);
}
.form-note {
	text-align: center;
	font-size: 0.7rem;
	color: var(--mu);
	margin-top: 0.9rem;
	line-height: 1.6;
}
#ok-msg {
	display: none;
	text-align: center;
	padding: 3rem 1.5rem;
}
#ok-msg h3 {
	color: var(--ch2);
	margin-bottom: 0.8rem;
}
#ok-msg p {
	font-size: 0.93rem;
}

@media (max-width: 960px) {
	.form-intro {
		grid-template-columns: 1fr;
		gap: 2.5rem;
		margin-bottom: 3rem;
		padding-bottom: 3rem;
	}
}
@media (max-width: 700px) {
	.frow {
		grid-template-columns: 1fr 1fr;
	}
	.frow.c4 {
		grid-template-columns: 1fr 1fr;
	}
	.form-card {
		padding: 1.7rem 1.3rem;
	}
}
@media (max-width: 500px) {
	.frow,
	.frow.c2,
	.frow.c4 {
		grid-template-columns: 1fr;
	}
}

/* ══ FOOTER ════════════════════════════════════════ */
footer {
	background: var(--ch);
	border-top: 1px solid rgba(200, 164, 86, 0.16);
}
.ft-main {
	display: grid;
	grid-template-columns: 2.2fr 1fr 1fr 1fr;
	gap: 3.5rem;
	max-width: 1180px;
	margin: 0 auto;
	padding: 4.5rem 5% 3rem;
}
.ft-logo {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 1.42rem;
	font-weight: 600;
	color: var(--w);
	display: block;
	margin-bottom: 0.9rem;
}
.ft-logo em {
	color: var(--g);
	font-style: italic;
}
.ft-brand p {
	color: rgba(255, 255, 255, 0.32);
	line-height: 1.85;
	margin-bottom: 0.7rem;
}
.ft-col h4 {
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--g);
	margin-bottom: 1.2rem;
	font-family: 'Jost', sans-serif;
}
.ft-col ul li {
	margin-bottom: 0.65rem;
}
.ft-col ul li a,
.ft-col ul li span {
	color: rgba(255, 255, 255, 0.35);
	transition: color 0.25s;
	line-height: 1.5;
}
.ft-col ul li a:hover {
	color: var(--gl);
}
.ft-bot {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding: 1.4rem 5%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	max-width: 1180px;
	margin: 0 auto;
}
.ft-bot span,
.ft-bot a {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.32);
}
.ft-bot a:hover {
	color: var(--gl);
}
.ft-bot a + a::before {
	content: ' · ';
}
@media (max-width: 900px) {
	.ft-main {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem;
	}
}
@media (max-width: 520px) {
	.ft-main {
		grid-template-columns: 1fr;
	}
	.ft-bot {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ══ LIGHTBOX ══════════════════════════════════════ */
#lb {
	position: fixed;
	inset: 0;
	z-index: 9100;
	background: rgba(14, 10, 6, 0.97);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.35s var(--ease);
}
#lb.open {
	opacity: 1;
	pointer-events: all;
}
#lb-img {
	max-width: 92vw;
	max-height: 86vh;
	object-fit: contain;
	border-radius: var(--r);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
	display: block;
	transition: opacity 0.25s;
}
.lb-close {
	position: fixed;
	top: 1.1rem;
	right: 1.4rem;
	background: none;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	width: 44px;
	height: 44px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		border-color 0.2s,
		background 0.2s;
	z-index: 9101;
}
.lb-close:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.45);
}
.lb-close svg {
	width: 18px;
	height: 18px;
	stroke: var(--w);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
}
.lb-nav {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9101;
	background: rgba(200, 164, 86, 0.13);
	border: 1px solid rgba(200, 164, 86, 0.28);
	border-radius: 50%;
	width: 48px;
	height: 48px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
	backdrop-filter: blur(4px);
}
.lb-nav:hover {
	background: rgba(200, 164, 86, 0.32);
}
.lb-nav svg {
	width: 20px;
	height: 20px;
	stroke: var(--gl);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.lb-prev {
	left: 0.9rem;
}
.lb-next {
	right: 0.9rem;
}
.lb-cap {
	position: fixed;
	bottom: 1.4rem;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.45);
	white-space: nowrap;
	font-family: 'Jost', sans-serif;
	pointer-events: none;
}
.lb-ctr {
	position: fixed;
	top: 1.3rem;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.68rem;
	color: rgba(255, 255, 255, 0.3);
	font-family: 'Jost', sans-serif;
}

.grecaptcha-badge{
	display:none!important;
}

/* ══ POLITIQUE DE CONFIDENTIALITÉ ═══════════════════════════════════════ */
#politique-confidentialite h1,
#politique-confidentialite h2,
#politique-confidentialite h3,
#politique-confidentialite h4,
#politique-confidentialite p,
#politique-confidentialite ul {
	margin-bottom: 20px;
}

#politique-confidentialite a {
	color: var(--g);
}
#politique-confidentialite a:hover {
	color: var(--gd);
}

#politique-confidentialite ul {
	list-style-type: disc;
	margin-left: 20px;
}

#politique-confidentialite ul li {
	line-height: 1.6;
	font-weight: 400;
	color: var(--mu);
}

#politique-confidentialite table {
	margin-bottom: 20px;
}