/* ==========================================================================
   ATSIMMO — Custom design layer (loaded after main.css)
   ========================================================================== */

:root {
	--font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
	--font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--color-bg: #FAF6EC;
	--color-paper: #F0E7D2;
	--color-navy: #3B2D1F;
	--color-navy-light: #5A4A36;
	--color-ivory: #F0E7D2;
	--color-cognac: #8B6F47;
	--color-text: #2A2218;
	--color-text-muted: rgba(42, 34, 24, 0.65);
	--color-line: rgba(59, 45, 31, 0.2);
	--header-h: 5rem;
}

@media (max-width: 736px) {
	:root {
		--header-h: 3.25rem;
	}
}

html {
	font-size: 81.25%;
	scrollbar-gutter: stable;
}

body {
	background: var(--color-bg) !important;
	color: var(--color-text) !important;
}

/* -- Typography overhaul ----------------------------------------------- */
body,
input,
select,
textarea {
	font-family: var(--font-sans) !important;
	font-weight: 400 !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-serif) !important;
	font-weight: 500 !important;
	letter-spacing: -0.01em !important;
	text-transform: none !important;
}

/* Neutralise les small-caps trackées du template */
#wrapper section > header p,
#wrapper section > header h1 + p,
.feature-icons li {
	font-family: var(--font-sans) !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
	font-size: 1rem !important;
	line-height: 1.7 !important;
}

/* -- 1. Suppression des artifacts décoratifs du template -------------- */
#wrapper > section > header:before,
#wrapper > section > header h1:before,
#wrapper > section > header h2:before,
#wrapper > section > header h1:after,
#wrapper > section > header h2:after,
#wrapper > section:last-of-type > header:before,
#wrapper > section:last-of-type > header:after {
	display: none !important;
}

#wrapper > section > header h1,
#wrapper > section > header h2 {
	margin-top: 0 !important;
}

/* -- 2. Header fixe minimaliste --------------------------------------- */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 1.25rem 3rem;
	background: transparent;
	transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
	background: #8B6F47;
	backdrop-filter: saturate(1.4) blur(12px);
	-webkit-backdrop-filter: saturate(1.4) blur(12px);
	padding: 0 3rem;
	height: 5rem;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
	overflow: visible;
}

.site-header.scrolled .site-header__nav a {
	color: #FAF6EC;
}

.site-header.scrolled .site-header__nav a:hover {
	color: #3B2D1F;
	opacity: 1;
}

.site-header.scrolled .site-header__nav a:after {
	background: #3B2D1F;
}

.site-header.scrolled .site-header__menu-toggle {
	color: #ffffff;
}

.site-header.scrolled .site-header__inner {
	height: 100%;
	overflow: visible;
}

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

.site-header__brand {
	display: flex;
	align-items: center;
	border: 0 !important;
	text-decoration: none !important;
	transition: transform 0.3s ease;
}

.site-header__brand:hover {
	transform: scale(1.04);
}

.site-header__brand img {
	height: 6.5rem;
	width: auto;
	filter: drop-shadow(0 4px 12px rgba(59, 45, 31, 0.35));
	transition: height 0.35s ease, filter 0.35s ease;
}

.site-header.scrolled .site-header__brand img {
	height: 5.5rem;
	filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.3));
}

.site-header__nav {
	display: flex;
	gap: 2.75rem;
	align-items: center;
}

.site-header__nav a {
	color: #FAF6EC;
	text-decoration: none;
	border: 0;
	font-family: var(--font-sans);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	opacity: 0.85;
	transition: opacity 0.2s ease;
}

.site-header__nav a:hover {
	opacity: 1;
}

.site-header__menu-toggle {
	display: none;
	background: none;
	border: none;
	color: #fff;
	font-size: 1.6rem;
	cursor: pointer;
	padding: 0.25rem 0.5rem;
	line-height: 1;
}

/* -- 3. Hero refondu (full-bleed) ------------------------------------- */
#wrapper > section.intro {
	display: block !important;
	position: relative !important;
	width: 100% !important;
	height: 100vh !important;
	height: 100dvh !important;
	min-height: 640px !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
	background: var(--color-navy) !important;
	z-index: 1 !important;
}

.hero-media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-media img,
.hero-media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero-media img {
	animation: kenBurns 28s ease-in-out infinite alternate;
	transform-origin: center center;
	will-change: transform;
}

@keyframes kenBurns {
	0% {
		transform: scale(1) translate(0, 0);
	}
	100% {
		transform: scale(1.08) translate(-1.5%, -1%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-media img {
		animation: none;
	}
}

.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(59, 45, 31, 0.5) 0%, rgba(59, 45, 31, 0.4) 35%, rgba(59, 45, 31, 0.55) 55%, rgba(59, 45, 31, 0.8) 100%);
}

.hero-content {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 0 8vw;
	max-width: 75rem;
}

.hero-content h1 {
	font-family: var(--font-serif) !important;
	font-size: clamp(2.5rem, 6.5vw, 6rem) !important;
	line-height: 1.02 !important;
	color: #ffffff !important;
	margin: 0 0 1.75rem !important;
	font-weight: 400 !important;
	letter-spacing: -0.02em !important;
	text-transform: none !important;
	max-width: 22ch;
}

.hero-content h1 em {
	font-style: italic;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.9);
}

.hero-tagline {
	font-family: var(--font-sans) !important;
	font-size: clamp(1rem, 1.3vw, 1.2rem) !important;
	color: rgba(255, 255, 255, 0.82) !important;
	line-height: 1.65 !important;
	max-width: 42rem !important;
	margin: 0 0 2.75rem !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
	font-weight: 400 !important;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45), 0 2px 18px rgba(0, 0, 0, 0.35);
}

.hero-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.hero-actions a {
	display: inline-flex;
	align-items: center;
	padding: 1.05rem 2.25rem;
	font-family: var(--font-sans);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.55);
	color: #ffffff;
	background: transparent;
	transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
	border-radius: 0;
}

.hero-actions a.primary {
	background: var(--color-cognac);
	color: #ffffff;
	border-color: var(--color-cognac);
}

.hero-actions a:hover {
	background: var(--color-navy);
	border-color: var(--color-navy);
	color: #ffffff;
}

.hero-actions a.primary:hover {
	background: var(--color-navy);
	color: #ffffff;
	border-color: var(--color-navy);
}

.hero-scroll {
	position: absolute;
	bottom: 2.25rem;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, 0.55);
	font-family: var(--font-sans);
	font-size: 0.7rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	z-index: 2;
	text-decoration: none;
	border: 0;
}

.hero-scroll:after {
	content: '';
	display: block;
	width: 1px;
	height: 32px;
	margin: 0.5rem auto 0;
	background: linear-gradient(to bottom, rgba(255,255,255,0.6), rgba(255,255,255,0));
	animation: heroScrollPulse 2s ease-in-out infinite;
}

@keyframes heroScrollPulse {
	0%, 100% { transform: scaleY(0.6); opacity: 0.4; }
	50% { transform: scaleY(1); opacity: 1; }
}

/* -- 4. Trust bar (social proof) -------------------------------------- */
.trust-bar {
	display: block !important;
	grid-template-columns: none !important;
	grid-template-areas: none !important;
	grid-template-rows: none !important;
	background: var(--color-navy);
	color: #ffffff;
	padding: 6rem 8vw;
	margin: 0 !important;
	position: relative;
	z-index: 1;
}

.trust-bar__stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2.5rem;
	max-width: 60rem;
	margin: 0 auto !important;
}

.trust-bar__stat {
	text-align: center;
}

.trust-bar__stat-number {
	display: inline-flex;
	align-items: baseline;
	gap: 0.55rem;
	font-family: var(--font-serif);
	font-size: clamp(3rem, 6.5vw, 5.5rem);
	font-style: italic;
	font-weight: 300;
	line-height: 1;
	margin-bottom: 1.25rem;
	color: #ffffff;
	letter-spacing: -0.02em;
	font-variant-numeric: lining-nums tabular-nums;
	
}

.trust-bar__stat-unit {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 300;
	font-size: 0.42em;
	letter-spacing: 0;
	color: var(--color-cognac);
	text-transform: none;
	transform: translateY(-0.6em);
	display: inline-block;
}

.trust-bar__stat-plus {
	font-family: var(--font-sans);
	font-style: normal;
	font-weight: 500;
	font-size: 0.32em;
	color: var(--color-cognac);
	letter-spacing: 0;
	transform: translateY(-1.4em);
	display: inline-block;
	margin-left: -0.35rem;
}

.trust-bar__stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
}

.trust-bar__stat-label {
	display: block;
	font-family: var(--font-sans);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.62);
}

.trust-bar__quotes {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4rem;
	max-width: 80rem;
	margin: 0 auto !important;
}

.trust-bar__quote {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 1.2rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.88);
	margin: 0;
	padding: 0;
	border: 0;
}

.trust-bar__quote p {
	margin: 0 0 1.25rem;
	color: rgba(255, 255, 255, 0.88) !important;
}

.trust-bar__quote p:before {
	content: '« ';
	opacity: 0.45;
}

.trust-bar__quote p:after {
	content: ' »';
	opacity: 0.45;
}

.trust-bar__quote footer {
	font-family: var(--font-sans);
	font-style: normal;
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	padding: 0;
	background: none;
	margin: 0;
	text-align: left;
}

/* -- Polish on existing sections -------------------------------------- */
#wrapper {
	padding: 0 !important;
}

#wrapper > section > header h2 {
	font-size: clamp(2rem, 3.8vw, 3.25rem) !important;
	line-height: 1.1 !important;
}

#wrapper > section > header h3 {
	font-size: clamp(1.3rem, 2vw, 1.75rem) !important;
	line-height: 1.2 !important;
}

