/* =========================================================
   Erik Baumann — gedeelde stijlen
   Auteurssite + dagboek
   ========================================================= */

:root {
  --teal: #1d6b8f;
  --teal-deep: #14354a;
  --teal-ink: #0e2635;
  --sun: #f5c730;
  --sand: #e8c56a;
  --sand-pale: #f0dfa0;
  --paper: #f6f1e4;
  --paper-warm: #ede4cc;
  --ink: #0e2635;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 21px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Paper texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(20,53,74,0.025) 1px, transparent 1px),
    radial-gradient(rgba(20,53,74,0.018) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
  z-index: 1000;
  mix-blend-mode: multiply;
}

/* ---------- Nav ---------- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  mix-blend-mode: difference;
  color: var(--paper);
  font-family: 'Fraunces', serif;
  letter-spacing: 0.02em;
}

nav .logo {
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
}

nav .logo a { color: inherit; text-decoration: none; }

nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 400;
}

nav a {
  color: inherit;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

nav a:hover { border-bottom-color: currentColor; }

/* Nav variant for dark backgrounds */
nav.on-light { mix-blend-mode: normal; color: var(--teal-deep); }

/* ---------- Hero (homepage) ---------- */
.hero {
  min-height: 100vh;
  background: var(--teal-deep);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  padding: 0 48px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(245,199,48,0.12), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(29,107,143,0.4), transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  padding-left: 60px;
  padding-top: 120px;
  align-self: start;
  z-index: 2;
  animation: fadeUp 1.2s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero .eyebrow {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero .eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--sun);
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.98;
  font-weight: 300;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
}

.hero h1 em {
  font-style: italic;
  color: var(--sun);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
}

.hero .tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.45;
  max-width: 520px;
  color: var(--sand-pale);
  margin-bottom: 48px;
}

.hero-meta {
  display: flex;
  gap: 40px;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
  font-family: 'Fraunces', serif;
}

.hero-meta span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-meta span strong {
  color: var(--paper);
  font-weight: 400;
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

/* Hero book image (right column) */
.hero-book {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px;
  animation: fadeUp 1.2s cubic-bezier(0.16,1,0.3,1) 0.5s both;
}

.hero-book img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

.hero-book:hover img {
  transform: scale(1.02) rotate(0.5deg);
}

/* ---------- Section base ---------- */
section {
  padding: 140px 48px;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Fraunces', serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--teal);
}

h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--teal-deep);
  margin-bottom: 48px;
  max-width: 900px;
}

h2 em {
  font-style: italic;
  color: var(--teal);
}

/* ---------- Manifesto ---------- */
.manifesto {
  background: var(--paper);
  padding-top: 160px;
  padding-bottom: 160px;
}

.manifesto .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.manifesto .quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 180px;
  line-height: 0.8;
  color: var(--sun);
  font-style: italic;
  font-weight: 300;
}

.manifesto p {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  line-height: 1.35;
  font-weight: 300;
  color: var(--teal-deep);
  letter-spacing: -0.01em;
}

.manifesto p + p { margin-top: 24px; }

.manifesto p em {
  font-style: italic;
  color: var(--teal);
}

/* ---------- Dagboek — homepage preview ---------- */
.dagboek-preview {
  background: var(--teal);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.dagboek-preview::before {
  content: 'DE WEG';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Fraunces', serif;
  font-size: 380px;
  font-weight: 300;
  color: rgba(245,199,48,0.08);
  letter-spacing: -0.03em;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}

.dagboek-preview .container {
  position: relative;
  z-index: 2;
}

.dagboek-preview .section-label { color: var(--sun); }
.dagboek-preview .section-label::before { background: var(--sun); }

.dagboek-preview h2 {
  color: var(--paper);
}

.dagboek-preview h2 em { color: var(--sun); }

.dagboek-intro {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--sand-pale);
  max-width: 620px;
  margin-bottom: 64px;
  font-weight: 300;
}

/* Entry grid */
.entries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.entry-card {
  background: var(--paper);
  color: var(--teal-ink);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 8px 10px 0 rgba(20,53,74,0.4);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.entry-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 12px 14px 0 rgba(20,53,74,0.5);
}

.entry-card.latest::after {
  content: 'Laatste bijdrage';
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--sun);
  color: var(--teal-deep);
  padding: 6px 12px;
  font-family: 'Fraunces', serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  z-index: 3;
}

.entry-card .thumb {
  aspect-ratio: 4/3;
  background: var(--teal-deep);
  position: relative;
  overflow: hidden;
}

.entry-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.16,1,0.3,1);
}

.entry-card:hover .thumb img {
  transform: scale(1.05);
}

