:root {
	--magenta: #cc1166;
	--magenta-light: #e8237a;
	--magenta-pale: #fce8f1;
	--cream: #faf6f1;
	--warm-dark: #1a0a0f;
	--warm-mid: #6b2040;
	--skin: #f0c8a8;
	--text: #1a0a0f;
	--muted: #8a6070;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	font-family: 'DM Sans', sans-serif;
	background: var(--cream);
	color: var(--text);
	overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2.5rem;
	mix-blend-mode: normal;
	background: rgba(250,246,241,0.92);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(204,17,102,0.12);
}

.nav-logo {
	font-family: 'Playfair Display', serif;
	font-size: 1.4rem;
	font-weight: 900;
	color: var(--magenta);
	letter-spacing: -0.02em;
	text-decoration: none;
}

.nav-links {
	display: flex;
	gap: 2rem;
	list-style: none;
}

.nav-links a {
	font-family: 'Space Mono', monospace;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--warm-dark);
	text-decoration: none;
	transition: color 0.2s;
}
.nav-links a:hover { color: var(--magenta); }

.nav-social {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.nav-social a {
	color: var(--warm-dark);
	text-decoration: none;
	font-size: 1.1rem;
	transition: color 0.2s;
}
.nav-social a:hover { color: var(--magenta); }

/* ─── HERO ─── */
#hero {
	min-height: 100vh;
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding-top: 72px;
	position: relative;
	overflow: hidden;
}

.hero-image-panel {
	position: relative;
	overflow: hidden;
}

.hero-image-panel img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left center;
	display: block;
	animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
	from { transform: scale(1); }
	to { transform: scale(1.04); }
}

.hero-text-panel {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 4rem 4rem 4rem 3rem;
	background: var(--warm-dark);
	position: relative;
}

.hero-text-panel::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 80% 20%, rgba(204,17,102,0.15) 0%, transparent 60%);
	pointer-events: none;
}

.hero-eyebrow {
	font-family: 'Space Mono', monospace;
	font-size: 0.65rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--magenta);
	margin-bottom: 1.5rem;
	animation: fadeUp 0.8s ease both;
}

.hero-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(3.5rem, 6vw, 5.5rem);
	font-weight: 900;
	line-height: 0.92;
	color: var(--cream);
	margin-bottom: 2rem;
	animation: fadeUp 0.8s 0.15s ease both;
}

.hero-title em {
	font-style: italic;
	color: var(--magenta);
}

.hero-tagline {
	font-size: 1.05rem;
	line-height: 1.7;
	color: rgba(250,246,241,0.7);
	max-width: 38ch;
	margin-bottom: 3rem;
	animation: fadeUp 0.8s 0.3s ease both;
}

.hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: var(--magenta);
	color: white;
	text-decoration: none;
	font-family: 'Space Mono', monospace;
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 1rem 2rem;
	transition: background 0.2s, transform 0.2s;
	animation: fadeUp 0.8s 0.45s ease both;
	align-self: flex-start;
}
.hero-cta:hover { background: var(--magenta-light); transform: translateY(-2px); }
.hero-cta svg { width: 16px; height: 16px; }

.hero-quote-strip {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	background: var(--magenta);
	padding: 0.9rem 2rem;
	overflow: hidden;
}

.marquee-track {
	display: flex;
	gap: 4rem;
	animation: marquee 18s linear infinite;
	white-space: nowrap;
	width: max-content;
}

.marquee-track span {
	font-family: 'Playfair Display', serif;
	font-style: italic;
	font-size: 0.9rem;
	color: white;
	opacity: 0.9;
}

@keyframes marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@keyframes fadeUp {
	from { opacity: 0; transform: translateY(24px); }
	to { opacity: 1; transform: translateY(0); }
}

/* ─── SECTION BASE ─── */
section {
	padding: 7rem 0;
}

.container {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 2.5rem;
}

.section-label {
	font-family: 'Space Mono', monospace;
	font-size: 0.65rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--magenta);
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}
.section-label::after {
	content: '';
	flex: 1;
	max-width: 60px;
	height: 1px;
	background: var(--magenta);
}

