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

body {
  font-family: 'Barlow', sans-serif;
  background: #f6f2ea;
  color: #111;
  min-height: 100vh;
}

.page {
  max-width: 560px;
  margin: 0 auto;
}

.photo-wrap {
  width: 100%;
  overflow: hidden;
  background: #1a1a1a;
  line-height: 0;
}

.photo-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  filter: var(--img-filter);
}

.hero-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  padding: 3rem;
  background: #1a1a1a;
}

.content-panel {
  display: flex;
  flex-direction: column;
}

.status {
  padding: 1.75rem 1.5rem 1.5rem;
  border-bottom: 1px solid #111;
}

.status-question {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
}

.status-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 14vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: 0.015em;
  color: #111;
}

.status-subline {
  margin-top: 0.9rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #888;
}

.details {
  padding: 0.5rem 1.5rem 0;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid #ddd8ce;
}

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

.detail-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #888;
  flex-shrink: 0;
}

.detail-value {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  font-weight: 500;
  color: #111;
  text-align: right;
}

.cert-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #111;
  margin-top: 0.25rem;
}

.footer-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  color: #888;
  letter-spacing: 0.04em;
}

/* --- Tijdlijn --- */
.reis {
  padding: 1.25rem 1.5rem 0.5rem;
  border-top: 1px solid #111;
}

.reis-title {
  font-family: 'Barlow', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #888;
  margin-bottom: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 20px 5.5rem 1fr;
  gap: 0 0.6rem;
  min-height: 3rem;
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bbb;
  flex-shrink: 0;
  margin-top: 1.85rem;
}

.timeline-dot--active {
  width: 10px;
  height: 10px;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-shadow);
  margin-top: 1.8rem;
}

.timeline-line {
  width: 1px;
  flex: 1;
  background: #ddd8ce;
  margin: 4px 0;
}

.timeline-date {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  color: #555;
  padding-top: 0.9rem;
}

.timeline-day {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  color: #bbb;
  margin-bottom: 0.1rem;
}

.timeline-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 1.75rem;
  padding-bottom: 0.4rem;
}

.timeline-body-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.15rem 0.5rem;
}

.timeline-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #111;
}

.timeline-label--active {
  color: var(--accent);
}

.timeline-detail {
  font-family: 'Barlow', sans-serif;
  font-size: 0.75rem;
  color: #888;
}

@media (min-width: 700px) {
  body {
    height: 100vh;
    overflow: hidden;
  }

  .page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: none;
    height: 100vh;
  }

  .photo-wrap {
    height: 100vh;
  }

  .photo-wrap img {
    height: 100%;
  }

  .hero-emoji {
    height: 100vh;
  }

  .content-panel {
    height: 100vh;
    overflow-y: auto;
    justify-content: space-between;
  }

  .status {
    padding: 2rem 2.5rem 1.5rem;
  }

  .status-headline {
    font-size: clamp(3rem, 5vw, 4.5rem);
  }

  .details {
    padding: 0.25rem 2.5rem 0;
  }

  .cert-footer {
    padding: 1rem 2.5rem;
  }

  .reis {
    padding: 1.25rem 2.5rem 0.5rem;
  }
}
