:root {
  --bg: #f8f8f5;
  --paper: #ffffff;
  --ink: #252820;
  --muted: #6a6f63;
  --shadow: 0 12px 32px rgba(78, 90, 69, .07);
  --max: 1380px;

  /* Vaste kleurstelling voor alle detailpagina's */
  --theme-accent: #6e7a5f;
  --theme-dark: #4e5a45;
  --theme-soft: #f3f5f0;
  --theme-line: rgba(110, 122, 95, .22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.68;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--theme-line);
}

.site-header__inner {
  max-width: var(--max);
  min-height: 68px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-size: .98rem;
  font-weight: 800;
  letter-spacing: -.01em;
}

.brand img,
.footer-brand img {
  flex: 0 0 auto;
}

.brand img {
  width: 34px;
  height: 34px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.langs {
  display: flex;
  gap: 7px;
}

.langs span {
  font-size: 1.1rem;
}

.langs a {
  width: 34px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.08rem;
}

.langs a:hover,
.langs a:focus-visible {
  border-color: var(--theme-line);
  background: var(--theme-soft);
}

.langs a.active {
  border-color: var(--theme-accent);
  background: var(--theme-soft);
}

.map-link {
  padding: 9px 13px;
  border-radius: 8px;
  color: white;
  background: var(--theme-dark);
  text-decoration: none;
  font-size: .86rem;
  font-weight: 700;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  max-width: var(--max);
  margin: 22px auto 0;
  padding: 0 28px;
}

.hero__frame {
  position: relative;
  min-height: 405px;
  overflow: hidden;
  border: 1px solid var(--theme-line);
  border-radius: 14px;
  background: #dfe4da;
  box-shadow: var(--shadow);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.55);
  transform-origin: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(30, 36, 28, .70),
      rgba(30, 36, 28, .27) 48%,
      rgba(30, 36, 28, .06) 75%
    ),
    linear-gradient(0deg, rgba(30, 36, 28, .18), transparent 45%);
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 78px 48px 40px;
  color: white;
}

.hero__kicker {
  margin: 0 0 14px;
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 4.6vw, 4.6rem);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.03em;
}

.hero__summary {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, .94);
  font-size: 1rem;
  line-height: 1.62;
}

.hero__credit {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 3;
}

.hero__credit summary {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  list-style: none;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  font-weight: 800;
}

.hero__credit-panel {
  position: absolute;
  right: 0;
  bottom: 44px;
  width: min(340px, 80vw);
  padding: 14px 16px;
  border: 1px solid var(--theme-line);
  border-radius: 10px;
  background: white;
  box-shadow: var(--shadow);
  font-size: .82rem;
}

.hero__credit-panel p {
  margin: 4px 0;
}

/* =========================================================
   SAMENVATTINGSBALK
   ========================================================= */

.summary-bar {
  max-width: var(--max);
  margin: 14px auto 0;
  padding: 0 28px;
}

.summary-bar__inner {
  display: grid;
  grid-template-columns: 1.2fr 1.1fr 1.2fr auto;
  gap: 20px;
  align-items: stretch;
  padding: 16px 18px;
  border: 1px solid var(--theme-line);
  border-radius: 12px;
  background: white;
  box-shadow: 0 8px 22px rgba(78, 90, 69, .045);
}

.summary-item h2 {
  margin: 0 0 4px;
  color: var(--theme-dark);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.summary-item p {
  margin: 0;
  color: #41463d;
  font-size: .88rem;
  line-height: 1.5;
}

.summary-cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

.summary-cta a {
  min-height: 40px;
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  color: white;
  background: var(--theme-dark);
  text-decoration: none;
  white-space: nowrap;
  font-size: .85rem;
  font-weight: 750;
}

/* =========================================================
   HOOFDINHOUD
   ========================================================= */

.content-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 28px 80px;
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 292px;
  gap: 34px;
  align-items: start;
}

/* Linkerkolom */

.left-column {
  position: sticky;
  top: 16px;
}