.section-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 1.5rem;
}

/* ─── OVER HET PROJECT ─── */
#project {
	background: var(--cream);
}

.project-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
	align-items: center;
}

.project-text .section-title {
	color: var(--warm-dark);
}

.project-body {
	font-size: 1.05rem;
	line-height: 1.85;
	color: #3d2030;
}

.project-body p + p {
	margin-top: 1.2rem;
}

.project-body strong {
	color: var(--magenta);
	font-weight: 500;
}

.project-visual {
	position: relative;
}

.pull-quote {
	background: var(--warm-dark);
	color: var(--cream);
	padding: 3rem;
	position: relative;
	font-family: 'Playfair Display', serif;
	font-style: italic;
	font-size: 1.55rem;
	line-height: 1.5;
}

.pull-quote::before {
	content: '\201C';
	font-size: 8rem;
	color: var(--magenta);
	line-height: 0.6;
	position: absolute;
	top: 1.5rem;
	left: 2rem;
	opacity: 0.4;
}

.pull-quote cite {
	display: block;
	font-family: 'Space Mono', monospace;
	font-style: normal;
	font-size: 0.7rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--magenta);
	margin-top: 1.5rem;
}

.accent-block {
	position: absolute;
	width: 120px;
	height: 120px;
	background: var(--magenta);
	top: -20px;
	right: -20px;
	z-index: -1;
}

/* ─── PODCASTS ─── */
#podcasts {
	background: var(--warm-dark);
}

#podcasts .section-title {
	color: var(--cream);
}

#podcasts .section-label {
	color: var(--magenta-light);
}
#podcasts .section-label::after {
	background: var(--magenta-light);
}

.podcast-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 3.5rem;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.podcast-intro {
	font-size: 1rem;
	line-height: 1.75;
	color: rgba(250,246,241,0.65);
	max-width: 46ch;
	margin-top: 1rem;
}

.podcast-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5px;
	/* background: rgba(204,17,102,0.2); */
}

.podcast-card {
	background: #120608;
	padding: 2rem;
	cursor: pointer;
	transition: background 0.25s;
	position: relative;
}

.podcast-card:hover {
	background: #200a10;
}

.podcast-card::after {
	content: '';
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 2px;
	background: var(--magenta);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}
.podcast-card:hover::after { transform: scaleX(1); }

.podcast-card--disabled {
	opacity: 0.6;
	cursor: default;
	pointer-events: none;
}

.podcast-soon {
	font-family: 'Space Mono', monospace;
	font-size: 0.65rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(250,246,241,0.35);
	margin: 0;
}

.podcast-num {
	font-family: 'Space Mono', monospace;
	font-size: 0.65rem;
	color: var(--magenta);
	letter-spacing: 0.15em;
	margin-bottom: 1.2rem;
}

.podcast-title-ep {
	font-family: 'Playfair Display', serif;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--cream);
	line-height: 1.35;
	margin-bottom: 0.75rem;
}

.podcast-desc {
	font-size: 0.85rem;
	color: rgba(250,246,241,0.5);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.podcast-play {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--magenta);
	font-family: 'Space Mono', monospace;
	font-size: 0.65rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
}

.podcast-play svg {
	width: 28px; height: 28px;
	border: 1px solid var(--magenta);
	border-radius: 50%;
	padding: 5px;
	flex-shrink: 0;
	transition: background 0.2s;
}
.podcast-card:hover .podcast-play svg {
	background: var(--magenta);
	color: white;
}

/* ─── PODCAST EMBED PLAYER ─── */

