/* --- INNER HERO --- */
.inner-hero {
	padding: 160px 5vw 0;
	background: linear-gradient(to bottom, var(--gray-bg), var(--light-bg));
}

.inner-hero-grid {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 48px;
	text-align: center;
}

.inner-hero-content {
	text-align: center;
	max-width: 820px;
}

.inner-hero h4 {
	color: var(--primary-orange);
	font-family: 'Inter', sans-serif;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 18px;
	font-size: 0.95rem;
	font-weight: 600;
}

.inner-hero h1 {
	font-size: clamp(2.2rem, 3.8vw, 3.2rem);
	color: var(--text-dark);
	margin-bottom: 22px;
	line-height: 1.2;
}

.inner-hero .lead-text {
	font-size: 1.05rem;
	color: var(--text-light);
	font-weight: 400;
	line-height: 1.75;
	max-width: 760px;
	margin: 0 auto;
}

.inner-hero-image {
	width: 100%;
	max-width: 1100px;
	position: relative;
	border-radius: var(--radius) var(--radius) 0 0;
	overflow: hidden;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.inner-hero-image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
	transition: transform 0.7s ease;
}

.inner-hero-image:hover img {
	transform: scale(1.02);
}

/* --- MISSION / TRANSMETTRE --- */
.mission-section {
	padding: 80px 5vw 100px;
	background: var(--white);
}

.mission-intro {
	max-width: 820px;
	margin: 0 auto 60px;
	text-align: center;
}

.mission-intro p {
	font-size: 1.1rem;
	color: var(--text-light);
	line-height: 1.75;
	margin-bottom: 18px;
}

.mission-intro p:last-child {
	margin-bottom: 0;
}

.books-showcase {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: stretch;
}

.book-card {
	background: var(--gray-bg);
	border-radius: 20px;
	padding: 36px 32px 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	height: 100%;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.book-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 45px rgba(42, 28, 24, 0.1);
}

.book-card-visual {
	width: 100%;
	height: 280px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 28px;
}

.book-card-visual img {
	width: auto;
	height: 100%;
	max-width: 100%;
	object-fit: contain;
	filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.18));
	transition: transform 0.4s ease;
}

.book-card:hover .book-card-visual img {
	transform: translateY(-6px) scale(1.03);
}

.book-card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	width: 100%;
}

.book-card-tag {
	display: inline-block;
	color: var(--primary-orange);
	font-family: 'Inter', sans-serif;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 600;
	margin-bottom: 10px;
}

.book-card-body h4 {
	font-size: 1.55rem;
	color: var(--text-dark);
	margin-bottom: 12px;
	font-family: 'Playfair Display', serif;
	line-height: 1.25;
}

.book-card-body p {
	font-size: 1rem;
	color: var(--text-light);
	line-height: 1.65;
	margin-bottom: 16px;
	flex: 1;
}

.book-card-body .discover-link {
	display: inline-block;
	color: var(--primary-orange);
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 0.5px;
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s ease;
	margin-top: auto;
}

.book-card-body .discover-link:hover {
	border-bottom-color: var(--primary-orange);
}

.mission-extra {
	max-width: 820px;
	margin: 56px auto 0;
	text-align: center;
}

.mission-extra p {
	font-size: 1.05rem;
	color: var(--text-light);
	line-height: 1.75;
	margin-bottom: 16px;
}

.mission-extra p:last-child {
	margin-bottom: 0;
}

/* --- STATEMENT --- */
.asbl-statement {
	padding: 80px 5vw;
	background: var(--dark-brown);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.asbl-statement::before {
	content: '"';
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	font-family: 'Playfair Display', serif;
	font-size: 14rem;
	color: rgba(255, 255, 255, 0.04);
	line-height: 1;
	pointer-events: none;
}

.asbl-statement blockquote {
	max-width: 860px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.asbl-statement p {
	font-family: 'Playfair Display', serif;
	font-size: clamp(1.35rem, 2.8vw, 1.85rem);
	font-style: italic;
	color: var(--white);
	line-height: 1.55;
	font-weight: 400;
}

/* --- ASBL CTA --- */
.asbl-cta {
	padding: 80px 5vw 100px;
	background: var(--white);
}

.asbl-cta-box {
	max-width: 800px;
	margin: 0 auto;
	background: var(--gray-bg);
	border-radius: 24px;
	padding: 56px 48px;
	text-align: center;
}

.asbl-cta-box h4 {
	font-size: 1.8rem;
	color: var(--text-dark);
	margin-bottom: 16px;
	font-family: 'Playfair Display', serif;
}

.asbl-cta-box p {
	font-size: 1.1rem;
	color: var(--text-light);
	margin-bottom: 28px;
	line-height: 1.7;
}

.asbl-cta .btn-outline {
	padding: 14px 36px;
}

@media (max-width: 992px) {
	.inner-hero {
		padding: 140px 5vw 0;
	}

	.inner-hero-grid {
		gap: 36px;
	}

	.books-showcase {
		grid-template-columns: 1fr;
		max-width: 480px;
	}

	.book-card-visual {
		height: 240px;
	}

	.asbl-cta-box {
		padding: 40px 28px;
	}
}
