@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 {
	--home-noir: #414042;
	--home-dore: #C5BA9B;
	--home-beige: #FDF8F3;
	--home-white: #FFFFFF;
	--home-grey: #716F6F;
	--home-font-sans: "articulat-cf", 'Inter', 'Helvetica Neue', Arial, sans-serif;
	--home-font-serif: 'Fraunces', 'Georgia', serif;
}
.home-page {
	color: var(--home-noir);
	font-family: var(--home-font-sans);
	line-height: 1.6;
	overflow-x: hidden;
}
.home-page *,
.home-page *::before,
.home-page *::after {
	box-sizing: border-box;
}
.home-container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 40px;
}
.home-section-title {
	font-family: var(--home-font-sans);
	font-size: 70px;
	font-weight: 600;
	line-height: 1;
	margin: 0 0 16px;
	color: var(--home-noir);
}
.home-section-title em {
	font-family: var(--home-font-serif);
	font-style: italic;
	font-weight: 400;
	font-size: 70px;
}
.home-section-title--center {
	text-align: center;
}
.home-section-subtitle {
	font-size: 20px;
	color: var(--home-noir);
	margin: 0 0 40px;
	line-height: 1.55;
}
.home-section-subtitle--center {
	text-align: center;
}
.home-btn {
	display: inline-block;
	font-family: var(--home-font-sans);
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	padding: 14px 28px;
	border: 1px solid var(--home-dore);
	background-color: var(--home-dore);
	color: var(--home-white);
	transition: all 0.3s ease;
	cursor: pointer;
}
.home-btn:hover {
	background-color: #b0a688;
	border-color: #b0a688;
	color: var(--home-white);
}
.home-btn--ghost {
	background-color: transparent;
	color: var(--home-white);
}
.home-btn--ghost:hover {
	background-color: var(--home-white);
	color: var(--home-noir);
	border-color: var(--home-white);
}
.home-btn--dark {
	background-color: var(--home-noir);
	border-color: var(--home-noir);
}
.home-btn--dark:hover {
	background-color: var(--home-dore);
	border-color: var(--home-dore);
}
.home-btn--secondary, .home-btn--secondary:visited {
	display: inline-block;
	font-family: var(--home-font-sans);
	font-size: 18px;
	font-weight: 700;
	color: var(--home-dore);
	text-decoration: none;
	padding: 14px 6px;
	transition: color 0.3s ease;
}
.home-btn--secondary:hover {
	color: var(--home-noir);
}
.home-trouve__ctas {
	display: flex;
	gap: 24px;
	align-items: center;
	flex-wrap: wrap;
}
.home-hero {
	position: relative;
	min-height: 760px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}
