/* À propos — styles spécifiques (maquette 08) */

/* ---------- Hero ---------- */

.apropos-hero {
	padding: 84px 0 92px;
}

.apropos-hero__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 80px;
	align-items: center;
}

.apropos-hero__label {
	margin-bottom: 20px;
}

.apropos-hero__title {
	font-size: clamp(38px, 4.4vw, 62px);
	line-height: 1.07;
	letter-spacing: -0.01em;
	margin-bottom: 24px;
}

.apropos-hero__lead,
.apropos-hero__p {
	font-size: 17.5px;
	line-height: 1.7;
	margin-bottom: 18px;
}

.apropos-hero__lead {
	color: var(--hg-ink-strong);
}

.apropos-hero__p {
	color: var(--hg-ink-soft);
	margin-bottom: 32px;
}

.apropos-hero__ctas {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.apropos-hero__photo {
	aspect-ratio: 4 / 5;
	border-radius: var(--hg-r-block);
	border: 1px solid var(--hg-border-1);
	overflow: hidden;
}

/* ---------- Le parcours ---------- */

.apropos-parcours {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 72px;
	align-items: start;
}

.apropos-parcours__label {
	display: block;
	margin-bottom: 14px;
}

.apropos-parcours__title {
	font-size: clamp(30px, 3vw, 42px);
	line-height: 1.15;
}

.apropos-frise {
	display: flex;
	flex-direction: column;
}

.apropos-frise__row {
	display: flex;
	gap: 26px;
	padding: 20px 0;
	border-bottom: 1px solid rgba(36, 41, 43, 0.1);
}

.apropos-frise__row:last-child {
	border-bottom: 0;
}

.apropos-frise__year {
	font: 400 20px var(--hg-serif);
	color: var(--hg-accent);
	width: 64px;
	flex: none;
}

.apropos-frise__title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 4px;
}

.apropos-frise__row p {
	font-size: 14.5px;
	line-height: 1.6;
	color: var(--hg-ink-soft);
}

/* ---------- Mes convictions ---------- */

.apropos-intro {
	text-align: center;
	margin-bottom: 48px;
}

.apropos-intro .hg-label {
	display: block;
	margin-bottom: 14px;
}

.apropos-h2 {
	font-size: clamp(30px, 3.2vw, 44px);
	line-height: 1.12;
}

.apropos-convictions {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.apropos-conviction {
	border-radius: 22px;
	padding: 34px 32px;
}

.apropos-conviction__title {
	font: 400 21px/1.3 var(--hg-serif);
	margin-bottom: 10px;
}

.apropos-conviction p {
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--hg-ink-soft);
}

/* ---------- Galerie ---------- */

.apropos-galerie {
	padding-bottom: var(--hg-section);
}

.apropos-galerie__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.apropos-galerie__item {
	aspect-ratio: 4 / 3;
	border-radius: var(--hg-r-card);
	border: 1px solid rgba(36, 41, 43, 0.07);
	overflow: hidden;
}

/* ---------- Citation ---------- */

.apropos-citation {
	padding: 84px 0;
	text-align: center;
}

.apropos-citation__text {
	font: italic 400 clamp(22px, 2.4vw, 32px)/1.45 var(--hg-serif);
	max-width: 820px;
	margin: 0 auto 14px;
}

.apropos-citation__who {
	font-size: 13px;
	font-weight: 600;
	color: var(--hg-accent-light);
	letter-spacing: 0.1em;
}

/* ---------- CTA final ---------- */

.apropos-final {
	padding: 96px 0;
	text-align: center;
}

.apropos-final__title {
	font-size: clamp(34px, 3.4vw, 46px);
	line-height: 1.12;
	max-width: 680px;
	margin: 0 auto 16px;
}

.apropos-final__sub {
	font-size: 16px;
	line-height: 1.6;
	color: var(--hg-ink-soft);
	max-width: 460px;
	margin: 0 auto 32px;
}

.apropos-final__ctas {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}

/* ---------- Mobile ---------- */

@media (max-width: 900px) {
	.apropos-hero {
		padding: 44px 0 48px;
	}

	.apropos-hero__grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	/* L'artboard mobile place le portrait entre le texte et la CTA */
	.apropos-hero__copy {
		display: contents;
	}

	.apropos-hero__label {
		margin-bottom: 12px;
	}

	.apropos-hero__title {
		margin-bottom: 16px;
	}

	.apropos-hero__lead,
	.apropos-hero__p {
		font-size: 15.5px;
		line-height: 1.65;
		margin-bottom: 16px;
	}

	.apropos-hero__p {
		margin-bottom: 22px;
	}

	.apropos-hero__photo {
		order: 1;
		border-radius: var(--hg-r-card);
		margin-bottom: 22px;
	}

	.apropos-hero__ctas {
		order: 2;
	}

	.apropos-hero__ctas .hg-btn--primary {
		width: 100%;
	}

	/* L'artboard mobile ne garde que la CTA primaire du hero */
	.apropos-hero__ctas .hg-btn--secondary {
		display: none;
	}

	.apropos-parcours {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.apropos-frise__row {
		gap: 16px;
		padding: 14px 0;
	}

	.apropos-frise__year {
		font-size: 16px;
		width: 44px;
	}

	.apropos-frise__row p {
		font-size: 14px;
	}

	.apropos-intro {
		margin-bottom: 28px;
	}

	.apropos-convictions {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.apropos-conviction {
		border-radius: 16px;
		padding: 18px 20px;
	}

	.apropos-conviction__title {
		font-size: 17px;
		margin-bottom: 4px;
	}

	.apropos-conviction p {
		font-size: 13.5px;
		line-height: 1.55;
	}

	/* Galerie absente de l'artboard mobile */
	.apropos-galerie {
		display: none;
	}

	.apropos-citation {
		padding: 44px 0;
	}

	.apropos-final {
		padding: 40px 0 48px;
	}

	.apropos-final__ctas {
		flex-direction: column;
	}

	.apropos-final__ctas .hg-btn {
		width: 100%;
	}
}