#wrapper > section > .content p {
	font-size: 1.02rem;
	line-height: 1.75;
	color: var(--color-text);
}

#wrapper > section > .content strong {
	font-weight: 600;
}

/* Boutons section */
.button.primary {
	background: var(--color-navy) !important;
	color: #ffffff !important;
	border-radius: 999px !important;
	font-family: var(--font-sans) !important;
	letter-spacing: 0.18em !important;
	text-transform: uppercase !important;
	font-size: 0.78rem !important;
	font-weight: 500 !important;
	padding: 1rem 2.25rem !important;
}

.button {
	border-radius: 999px !important;
	font-family: var(--font-sans) !important;
	letter-spacing: 0.18em !important;
	text-transform: uppercase !important;
	font-size: 0.78rem !important;
	font-weight: 500 !important;
	padding: 1rem 2.25rem !important;
}

/* Form polish */
input[type="text"],
input[type="email"],
textarea {
	border-radius: 6px !important;
	font-family: var(--font-sans) !important;
}

input[type="submit"].button.primary {
	border-radius: 999px !important;
}

/* -- Responsive ------------------------------------------------------- */
@media (max-width: 1152px) {
	.site-header {
		padding: 1rem 2rem;
	}
	.site-header.scrolled {
		padding: 0.2rem 2rem;
	}
	.site-header__nav {
		gap: 2rem;
	}
}

@media (max-width: 980px) {
	.site-header__nav {
		display: flex !important;
		position: static;
		flex-direction: row;
		background: transparent;
		backdrop-filter: none;
		padding: 0;
		gap: 1.1rem;
		align-items: center;
	}
	.site-header__menu-toggle {
		display: none !important;
	}
	.site-header__nav a {
		font-size: 0.72rem;
		letter-spacing: 0.12em;
	}

	.trust-bar {
		padding: 4rem 6vw;
	}
	.trust-bar__stats {
		grid-template-columns: 1fr;
		gap: 2.5rem;
		padding-bottom: 3rem;
		margin-bottom: 3rem;
	}
	.trust-bar__quotes {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
}

@media (max-width: 736px) {
	.site-header {
		padding: 0.4rem 0.85rem;
	}
	.site-header.scrolled {
		padding: 0 0.85rem;
		height: 3.25rem;
	}
	.site-header__brand img {
		height: 4rem;
	}
	.site-header.scrolled .site-header__brand img {
		height: 4rem;
	}
	.site-header__nav {
		gap: 0.75rem !important;
	}
	.site-header__nav a {
		font-size: 0.62rem !important;
		letter-spacing: 0.08em !important;
	}

	.hero-content {
		padding: 0 1.5rem;
		justify-content: flex-start;
		padding-top: 18vh;
		padding-bottom: 24vh;
	}
	.hero-content h1 {
		margin: 0 0 2.5rem !important;
	}
	.hero-tagline {
		margin: 0 0 auto !important;
	}
	.hero-actions {
		width: 100%;
		flex-direction: column;
		align-items: center;
		gap: 0.85rem;
		margin-top: 2.5rem;
	}
	.hero-actions a {
		width: auto;
		min-width: 14rem;
		max-width: 22rem;
		justify-content: center;
		text-align: center;
		text-indent: 0.09em;
	}
	.hero-scroll {
		display: none;
	}

	.trust-bar {
		padding: 3.5rem 1.25rem;
	}
	.trust-bar__stat-number {
		font-size: 2.5rem;
	}
	.trust-bar__quote {
		font-size: 1.05rem;
	}
}

/* ==========================================================================
   5. Modernisation du layout des sections (suppression du split 50/50)
   ========================================================================== */

/* Hide template's left navy panel everywhere except hero */
#wrapper:before {
	display: none !important;
}

/* Reset grid layout to editorial full-width for content sections */
#wrapper > section:not(.intro):not(.trust-bar) {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 7rem 6vw !important;
	grid-template-columns: none !important;
	background: var(--color-bg);
	position: relative;
}

#wrapper > section:not(.intro):not(.trust-bar) > header {
	text-align: center;
	max-width: 56rem;
	margin: 0 auto 4.5rem !important;
	justify-self: center !important;
	grid-area: auto !important;
}

#wrapper > section:not(.intro):not(.trust-bar) > header h2 {
	color: var(--color-navy) !important;
	font-size: clamp(2.25rem, 4.2vw, 3.5rem) !important;
	line-height: 1.1 !important;
	margin: 0 0 1.25rem !important;
}

#wrapper > section:not(.intro):not(.trust-bar) > header h3 {
	color: var(--color-navy) !important;
}

#wrapper > section:not(.intro):not(.trust-bar) > header p,
#wrapper > section:not(.intro):not(.trust-bar) > header h2 + p,
#wrapper > section:not(.intro):not(.trust-bar) > header h3 + p {
	color: var(--color-text-muted) !important;
	font-size: 1.05rem !important;
	line-height: 1.7 !important;
	margin: 0 !important;
}

#wrapper > section:not(.intro):not(.trust-bar) > .content {
	max-width: 80rem;
	width: 100% !important;
	margin: 0 auto !important;
	grid-area: auto !important;
}

#wrapper > section:not(.intro):not(.trust-bar) > .content > p {
	max-width: 60rem;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.08rem;
	line-height: 1.8;
	color: var(--color-text);
}

#wrapper > section:not(.intro):not(.trust-bar) > .content > p strong {
	color: var(--color-navy);
	font-weight: 600;
}

/* Section main image (Expertise) — elegant width-limited block */
#wrapper > section > .content .image.main {
	display: block;
	max-width: 32rem;
	margin: 4rem auto 0;
}

#wrapper > section > .content .image.main img {
	width: 100%;
	height: auto;
	display: block;
}

/* Center actions (the CTA buttons in approche section) */
#wrapper > section > .content ul.actions {
	justify-content: center;
	display: flex;
	gap: 1rem;
	margin: 3rem 0 0;
	padding: 0;
	flex-wrap: wrap;
}

#wrapper > section > .content ul.actions li {
	padding: 0;
}

/* Alternation : ivory background for visual rhythm */
#services,
#approche {
	background: var(--color-ivory) !important;
}

/* Sub-sections inside #actifs : remove old margin, modernize */
#actifs > .content > section {
	margin-top: 6rem !important;
	background: var(--color-bg);
	padding: 0 !important;
}

#actifs > .content > section:first-of-type {
	margin-top: 4rem !important;
}

#actifs > .content > section > header {
	text-align: center;
	max-width: 52rem;
	margin: 0 auto 2.5rem !important;
}

#actifs > .content > section > header h3 {
	color: var(--color-navy) !important;
	font-family: var(--font-serif) !important;
	font-size: clamp(1.4rem, 2.2vw, 1.9rem) !important;
	margin-bottom: 1rem !important;
}

#actifs > .content > section > header p {
	color: var(--color-text-muted) !important;
	font-size: 1rem !important;
	line-height: 1.7 !important;
}

/* ==========================================================================
   6. Feature icons modernisés (grille élégante avec ligne fine)
   ========================================================================== */

ul.feature-icons {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 0 !important;
	margin: 4rem auto !important;
	padding: 0 !important;
	list-style: none !important;
	max-width: 72rem;
	width: 100%;
	border-top: 1px solid var(--color-line);
	box-sizing: border-box;
}

ul.feature-icons li {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
	text-align: center;
	padding: 2.5rem 1.5rem !important;
	border-bottom: 1px solid var(--color-line);
	border-right: 1px solid var(--color-line);
	font-family: var(--font-sans) !important;
	font-size: 1rem !important;
	font-weight: 500 !important;
	color: var(--color-navy) !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
	min-height: auto !important;
	line-height: 1.4 !important;
	position: relative;
	overflow: hidden;
	transition:
		background 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		color 0.3s ease;
	cursor: default;
}

ul.feature-icons li:nth-child(3n) {
	border-right: none;
}

/* Modern hover : tint background, slight lift */
ul.feature-icons li:hover {
	background: rgba(139, 111, 71, 0.07);
	transform: translateY(-4px);
	color: var(--color-navy) !important;
}

ul.feature-icons li:before {
	display: block !important;
	position: static !important;
	font-size: 1.6rem !important;
	color: var(--color-cognac) !important;
	background: transparent !important;
	margin-bottom: 1.25rem !important;
	width: auto !important;
	height: auto !important;
	line-height: 1 !important;
	opacity: 0.85;
	transition:
		transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
		color 0.3s ease,
		opacity 0.3s ease;
}

ul.feature-icons li:hover:before {
	transform: scale(1.18) translateY(-2px);
	color: var(--color-navy) !important;
	opacity: 1;
}

/* Underline qui grandit depuis le centre au hover */
ul.feature-icons li:after {
	content: '';
	position: absolute;
	bottom: 1.65rem;
	left: 50%;
	width: 0;
	height: 1px;
	background: var(--color-cognac);
	transform: translateX(-50%);
	transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
	pointer-events: none;
}

ul.feature-icons li:hover:after {
	width: 2.75rem;
}

/* Numéro discret en haut à droite de chaque cellule */
ul.feature-icons li > span.feature-num {
	position: absolute;
	top: 0.85rem;
	right: 1.1rem;
	font-family: var(--font-sans);
	font-size: 0.62rem;
	font-weight: 500;
	letter-spacing: 0.25em;
	color: var(--color-cognac);
	opacity: 0.55;
	transition: opacity 0.3s ease;
}

ul.feature-icons li:hover > span.feature-num {
	opacity: 1;
}

/* On ivory bg (services) — adjust borders */
#services ul.feature-icons {
	border-top-color: rgba(59, 45, 31, 0.15);
}
#services ul.feature-icons li {
	border-bottom-color: rgba(59, 45, 31, 0.15);
	border-right-color: rgba(59, 45, 31, 0.15);
}

/* ==========================================================================
   7. Gallery polish
   ========================================================================== */

