@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400;1,9..144,500;1,9..144,600;1,9..144,700&display=swap');
:root {
	--ach-noir: #414042;
	--ach-dore: #C5BA9B;
	--ach-beige: #FDF8F3;
	--ach-white: #FFFFFF;
	--ach-grey: #716F6F;
	--ach-line: #E5E1D8;
	--ach-font-sans: "articulat-cf", 'Inter', 'Helvetica Neue', Arial, sans-serif;
	--ach-font-serif: 'Fraunces', 'Georgia', serif;
}
.acheter-page {
	color: var(--ach-noir);
	font-family: var(--ach-font-sans);
	line-height: 1.6;
	overflow-x: hidden;
	background: var(--ach-white);
}
.acheter-container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 40px;
}
.acheter-btn {
	display: inline-block;
	font-family: var(--ach-font-sans);
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	padding: 14px 28px;
	border: 1px solid var(--ach-dore);
	background-color: var(--ach-dore);
	color: var(--ach-white);
	transition: all 0.3s ease;
	cursor: pointer;
}
.acheter-btn:hover {
	background-color: #b0a688;
	border-color: #b0a688;
	color: var(--ach-white);
}
.acheter-btn--hero {
	margin-top: 16px;
}
.acheter-hero {
	position: relative;
	min-height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}
