/* ==========================================================================
   MIJN VERHAAL — long-form editorial profile
   Reuses the shared design system (styles.css). Page-only styling below.
   ========================================================================== */

/* ---------- hero ---------- */
.story-hero { padding-bottom: 0; }
.story-hero__byline {
  display: block;
  margin-top: clamp(20px, 3vw, 32px);
  color: var(--on-ink-faint);
}
.story-hero__media {
  margin-top: clamp(40px, 6vw, 72px);
  height: clamp(320px, 44vw, 600px);
}
.story-hero__media img { object-position: 50% 22%; }

/* ---------- chapters ---------- */
.chapter { position: relative; }
.chapter__grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(24px, 4vw, 64px);
}
.chapter__col { min-width: 0; }
.chapter--portrait .chapter__grid { grid-template-columns: 200px 1fr 240px; }
.chapter__num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(72px, 8vw, 140px);
  line-height: 0.78;
  color: var(--ink-4);
  user-select: none;
}
.section--paper .chapter__num { color: var(--paper-3); }
.chapter__label {
  display: block;
  color: var(--on-ink-faint);
}
.section--paper .chapter__label { color: var(--on-paper-muted); }

.article {
  max-width: 64ch;
  display: grid;
  gap: 22px;
  font-size: clamp(19px, 1.4vw, 21px);
  line-height: 1.7;
  color: var(--on-ink-muted);
}
.section--paper .article { color: var(--on-paper-muted); }
.article p:first-child { color: var(--on-ink); }
.section--paper .article p:first-child { color: var(--on-paper); }
.article p.dropcap::first-letter {
  float: left;
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--red);
  font-size: 4.4em;
  line-height: 0.76;
  padding: 6px 12px 0 0;
}

/* pivotal inline quote inside a chapter */
.quote-inline {
  margin: 4px 0;
  padding-left: 22px;
  border-left: 2px solid var(--red);
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.3;
  color: var(--on-ink);
}
.section--paper .quote-inline { color: var(--on-paper); }

/* small low-res portrait inset beside a chapter */
.portrait-inset { align-self: start; }
.portrait-inset .photo {
  max-width: 220px;
  aspect-ratio: 276 / 512;
  margin-left: auto;
}
.portrait-inset figcaption {
  margin-top: 12px;
  text-align: right;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-paper-muted);
}

@media (max-width: 1100px) {
  .chapter__grid,
  .chapter--portrait .chapter__grid { grid-template-columns: 96px 1fr; }
  .chapter--portrait .portrait-inset {
    grid-column: 1 / -1;
    margin-top: 32px;
  }
  .portrait-inset .photo { margin-left: 0; max-width: 200px; }
  .portrait-inset figcaption { text-align: left; }
}
@media (max-width: 640px) {
  .chapter__grid { grid-template-columns: 1fr; gap: 20px; }
  .chapter__num { font-size: 64px; }
}

/* ---------- pull quotes (full width) ---------- */
.quote-section .wrap { max-width: 940px; }
.quote {
  margin: 0;
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 50px);
  line-height: 1.2;
}

/* ---------- split (full-height image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(420px, 54vw, 680px);
  background: var(--ink-2);
  border-block: 1px solid var(--line-ink);
}
.split__media { position: relative; overflow: hidden; }
.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  filter: grayscale(1) contrast(1.08);
}
.split__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(32px, 5vw, 88px);
}
.split__text p {
  max-width: 44ch;
  color: var(--on-ink-muted);
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.65;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; min-height: 0; }
  .split__media { height: 58vw; min-height: 280px; }
}

/* ---------- van -> naar ---------- */
.ba-section .wrap { max-width: 1100px; }
.ba {
  max-width: 760px;
  margin-inline: auto;
  aspect-ratio: 1 / 1;
}
.ba__tag--right { left: auto; right: 14px; }

/* ---------- timeline ---------- */
.timeline-section .wrap { max-width: 1240px; }
.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.tl-item { position: relative; padding: 0 clamp(12px, 1.6vw, 24px) 0 0; }
.tl-item__bar {
  position: relative;
  height: 2px;
  background: var(--line-ink);
  margin-bottom: 28px;
  overflow: hidden;
}
.tl-item__bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s var(--ease-in-out);
  transition-delay: calc(var(--d, 0) * 180ms + 150ms);
}
.timeline.is-in .tl-item__bar::after { transform: scaleX(1); }
.tl-item__mark {
  margin-bottom: 16px;
  font-weight: 900;
  font-size: clamp(38px, 3.6vw, 60px);
  line-height: 0.85;
  color: var(--on-ink);
}
.tl-item__mark--dot {
  width: 13px;
  height: 13px;
  margin-bottom: 26px;
  background: var(--red);
  transform: rotate(45deg);
}
.tl-item h3 { font-size: 17px; font-weight: 700; line-height: 1.3; margin-bottom: 8px; }
.tl-item p { font-size: 14px; line-height: 1.6; color: var(--on-ink-muted); max-width: 26ch; }
@media (max-width: 1000px) {
  .timeline { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
}
@media (max-width: 640px) {
  .timeline { grid-template-columns: 1fr 1fr; row-gap: 36px; }
}
@media (max-width: 420px) {
  .timeline { grid-template-columns: 1fr; }
}

/* ---------- vandaag (closing manifesto) ---------- */
.vandaag { overflow: hidden; }
.vandaag__grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(24px, 5vw, 80px);
}
.vandaag__side { display: flex; flex-direction: column; justify-content: space-between; gap: 28px; }
.vandaag__note { font-size: 15px; line-height: 1.55; color: var(--on-paper-muted); max-width: 30ch; }
.vandaag__sig { font-family: var(--f-serif); font-style: italic; font-size: 40px; line-height: 1; }
.vandaag__text {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: clamp(26px, 3.4vw, 52px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 24ch;
}
.vandaag__text p + p { margin-top: 0.75em; }
.vandaag__text .serif { font-size: 1.05em; letter-spacing: -0.01em; }
.vandaag__text .w { opacity: 0.16; transition: opacity 0.35s linear; }
.vandaag__text .w.on { opacity: 1; }
.vandaag__cta { margin-top: clamp(48px, 6vw, 80px); }
@media (max-width: 900px) {
  .vandaag__grid { grid-template-columns: 1fr; }
  .vandaag__side { order: 2; flex-direction: row; align-items: flex-end; flex-wrap: wrap; }
}

.split__title { margin: 4px 0 8px; }