.gallery {
	margin: 0 !important;
	width: 100% !important;
	gap: 1.5rem;
}

.gallery a {
	margin: 0 !important;
	overflow: hidden;
	background: var(--color-navy);
}

.gallery a img {
	transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
	will-change: transform;
}

.gallery a:hover img {
	transform: scale(1.04);
	opacity: 0.92;
}

/* ==========================================================================
   8. Contact form polish — qualifying fields
   ========================================================================== */

#contact form {
	max-width: 56rem;
	margin: 3rem auto 0;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact textarea,
#contact select {
	background: #ffffff !important;
	border: 1px solid #8B6F47 !important;
	border-radius: 0 !important;
	padding: 1rem 1.25rem !important;
	font-family: var(--font-sans) !important;
	font-size: 1rem !important;
	color: var(--color-navy) !important;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#contact select {
	-webkit-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%233B2D1F' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat;
	background-position: right 1.25rem center;
	background-size: 12px;
	padding-right: 3rem !important;
}

#contact input:focus,
#contact textarea:focus,
#contact select:focus {
	border-color: #3B2D1F !important;
	box-shadow: 0 0 0 1px #3B2D1F inset !important;
	outline: none;
}

#contact .form-note {
	max-width: 56rem;
	margin: 1.5rem auto 0 !important;
	font-size: 0.85rem !important;
	color: var(--color-text-muted) !important;
	font-style: italic;
	text-align: center;
}

#contact .contact-form__field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	flex: 1 1 0;
}

#contact .contact-form__row > .contact-form__field {
	min-width: 0;
}

#contact .contact-form__error {
	display: block;
	min-height: 1.1em;
	font-size: 0.8rem;
	font-family: var(--font-sans);
	color: #b13333;
	line-height: 1.3;
}

#contact .contact-form input.is-invalid,
#contact .contact-form textarea.is-invalid,
#contact .contact-form select.is-invalid {
	border-color: #b13333 !important;
	box-shadow: 0 0 0 1px #b13333 inset !important;
}

#contact .contact-form__required {
	color: #b13333;
	font-weight: 600;
}

#contact .contact-form__required-note {
	font-size: 0.78rem;
	color: var(--color-text-muted);
	margin: -0.65rem 0 0 !important;
	font-style: italic;
}

#contact .contact-form__consent {
	margin-top: -0.5rem;
}

#contact .contact-form__consent-label {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	font-size: 0.78rem;
	color: var(--color-text);
	font-family: var(--font-sans);
	line-height: 1.35;
	cursor: pointer;
}

#contact .contact-form__consent-label input[type="checkbox"] {
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	margin: 0.2rem 0 0 !important;
	padding: 0 !important;
	width: 1.25rem !important;
	min-width: 1.25rem !important;
	height: 1.25rem !important;
	min-height: 1.25rem !important;
	box-sizing: border-box !important;
	border: 2px solid #8B6F47 !important;
	border-radius: 4px !important;
	background: #ffffff !important;
	background-image: none !important;
	flex: 0 0 1.25rem !important;
	cursor: pointer;
	position: relative !important;
	display: inline-block !important;
	float: none !important;
	vertical-align: middle;
	opacity: 1 !important;
	visibility: visible !important;
	z-index: 1 !important;
	transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

#contact .contact-form__consent-label input[type="checkbox"]:hover {
	border-color: #3B2D1F !important;
}

#contact .contact-form__consent-label input[type="checkbox"]:focus,
#contact .contact-form__consent-label input[type="checkbox"]:focus-visible {
	outline: none !important;
	box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.3) !important;
}

#contact .contact-form__consent-label input[type="checkbox"]:checked {
	background: #8B6F47 !important;
	background-color: #8B6F47 !important;
	border-color: #8B6F47 !important;
}

#contact .contact-form__consent-label input[type="checkbox"]:checked::after {
	content: '';
	position: absolute;
	left: 0.32rem;
	top: 0.05rem;
	width: 0.35rem;
	height: 0.65rem;
	border: solid #ffffff;
	border-width: 0 0.14rem 0.14rem 0;
	transform: rotate(45deg);
}

#contact .contact-form__consent-label input[type="checkbox"].is-invalid {
	border-color: #b13333 !important;
	box-shadow: 0 0 0 1px #b13333 !important;
}

#contact .contact-form__consent-link {
	color: #8B6F47;
	text-decoration: underline;
	text-underline-offset: 2px;
}

#contact .contact-form__consent-link:hover {
	color: #3B2D1F;
}

#contact .contact-form {
	transition: opacity 0.3s ease;
}

#contact .contact-form.is-leaving {
	opacity: 0;
	pointer-events: none;
}

#contact .contact-form[hidden] {
	display: none;
}

#contact .contact-success {
	width: 100%;
	max-width: 56rem;
	margin: 0 auto;
	padding: 4rem 1rem;
	text-align: center;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

#contact .contact-success[hidden] {
	display: none;
}

#contact .contact-success.is-visible {
	opacity: 1;
	transform: translateY(0);
}

#contact .contact-success__title {
	font-family: var(--font-serif) !important;
	font-style: italic !important;
	font-weight: 300 !important;
	font-size: clamp(3rem, 7vw, 5.5rem) !important;
	line-height: 1 !important;
	letter-spacing: -0.01em !important;
	color: var(--color-navy) !important;
	margin: 0 0 1.5rem !important;
	text-transform: none !important;
}

#contact .contact-success__title em {
	font-style: italic;
	color: var(--color-cognac);
	margin-left: -0.05em;
}

#contact .contact-success__body {
	font-family: var(--font-sans);
	font-size: 1.05rem;
	line-height: 1.65;
	color: var(--color-cognac);
	max-width: 36rem;
	margin: 0 auto 2.5rem;
}

#contact .contact-success__again {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--color-cognac);
	color: #ffffff !important;
	border: 1px solid var(--color-cognac);
	border-radius: 999px;
	font-family: var(--font-sans);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 1.05rem 2.5rem;
	cursor: pointer;
	text-indent: 0.09em;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

#contact .contact-success__again:hover,
#contact .contact-success__again:focus-visible {
	background: var(--color-navy);
	border-color: var(--color-navy);
	color: #ffffff !important;
	outline: none;
}

#contact .contact-head {
	transition: opacity 0.3s ease;
}

#contact .contact-head.is-hidden {
	opacity: 0;
	pointer-events: none;
}

#contact .contact-head[hidden] {
	display: none;
}

@media (max-width: 736px) {
	#contact .contact-success {
		padding: 2.5rem 1rem;
	}
	#contact .contact-success__title {
		font-size: clamp(2.5rem, 11vw, 3.5rem) !important;
	}
	#contact .contact-success__body {
		font-size: 0.95rem;
		margin-bottom: 2rem;
	}
}

#contact .contact-form__status {
	margin-top: 1.25rem;
	padding: 0.85rem 1.25rem;
	font-size: 0.9rem;
	font-family: var(--font-sans);
	border-radius: 6px;
	text-align: center;
	display: none;
}

#contact .contact-form__status.is-success,
#contact .contact-form__status.is-error {
	display: block;
}

#contact .contact-form__status.is-success {
	background: rgba(139, 111, 71, 0.12);
	color: #3B2D1F;
	border: 1px solid #8B6F47;
}

#contact .contact-form__status.is-error {
	background: rgba(160, 40, 40, 0.08);
	color: #7a2424;
	border: 1px solid rgba(160, 40, 40, 0.4);
}

#contact input[type="submit"].button.primary {
	background: var(--color-navy) !important;
	color: #ffffff !important;
	border: 1px solid var(--color-navy) !important;
	padding: 1.1rem 2.5rem !important;
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease;
}

#contact input[type="submit"].button.primary:hover {
	background: transparent !important;
	color: var(--color-navy) !important;
}

#contact > footer {
	max-width: 80rem;
	margin: 5rem auto 0 !important;
	padding-top: 4rem !important;
	border-top: 1px solid var(--color-line);
	text-align: left !important;
}

#contact > footer ul.items {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr);
	gap: 2.5rem;
	padding: 0 !important;
	list-style: none !important;
}

#contact > footer ul.items li {
	padding: 0 !important;
	border: none !important;
}

#contact > footer ul.items h3 {
	font-family: var(--font-sans) !important;
	font-size: 0.72rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.22em !important;
	text-transform: uppercase !important;
	color: var(--color-text-muted) !important;
	margin: 0 0 0.75rem !important;
}

#contact > footer ul.items a,
#contact > footer ul.items span {
	color: var(--color-navy) !important;
	font-family: var(--font-sans) !important;
	font-size: 1rem !important;
	border: none !important;
	text-decoration: none !important;
}

#contact > footer ul.items a:hover {
	opacity: 0.7;
}

#contact > footer ul.items ul.icons {
	display: flex;
	gap: 1.25rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

#contact > footer ul.items ul.icons a {
	color: var(--color-navy) !important;
	font-size: 1.1rem !important;
}

/* Copyright — annule le 'left: 50vw' du template + style édito */
#wrapper .copyright {
	position: static !important;
	left: auto !important;
	text-align: center !important;
	font-family: var(--font-sans) !important;
	font-size: 0.72rem !important;
	letter-spacing: 0.18em !important;
	text-transform: uppercase !important;
	color: var(--color-text-muted) !important;
	padding: 1rem 1rem 1.25rem !important;
	border-top: 1px solid var(--color-line) !important;
	background: transparent !important;
	width: 100%;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.55rem;
}

#wrapper .copyright a {
	color: var(--color-cognac) !important;
	text-decoration: none !important;
	border: 0 !important;
	transition: color 0.2s ease;
}

#wrapper .copyright a:hover {
	color: var(--color-navy) !important;
}

#wrapper .copyright .copyright__sep {
	color: var(--color-text-muted);
	opacity: 0.6;
}