/* Placeholder styling for missing images */
.entry-card .thumb.placeholder {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
}

.entry-card .thumb.placeholder::after {
  content: '';
  width: 48px;
  height: 48px;
  border: 2px solid var(--sun);
  border-radius: 50%;
  opacity: 0.4;
}

.entry-card .thumb.placeholder::before {
  content: '📷 Foto volgt';
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: var(--sand);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.05em;
  z-index: 2;
  opacity: 0.7;
}

.entry-card .meta {
  padding: 28px 28px 8px;
  display: flex;
  gap: 16px;
  align-items: baseline;
  font-family: 'Fraunces', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
}

.entry-card .meta .chapter {
  color: var(--sun);
  background: var(--teal-deep);
  padding: 4px 10px;
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.entry-card h3 {
  padding: 0 28px;
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--teal-deep);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.entry-card h3 em {
  font-style: italic;
  color: var(--teal);
}

.entry-card p.preview {
  padding: 0 28px 28px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--teal-ink);
  opacity: 0.8;
  flex: 1;
}

.entry-card .read-more {
  padding: 0 28px 28px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.entry-card:hover .read-more { gap: 14px; }

.entry-card .read-more::after {
  content: '→';
  font-style: normal;
}

.dagboek-cta {
  text-align: center;
  padding-top: 24px;
}

.btn-ghost {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--sun);
  text-decoration: none;
  padding: 16px 36px;
  border: 1.5px solid var(--sun);
  border-radius: 2px;
  transition: background 0.3s, color 0.3s;
}

.btn-ghost:hover {
  background: var(--sun);
  color: var(--teal-deep);
}

/* ---------- Author ---------- */
.author {
  background: var(--paper-warm);
  padding-top: 160px;
  padding-bottom: 160px;
}

.author .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.author-portrait {
  aspect-ratio: 4/5;
  background: var(--teal-deep);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  box-shadow: 12px 16px 0 var(--sun);
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 1.2s cubic-bezier(0.16,1,0.3,1);
}

.author-portrait:hover img {
  transform: scale(1.03);
}

.author-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(29,107,143,0.06) 0%,
    rgba(20,53,74,0.04) 60%,
    rgba(245,199,48,0.08) 100%
  );
  pointer-events: none;
  mix-blend-mode: multiply;
}

.author-bio p {
  font-size: 20px;
  line-height: 1.65;
  margin-bottom: 20px;
  color: var(--teal-ink);
}

.author-bio p:first-of-type::first-letter {
  font-family: 'Fraunces', serif;
  font-size: 68px;
  font-weight: 300;
  float: left;
  line-height: 0.9;
  margin: 6px 10px 0 0;
  color: var(--teal);
  font-style: italic;
}

.author-bio .signature {
  margin-top: 32px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--teal);
  font-weight: 300;
}

/* ---------- Themes ---------- */
.themes {
  background: var(--paper);
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--teal);
  margin-top: 64px;
  border: 1px solid var(--teal);
}

.theme-card {
  background: var(--paper);
  padding: 48px 40px;
  position: relative;
  transition: background 0.4s;
}

.theme-card:hover {
  background: var(--sand-pale);
}

.theme-card .num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--sun);
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  display: block;
}

.theme-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--teal-deep);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.theme-card h3 em {
  font-style: italic;
  color: var(--teal);
}

.theme-card p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--teal-ink);
  opacity: 0.85;
}

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--sun);
  color: var(--teal-deep);
  text-align: center;
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}

.newsletter::before,
.newsletter::after {
  content: '~';
  position: absolute;
  font-family: 'Fraunces', serif;
  font-size: 200px;
  font-weight: 300;
  color: var(--teal-deep);
  opacity: 0.1;
  line-height: 1;
}

.newsletter::before { top: 20px; left: 40px; transform: rotate(-15deg); }
.newsletter::after { bottom: 40px; right: 40px; transform: rotate(-15deg); }

.newsletter .container { max-width: 720px; }

.newsletter .section-label { color: var(--teal-deep); justify-content: center; }
.newsletter .section-label::before { background: var(--teal-deep); }

.newsletter h2 {
  color: var(--teal-deep);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 32px;
}

.newsletter p.lead {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 48px;
  color: var(--teal-deep);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 0 auto;
  background: var(--paper);
  border: 1.5px solid var(--teal-deep);
  border-radius: 2px;
}

.newsletter-form input {
  flex: 1;
  padding: 18px 24px;
  border: none;
  background: transparent;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--teal-deep);
  outline: none;
}

.newsletter-form input::placeholder {
  color: var(--teal);
  font-style: italic;
  opacity: 0.6;
}

.newsletter-form button {
  padding: 18px 32px;
  background: var(--teal-deep);
  color: var(--paper);
  border: none;
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s;
}

