@font-face { font-family: 'DM Serif Display'; src: url('fonts/dm-serif-display-v17-latin-regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'DM Serif Display'; src: url('fonts/dm-serif-display-v17-latin-italic.woff2') format('woff2'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Anonymous Pro'; src: url('fonts/anonymous-pro-v22-latin-regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Anonymous Pro'; src: url('fonts/anonymous-pro-v22-latin-700.woff2') format('woff2'); font-weight: 700; font-display: swap; }

:root {
  --doek: #101010;
  --papier: #E8E8E6;
  --rood: #D8322A;
  --grijs: #8C8C88;
  --serif: 'DM Serif Display', serif;
  --mono: 'Anonymous Pro', monospace;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--doek);
  color: var(--papier);
  font-family: var(--mono);
  font-size: 1rem;
  line-height: 1.7;
}

::selection { background: var(--rood); color: #fff; }

a { color: var(--papier); }
a:focus-visible { outline: 2px solid var(--rood); outline-offset: 4px; }

.top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 1.2rem clamp(1.25rem, 4vw, 2.5rem);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  mix-blend-mode: difference;
}

.hero { padding: 7rem clamp(1rem, 4vw, 3rem) 0; max-width: 78rem; margin: 0 auto; }
.hero-beeld { position: relative; }
.hero-beeld img {
  width: 100%;
  height: auto;
  display: block;
  border: 14px solid var(--papier);
  border-bottom-width: 60px;
}
.hero-beeld figcaption {
  position: absolute;
  bottom: -46px;
  left: 22px;
  color: var(--doek);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}
.cat-nr { color: var(--rood); font-weight: 700; margin-right: 0.8rem; }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 8vw, 6.8rem);
  line-height: 1.02;
  margin: 4.5rem 0 1.5rem;
  letter-spacing: 0.005em;
}
.hero h1 em { font-style: italic; color: var(--grijs); }
.hero-sub { max-width: 34rem; color: var(--grijs); }

/* Zaal */
.zaal { max-width: 78rem; margin: 0 auto; padding: 6rem clamp(1rem, 4vw, 3rem); }
.stuk { margin-bottom: 6rem; }
.stuk img {
  width: 100%;
  height: auto;
  display: block;
  border: 12px solid var(--papier);
  border-bottom-width: 52px;
}
.stuk { position: relative; }
.stuk figcaption {
  position: absolute;
  bottom: 8px;
  left: 20px;
  color: var(--doek);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}
.rij {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}
.rij .laat { margin-top: 7rem; }

.verantwoording {
  max-width: 44rem;
  margin: 0 auto;
  padding: 2rem clamp(1.25rem, 4vw, 3rem) 4rem;
  border-top: 1px solid #2A2A2A;
}
.verantwoording h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.verantwoording p { color: var(--grijs); }

.colofon {
  max-width: 44rem;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem) 5rem;
  color: var(--grijs);
  font-size: 0.9rem;
}

@media (max-width: 700px) {
  .rij { grid-template-columns: 1fr; }
  .rij .laat { margin-top: 0; }
}