/* ==========================================================================
   9. Scroll animations (IntersectionObserver-driven)
   ========================================================================== */

@media (prefers-reduced-motion: no-preference) {
	#wrapper > section:not(.intro) > header,
	#wrapper > section:not(.intro) > .content,
	#wrapper > section:not(.intro) > footer,
	.trust-bar__stat,
	.trust-bar__quote {
		opacity: 0;
		transform: translateY(28px);
		transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
	}

	#wrapper > section.in-view > header,
	#wrapper > section.in-view > .content,
	#wrapper > section.in-view > footer,
	.trust-bar.in-view .trust-bar__stat,
	.trust-bar.in-view .trust-bar__quote {
		opacity: 1;
		transform: translateY(0);
	}

	#wrapper > section.in-view > .content {
		transition-delay: 0.12s;
	}

	.trust-bar.in-view .trust-bar__stat:nth-child(2) { transition-delay: 0.1s; }
	.trust-bar.in-view .trust-bar__stat:nth-child(3) { transition-delay: 0.2s; }
	.trust-bar.in-view .trust-bar__quote:nth-child(2) { transition-delay: 0.15s; }
}

/* ==========================================================================
   10. Responsive complément
   ========================================================================== */

@media (max-width: 980px) {
	#wrapper > section:not(.intro):not(.trust-bar) {
		padding: 4.5rem 5vw !important;
	}
	#wrapper > section:not(.intro):not(.trust-bar) > header {
		margin: 0 auto 3rem !important;
	}
	ul.feature-icons {
		grid-template-columns: repeat(2, 1fr) !important;
		margin: 3rem auto !important;
	}
	ul.feature-icons li:nth-child(3n) {
		border-right: 1px solid var(--color-line);
	}
	ul.feature-icons li:nth-child(2n) {
		border-right: none;
	}
	#contact > footer ul.items {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

@media (max-width: 600px) {
	#wrapper > section:not(.intro):not(.trust-bar) {
		padding: 3.5rem 1.5rem !important;
	}
	ul.feature-icons {
		grid-template-columns: 1fr !important;
	}
	ul.feature-icons li {
		border-right: none !important;
	}
	#contact > footer ul.items {
		grid-template-columns: 1fr;
	}
	.gallery {
		gap: 1rem;
	}
	.gallery a {
		width: 100% !important;
	}
}

/* ==========================================================================
   11. Touche 2026 — Section indices, marquee, floating CTA, grain
   ========================================================================== */

/* Update alternate sections to use beige paper */
#services,
#approche {
	background: var(--color-paper) !important;
}

/* -- Section indices (01., 02., 03., ...) -- */
#wrapper {
	counter-reset: section-index;
}

#wrapper > section:not(.intro):not(.trust-bar) {
	counter-increment: section-index;
}

#wrapper > section:not(.intro):not(.trust-bar) > header:before {
	content: counter(section-index, decimal-leading-zero);
	display: block !important;
	font-family: var(--font-sans);
	font-size: 0.72rem;
	letter-spacing: 0.35em;
	color: var(--color-cognac);
	margin-bottom: 1.5rem;
	font-weight: 500;
	background: transparent !important;
	width: auto !important;
	height: auto !important;
	position: static !important;
}

/* -- Subtle grain texture site-wide -- */
body:after {
	content: '';
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 9999;
	opacity: 0.04;
	mix-blend-mode: multiply;
	background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.23 0 0 0 0 0.18 0 0 0 0 0.12 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	background-size: 220px 220px;
}

/* -- Marquee strip (valeurs marque qui défilent lentement) -- */
.marquee {
	background: var(--color-bg);
	border-top: 1px solid var(--color-line);
	border-bottom: 1px solid var(--color-line);
	overflow: hidden;
	padding: 1.5rem 0;
	position: relative;
}

.marquee__track {
	display: flex;
	gap: 4rem;
	width: max-content;
	animation: marqueeSlide 60s linear infinite;
}

.marquee__item {
	font-family: var(--font-sans);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--color-text-muted);
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 4rem;
}

.marquee__item:after {
	content: '◆';
	font-size: 0.55rem;
	color: var(--color-cognac);
	opacity: 0.7;
}

@keyframes marqueeSlide {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
	.marquee__track { animation: none; }
}

/* -- Floating CTA (sticky discrete button) -- */
.floating-cta {
	position: fixed;
	bottom: 1.75rem;
	right: 1.75rem;
	z-index: 900;
	background: var(--color-cognac);
	color: #ffffff !important;
	padding: 1rem 1.85rem;
	border-radius: 999px;
	font-family: var(--font-sans);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	text-decoration: none !important;
	border: 1px solid var(--color-cognac) !important;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.45s ease, transform 0.45s ease, background 0.25s ease, color 0.25s ease;
	pointer-events: none;
	box-shadow: 0 14px 40px -12px rgba(59, 45, 31, 0.45);
}

.floating-cta.visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.floating-cta:hover {
	background: var(--color-navy);
	border-color: var(--color-navy) !important;
}

.floating-cta:before {
	content: '';
	display: inline-block;
	width: 0.45rem;
	height: 0.45rem;
	background: #3B2D1F !important;
	border-radius: 50%;
	margin-right: 0.7rem;
	vertical-align: middle;
	animation: pulseDot 2.4s ease-in-out infinite;
}

.floating-cta:hover:before {
	background: #8B6F47 !important;
}

@keyframes pulseDot {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.4); opacity: 0.6; }
}

/* -- Nav underline animation -- */
.site-header__nav a {
	position: relative;
	padding-bottom: 0.35rem;
}

.site-header__nav a:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 1px;
	background: var(--color-cognac);
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header__nav a:hover {
	color: var(--color-cognac);
	opacity: 1;
}

.site-header__nav a:hover:after {
	transform: scaleX(1);
	transform-origin: left center;
}

/* -- Hero h1 reveal on load (subtle slide-up) -- */
@media (prefers-reduced-motion: no-preference) {
	.hero-content h1,
	.hero-tagline,
	.hero-actions {
		opacity: 0;
		transform: translateY(20px);
		animation: heroIntroReveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	}
	.hero-tagline { animation-delay: 0.25s; }
	.hero-actions { animation-delay: 0.45s; }
}

@keyframes heroIntroReveal {
	to { opacity: 1; transform: translateY(0); }
}

/* -- Stat number count-up — initial state -- */
.trust-bar__stat-number .num {
	display: inline-block;
	font-variant-numeric: tabular-nums;
}

/* -- Polish: contact form spacing on cream bg -- */
#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact textarea,
#contact select {
	background: rgba(255, 255, 255, 0.65) !important;
}

/* -- Mobile adjustments for new features -- */
@media (max-width: 736px) {
	.floating-cta {
		bottom: 1rem;
		right: 1rem;
		padding: 0.85rem 1.4rem;
		font-size: 0.7rem;
	}
	.floating-cta:before {
		width: 0.45rem !important;
		height: 0.45rem !important;
	}
	.marquee {
		padding: 1.1rem 0;
	}
	.marquee__item {
		font-size: 0.7rem;
		letter-spacing: 0.25em;
		gap: 2.5rem;
	}
	.marquee__track {
		gap: 2.5rem;
	}
	#wrapper > section:not(.intro):not(.trust-bar) > header:before {
		font-size: 0.65rem;
		margin-bottom: 1rem;
	}
}

/* ==========================================================================
   12. Asset cards — formes arrondies (arche, cercle, blob)
   ========================================================================== */

.asset-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4rem 3rem;
	max-width: 78rem;
	margin: 2rem auto 0;
	align-items: start;
}

.asset-card {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	height: 100%;
}

.asset-card__visual {
	width: 100%;
	overflow: hidden;
	background: var(--color-paper);
	position: relative;
	box-shadow: 0 30px 60px -28px rgba(59, 45, 31, 0.35);
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.asset-card__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.asset-card:hover .asset-card__visual {
	transform: translateY(-6px);
	box-shadow: 0 40px 80px -30px rgba(59, 45, 31, 0.45);
}

.asset-card:hover .asset-card__visual img {
	transform: scale(1.06);
}

/* Shape 1 : arche (haut arrondi, bas plat) — codes architecture hôtelière */
.asset-card__visual--arch {
	aspect-ratio: 3 / 4;
	border-radius: 50% 50% 8px 8px / 38% 38% 1.5% 1.5%;
}

/* Shape 2 : cercle parfait */
.asset-card__visual--circle {
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	margin-top: 1.5rem;
}

/* Shape 3 : blob organique asymétrique */
.asset-card__visual--blob {
	aspect-ratio: 4 / 5;
	border-radius: 62% 38% 55% 45% / 55% 45% 55% 45%;
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-radius 1.6s ease;
}

.asset-card:hover .asset-card__visual--blob {
	border-radius: 45% 55% 38% 62% / 45% 55% 45% 55%;
}

.asset-card h3 {
	font-family: var(--font-serif) !important;
	font-size: clamp(1.35rem, 2vw, 1.7rem) !important;
	color: var(--color-navy) !important;
	margin: 0 !important;
	letter-spacing: -0.01em !important;
	line-height: 1.2 !important;
}

.asset-card > p {
	color: var(--color-text-muted);
	font-size: 0.98rem;
	line-height: 1.65;
	margin: 0;
	max-width: none;
}

.asset-card__tags {
	list-style: none;
	padding: 0;
	margin: auto 0 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
}

.asset-card__tags li {
	font-family: var(--font-sans);
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-cognac);
	padding: 0.4rem 0.95rem;
	border: 1px solid rgba(139, 111, 71, 0.4);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.35);
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.asset-card__tags li:hover {
	background: var(--color-cognac);
	color: #ffffff;
	border-color: var(--color-cognac);
}