.newsletter-form button:hover { background: var(--teal); }

/* ---------- Footer ---------- */
footer {
  background: var(--teal-deep);
  color: var(--sand);
  padding: 80px 48px 40px;
}

footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245,199,48,0.2);
}

footer h4 {
  font-family: 'Fraunces', serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 20px;
  font-weight: 500;
}

footer .colophon {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  color: var(--paper);
}

footer .colophon small {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 16px;
  color: var(--sand);
  margin-top: 16px;
  font-weight: 400;
  line-height: 1.5;
  max-width: 360px;
}

footer ul { list-style: none; }

footer ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

footer a {
  color: var(--sand-pale);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  transition: color 0.3s;
}

footer a:hover { color: var(--sun); }

footer .bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(232,197,106,0.6);
  font-family: 'Fraunces', serif;
  letter-spacing: 0.05em;
}

/* =========================================================
   DAGBOEK OVERVIEW PAGE
   ========================================================= */

.dagboek-header {
  background: var(--teal-deep);
  color: var(--paper);
  padding: 120px 48px 100px;
  position: relative;
  overflow: hidden;
}

.dagboek-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(245,199,48,0.08), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(29,107,143,0.35), transparent 60%);
  pointer-events: none;
}

.dagboek-header .container {
  max-width: 820px;
  position: relative;
  z-index: 2;
}

.dagboek-header .section-label {
  color: var(--sun);
}
.dagboek-header .section-label::before {
  background: var(--sun);
}

.dagboek-header h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin-bottom: 32px;
}

.dagboek-header h1 em {
  font-style: italic;
  color: var(--sun);
  font-weight: 300;
}

.dagboek-header p.intro {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--sand-pale);
  font-weight: 300;
  max-width: 640px;
  margin: 0;
  text-align: left;
}

.dagboek-list {
  background: var(--paper);
  padding: 120px 48px;
}

.dagboek-list .container {
  max-width: 980px;
}

.entry-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(29,107,143,0.15);
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: padding 0.4s;
  position: relative;
}

.entry-row:first-child { padding-top: 0; border-top: 1px solid rgba(29,107,143,0.15); }
.entry-row:hover { padding-left: 16px; }

.entry-row .thumb {
  aspect-ratio: 4/3;
  background: var(--teal-deep);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.entry-row .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.entry-row .thumb.placeholder {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
}

.entry-row .thumb.placeholder::after {
  content: '';
  width: 48px;
  height: 48px;
  border: 2px solid var(--sun);
  border-radius: 50%;
  opacity: 0.4;
}

.entry-row .thumb.placeholder::before {
  content: '📷 Foto volgt';
  position: absolute;
  bottom: 12px;
  left: 12px;
  color: var(--sand);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.05em;
  z-index: 2;
  opacity: 0.7;
}

.entry-row .meta {
  display: flex;
  gap: 16px;
  align-items: baseline;
  font-family: 'Fraunces', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.entry-row .meta .chapter {
  color: var(--sun);
  background: var(--teal-deep);
  padding: 4px 10px;
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.entry-row h2 {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--teal-deep);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.entry-row h2 em {
  font-style: italic;
  color: var(--teal);
}

.entry-row p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--teal-ink);
  opacity: 0.85;
  max-width: 560px;
}

.entry-row .read-more {
  margin-top: 20px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.entry-row:hover .read-more { gap: 14px; }

.entry-row .read-more::after {
  content: '→';
  font-style: normal;
}

/* =========================================================
   ARTICLE PAGE (single chapter)
   ========================================================= */

.article-header {
  background: var(--teal-deep);
  color: var(--paper);
  padding: 120px 48px 120px;
  position: relative;
  overflow: hidden;
}

.article-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(245,199,48,0.1), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(29,107,143,0.35), transparent 60%);
  pointer-events: none;
}

.article-header .container {
  max-width: 820px;
  position: relative;
  z-index: 2;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Fraunces', serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 40px;
}

.article-breadcrumb a {
  color: var(--sand);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.article-breadcrumb a:hover { border-bottom-color: var(--sand); }

.article-chapter-badge {
  display: inline-block;
  background: var(--sun);
  color: var(--teal-deep);
  padding: 6px 14px;
  font-family: 'Fraunces', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  margin-bottom: 28px;
}

.article-header h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin-bottom: 32px;
}

.article-header h1 em {
  font-style: italic;
  color: var(--sun);
  font-weight: 300;
}

.article-header p.dek {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--sand-pale);
  font-weight: 300;
  max-width: 640px;
  margin-bottom: 32px;
}

.article-header .byline {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
  display: flex;
  gap: 16px;
  align-items: center;
}