.home-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.25) 100%);
	pointer-events: none;
}
.home-hero__content {
	position: relative;
	z-index: 1;
	max-width: 1300px;
	padding: 0px 24px 90px;
}
.home-hero__title {
	font-family: var(--home-font-sans);
	font-size: 80px;
	font-weight: 600;
	color: var(--home-white);
	line-height: 1.05;
	margin: 0 0 32px;
}
.home-hero__title em {
	font-family: var(--home-font-serif);
	font-style: italic;
	font-weight: 400;
	font-size: 90px;
}
.home-hero__ctas {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}
.home-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);
	-webkit-backdrop-filter: blur(6px);
}
.home-stats__item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 0 30px;
	color: var(--home-noir);
}
.home-stats__item:first-child {
	padding: 0px 30px 0px 0px;
}
.home-stats__item:last-child {
	padding: 0px 0px 0px 30px;
}
.home-stats__separator {
	width: 1px;
	height: 40px;
	background-color: rgba(65, 64, 66, 0.2);
	flex-shrink: 0;
}
.home-stats__number {
	font-family: var(--home-font-serif);
	font-size: 60px;
	color: var(--home-noir);
	white-space: nowrap;
}
.home-stats__label {
	font-size: 20px;
	text-align: left;
	line-height: 1.35;
	color: var(--home-noir);
	font-weight: 200;
}
.home-banner {
	background-color: var(--home-noir);
	padding: 28px 40px;
	text-align: center;
}
.home-banner p {
	margin: 0 auto;
	color: var(--home-white);
	font-size: 20px;
	line-height: 1.55;
	max-width: 1300px;
	width: 70%;
}
.home-projet {
	background-color: var(--home-white);
	padding: 70px 0;
}
.home-projet__header {
	text-align: center;
	margin: 0 auto 50px;
}
.home-projet__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.home-projet__card {
	background: var(--home-white);
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(65, 64, 66, 0.12);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.home-projet__card:hover {
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
	transform: translateY(-4px);
}
.home-projet__card-img {
	aspect-ratio: 4 / 3;
	overflow: hidden;
}
.home-projet__card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}
.home-projet__card:hover .home-projet__card-img img {
	transform: scale(1.04);
}
.home-projet__card-body {
	padding: 24px 24px 28px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.home-projet__card-title {
	font-family: var(--home-font-sans);
	font-size: 30px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 12px;
	color: var(--home-noir);
}
.home-projet__card-title em {
	font-family: var(--home-font-serif);
	font-style: italic;
	font-weight: 400;
}
.home-projet__card-text {
	font-size: 12px;
	color: var(--home-noir);
	line-height: 1.3;
	margin: 0 0 20px;
	flex: 1;
}
.home-projet__card-link, .home-projet__card-link:visited {
	display: inline-block;
	font-family: var(--home-font-sans);
	font-size: 18px;
	font-weight: 700;
	color: var(--home-dore);
	align-self: flex-start;
	transition: color 0.3s ease;
	text-decoration: none;
}
.home-projet__card-link:hover {
	color: var(--home-noir);
}
.home-trouve {
	background: var(--home-beige);
	padding: 60px 0px;
}
.home-trouve__layout {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
	align-items: center;
}
.home-trouve__content p {
	font-size: 20px;
	color: var(--home-noir);
	line-height: 1.55;
	margin: 0 0 32px;
}
.home-trouve__map {
	height: -webkit-fill-available;
}
.home-trouve__map img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.home-trouve__note {
	margin-top: 20px;
	font-size: 13px;
	color: var(--home-grey);
}
.home-exception__layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.home-exception__content p {
	font-size: 20px;
	color: var(--home-noir);
	line-height: 1.55;
	margin: 0 0 32px;
}
.home-exception__image {
	height: -webkit-fill-available;
}
.home-exception__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.related-posts__title {
	font-family: var(--rp-font-sans);
	font-size: 70px;
	font-weight: 600;
	line-height: 1;
	margin: 0 0 16px;
	color: var(--rp-noir);
}
.related-posts__title em {
	font-family: var(--rp-font-serif);
	font-style: italic;
	font-weight: 400;
	font-size: 70px;
}
.related-posts__subtitle {
	font-size: 20px;
	color: var(--rp-noir);
	margin: 0;
	line-height: 1.55;
}
.home-accompagnement {
	position: relative;
	padding: 80px 0 80px 0;
	background-size: cover;
	background-position: top;
	background-repeat: no-repeat;
	overflow: hidden;
}
.home-accompagnement__overlay {
	position: absolute;
	inset: 0;
}
.home-accompagnement__inner {
	position: relative;
	z-index: 1;
}
.home-accompagnement .home-section-title {
	text-align: left;
	margin-bottom: 40px;
}
.home-accompagnement__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.home-accompagnement__step {
	padding: 28px 28px;
	background-color: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}
.home-accompagnement__header {
	display: flex;
	align-items: center;
	gap: 0;
	margin-bottom: 20px;
}
.home-accompagnement__num {
	color: var(--home-noir);
	font-family: var(--home-font-serif);
	font-size: 80px;
	font-style: italic;
	font-weight: 400;
	line-height: 1;
	flex-shrink: 0;
	padding-right: 22px;
	margin-right: 22px;
	border-right: 1px solid rgba(65, 64, 66, 0.25);
}
.home-accompagnement__step h3 {
	font-family: var(--home-font-sans);
	font-size: 30px;
	font-weight: 700;
	margin: 0;
	color: var(--home-noir);
	line-height: 1.25;
}
.home-accompagnement__step p {
	font-size: 18px;
	margin: 0;
	color: var(--home-noir);
	line-height: 1.55;
}
.home-parcours {
	padding: 80px 0 0 0;
	text-align: center;
}
.home-parcours h2, .home-parcours h2 em {
	font-size: 65px;
}
.home-parcours__inner {
	max-width: 1300px;
	margin: 0 auto;
}
.home-parcours p {
	font-size: 20px;
	color: var(--home-noir);
	line-height: 1.55;
	margin: 0 0 32px;
}
.home-trouve__content h2, .home-exception__content h2 {
	margin: 0 0 32px;
}
.home-arr-strip {
	background-color: var(--home-noir);
	padding: 30px 40px;
}
.home-arr-strip__list {
	max-width: 1300px;
	margin: 0 auto;
	list-style: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px 28px;
}
.home-arr-strip__list a {
	color: var(--home-white);
	font-size: 14px;
	text-decoration: none;
	letter-spacing: 0.02em;
}
.home-arr-strip__list a:hover {
	color: var(--home-dore);
}

@media screen and (max-width: 1079px) {
	.home-hero {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		gap: 30px;
		height: fit-content;
		min-height: fit-content;
		max-height: none;
	}
	.home-banner p {
		width: 100%;
	}
	.home-hero__content {
		padding: 120px 40px 40px;
		margin-top: 0px;
	}
	.home-hero__title, .home-hero__title em {
		font-size: 3.2rem;
		line-height: 1.2;
	}
	.home-stats__bar {
		position: static;
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: center;
		gap: 16px;
		padding: 32px 20px;
		width: 100%;
	}
	.home-exception__image img {
		height: 400px;
	}
	.home-stats__item, .home-stats__item:first-child, .home-stats__item:last-child {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 0;
		padding: 0;
		text-align: center;
	}
	.home-stats__separator {
		display: none;
	}
	.home-stats__label {
		text-align: center;
	}
	.home-projet__card-img {
		aspect-ratio: inherit;
		height: 400px;
	}
	.home-trouve__layout, .home-exception__layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.home-accompagnement__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.home-accompagnement__overlay {
		background: none;
	}
	.home-accompagnement .home-section-title {
		margin-bottom: 20px;
	}
	.home-projet__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.home-projet, .home-trouve, .home-accompagnement {
		padding: 40px 0;
	}
	.home-parcours {
		padding: 40px 0 0 0;
	}
	.related-posts__title, .related-posts__title em, .home-parcours h2, .home-parcours h2 em, .home-section-title, .home-section-title em {
		font-size: 2.2rem;
	}
	.home-projet__header {
		max-width: inherit;
	}
}

@media screen and (max-width: 768px) {
	.home-container {
		padding: 0 40px;
	}
	.home-projet, .home-trouve {
		padding: 40px 0;
	}
	.home-hero__title, .home-hero__title em {
		font-size: 2.4rem;
	}
}

@media screen and (max-width: 550px) {
	.home-container {
		padding: 0 25px;
	}
	.home-projet, .home-trouve {
		padding: 25px 0;
	}
	.home-projet__header {
		margin: 0 auto 25px;
	}
	.home-trouve__layout, .home-exception__layout {
		gap: 25px;
	}
	.home-hero__title, .home-hero__title em {
		font-size: 2rem;
	}
	.home-hero__title {
		padding: 0 16px;
	}
	.related-posts__title, .related-posts__title em, .home-parcours h2, .home-parcours h2 em, .home-section-title, .home-section-title em {
		font-size: 1.6rem;
		line-height: 1.3;
	}
	.home-accompagnement__step h3 {
		font-size: 25px;
	}
	.home-accompagnement__num {
		font-size: 40px;
	}
	.home-banner p, .home-accompagnement__step p, .home-section-subtitle, .home-trouve__content p, .home-projet__card-text, .related-posts__subtitle {
		font-size: 20px;
	}
	.home-stats__number {
		font-size: 2rem;
	}
}