/* ==========================================================================
   13. Round l'image principale d'Expertise + assouplir d'autres éléments
   ========================================================================== */

#wrapper > section > .content .image.main {
	border-radius: 0;
	overflow: visible;
	aspect-ratio: auto;
	max-width: 32rem;
	box-shadow: none;
	background: transparent;
}

#wrapper > section > .content .image.main img {
	aspect-ratio: auto;
	width: 100%;
	height: auto;
	object-fit: contain;
}

/* Hero primary button — pill shape */
.hero-actions a.primary,
.hero-actions a {
	border-radius: 999px;
}

/* Form fields — slight rounded corners (subtle, not bubbly) */
#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact textarea,
#contact select {
	border-radius: 6px !important;
}

#contact input[type="submit"].button.primary {
	border-radius: 999px !important;
}

/* Decorative cognac dot before each section title (small accent) */
#wrapper > section:not(.intro):not(.trust-bar) > header h2 {
	position: relative;
}

/* Responsive asset grid */
@media (max-width: 980px) {
	.asset-grid {
		grid-template-columns: 1fr;
		gap: 4rem;
		max-width: 28rem;
	}
	.asset-card__visual--circle {
		margin-top: 0;
	}
	.asset-card__visual--arch,
	.asset-card__visual--circle,
	.asset-card__visual--blob {
		max-width: 22rem;
		align-self: center;
		width: 100%;
	}
	.asset-card h3,
	.asset-card > p,
	.asset-card__tags {
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}
	.asset-card__tags {
		justify-content: center;
	}
}

/* ==========================================================================
   14. Marquee dans le hero (bande de valeurs visible above-the-fold)
   ========================================================================== */

.marquee--hero {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 3;
}

/* Remonter "Faire défiler" pour laisser la place à la marquee */
#wrapper > section.intro .hero-scroll {
	bottom: 5.5rem;
}

#wrapper > section.intro .hero-scroll:after {
	height: 24px;
}

@media (max-width: 736px) {
	#wrapper > section.intro .hero-scroll {
		bottom: 4.5rem;
	}
}

/* ==========================================================================
   15. Section Expertise — split layout (texte gauche / image droite)
   ========================================================================== */

#wrapper > section#expertise {
	display: grid !important;
	grid-template-columns: 1.75fr 1fr;
	column-gap: 5rem;
	row-gap: 0;
	align-items: center;
	width: 100% !important;
	height: calc(100vh - var(--header-h));
	height: calc(100dvh - var(--header-h));
	min-height: 480px;
	max-height: calc(100vh - var(--header-h));
	max-height: calc(100dvh - var(--header-h));
	max-width: none !important;
	margin: 0 !important;
	padding: 0 max(6vw, calc((100vw - 84rem) / 2)) !important;
	overflow: hidden;
	scroll-margin-top: var(--header-h);
}

#wrapper > section#expertise > header {
	text-align: left !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	justify-self: start;
}

/* Masque le compteur CSS pour cette section (remplacé par eyebrow explicite) */
#wrapper > section#expertise > header:before {
	display: none !important;
}

.expertise-eyebrow {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	margin-bottom: 2rem;
	width: fit-content;
}

.expertise-eyebrow__num {
	font-family: var(--font-sans);
	font-size: 0.78rem;
	letter-spacing: 0.32em;
	color: var(--color-cognac);
	font-weight: 500;
	line-height: 1;
}

.expertise-eyebrow__line {
	flex: 0 0 7rem;
	height: 1px;
	background: var(--color-cognac);
	opacity: 0.8;
}

#wrapper > section#expertise > header h2 {
	font-family: var(--font-serif) !important;
	font-size: clamp(2rem, 3.5vw, 3.4rem) !important;
	font-style: italic !important;
	font-weight: 300 !important;
	letter-spacing: -0.01em !important;
	line-height: 1.05 !important;
	margin: 0 0 2rem !important;
	max-width: none !important;
	white-space: nowrap;
}

#wrapper > section#expertise > header p {
	color: var(--color-text-muted) !important;
	font-size: 1.08rem !important;
	line-height: 1.8 !important;
	margin: 0 0 2.5rem !important;
	max-width: 46rem !important;
}

#wrapper > section#expertise > header p strong {
	color: var(--color-navy);
	font-weight: 600;
}

/* Cartouche logo éditorial (colonne droite) */
.expertise-mark {
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.75rem;
	width: 100%;
}

.expertise-mark__frame {
	position: relative;
	width: min(24rem, 52vh);
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
}

.expertise-mark__frame::before,
.expertise-mark__frame::after {
	content: '';
	position: absolute;
	width: 2.75rem;
	height: 2.75rem;
	pointer-events: none;
	transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1), height 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Équerre haut-gauche */
.expertise-mark__frame::before {
	top: 0;
	left: 0;
	border-top: 1px solid rgba(139, 111, 71, 0.5);
	border-left: 1px solid rgba(139, 111, 71, 0.5);
}

/* Équerre bas-droite */
.expertise-mark__frame::after {
	bottom: 0;
	right: 0;
	border-bottom: 1px solid rgba(139, 111, 71, 0.5);
	border-right: 1px solid rgba(139, 111, 71, 0.5);
}

.expertise-mark:hover .expertise-mark__frame::before,
.expertise-mark:hover .expertise-mark__frame::after {
	width: 3.5rem;
	height: 3.5rem;
}

.expertise-mark__frame img {
	width: 100%;
	height: auto;
	max-height: 100%;
	object-fit: contain;
	display: block;
}

.expertise-mark figcaption {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.65rem;
}

.expertise-mark__rule {
	display: block;
	width: 2.5rem;
	height: 1px;
	background: var(--color-cognac);
	opacity: 0.7;
}

.expertise-mark__caption {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 1.05rem;
	color: var(--color-navy);
	letter-spacing: 0.01em;
	line-height: 1;
}

.expertise-mark__est {
	font-family: var(--font-sans);
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--color-text-muted);
	margin-top: 0.1rem;
}

.expertise-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	font-family: var(--font-sans);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-navy) !important;
	text-decoration: none !important;
	border: 0 !important;
	padding: 0.6rem 0 !important;
	border-bottom: 1px solid var(--color-navy) !important;
	transition: gap 0.25s ease, color 0.25s ease;
}

.expertise-cta:hover {
	gap: 1.1rem;
	color: var(--color-cognac) !important;
	border-bottom-color: var(--color-cognac) !important;
}

.expertise-cta span {
	font-size: 1rem;
	transition: transform 0.25s ease;
}

#wrapper > section#expertise > .content {
	margin: 0 !important;
	padding: 0 !important;
	max-width: none !important;
	width: 100% !important;
}

@media (max-width: 980px) {
	#wrapper > section#expertise {
		grid-template-columns: 1fr;
		column-gap: 0;
		row-gap: 2rem;
		height: calc(100vh - var(--header-h));
		height: calc(100dvh - var(--header-h));
		max-height: calc(100vh - var(--header-h));
		max-height: calc(100dvh - var(--header-h));
		min-height: 480px;
		padding: 2rem 5vw !important;
		text-align: center;
		align-items: center;
		justify-items: center;
	}
	#wrapper > section#expertise > header {
		text-align: center !important;
	}
	#wrapper > section#expertise > header h2 {
		margin-left: auto !important;
		margin-right: auto !important;
		max-width: 22ch;
		font-family: var(--font-serif) !important;
		font-size: clamp(2.4rem, 8vw, 3.2rem) !important;
		font-style: italic !important;
		font-weight: 300 !important;
		letter-spacing: -0.01em !important;
		line-height: 1.05 !important;
		white-space: normal !important;
	}
	#wrapper > section#expertise > header p {
		margin-left: auto !important;
		margin-right: auto !important;
		font-size: 0.95rem !important;
	}
	.expertise-mark__frame {
		width: min(15rem, 26vh);
		padding: 1rem;
	}
	.expertise-mark__frame::before,
	.expertise-mark__frame::after {
		width: 2rem;
		height: 2rem;
	}
	.expertise-mark__caption {
		font-size: 0.95rem;
	}
	#wrapper > section#expertise .expertise-eyebrow,
	#wrapper > section#expertise .expertise-eyebrow__line {
		display: none !important;
	}
	#wrapper > section#expertise > header p {
		margin-bottom: 0.25rem !important;
	}
	#wrapper > section#expertise .expertise-cta {
		margin-top: 0 !important;
		padding-top: 1 !important;
	}
}

/* ==========================================================================
   16. Section Services — fit viewport vertically
   ========================================================================== */

#wrapper > section#services {
	display: flex !important;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
	width: 100% !important;
	height: calc(100vh - var(--header-h));
	height: calc(100dvh - var(--header-h));
	min-height: 600px;
	max-height: calc(100vh - var(--header-h));
	max-height: calc(100dvh - var(--header-h));
	margin: 0 !important;
	padding: 2rem max(6vw, calc((100vw - 84rem) / 2)) !important;
	overflow: hidden;
	scroll-margin-top: var(--header-h);
	grid-template-columns: none !important;
	text-align: center;
}

#wrapper > section#services > header {
	margin: 0 auto 2.5rem !important;
	max-width: 56rem;
	width: 100% !important;
	padding: 0 !important;
	text-align: center !important;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Masque le compteur CSS pour cette section (remplacé par eyebrow explicite) */
#wrapper > section#services > header:before {
	display: none !important;
}

#wrapper > section#services > header .expertise-eyebrow {
	margin: 0 auto 1.5rem !important;
}

#wrapper > section#services > header h2 {
	font-family: var(--font-serif) !important;
	font-size: clamp(2rem, 3.5vw, 3.4rem) !important;
	font-style: italic !important;
	font-weight: 300 !important;
	letter-spacing: -0.01em !important;
	line-height: 1.05 !important;
	margin: 0 !important;
}