.podcast-play {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.podcast-embed {
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: max-height 0.35s ease, opacity 0.35s ease;
}

.podcast-embed.is-open {
	max-height: 152px;
	opacity: 1;
	margin-top: 1.25rem;
}

.podcast-embed iframe {
	width: 100%;
	height: 152px;
	display: block;
	border: none;
	border-radius: 8px;
}

/* Swap play icon → X icon when open */
.podcast-play .icon-close { display: none; }
.podcast-play[aria-expanded="true"] .icon-play { display: none; }
.podcast-play[aria-expanded="true"] .icon-close { display: inline; }

/* Swap "Afspelen" → "Sluiten" when open */
.podcast-play[aria-expanded="true"] .podcast-play-label {
	font-size: 0;
}
.podcast-play[aria-expanded="true"] .podcast-play-label::before {
	content: 'Sluiten';
	font-size: 0.65rem;
}

.podcast-platforms {
	margin-top: 3rem;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.podcast-platforms span {
	font-family: 'Space Mono', monospace;
	font-size: 0.65rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(250,246,241,0.4);
}

.platform-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.5rem 1.1rem;
	border: 1px solid rgba(204,17,102,0.3);
	color: rgba(250,246,241,0.7);
	font-family: 'Space Mono', monospace;
	font-size: 0.65rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	transition: border-color 0.2s, color 0.2s;
}
.platform-link:hover { border-color: var(--magenta); color: var(--magenta); }

/* ─── BOEK ─── */
#boek {
	background: var(--magenta-pale);
	overflow: hidden;
}

.book-layout {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 5rem;
	align-items: center;
}

.book-cover-wrap {
	position: relative;
	display: flex;
	justify-content: center;
}

.book-cover-img {
	width: 260px;
	height: auto;
	display: block;
	box-shadow: 16px 16px 0 var(--magenta), 32px 32px 0 rgba(204,17,102,0.15);
}

.book-cover-mock {
	width: 260px;
	height: 370px;
	background: var(--warm-dark);
	position: relative;
	box-shadow: 16px 16px 0 var(--magenta), 32px 32px 0 rgba(204,17,102,0.15);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 2.5rem;
	overflow: hidden;
}

.book-cover-mock::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 30% 70%, rgba(204,17,102,0.25) 0%, transparent 60%);
}

.book-cover-subtitle {
	font-family: 'Space Mono', monospace;
	font-size: 0.6rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--magenta);
	position: relative;
}

.book-cover-title {
	font-family: 'Playfair Display', serif;
	font-size: 2.8rem;
	font-weight: 900;
	font-style: italic;
	color: var(--cream);
	line-height: 1;
	position: relative;
}

.book-cover-author {
	font-family: 'DM Sans', sans-serif;
	font-size: 0.75rem;
	color: rgba(250,246,241,0.5);
	position: relative;
}

.book-cover-stripe {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 8px;
	background: var(--magenta);
}

.book-content .section-title {
	color: var(--warm-dark);
}

.book-body {
	font-size: 1rem;
	line-height: 1.8;
	color: #3d2030;
	margin-bottom: 2rem;
}

.book-body p + p { margin-top: 1rem; }

.book-cta-group {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	align-items: center;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--magenta);
	color: white;
	text-decoration: none;
	font-family: 'Space Mono', monospace;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.85rem 1.75rem;
	transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--magenta-light); transform: translateY(-2px); }

.btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border: 1.5px solid var(--magenta);
	color: var(--magenta);
	text-decoration: none;
	font-family: 'Space Mono', monospace;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.85rem 1.75rem;
	transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--magenta); color: white; }

/* ─── EVENTS ─── */
#events {
	background: var(--cream);
}

.events-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 3rem;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.events-header .section-title {
	color: var(--warm-dark);
}

.events-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	border-top: 1px solid rgba(204,17,102,0.15);
}

.event-row {
	display: grid;
	grid-template-columns: 100px 1fr auto auto;
	align-items: center;
	gap: 2rem;
	padding: 1.8rem 0;
	border-bottom: 1px solid rgba(204,17,102,0.15);
	transition: background 0.2s;
	cursor: default;
}

.event-row:hover {
	background: rgba(204,17,102,0.04);
	padding-left: 1rem;
	padding-right: 1rem;
	margin: 0 -1rem;
}

.event-date {
	text-align: center;
}

.event-date .day {
	font-family: 'Playfair Display', serif;
	font-size: 2.2rem;
	font-weight: 900;
	color: var(--magenta);
	line-height: 1;
}

.event-date .month {
	font-family: 'Space Mono', monospace;
	font-size: 0.62rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--muted);
	margin-top: 2px;
}

