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

:root {
  --bg: #0f0f1a;
  --bg2: #1a1a2e;
  --text: #e8e0d5;
  --muted: #8a8099;
  --accent: #c9a87c;
  --max: 760px;
}

html {
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, 'Times New Roman', serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  width: 100%;
}

/* Header */

header {
  margin-bottom: 3rem;
}

.label {
  font-family: system-ui, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

h1 {
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: normal;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Foto's */

.fotos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

figure {
  overflow: hidden;
  border-radius: 4px;
  background: var(--bg2);
}

figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.foto-groot {
  grid-column: 1;
  aspect-ratio: 3 / 4;
}

.foto-klein {
  grid-column: 2;
  aspect-ratio: 3 / 4;
}

figure:hover img {
  transform: scale(1.03);
}

/* Uitleg */

.uitleg {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.blok h2 {
  font-size: 1rem;
  font-weight: normal;
  font-family: system-ui, sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.blok p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #bfb8ae;
  margin-bottom: 0.8rem;
  max-width: 580px;
}

.subtitel {
  font-family: system-ui, sans-serif;
  font-size: 0.75rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted) !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0.5rem !important;
}

.blok ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 580px;
}

.blok ul li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #bfb8ae;
  padding-left: 1.2rem;
  position: relative;
}

.blok ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--muted);
}

.blok ul li strong {
  color: var(--text);
  font-weight: normal;
}

/* Persona's */

.personas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}

.persona {
  background: var(--bg2);
  border-radius: 4px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.persona-naam {
  font-family: system-ui, sans-serif;
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.03em;
}

.persona-omschrijving {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted);
}

/* Footer */

footer {
  text-align: center;
  padding: 2rem 1.5rem;
  font-family: system-ui, sans-serif;
  font-size: 0.75rem;
  color: var(--muted);
}

footer a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

/* Mobile */

@media (max-width: 480px) {
  .fotos {
    grid-template-columns: 1fr;
  }

  .foto-groot,
  .foto-klein {
    grid-column: 1;
    aspect-ratio: 4 / 3;
  }
}