#wrapper > section#services > .content {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	text-align: center;
}

#wrapper > section#services > .content > p {
	max-width: 56rem !important;
	width: 100% !important;
	margin-left: auto !important;
	margin-right: auto !important;
	text-align: center;
	font-size: 1rem !important;
	line-height: 1.65 !important;
}

#wrapper > section#services > .content > p:first-of-type {
	margin-bottom: 2.5rem !important;
}

#wrapper > section#services > .content > p:last-of-type {
	margin-top: 2.5rem !important;
	font-size: 0.95rem !important;
	color: var(--color-text-muted) !important;
}

/* Tighter feature icons inside the section, hard-centered */
#wrapper > section#services ul.feature-icons {
	margin-left: auto !important;
	margin-right: auto !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	width: 100% !important;
	max-width: 72rem !important;
}

#wrapper > section#services ul.feature-icons li {
	width: 100% !important;
	min-width: 0 !important;
	padding: 1.5rem 1.5rem !important;
}

#wrapper > section#services ul.feature-icons li:before {
	font-size: 1.4rem !important;
	margin-bottom: 0.9rem !important;
}

@media (max-width: 980px) {
	#wrapper > section#services {
		height: calc(100vh - var(--header-h));
		height: calc(100dvh - var(--header-h));
		min-height: 600px;
		padding: 2rem 5vw !important;
	}
	#wrapper > section#services > header {
		margin-bottom: 1.5rem !important;
	}
	#wrapper > section#services > header h2 {
		font-family: var(--font-serif) !important;
		font-size: clamp(2.4rem, 8vw, 3.2rem) !important;
		font-style: italic !important;
		font-weight: 300 !important;
		letter-spacing: -0.01em !important;
		line-height: 1.05 !important;
	}
	#wrapper > section#services > header .expertise-eyebrow {
		width: 100% !important;
		align-self: center !important;
		justify-content: center !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	#wrapper > section#services > .content > p {
		font-size: 0.95rem !important;
	}
	#wrapper > section#services > .content > p:first-of-type {
		margin-bottom: 1.5rem !important;
	}
	#wrapper > section#services > .content > p:last-of-type {
		margin-top: 1.5rem !important;
	}
	#wrapper > section#services ul.feature-icons li {
		padding: 1.1rem 1rem !important;
		font-size: 0.9rem !important;
	}
	#wrapper > section#services ul.feature-icons li:before {
		font-size: 1.2rem !important;
		margin-bottom: 0.6rem !important;
	}
}

/* ==========================================================================
   17. Services Grid — refait à zéro (namespace .services-grid, zéro héritage)
   ========================================================================== */

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	width: 100%;
	max-width: 72rem;
	margin: 0 auto;
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--color-line);
	box-sizing: border-box;
}

.services-grid__cell {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 1.1rem;
	padding: 2.75rem 1.5rem;
	border-bottom: 1px solid var(--color-line);
	border-right: 1px solid var(--color-line);
	overflow: hidden;
	box-sizing: border-box;
	transition:
		background 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-grid__cell:nth-child(3n) {
	border-right: none;
}

.services-grid__cell:hover {
	background: rgba(139, 111, 71, 0.07);
	transform: translateY(-4px);
}

.services-grid__num {
	display: none !important;
}

.services-grid__cell:hover .services-grid__num {
	opacity: 1;
}

.services-grid__icon {
	font-size: 1.55rem;
	color: var(--color-cognac);
	opacity: 0.85;
	line-height: 1;
	transition:
		transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
		color 0.3s ease,
		opacity 0.3s ease;
}

.services-grid__cell:hover .services-grid__icon {
	transform: scale(1.18) translateY(-3px);
	color: var(--color-cognac);
	opacity: 1;
}

.services-grid__title {
	font-family: var(--font-sans) !important;
	font-size: 1rem !important;
	font-weight: 700 !important;
	color: var(--color-navy) !important;
	margin: 0 !important;
	line-height: 1.35 !important;
	letter-spacing: 0 !important;
	max-width: 14ch;
}

/* Underline animée depuis le centre */
.services-grid__cell::after {
	content: '';
	position: absolute;
	bottom: 1.5rem;
	left: 50%;
	width: 0;
	height: 1px;
	background: var(--color-cognac);
	transform: translateX(-50%);
	transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-grid__cell:hover::after {
	width: 2.5rem;
}

@media (max-width: 980px) {
	.services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: 36rem;
	}
	.services-grid__cell:nth-child(3n) {
		border-right: 1px solid var(--color-line);
	}
	.services-grid__cell:nth-child(2n) {
		border-right: none;
	}
	.services-grid__cell {
		padding: 1.75rem 1rem;
	}
	.services-grid__icon {
		font-size: 1.3rem;
	}
	.services-grid__title {
		font-size: 0.9rem;
		font-weight: 700 !important;
	}
}

@media (max-width: 480px) {
	.services-grid {
		grid-template-columns: 1fr;
		max-width: 22rem;
	}
	.services-grid__cell {
		border-right: none !important;
	}
}

/* ==========================================================================
   18. Section Actifs (03) — fit viewport vertically
   ========================================================================== */

#wrapper > section#actifs {
	display: flex !important;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
	width: 100% !important;
	height: calc(100vh - var(--header-h));
	height: calc(100dvh - var(--header-h));
	min-height: 640px;
	max-height: calc(100vh - var(--header-h));
	max-height: calc(100dvh - var(--header-h));
	max-width: none !important;
	margin: 0 !important;
	padding: 1.5rem max(6vw, calc((100vw - 84rem) / 2)) !important;
	overflow: hidden;
	scroll-margin-top: var(--header-h);
	grid-template-columns: none !important;
	text-align: center;
}

#wrapper > section#actifs > header {
	margin: 0 auto 3rem !important;
	max-width: 60rem;
	width: 100% !important;
	padding: 0 !important;
	text-align: center !important;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#wrapper > section#actifs > header:before {
	display: none !important;
}

/* Eyebrow inline avec le titre (03 ──── Les typologies d'actifs) */
#wrapper > section#actifs > header .title-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	margin: 0 auto 1rem !important;
	width: fit-content;
	max-width: 100%;
	flex-wrap: wrap;
}

#wrapper > section#actifs > header .title-row__num {
	font-family: var(--font-sans);
	font-size: 0.78rem;
	letter-spacing: 0.32em;
	color: var(--color-cognac);
	font-weight: 500;
	line-height: 1;
}

#wrapper > section#actifs > header .title-row__line {
	flex: 0 0 5rem;
	height: 1px;
	background: var(--color-cognac);
	opacity: 0.8;
}

#wrapper > section#actifs > header h2 {
	font-family: var(--font-serif) !important;
	font-size: clamp(2rem, 3.5vw, 3.4rem) !important;
	font-style: italic !important;
	font-weight: 300 !important;
	letter-spacing: -0.01em !important;
	line-height: 1.05 !important;
	margin: 0 !important;
}

#wrapper > section#actifs > header p {
	max-width: 56rem !important;
	margin: 0 auto !important;
	font-size: 1rem !important;
	line-height: 1.65 !important;
	color: var(--color-text-muted) !important;
}

#wrapper > section#actifs > .content {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	position: relative;
}

#wrapper > section#actifs .actifs-nav-arrow {
	position: absolute;
	top: 22vh;
	right: -5.25rem;
	transform: translateY(-50%);
	z-index: 12;
	width: auto;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent !important;
	background-color: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	color: #8B6F47 !important;
	cursor: pointer;
	padding: 0 !important;
	margin: 0 !important;
	font-size: 8rem;
	line-height: 1;
	transition: color 0.25s ease, transform 0.25s ease;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 0 !important;
	outline: none;
	text-shadow: none !important;
}

#wrapper > section#actifs .actifs-nav-arrow:hover,
#wrapper > section#actifs .actifs-nav-arrow:focus,
#wrapper > section#actifs .actifs-nav-arrow:focus-visible,
#wrapper > section#actifs .actifs-nav-arrow:active {
	background: transparent !important;
	background-color: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	color: #3B2D1F !important;
	transform: translate(4px, -50%);
	outline: none;
}

#wrapper > section#actifs .actifs-nav-arrow i {
	display: block;
	line-height: 1;
	color: inherit;
}

@media (max-width: 980px) {
	#wrapper > section#actifs .actifs-nav-arrow {
		font-size: 3.5rem;
		right: 0.25rem;
		top: 32vh;
		width: 2.5rem;
		height: 2.5rem;
	}
}

/* Track Record : carousel transform-based (no scrollLeft, no snap, infinite via modulo) */
#wrapper > section#actifs .asset-grid {
	display: block !important;
	max-width: 78rem;
	margin: 0 auto !important;
	padding: 0 !important;
	overflow: hidden;
	cursor: grab;
	user-select: none;
	-webkit-user-select: none;
	touch-action: pan-y;
	grid-template-columns: none;
	grid-auto-flow: row;
	grid-auto-columns: auto;
	gap: 0;
}

#wrapper > section#actifs .asset-grid.is-dragging {
	cursor: grabbing;
}

#wrapper > section#actifs .actifs-track {
	display: flex;
	gap: 2.5rem;
	width: max-content;
	align-items: stretch;
	will-change: transform;
	transform: translate3d(0, 0, 0);
}

#wrapper > section#actifs .actifs-track > .asset-card {
	flex: 0 0 var(--actifs-card-w, calc((78rem - 5rem) / 3));
	width: var(--actifs-card-w, calc((78rem - 5rem) / 3));
	display: flex;
	flex-direction: column;
	height: auto;
}

#wrapper > section#actifs .asset-card__tags {
	margin-top: auto !important;
}

#wrapper > section#actifs .actifs-track img,
#wrapper > section#actifs .actifs-track a {
	-webkit-user-drag: none;
}

#wrapper > section#actifs .asset-card {
	gap: 1rem;
}