.event-name {
	font-family: 'Playfair Display', serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--warm-dark);
	margin-bottom: 0.25rem;
}

.event-location {
	font-size: 0.85rem;
	color: var(--muted);
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.event-type {
	font-family: 'Space Mono', monospace;
	font-size: 0.6rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 0.3rem 0.75rem;
	border: 1px solid var(--magenta);
	color: var(--magenta);
}

.event-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--warm-dark);
	font-family: 'Space Mono', monospace;
	font-size: 0.65rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	transition: color 0.2s;
}
.event-link:hover { color: var(--magenta); }

/* ─── SOCIAL ─── */
#social {
	background: var(--warm-dark);
	padding: 5rem 0;
}

.social-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.social-inner .section-label {
	justify-content: center;
}
.social-inner .section-label::after { display: none; }

.social-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2rem, 4vw, 3rem);
	font-style: italic;
	font-weight: 700;
	color: var(--cream);
	margin-bottom: 1rem;
}

.social-subtitle {
	font-size: 0.95rem;
	color: rgba(250,246,241,0.5);
	margin-bottom: 3rem;
	max-width: 40ch;
}

.social-links {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 3rem;
}

.social-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	color: rgba(250,246,241,0.6);
	transition: color 0.2s, transform 0.2s;
}
.social-link:hover { color: var(--magenta); transform: translateY(-4px); }

.social-icon {
	width: 56px; height: 56px;
	border: 1px solid rgba(204,17,102,0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	transition: border-color 0.2s, background 0.2s;
}
.social-link:hover .social-icon {
	border-color: var(--magenta);
	background: rgba(204,17,102,0.1);
}

.social-name {
	font-family: 'Space Mono', monospace;
	font-size: 0.62rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.newsletter-form {
	display: flex;
	gap: 0;
	max-width: 440px;
	width: 100%;
}

.newsletter-form input {
	flex: 1;
	background: rgba(250,246,241,0.08);
	border: 1px solid rgba(204,17,102,0.3);
	border-right: none;
	color: var(--cream);
	font-family: 'DM Sans', sans-serif;
	font-size: 0.9rem;
	padding: 0.85rem 1.25rem;
	outline: none;
}

.newsletter-form input::placeholder { color: rgba(250,246,241,0.3); }
.newsletter-form input:focus { border-color: var(--magenta); }

.newsletter-form button {
	background: var(--magenta);
	border: none;
	color: white;
	font-family: 'Space Mono', monospace;
	font-size: 0.65rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 0.85rem 1.5rem;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.2s;
}
.newsletter-form button:hover    { background: var(--magenta-light); }
.newsletter-form button:disabled { opacity: 0.6; cursor: default; }

.form-pot {
	position: absolute;
	left: -9999px;
	top: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
}

.newsletter-feedback {
	margin-top: 0.75rem;
	font-size: 0.85rem;
	min-height: 1.2em;
}
.newsletter-feedback.is-success { color: #7ecfa0; }
.newsletter-feedback.is-error   { color: #f08080; }

/* ─── FOOTER ─── */
footer {
	background: #0e0408;
	padding: 2rem 2.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

footer .logo {
	font-family: 'Playfair Display', serif;
	font-size: 1.1rem;
	font-weight: 900;
	color: var(--magenta);
}

footer p {
	font-family: 'Space Mono', monospace;
	font-size: 0.62rem;
	color: rgba(250,246,241,0.25);
	letter-spacing: 0.08em;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
	#hero { grid-template-columns: 1fr; }
	.hero-image-panel { height: 55vw; min-height: 300px; }
	.hero-text-panel { padding: 3rem 2rem; }
	.project-layout, .book-layout { grid-template-columns: 1fr; gap: 3rem; }
	.book-cover-wrap { justify-content: flex-start; }
	.podcast-grid { grid-template-columns: 1fr; }
	.event-row { grid-template-columns: 80px 1fr; gap: 1rem; }
	.event-type, .event-link { display: none; }
	nav { padding: 1rem 1.5rem; }
	.nav-links { display: none; }
}