.acheter-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.32) 100%);
	pointer-events: none;
}
.acheter-hero__content {
	position: relative;
	z-index: 1;
	max-width: 980px;
	padding: 160px 24px 90px;
}
.acheter-hero__title {
	font-family: var(--ach-font-sans);
	font-size: 96px;
	font-weight: 600;
	color: var(--ach-white);
	line-height: 1.05;
	margin: 0 0 32px;
}
.acheter-hero__title em {
	font-family: var(--ach-font-serif);
	font-style: italic;
	font-weight: 400;
	font-size: 116px;
}
.acheter-stats__bar {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0;
	padding: 28px 40px;
	background-color: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(6px);
}
.acheter-stats__item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 0 30px;
	color: var(--ach-noir);
}
.acheter-stats__item:first-child {
	padding: 0px 30px 0px 0px;
}
.acheter-stats__item:last-child {
	padding: 0px 0px 0px 30px;
}
.acheter-stats__separator {
	width: 1px;
	height: 40px;
	background-color: rgba(65, 64, 66, 0.2);
	flex-shrink: 0;
}
.acheter-stats__number {
	font-family: var(--ach-font-serif);
	font-size: 60px;
	color: var(--ach-noir);
	white-space: nowrap;
	line-height: 1;
}
.acheter-stats__label {
	font-size: 20px;
	text-align: left;
	line-height: 1.35;
	color: var(--ach-noir);
	font-weight: 200;
}
.acheter-banner {
	background-color: #49494A;
	color: var(--ach-white);
	padding: 28px 40px;
	text-align: center;
	font-family: var(--ach-font-sans);
}
.acheter-banner p {
	max-width: 1300px;
	margin: 0 auto;
	font-size: 20px;
	line-height: 1.55;
	width: 70%;
}
.acheter-intro {
	padding: 60px 0 60px;
	text-align: center;
}
.acheter-intro__title {
	font-family: var(--ach-font-sans);
	font-size: 70px;
	font-weight: 600;
	color: var(--ach-noir);
	line-height: 1.1;
	margin: 0 0 18px;
}
.acheter-intro__title em {
	font-family: var(--ach-font-serif);
	font-style: italic;
	font-weight: 400;
	font-size: 70px;
}
.acheter-intro__text {
	max-width: 720px;
	margin: 18px auto 0;
	font-size: 18px;
	font-weight: 700;
	color: var(--ach-noir);
	line-height: 1.55;
}
.acheter-content-band {
	background-color: var(--ach-beige);
	padding: 36px 0;
	text-align: center;
	margin-bottom: 60px;
}
.acheter-content-band__inner {
	max-width: 880px;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1.6;
	color: var(--ach-noir);
}
.acheter-content-band__inner p {
	margin: 0 0 14px;
}
.acheter-content-band__inner p:last-child {
	margin-bottom: 0;
}
.acheter-grid__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 36px 32px;
}
.acheter-grid__list--single, .acheter-grid__list--double {
	justify-content: center;
}
.acheter-grid__list--single {
	grid-template-columns: calc((100% - 2 * 32px) / 3);
}
.acheter-grid__list--double {
	grid-template-columns: repeat(2, calc((100% - 2 * 32px) / 3));
}
.acheter-card.is-hidden {
	display: none;
}
.acheter-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
	background-color: var(--ach-white);
	border: 1px solid var(--ach-dore);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.acheter-card__link:hover {
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
	transform: translateY(-4px);
}
.acheter-card__img {
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--ach-beige);
}
.acheter-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}
.acheter-card__link:hover .acheter-card__img img {
	transform: scale(1.04);
}
.acheter-card__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 22px 22px 24px;
	flex: 1;
}
.acheter-card__title {
	font-family: var(--ach-font-sans);
	font-size: 20px;
	font-weight: 700;
	color: var(--ach-noir);
	margin: 0;
	line-height: 1.3;
}
.acheter-card__meta {
	list-style: none;
	padding: 0;
	margin: 6px 0 0;
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.acheter-card__meta li {
	font-size: 16px;
	color: var(--ach-noir);
	line-height: 1.45;
}
.acheter-card__honoraires {
	color: var(--ach-grey);
	font-size: 13px;
}
.acheter-card__ref {
	font-size: 13px !important;
	opacity: 0.5 !important;
}
.acheter-card__cta {
	margin-top: 10px;
	font-family: var(--ach-font-sans);
	font-size: 18px;
	font-weight: 700;
	color: var(--ach-dore);
	text-underline-offset: 3px;
	transition: color 0.3s ease;
	align-self: flex-start;
}
.acheter-card__link:hover .acheter-card__cta {
	color: var(--ach-noir);
}
.acheter-grid__empty {
	text-align: center;
	padding: 60px 0;
	font-size: 18px;
	color: var(--ach-grey);
}
.acheter-grid__more {
	display: flex;
	justify-content: center;
	margin-top: 48px;
}

@media (max-width: 1079px) {
	.acheter-hero__title, .acheter-hero__title em {
		font-size: 3.4rem;
	}
	.acheter-intro__title, .acheter-intro__title em {
		font-size: 2.2rem;
	}
	.acheter-grid__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px 22px;
	}
	.acheter-grid__list--single {
		grid-template-columns: calc((100% - 22px) / 2);
	}
	.acheter-grid__list--double {
		grid-template-columns: repeat(2, calc((100% - 22px) / 2));
	}
	.acheter-intro {
		padding: 40px 0 40px;
	}
	.acheter-content-band {
		margin-bottom: 40px;
	}
	.acheter-hero {
		min-height: fit-content;
	}
}

@media (max-width: 768px) {
	.acheter-grid__list, .acheter-grid__list--single, .acheter-grid__list--double {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.acheter-intro__title, .acheter-intro__title em {
		font-size: 1.9rem;
	}
	.acheter-card__img {
		height: 400px;
		aspect-ratio: initial;
	}
}

@media (max-width: 550px) {
	.acheter-container {
		padding: 0 24px;
	}
	.acheter-hero__content {
		padding: 130px 24px 60px;
	}
	.acheter-hero__title, .acheter-hero__title em {
		font-size: 2rem;
	}
	.acheter-banner {
		padding: 22px 20px;
	}
	.acheter-banner p {
		font-size: 16px;
		width: 100%;
	}
	.acheter-content-band {
		margin-bottom: 24px;
	}
	.acheter-intro {
		padding: 24px 0 24px;
	}
	.acheter-intro__title, .acheter-intro__title em {
		font-size: 1.6rem;
	}
}