#wrapper > section#actifs .asset-card__visual--arch {
	aspect-ratio: 3 / 4;
	max-height: 42vh;
	width: auto;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

#wrapper > section#actifs .asset-card h3 {
	font-family: var(--font-sans) !important;
	font-size: 0.7rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.22em !important;
	text-transform: uppercase !important;
	color: var(--color-cognac) !important;
	margin: 0 !important;
	line-height: 1.2 !important;
}

#wrapper > section#actifs .asset-card > p {
	font-size: 0.88rem !important;
	line-height: 1.55 !important;
	margin: 0 !important;
}

#wrapper > section#actifs .asset-card__tags {
	margin: auto 0 0 0 !important;
	gap: 0.35rem;
}

#wrapper > section#actifs .asset-card__tags li {
	padding: 0.3rem 0.75rem !important;
	font-size: 0.65rem !important;
}

@media (max-width: 980px) {
	#wrapper > section#actifs {
		padding: 2rem 5vw !important;
		min-height: 0 !important;
		height: calc(100vh - var(--header-h)) !important;
		height: calc(100dvh - var(--header-h)) !important;
		max-height: calc(100vh - var(--header-h)) !important;
		max-height: calc(100dvh - var(--header-h)) !important;
		overflow: hidden !important;
	}
	#wrapper > section#actifs > header {
		margin-bottom: 1.5rem !important;
	}
	#wrapper > section#actifs > header h2 {
		font-family: var(--font-serif) !important;
		font-size: clamp(2.4rem, 8vw, 3.2rem) !important;
		font-style: italic !important;
		font-weight: 300 !important;
		letter-spacing: -0.01em !important;
		line-height: 1.05 !important;
	}
	#wrapper > section#actifs > header p {
		font-size: 0.85rem !important;
	}
	#wrapper > section#actifs .asset-grid {
		max-width: 100%;
		gap: 1.25rem;
	}
	#wrapper > section#actifs .actifs-track {
		gap: 1.25rem;
	}
	#wrapper > section#actifs .asset-card__visual--arch {
		max-height: 30vh;
	}
	#wrapper > section#actifs .asset-card h3 {
		font-size: 0.65rem !important;
		letter-spacing: 0.2em !important;
	}
	#wrapper > section#actifs .asset-card > p {
		font-size: 0.78rem !important;
		line-height: 1.45 !important;
	}
	#wrapper > section#actifs .asset-card__tags li {
		padding: 0.22rem 0.55rem !important;
		font-size: 0.58rem !important;
	}
}

/* ==========================================================================
   19. Section Approche (04) — fit viewport vertically, pull-quote centré
   ========================================================================== */

#wrapper > section#approche {
	display: flex !important;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
	width: 100% !important;
	height: calc(100vh - var(--header-h));
	height: calc(100dvh - var(--header-h));
	min-height: 560px;
	max-height: calc(100vh - var(--header-h));
	max-height: calc(100dvh - var(--header-h));
	max-width: none !important;
	margin: 0 !important;
	padding: 2rem max(6vw, calc((100vw - 84rem) / 2)) !important;
	overflow: hidden;
	scroll-margin-top: var(--header-h);
	grid-template-columns: none !important;
	text-align: center;
}

#wrapper > section#approche > header {
	width: 100% !important;
	max-width: 64rem;
	margin: 0 auto 2rem !important;
	padding: 0 !important;
	text-align: center !important;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#wrapper > section#approche > header:before {
	display: none !important;
}

#wrapper > section#approche > header .title-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	margin: 0 auto 2rem !important;
	width: fit-content;
	max-width: 100%;
	flex-wrap: wrap;
}

#wrapper > section#approche > header .title-row__num {
	font-family: var(--font-sans);
	font-size: 0.78rem;
	letter-spacing: 0.32em;
	color: var(--color-cognac);
	font-weight: 500;
	line-height: 1;
}

#wrapper > section#approche > header .title-row__line {
	flex: 0 0 5rem;
	height: 1px;
	background: var(--color-cognac);
	opacity: 0.8;
}

#wrapper > section#approche > header h2 {
	font-family: var(--font-serif) !important;
	font-size: clamp(2rem, 3.5vw, 3.4rem) !important;
	font-style: italic !important;
	font-weight: 300 !important;
	letter-spacing: -0.01em !important;
	line-height: 1.05 !important;
	margin: 0 !important;
}

/* Pull-quote serif italique : la phrase signature */
.approche-pullquote {
	font-family: var(--font-serif) !important;
	font-style: italic !important;
	font-size: clamp(1.4rem, 2.6vw, 2.2rem) !important;
	line-height: 1.35 !important;
	color: var(--color-navy) !important;
	max-width: 50rem !important;
	margin: 0 auto !important;
	font-weight: 400 !important;
	letter-spacing: -0.005em !important;
}

#wrapper > section#approche > .content {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	text-align: center;
}

.approche-body {
	font-family: var(--font-sans) !important;
	font-size: 1rem !important;
	line-height: 1.75 !important;
	color: var(--color-text-muted) !important;
	max-width: 52rem !important;
	margin: 0 auto 2.5rem !important;
}

/* CTA boutons centrés, pill shape (cohérent avec hero) */
ul.approche-actions {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

ul.approche-actions li {
	padding: 0;
}

ul.approche-actions a.button {
	display: inline-flex;
	align-items: center;
	padding: 1.05rem 2.5rem !important;
	border-radius: 999px !important;
	font-family: var(--font-sans) !important;
	font-size: 0.78rem !important;
	font-weight: 500 !important;
	letter-spacing: 0.18em !important;
	text-transform: uppercase !important;
	text-decoration: none !important;
	border: 1px solid var(--color-navy) !important;
	box-shadow: none !important;
	transition: background 0.3s ease, color 0.3s ease;
}

ul.approche-actions a.button.primary {
	background: var(--color-cognac) !important;
	color: #ffffff !important;
	border-color: var(--color-cognac) !important;
}

ul.approche-actions a.button.primary:hover {
	background: var(--color-navy) !important;
	border-color: var(--color-navy) !important;
}

ul.approche-actions a.button:not(.primary) {
	background: transparent !important;
	color: var(--color-cognac) !important;
	border-color: var(--color-cognac) !important;
}

ul.approche-actions a.button:not(.primary):hover {
	background: var(--color-navy) !important;
	color: #ffffff !important;
	border-color: var(--color-navy) !important;
}

@media (max-width: 980px) {
	#wrapper > section#approche {
		padding: 1.5rem 5vw !important;
		min-height: 0 !important;
		height: calc(100vh - var(--header-h)) !important;
		height: calc(100dvh - var(--header-h)) !important;
		max-height: calc(100vh - var(--header-h)) !important;
		max-height: calc(100dvh - var(--header-h)) !important;
		justify-content: center;
		overflow: hidden !important;
	}
	#wrapper > section#approche > header {
		margin: 0 auto 1rem !important;
	}
	#wrapper > section#approche > header h2 {
		font-family: var(--font-serif) !important;
		font-size: clamp(2.4rem, 8vw, 3.2rem) !important;
		font-style: italic !important;
		font-weight: 300 !important;
		letter-spacing: -0.01em !important;
		line-height: 1.05 !important;
		margin-bottom: 0.5rem !important;
	}
	#wrapper > section#approche > header .title-row {
		margin: 0 auto 0.75rem !important;
	}
	.approche-pullquote {
		font-size: clamp(0.95rem, 3.5vw, 1.35rem) !important;
		margin: 0 !important;
		line-height: 1.4 !important;
	}
	.approche-body {
		font-size: 0.82rem !important;
		line-height: 1.55 !important;
		margin: 0 0 1rem !important;
	}
	ul.approche-actions {
		flex-direction: row;
		gap: 0.5rem;
		flex-wrap: wrap;
		justify-content: center;
		margin: 0 !important;
	}
	ul.approche-actions li {
		margin: 0 !important;
	}
	ul.approche-actions a.button {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		text-align: center;
		text-indent: 0.09em;
		padding: 0.7rem 1.6rem !important;
		font-size: 0.72rem !important;
	}
}


/* ==========================================================================
   20. Section Contact (05) — réécriture from scratch
   ========================================================================== */

#wrapper > section#contact {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 2.5rem max(6vw, calc((100vw - 80rem) / 2)) 0 !important;
	scroll-margin-top: var(--header-h);
	grid-template-columns: none !important;
	overflow: visible;
}

#wrapper > section#contact > header:before {
	display: none !important;
}

/* --- Heading --- */
.contact-head {
	width: 100%;
	text-align: center;
	margin: 0 auto 2.5rem;
}

.contact-head .title-row {
	display: inline-flex;
	align-items: center;
	gap: 1.25rem;
	margin: 0 auto 1.25rem;
	flex-wrap: wrap;
	justify-content: center;
}

.contact-head .title-row__num {
	font-family: var(--font-sans);
	font-size: 0.78rem;
	letter-spacing: 0.32em;
	color: var(--color-cognac);
	font-weight: 500;
	line-height: 1;
}

.contact-head .title-row__line {
	flex: 0 0 5rem;
	height: 1px;
	background: var(--color-cognac);
	opacity: 0.8;
}

.contact-head h2 {
	font-family: var(--font-serif) !important;
	font-size: clamp(2rem, 3.5vw, 3.4rem) !important;
	font-style: italic !important;
	font-weight: 300 !important;
	letter-spacing: -0.01em !important;
	line-height: 1.05 !important;
	margin: 0 !important;
	color: var(--color-navy) !important;
}

.contact-intro {
	font-family: var(--font-sans);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--color-text-muted);
	max-width: 50rem;
	margin: 0 auto;
}