.article-header .byline span {
  display: inline-block;
}

.article-hero-image {
  width: 100%;
  max-width: 1080px;
  margin: -80px auto 0;
  aspect-ratio: 16/9;
  background: var(--paper-warm);
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(20,53,74,0.3);
}

.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-hero-image.placeholder {
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-hero-image.placeholder::after {
  content: '📷  Hoofdfoto komt hier';
  color: var(--sand-pale);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

/* Article body */
.article-body {
  background: var(--paper);
  padding: 120px 48px 160px;
}

.article-body .container {
  max-width: 720px;
}

.article-body .placeholder-notice {
  background: var(--sand-pale);
  border-left: 4px solid var(--sun);
  padding: 24px 32px;
  margin-bottom: 48px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--teal-deep);
  border-radius: 2px;
}

.article-body .placeholder-notice strong {
  font-weight: 500;
  font-style: normal;
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
}

.article-body p {
  font-size: 20px;
  line-height: 1.7;
  color: var(--teal-ink);
  margin-bottom: 24px;
}

.article-body p:first-of-type::first-letter {
  font-family: 'Fraunces', serif;
  font-size: 72px;
  font-weight: 300;
  float: left;
  line-height: 0.9;
  margin: 6px 12px 0 0;
  color: var(--teal);
  font-style: italic;
}

.article-body p em {
  font-style: italic;
  color: var(--teal);
}

.article-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--teal-deep);
  margin: 56px 0 20px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.article-body h3 em {
  font-style: italic;
  color: var(--teal);
}

.article-body blockquote {
  margin: 48px 0;
  padding: 24px 0 24px 40px;
  border-left: 3px solid var(--sun);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 26px;
  line-height: 1.4;
  color: var(--teal);
  font-weight: 300;
}

.article-body .divider {
  text-align: center;
  margin: 64px 0;
  color: var(--teal);
  font-family: 'Fraunces', serif;
  font-size: 24px;
  letter-spacing: 1em;
  font-weight: 300;
  font-style: italic;
}

.article-body .divider::before {
  content: '~ ~ ~';
}

.article-body figure {
  margin: 48px 0;
}

.article-body figure img {
  width: 100%;
  display: block;
  border-radius: 2px;
}

.article-body figure.placeholder {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--paper-warm), var(--sand-pale));
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  opacity: 0.7;
}

.article-body figure.placeholder::after {
  content: '📷  Afbeelding (optioneel)';
}

.article-body figcaption {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--teal);
  margin-top: 12px;
  text-align: center;
  opacity: 0.8;
}

/* Next/prev navigation */
.article-nav {
  background: var(--paper-warm);
  padding: 80px 48px;
  border-top: 1px solid rgba(29,107,143,0.15);
}

.article-nav .container {
  max-width: 980px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.article-nav a {
  text-decoration: none;
  color: inherit;
  padding: 32px;
  background: var(--paper);
  border-radius: 2px;
  transition: transform 0.4s, box-shadow 0.4s;
  display: block;
}

.article-nav a:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 10px 0 rgba(20,53,74,0.15);
}

.article-nav a.next { text-align: right; }
.article-nav a.prev { text-align: left; }

.article-nav .nav-label {
  font-family: 'Fraunces', serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
  display: block;
}

.article-nav .nav-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--teal-deep);
  letter-spacing: -0.01em;
}

.article-nav .nav-title em {
  font-style: italic;
  color: var(--teal);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  nav ul { display: none; }
  section { padding: 100px 24px; }
  .hero { grid-template-columns: 1fr; padding: 120px 24px 60px; text-align: left; }
  .hero-content { padding-left: 0; padding-top: 0; }
  .manifesto .container,
  .author .container { grid-template-columns: 1fr; gap: 48px; }
  .themes-grid { grid-template-columns: 1fr; }
  .entries-grid { grid-template-columns: 1fr; gap: 32px; }
  .dagboek-preview::before { font-size: 160px; }
  .dagboek-header { padding: 140px 24px 80px; }
  .dagboek-list { padding: 80px 24px; }
  .entry-row { grid-template-columns: 1fr; gap: 24px; padding: 32px 0; }
  .article-header { padding: 140px 24px 80px; }
  .article-hero-image { margin: -40px 24px 0; width: auto; }
  .article-body { padding: 60px 24px 100px; }
  .article-body p { font-size: 18px; }
  .article-nav { padding: 48px 24px; }
  .article-nav .container { grid-template-columns: 1fr; }
  .article-nav a.next, .article-nav a.prev { text-align: left; }
  footer .container { grid-template-columns: 1fr; gap: 40px; }
  footer .bottom { flex-direction: column; gap: 12px; }
}
