/* --- LIVRE : EIS GROUSSMAMMEN --- */

.livre-eyebrow {
	display: inline-block;
	color: var(--primary-orange);
	font-family: 'Inter', sans-serif;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 18px;
	font-size: 0.85rem;
	font-weight: 600;
}

/* --- HERO --- */
.livre-hero {
	padding: 180px 5vw 80px;
	background:
		radial-gradient(ellipse 80% 50% at 10% 20%, rgba(255, 106, 0, 0.08), transparent 55%),
		radial-gradient(ellipse 60% 40% at 90% 80%, rgba(42, 28, 24, 0.05), transparent 50%),
		linear-gradient(160deg, var(--gray-bg) 0%, var(--light-bg) 55%, #fff 100%);
	position: relative;
	overflow: hidden;
}

.livre-hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	align-items: center;
	gap: 60px;
	position: relative;
	z-index: 1;
}

.livre-hero-text h1 {
	font-size: clamp(2.4rem, 5vw, 3.6rem);
	color: var(--text-dark);
	margin-bottom: 22px;
	line-height: 1.15;
}

.livre-hero-text .lead-text {
	font-size: 1.15rem;
	color: var(--text-light);
	font-weight: 400;
	line-height: 1.8;
	max-width: 540px;
	margin-bottom: 36px;
}

.livre-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

.livre-hero-img {
	display: flex;
	justify-content: center;
	align-items: center;
}

.livre-hero-img img {
	width: 100%;
	max-width: 340px;
	height: auto;
	display: block;
	filter: drop-shadow(0 28px 50px rgba(42, 28, 24, 0.22));
	animation: livreBookFloat 5s ease-in-out infinite;
}

@keyframes livreBookFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-12px); }
}

/* --- INTRO --- */
.livre-intro {
	padding: 100px 5vw 60px;
	background: var(--white);
	text-align: center;
}

.livre-intro-inner {
	max-width: 820px;
	margin: 0 auto;
}

.livre-intro h2 {
	font-size: clamp(1.9rem, 3.8vw, 2.9rem);
	color: var(--text-dark);
	line-height: 1.25;
	margin-bottom: 28px;
	position: relative;
	display: inline-block;
	padding-bottom: 22px;
}

.livre-intro h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 3px;
	background: var(--primary-orange);
	border-radius: 2px;
}

.livre-intro-lead {
	font-size: 1.15rem;
	color: var(--text-light);
	line-height: 1.85;
	text-align: center;
}

.livre-intro-body {
	font-size: 1.08rem;
	color: var(--text-light);
	line-height: 1.85;
	text-align: center;
	margin-top: 22px;
}

.livre-portraits-intro {
	max-width: 780px;
	margin: 0 auto 40px;
	text-align: center;
	font-size: 1.05rem;
	color: var(--text-light);
	line-height: 1.8;
}

/* Mir sinn — name + country + parcours */
.portraits-list--mir .portraits-list-head {
	grid-template-columns: 56px minmax(180px, 0.85fr) minmax(240px, 1.4fr);
}

.portraits-list--mir .portraits-list-head span:last-child {
	grid-column: 3;
}

.portraits-list--mir .portrait-row {
	grid-template-columns: 56px minmax(180px, 0.85fr) minmax(240px, 1.4fr);
}

.portraits-list--mir .portrait-arrow {
	display: none;
}

.portrait-country {
	display: block;
	margin-top: 4px;
	font-family: 'Inter', sans-serif;
	font-size: 0.78rem;
	font-weight: 600;
	font-style: normal;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--primary-orange);
}

/* --- QUOTE --- */
.livre-quote {
	padding: 70px 5vw;
	background: var(--dark-brown);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.livre-quote::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;
}

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

.livre-quote 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;
}

/* --- STORY CARDS --- */
.livre-story {
	padding: 90px 5vw 100px;
	background:
		linear-gradient(180deg, var(--gray-bg) 0%, var(--light-bg) 100%);
}

.livre-story-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.livre-story-card {
	background: var(--white);
	border-radius: 20px;
	padding: 36px 30px 40px;
	box-shadow: 0 14px 36px rgba(42, 28, 24, 0.05);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.livre-story-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 22px 48px rgba(42, 28, 24, 0.1);
}

.livre-story-num {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 2px;
	color: var(--primary-orange);
	margin-bottom: 16px;
}

.livre-story-card h3 {
	font-size: 1.45rem;
	color: var(--text-dark);
	margin-bottom: 16px;
	line-height: 1.3;
}

.livre-story-card p {
	font-size: 1.02rem;
	color: var(--text-light);
	line-height: 1.75;
}