/* --- Form --- */
.contact-form {
	width: 100%;
	max-width: 56rem;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
	width: 100%;
	background: rgba(255, 255, 255, 0.6) !important;
	border: 1px solid var(--color-line) !important;
	border-radius: 6px !important;
	padding: 0.95rem 1.15rem !important;
	font-family: var(--font-sans) !important;
	font-size: 0.95rem !important;
	line-height: 1.4 !important;
	color: var(--color-navy) !important;
	-webkit-appearance: none;
	appearance: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	box-sizing: border-box;
}

.contact-form select {
	height: auto;
	min-height: 3.1rem;
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%233B2D1F' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right 1.15rem center !important;
	background-size: 11px !important;
	padding-right: 2.5rem !important;
}

.contact-form textarea {
	resize: vertical;
	min-height: 6rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border-color: var(--color-navy) !important;
	box-shadow: 0 0 0 1px var(--color-navy) inset !important;
	outline: none;
}

.contact-form__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	margin-top: 0.5rem;
	flex-wrap: wrap;
}

input[type="submit"].contact-form__submit {
	background: var(--color-cognac) !important;
	background-color: var(--color-cognac) !important;
	color: #ffffff !important;
	border: 1px solid var(--color-cognac) !important;
	box-shadow: none !important;
	border-radius: 999px !important;
	padding: 1rem 2.25rem !important;
	font-family: var(--font-sans) !important;
	font-size: 0.78rem !important;
	font-weight: 500 !important;
	letter-spacing: 0.18em !important;
	text-transform: uppercase !important;
	line-height: 1 !important;
	height: auto !important;
	min-height: 0 !important;
	box-sizing: border-box !important;
	text-align: center !important;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

input[type="submit"].contact-form__submit:hover {
	background: var(--color-navy) !important;
	background-color: var(--color-navy) !important;
	color: #ffffff !important;
	border-color: var(--color-navy) !important;
	box-shadow: none !important;
}

.contact-form__note {
	font-family: var(--font-sans);
	font-size: 0.78rem;
	font-style: italic;
	color: var(--color-text-muted);
	margin: 0;
	text-align: right;
}


/* ==========================================================================
   21. Footer contact (.cf) — refait from scratch, layout flexbox simple
   ========================================================================== */

.cf {
	width: 100%;
	max-width: 78rem;
	margin: 1.5rem auto 0;
	padding: 1.25rem 0;
	border-top: 1px solid var(--color-line);
	display: flex;
	align-items: center;
	gap: 3rem;
	box-sizing: border-box;
}

.cf__logo {
	width: 13rem;
	height: 8rem;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cf__logo img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	display: block;
}

.cf__items {
	flex: 1;
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	align-items: center;
}

.cf__item {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.cf__label {
	font-family: var(--font-sans);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--color-cognac);
	line-height: 1;
}

.cf__value {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 1.05rem;
	color: var(--color-navy);
	text-decoration: none;
	border: 0;
	line-height: 1.2;
	transition: color 0.2s ease;
}

a.cf__value:hover {
	color: var(--color-cognac);
}

.cf__social {
	display: flex;
	gap: 0.6rem;
}

.cf__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.2rem;
	height: 2.2rem;
	border: 1px solid var(--color-line);
	border-radius: 50%;
	color: var(--color-navy);
	text-decoration: none;
	font-size: 0.85rem;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.cf__social a:hover {
	background: var(--color-navy);
	color: #ffffff;
	border-color: var(--color-navy);
}

@media (max-width: 980px) {
	.cf {
		flex-direction: row;
		align-items: center;
		gap: 1.25rem;
		padding: 1.5rem 0;
		text-align: left;
	}
	.cf__logo {
		width: 10rem;
		height: auto;
		flex-shrink: 0;
		align-self: stretch;
		display: flex;
		align-items: center;
		justify-content: center;
		padding-right: 1.5rem;
		border-right: 1px solid var(--color-line);
	}
	.cf__logo img {
		max-width: 100%;
		max-height: 13rem;
	}
	.cf__items {
		flex: 1;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		gap: 0.85rem;
		min-width: 0;
	}
	.cf__item {
		gap: 0.2rem;
		width: 100%;
	}
	.cf__item:last-child {
		flex-direction: row;
		align-items: center;
		gap: 0.85rem;
	}
	.cf__item:last-child .cf__label {
		display: none;
	}
	.cf__label {
		font-size: 0.58rem;
		letter-spacing: 0.22em;
	}
	.cf__value {
		font-size: 0.9rem;
		word-break: break-word;
	}
	.cf__social {
		gap: 0.4rem;
	}
	.cf__social a {
		width: 1.8rem;
		height: 1.8rem;
		font-size: 0.75rem;
	}
}

/* ==========================================================================
   23. Mobile fixes — kill template artefacts + section layout polish
   ========================================================================== */

/* Template applies an espresso brown bg + line-art SVG behind every section <header>
   on viewports ≤1152px. Kill it everywhere — it leaks brown behind our text. */
#wrapper > section > header,
#wrapper > section > footer,
#wrapper section > header {
	background: transparent !important;
	background-image: none !important;
	background-color: transparent !important;
}

/* Mobile : Services grid fits the viewport (2-col × 3-row instead of 3-col × 2-row) */
@media (max-width: 980px) {
	.services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: 36rem;
	}
	.services-grid__cell {
		padding: 1.5rem 0.75rem;
		gap: 0.65rem;
	}
	.services-grid__cell:nth-child(3n) {
		border-right: 1px solid var(--color-line);
	}
	.services-grid__cell:nth-child(2n) {
		border-right: none;
	}
	.services-grid__num {
		display: none;
	}
	.services-grid__icon {
		font-size: 1.5rem;
	}
	.services-grid__title {
		font-size: 0.85rem;
		font-weight: 700 !important;
	}
}

@media (max-width: 480px) {
	.services-grid__cell {
		padding: 1.1rem 0.5rem;
		gap: 0.5rem;
	}
	.services-grid__icon {
		font-size: 1.35rem;
	}
	.services-grid__title {
		font-size: 0.78rem;
		font-weight: 700 !important;
	}
}

/* Mobile : Track Record carousel like desktop, but 2 cards visible */
@media (max-width: 980px) {
	#wrapper > section#actifs {
		height: calc(100vh - var(--header-h));
		height: calc(100dvh - var(--header-h));
		min-height: 0;
		max-height: calc(100vh - var(--header-h));
		max-height: calc(100dvh - var(--header-h));
		overflow: hidden;
		padding: 1.5rem 1rem !important;
	}
	#wrapper > section#actifs .asset-grid {
		max-width: none;
		display: block !important;
		overflow: hidden;
		cursor: grab;
		user-select: none;
		touch-action: pan-y;
	}
	#wrapper > section#actifs .actifs-track {
		display: flex;
		flex-direction: row;
		gap: 1.25rem;
		width: max-content;
		align-items: start;
		transform: translate3d(0, 0, 0);
	}
	#wrapper > section#actifs .actifs-track > .asset-card {
		flex: 0 0 var(--actifs-card-w, calc((100vw - 3.25rem) / 2));
		width: var(--actifs-card-w, calc((100vw - 3.25rem) / 2));
	}
	#wrapper > section#actifs .actifs-nav-arrow {
		display: flex;
		top: 22vh;
		right: 0.5rem;
		font-size: 3.5rem;
	}
	#wrapper > section#actifs .asset-card__visual--arch {
		max-height: 32vh;
	}
	#wrapper > section#actifs .asset-card h3 {
		font-size: 0.65rem !important;
		letter-spacing: 0.2em !important;
	}
	#wrapper > section#actifs .asset-card > p {
		font-size: 0.78rem !important;
	}
	#wrapper > section#actifs .asset-card__tags li {
		font-size: 0.6rem !important;
		padding: 0.25rem 0.6rem !important;
	}
}

/* ==========================================================================
   Mobile : aucune section ne doit dépasser le viewport — kill min-height,
   force max-height au viewport et overflow:hidden sur toutes les sections
   à hauteur fixe. Plus aucun scroll vertical interne possible.
   ========================================================================== */
@media (max-width: 980px) {
	#wrapper > section#expertise,
	#wrapper > section#services,
	#wrapper > section#actifs,
	#wrapper > section#approche {
		min-height: 0 !important;
		height: calc(100vh - var(--header-h)) !important;
		height: calc(100svh - var(--header-h)) !important;
		max-height: calc(100vh - var(--header-h)) !important;
		max-height: calc(100svh - var(--header-h)) !important;
		overflow: hidden !important;
	}

	#wrapper > section.intro {
		height: 100vh !important;
		height: 100svh !important;
	}

	/* Kill any inner scroll container : .content, header, figure etc.
	   On mobile, the user reported scrollbars inside the logo (.expertise-mark__frame),
	   the carousel grid and the Approche body. Force overflow visible/hidden + min-height: 0
	   on every descendant so no element can become its own scroll context. */
	#wrapper > section#expertise > .content,
	#wrapper > section#expertise > header,
	#wrapper > section#services > .content,
	#wrapper > section#services > header,
	#wrapper > section#actifs > .content,
	#wrapper > section#actifs > header,
	#wrapper > section#approche > .content,
	#wrapper > section#approche > header {
		overflow: visible !important;
		min-height: 0 !important;
		max-height: none !important;
	}

	#wrapper > section#expertise .expertise-mark,
	#wrapper > section#expertise .expertise-mark__frame,
	#wrapper > section#approche .approche-body {
		overflow: visible !important;
		max-height: none !important;
	}
}

/* Mobile : titre Contact aligné sur le style éditorial italique des autres sections */
@media (max-width: 980px) {
	.contact-head h2 {
		font-family: var(--font-serif) !important;
		font-size: clamp(2.4rem, 8vw, 3.2rem) !important;
		font-style: italic !important;
		font-weight: 300 !important;
		letter-spacing: -0.01em !important;
		line-height: 1.05 !important;
	}
}