.toc {
  padding: 18px;
  border: 1px solid var(--theme-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.toc h2 {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: .74rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.toc a {
  display: block;
  padding: 5px 0;
  color: var(--theme-dark);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.4;
}

.toc a::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 8px;
  display: inline-block;
  border-radius: 50%;
  background: var(--theme-accent);
  transform: translateY(-1px);
}

.toc a:hover {
  text-decoration: underline;
}

.look-tip {
  margin-top: 16px;
  padding: 15px 15px 16px;
  border: 1px solid var(--theme-line);
  border-left: 2px solid var(--theme-accent);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.look-tip h2 {
  margin: 0 0 8px;
  color: var(--theme-dark);
  font-size: .76rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.look-tip p {
  margin: 0;
  font-size: .89rem;
  line-height: 1.58;
}

/* Longread */

.article {
  min-width: 0;
}

.article h2 {
  margin: 0 0 18px;
  color: var(--theme-dark);
  font-size: clamp(1.85rem, 2.7vw, 2.7rem);
  line-height: 1.14;
}

.article h3 {
  margin: 31px 0 8px;
  color: var(--theme-dark);
  font-size: 1.12rem;
  line-height: 1.35;
}

.article p {
  max-width: 72ch;
  margin: 0 0 17px;
  font-size: .98rem;
  line-height: 1.72;
}

/* Rechter informatiekaart */

.info-card {
  position: sticky;
  top: 16px;
  overflow: hidden;
  border: 1px solid var(--theme-line);
  border-radius: 12px;
  background: white;
  box-shadow: var(--shadow);
}

.info-card__image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.info-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-card__body {
  padding: 18px;
}

.info-card h2 {
  margin: 0 0 13px;
  color: var(--theme-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.34rem;
}

.info-section {
  padding: 13px 0;
  border-top: 1px solid var(--theme-line);
}

.info-section:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.info-section h3 {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: .74rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.facts {
  margin: 0;
}

.facts div {
  padding: 4px 0;
  display: grid;
  grid-template-columns: .95fr 1.25fr;
  gap: 10px;
}

.facts dt,
.facts dd {
  font-size: .86rem;
  line-height: 1.45;
}

.facts dt {
  color: var(--muted);
}

.facts dd {
  margin: 0;
  font-weight: 700;
}

.info-button {
  display: block;
  margin-top: 6px;
  padding: 11px 14px;
  border-radius: 8px;
  color: white;
  background: var(--theme-dark);
  text-align: center;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 750;
}

.info-button small {
  display: block;
  margin-top: 2px;
  opacity: .82;
  font-weight: 400;
}

/* Fotocredits kleine afbeelding */

.info-image-credit {
  position: absolute;
  right: 7px;
  bottom: 7px;
  z-index: 3;
}

.info-image-credit summary {
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  list-style: none;
  cursor: pointer;
  border-radius: 50%;
  color: #252820;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 3px 8px rgba(30, 36, 28, .14);
  font-size: .42rem;
  font-weight: 800;
}

.info-image-credit summary::-webkit-details-marker {
  display: none;
}

.info-image-credit__panel {
  position: absolute;
  right: 0;
  bottom: 24px;
  width: min(300px, 76vw);
  padding: 12px 14px;
  border: 1px solid var(--theme-line);
  border-radius: 9px;
  color: var(--ink);
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--shadow);
  font-size: .76rem;
  line-height: 1.45;
}

.info-image-credit__panel p {
  margin: 3px 0;
}

.info-image-credit__panel a {
  color: var(--theme-dark);
}

/* =========================================================
   ONTDEKBLOK
   ========================================================= */

.theme-next {
  padding: 0 28px 62px;
  display: flex;
  justify-content: center;
}

.theme-next__inner {
  width: min(880px, 100%);
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px 34px;
  border: 1px solid var(--theme-line);
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff, var(--theme-soft));
  box-shadow: 0 10px 28px rgba(78, 90, 69, .045);
  text-align: left;
}

.theme-next__inner > * {
  margin-left: 0;
  margin-right: 0;
}

.theme-next__kicker {
  margin: 0 0 6px;
  color: var(--theme-dark);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.theme-next h2 {
  margin: 0 0 8px;
  color: var(--theme-dark);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

.theme-next p {
  max-width: 760px;
  margin: 0 0 16px;
  font-size: .94rem;
}

.theme-next a {
  padding: 9px 13px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  border-radius: 8px;
  color: #fff;
  background: var(--theme-dark);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 750;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  border-top: 1px solid var(--theme-line);
  background: white;
}

.site-footer__inner {
  max-width: var(--max);
  min-height: 78px;
  margin: 0 auto;
  padding: 20px 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  font-size: .88rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 9px;
  text-decoration: none;
  font-size: .92rem;
}

.footer-brand img {
  width: 30px;
  height: 30px;
}

.site-footer nav {
  display: flex;
  justify-self: center;
  justify-content: center;
  gap: 18px;
  font-size: .84rem;
}

.footer-mail {
  justify-self: end;
  color: var(--theme-dark);
  text-decoration: none;
  font-size: .86rem;
  font-weight: 700;
}

.footer-copyright {
  justify-self: end;
  color: var(--muted);
  white-space: nowrap;
  font-size: .86rem;
}

/* =========================================================
   TOEGANKELIJKHEID
   ========================================================= */

a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(110, 122, 95, .45);
  outline-offset: 3px;
  border-radius: 6px;
}

/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1100px) {
  .summary-bar__inner {
    grid-template-columns: 1fr 1fr;
  }

  .content-grid {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .right-column {
    grid-column: 1 / -1;
  }

  .info-card {
    position: static;
  }
}

/* =========================================================
   RESPONSIVE — MOBIEL
   ========================================================= */

@media (max-width: 760px) {
  .site-header__inner {
    min-height: 62px;
    padding: 0 18px;
  }

  .brand span {
    font-size: .9rem;
  }

  .langs {
    gap: 4px;
  }

  .langs a {
    width: 30px;
    height: 26px;
    font-size: 1rem;
  }

  .map-link {
    display: none;
  }

  .hero {
    margin-top: 18px;
    padding: 0 18px;
  }

  .hero__frame {
    min-height: 360px;
  }

  .hero__copy {
    padding: 92px 22px 28px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero__summary {
    font-size: .94rem;
  }

  .summary-bar {
    padding: 0 18px;
  }

  .summary-bar__inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .summary-item {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--theme-line);
  }

  .summary-item:nth-last-of-type(1) {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .summary-cta {
    justify-content: flex-start;
    padding-top: 2px;
  }

  .content-grid {
    display: block;
    padding: 26px 18px 60px;
  }

  .left-column {
    position: static;
  }

  .toc {
    padding-bottom: 14px;
  }

  .article {
    margin: 28px 0;
  }

  .article p {
    max-width: none;
  }

  .info-card {
    margin-top: 8px;
  }

  .theme-next {
    padding: 0 18px 54px;
  }

  .theme-next__inner {
    padding: 24px 22px;
  }

  .site-footer__inner {
    min-height: auto;
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .site-footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 10px;
  }

  .footer-mail,
  .footer-copyright {
    justify-self: auto;
  }
}