.livre-themes {
	max-width: 900px;
	margin: 48px auto 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.livre-themes span {
	font-family: 'Inter', sans-serif;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	color: var(--primary-orange);
	background: rgba(255, 106, 0, 0.1);
	padding: 10px 18px;
	border-radius: 999px;
}

.livre-story-closing {
	max-width: 780px;
	margin: 48px auto 0;
	text-align: center;
	font-size: 1.08rem;
	color: var(--text-light);
	line-height: 1.8;
}

/* --- PORTRAITS --- */
.livre-portraits {
	padding: 90px 5vw 80px;
	background: var(--white);
}

.livre-portraits-inner {
	max-width: 960px;
	margin: 0 auto;
}

.livre-section-header {
	text-align: center;
	margin-bottom: 52px;
}

.livre-section-header h2 {
	font-size: clamp(1.9rem, 3.5vw, 2.8rem);
	color: var(--text-dark);
	position: relative;
	display: inline-block;
	padding-bottom: 18px;
}

.livre-section-header h2::after {
	content: '';
	position: absolute;
	width: 60px;
	height: 3px;
	background: var(--primary-orange);
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 2px;
}

.livre-section-header p {
	margin-top: 24px;
	color: var(--text-light);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.portraits-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	border-radius: 20px;
	overflow: hidden;
	background: var(--gray-bg);
	box-shadow: 0 16px 40px rgba(42, 28, 24, 0.05);
}

.portraits-list-head {
	display: grid;
	grid-template-columns: 56px minmax(140px, 0.9fr) 40px minmax(220px, 1.35fr);
	gap: 12px;
	padding: 16px 28px;
	background: var(--dark-brown);
	color: rgba(255, 255, 255, 0.7);
	font-family: 'Inter', sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

.portraits-list-head span:first-child {
	grid-column: 2;
}

.portraits-list-head span:last-child {
	grid-column: 4;
}

.portrait-row {
	display: grid;
	grid-template-columns: 56px minmax(140px, 0.9fr) 40px minmax(220px, 1.35fr);
	gap: 12px;
	align-items: center;
	padding: 18px 28px;
	border-bottom: 1px solid rgba(42, 28, 24, 0.06);
	background: var(--white);
	transition: background 0.2s ease;
}

.portrait-row:nth-child(even) {
	background: rgba(255, 255, 255, 0.65);
}

.portrait-row:last-child {
	border-bottom: none;
}

.portrait-row:hover {
	background: rgba(255, 106, 0, 0.06);
}

.portrait-index {
	font-family: 'Inter', sans-serif;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--primary-orange);
	letter-spacing: 1px;
}

.portrait-autrice {
	font-weight: 600;
	font-size: 1.02rem;
	color: var(--text-dark);
}

.portrait-arrow {
	color: var(--primary-orange);
	font-size: 1.1rem;
	text-align: center;
}

.portrait-gm {
	font-family: 'Playfair Display', serif;
	font-style: italic;
	font-size: 1.05rem;
	color: var(--text-light);
}

/* --- BUY CTA --- */
.livre-buy-cta {
	padding: 90px 5vw 110px;
	background:
		radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255, 106, 0, 0.12), transparent 60%),
		linear-gradient(180deg, var(--gray-bg) 0%, var(--light-bg) 100%);
	text-align: center;
}

.livre-buy-cta-inner {
	max-width: 640px;
	margin: 0 auto;
}

.livre-buy-cta h2 {
	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
	color: var(--text-dark);
	margin-bottom: 16px;
}

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

/* --- PRESSE (shared with presse-eis page) --- */
.livre-presse {
	padding: 80px 5vw 100px;
	background:
		linear-gradient(180deg, var(--gray-bg) 0%, var(--light-bg) 100%);
}

.livre-presse .section-header {
	text-align: center;
	margin-bottom: 60px;
}

.livre-presse .section-header h2 {
	font-size: clamp(2rem, 3.5vw, 3rem);
	color: var(--text-dark);
	position: relative;
	display: inline-block;
}

.livre-presse .section-header h2::after {
	content: '';
	position: absolute;
	width: 60px;
	height: 3px;
	background: var(--primary-orange);
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 2px;
}

.livre-presse .section-header p {
	margin-top: 28px;
	color: var(--text-light);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.livre-presse-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.livre-presse-item {
	margin: 0;
	padding: 0;
	border: none;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--dark-brown);
	cursor: pointer;
	aspect-ratio: 4 / 3;
	box-shadow: 0 12px 30px rgba(42, 28, 24, 0.08);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	display: block;
	text-decoration: none;
	color: inherit;
}

.livre-presse-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(42, 28, 24, 0.14);
}

.livre-presse-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.55s ease, opacity 0.35s ease;
}

.livre-presse-item:hover img {
	transform: scale(1.05);
	opacity: 0.92;
}

/* Compat: old journ-eyebrow class still used on presse page */
.livre-hero-text .journ-eyebrow {
	display: inline-block;
	color: var(--primary-orange);
	font-family: 'Inter', sans-serif;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 18px;
	font-size: 0.85rem;
	font-weight: 600;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
	.livre-hero-inner {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.livre-hero-text .lead-text {
		margin-left: auto;
		margin-right: auto;
	}

	.livre-hero-actions {
		justify-content: center;
	}

	.livre-hero-img {
		order: -1;
	}

	.livre-hero-img img {
		max-width: 260px;
	}

	.livre-story-grid {
		grid-template-columns: 1fr;
		max-width: 560px;
	}

	.livre-presse-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 700px) {
	.portraits-list-head {
		display: none;
	}

	.portrait-row {
		grid-template-columns: 40px 1fr;
		grid-template-rows: auto auto;
		gap: 4px 12px;
		padding: 20px 22px;
	}

	.portrait-index {
		grid-row: 1 / 3;
		align-self: center;
	}

	.portrait-autrice {
		grid-column: 2;
	}

	.portrait-arrow {
		display: none;
	}

	.portrait-gm {
		grid-column: 2;
		font-size: 0.98rem;
	}

	.portraits-list--mir .portrait-row {
		grid-template-columns: 40px 1fr;
		grid-template-rows: auto auto;
	}

	.portraits-list--mir .portrait-gm {
		grid-column: 2;
	}
}

@media (max-width: 520px) {
	.livre-presse-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.livre-themes span {
		font-size: 0.8rem;
		padding: 8px 14px;
	}
}
