/* ===============================================================
   Bruiloftzalen.nl
   Ontwerp: diep indigo, messing en jade. Instrument Serif + Manrope.
   =============================================================== */

/* --- Tokens ---------------------------------------------------- */
:root {
  --ink:        #1B1035;
  --ink-2:      #2C1D4A;
  --ink-3:      #3E2B60;
  --paper:      #F4F1F6;
  --wit:        #FFFFFF;
  --brass:      #B8862F;
  --brass-licht:#D9AE5A;
  --jade:       #0E7C7B;
  --jade-donker:#0A5F5E;
  --muted:      #6B6377;
  --muted-licht:#9A93A6;
  --lijn:       rgba(27, 16, 53, 0.13);
  --lijn-licht: rgba(255, 255, 255, 0.16);

  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --breed:  1240px;
  --smal:   720px;
  --radius: 3px;
}

/* --- Basis ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.2rem; }

p { margin: 0 0 1.1em; max-width: 68ch; }

.wrap {
  width: 100%;
  max-width: var(--breed);
  margin-inline: auto;
  padding-inline: 24px;
}

.wrap-smal { max-width: var(--smal); }

.sectie { padding-block: clamp(56px, 8vw, 96px); }
.sectie-kort { padding-block: clamp(36px, 5vw, 56px); }

.overslaan {
  position: absolute; left: -9999px;
  background: var(--ink); color: var(--wit);
  padding: 12px 20px; z-index: 999;
}
.overslaan:focus { left: 16px; top: 16px; }

:focus-visible {
  outline: 2px solid var(--jade);
  outline-offset: 3px;
}

/* --- Knoppen --------------------------------------------------- */
.knop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: background-color .16s ease, color .16s ease, border-color .16s ease;
}

.knop-primair { background: var(--jade); color: var(--wit); }
.knop-primair:hover { background: var(--jade-donker); }

.knop-rand { background: transparent; color: var(--ink); border-color: var(--lijn); }
.knop-rand:hover { border-color: var(--ink); }

.knop-licht { background: var(--wit); color: var(--ink); }
.knop-licht:hover { background: var(--brass-licht); }

.knop-op-donker { background: transparent; color: var(--wit); border-color: var(--lijn-licht); }
.knop-op-donker:hover { border-color: var(--brass-licht); color: var(--brass-licht); }

/* ===============================================================
   KOP
   =============================================================== */
.kop {
  background: var(--ink);
  color: var(--wit);
  position: relative;
  z-index: 20;
}

.kop-binnen {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  text-decoration: none;
  color: var(--wit);
  letter-spacing: -0.015em;
  white-space: nowrap;
}
.logo span { color: var(--brass-licht); }

.hoofdmenu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hoofdmenu a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.hoofdmenu a:hover,
.hoofdmenu a[aria-current="page"] {
  color: var(--wit);
  border-bottom-color: var(--brass);
}

.menu-knop {
  display: none;
  background: none;
  border: 1px solid var(--lijn-licht);
  border-radius: var(--radius);
  color: var(--wit);
  padding: 9px 14px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 900px) {
  .menu-knop { display: block; }
  .hoofdmenu {
    display: none;
    position: absolute;
    inset-inline: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink-2);
    padding: 8px 24px 20px;
    border-top: 1px solid var(--lijn-licht);
  }
  .hoofdmenu.open { display: flex; }
  .hoofdmenu li { border-bottom: 1px solid var(--lijn-licht); }
  .hoofdmenu li:last-child { border-bottom: 0; }
  .hoofdmenu a { display: block; padding: 14px 0; border-bottom: 0; }
}

/* ===============================================================
   HERO
   =============================================================== */
.hero {
  background: var(--ink);
  color: var(--wit);
  position: relative;
  overflow: hidden;
  padding-block: clamp(64px, 10vw, 116px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 46px, rgba(184,134,47,.14) 46px 47px),
    repeating-linear-gradient(-45deg, transparent 0 46px, rgba(184,134,47,.14) 46px 47px);
  opacity: .8;
  pointer-events: none;
}

.hero-binnen { position: relative; z-index: 1; max-width: 940px; }

.hero h1 {
  margin-bottom: 20px;
  max-width: 15ch;
}

.hero-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: rgba(255,255,255,0.78);
  max-width: 56ch;
  margin-bottom: 34px;
}

/* Zoekbalk */
.zoekbalk {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 1px;
  background: var(--lijn-licht);
  border: 1px solid var(--lijn-licht);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 880px;
}

.zoekveld { background: var(--ink-2); padding: 12px 16px; }

.zoekveld label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brass-licht);
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.zoekveld input,
.zoekveld select {
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--wit);
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 500;
  padding: 2px 0;
}
.zoekveld input::placeholder { color: rgba(255,255,255,0.42); }
/* Opties en groepslabels altijd donker op wit.
   Browsers stylen optgroup anders dan option: het groepslabel erft de witte
   tekstkleur van het zoekveld en valt dan weg tegen een witte achtergrond.
   Daarom hier expliciet afgedwongen. */
.zoekveld select option,
.zoekveld select optgroup,
.veld select option,
.veld select optgroup {
  background-color: #FFFFFF !important;
  color: #1B1035 !important;
}

.zoekveld select optgroup,
.veld select optgroup {
  font-weight: 700 !important;
  font-style: normal !important;
}

.zoekveld select optgroup option,
.veld select optgroup option { font-weight: 400 !important; }
.zoekveld input:focus, .zoekveld select:focus { outline: none; }
.zoekveld:focus-within { background: var(--ink-3); }

.zoekbalk button {
  border: 0;
  background: var(--brass);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  padding-inline: 30px;
  cursor: pointer;
  transition: background-color .15s ease;
}
.zoekbalk button:hover { background: var(--brass-licht); }

@media (max-width: 760px) {
  .zoekbalk { grid-template-columns: 1fr; }
  .zoekbalk button { padding-block: 15px; }
}

/* Culturen direct onder de zoekbalk */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.chip {
  display: inline-block;
  font-size: 0.87rem;
  font-weight: 600;
  text-decoration: none;
  padding: 7px 15px;
  border: 1px solid var(--lijn-licht);
  border-radius: 100px;
  color: rgba(255,255,255,0.85);
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.chip:hover { background: var(--brass); border-color: var(--brass); color: var(--ink); }

/* ===============================================================
   SECTIEKOPPEN
   =============================================================== */
.sectiekop {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--lijn);
  padding-bottom: 16px;
  margin-bottom: 34px;
}
.sectiekop h2 { margin: 0; }
.sectiekop p { margin: 8px 0 0; color: var(--muted); font-size: 0.97rem; max-width: 52ch; }

.sectiekop-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--jade);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
}
.sectiekop-link:hover { border-bottom-color: var(--jade); }

@media (max-width: 640px) {
  .sectiekop { flex-direction: column; align-items: flex-start; }
}

/* ===============================================================
   ZAALKAARTEN
   =============================================================== */
.zalen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 28px;
}

.zaal-kaart {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color .16s ease, transform .16s ease;
}
.zaal-kaart:hover { border-color: var(--ink); transform: translateY(-2px); }

.zaal-beeld {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--ink);
  overflow: hidden;
}
.zaal-beeld img,
.zaal-beeld .patroon { width: 100%; height: 100%; object-fit: cover; }

.zaal-vlag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--brass);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  border-radius: 2px;
}

.zaal-body {
  padding: 20px 20px 0;
  flex: 1;
}

.zaal-plaats {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--jade);
  margin-bottom: 4px;
}

.zaal-naam {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.12;
  margin: 0 0 8px;
}

.zaal-kort {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 16px;
}

/* De capaciteit is het eerste waar deze doelgroep op kijkt */
.zaal-cijfers {
  display: flex;
  align-items: baseline;
  gap: 10px;
  border-top: 1px solid var(--lijn);
  padding: 14px 20px;
}

.cap-getal {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.cap-label {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.25;
}

.zaal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 20px 18px;
}

.tag {
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 10px;
  border: 1px solid var(--lijn);
  border-radius: 100px;
  color: var(--muted);
  white-space: nowrap;
}
.tag-sterk { border-color: var(--jade); color: var(--jade); }

/* ===============================================================
   KENMERKENBLOK
   =============================================================== */
.kenmerken-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: var(--lijn);
  border: 1px solid var(--lijn);
}

.kenmerk-kaart {
  background: var(--paper);
  padding: 26px 24px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: background-color .16s ease;
}
.kenmerk-kaart:hover { background: var(--wit); }

.kenmerk-aantal {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brass);
  margin-bottom: 8px;
}

.kenmerk-kaart h3 { font-size: 1.28rem; margin-bottom: 6px; }
.kenmerk-kaart p { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* ===============================================================
   CULTURENBLOK
   =============================================================== */
.culturen-lijst {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.cultuur-kaart {
  display: grid;
  grid-template-columns: 96px 1fr;
  background: var(--wit);
  border: 1px solid var(--lijn);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: border-color .16s ease;
}
.cultuur-kaart:hover { border-color: var(--ink); }
.cultuur-kaart .patroon { width: 96px; height: 100%; }
.cultuur-kaart-tekst { padding: 18px 20px; }
.cultuur-kaart h3 { font-size: 1.3rem; margin-bottom: 4px; }
.cultuur-kaart p { font-size: 0.88rem; color: var(--muted); margin: 0; }

/* ===============================================================
   ZAALDETAIL
   =============================================================== */
.kruimels {
  font-size: 0.85rem;
  color: var(--muted);
  padding-block: 20px 0;
}
.kruimels a { color: var(--muted); text-decoration: none; }
.kruimels a:hover { color: var(--ink); text-decoration: underline; }
.kruimels span { margin-inline: 6px; color: var(--muted-licht); }

.detail-kop { padding-block: 28px 34px; }
.detail-kop h1 { margin-bottom: 10px; }

.detail-plaats {
  font-size: 1rem;
  font-weight: 600;
  color: var(--jade);
  margin-bottom: 14px;
}

.detail-galerij {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  margin-bottom: 44px;
}
.detail-galerij > * { aspect-ratio: 16 / 10; overflow: hidden; background: var(--ink); }
.detail-galerij-zij { display: grid; gap: 12px; }
.detail-galerij-zij > * { aspect-ratio: 16 / 9; overflow: hidden; background: var(--ink); }

@media (max-width: 760px) {
  .detail-galerij { grid-template-columns: 1fr; }
  .detail-galerij-zij { grid-template-columns: 1fr 1fr; }
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 56px;
  align-items: start;
  padding-bottom: 72px;
}

@media (max-width: 940px) {
  .detail-layout { grid-template-columns: 1fr; gap: 40px; }
}

.detail-tekst h2 { font-size: 1.7rem; margin-top: 40px; }
.detail-tekst h2:first-child { margin-top: 0; }
.detail-tekst p { line-height: 1.72; }

/* Feitentabel */
.feiten {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 8px;
}
.feiten th, .feiten td {
  text-align: left;
  padding: 12px 0;
  border-bottom: 1px solid var(--lijn);
  font-size: 0.95rem;
  vertical-align: top;
}
.feiten th { font-weight: 600; color: var(--muted); width: 45%; }
.feiten td { font-weight: 600; }

/* Voorzieningen */
.voorzieningen {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 2px 24px;
}
.voorzieningen li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--lijn);
}
.voorzieningen li::before {
  content: "";
  position: absolute;
  left: 2px; top: 17px;
  width: 8px; height: 8px;
  background: var(--brass);
  transform: rotate(45deg);
}

/* Zijbalk */
.zijbalk {
  position: sticky;
  top: 24px;
  background: var(--wit);
  border: 1px solid var(--lijn);
  padding: 26px 24px;
}
.zijbalk h3 { font-size: 1.35rem; margin-bottom: 6px; }
.zijbalk p { font-size: 0.9rem; color: var(--muted); }

.zijbalk-cap {
  border-top: 1px solid var(--lijn);
  border-bottom: 1px solid var(--lijn);
  padding: 18px 0;
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.zijbalk-cap .cap-getal { font-size: 2.4rem; }

/* ===============================================================
   FORMULIEREN
   =============================================================== */
.formulier { display: grid; gap: 18px; }

.veld label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.veld input,
.veld select,
.veld textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.97rem;
  padding: 12px 14px;
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  background: var(--wit);
  color: var(--ink);
}
.veld textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.veld input:focus, .veld select:focus, .veld textarea:focus {
  outline: none;
  border-color: var(--jade);
  box-shadow: 0 0 0 3px rgba(14,124,123,.14);
}

.veld-rij { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .veld-rij { grid-template-columns: 1fr; } }

.veld-hulp { font-size: 0.84rem; color: var(--muted); margin-top: 5px; }

.honeypot { position: absolute; left: -9999px; }

.melding {
  padding: 16px 20px;
  border-left: 3px solid var(--jade);
  background: var(--wit);
  margin-bottom: 26px;
  font-size: 0.95rem;
}
.melding-fout { border-left-color: #A8323C; }
.melding p:last-child { margin-bottom: 0; }

/* Keuzevakjes */
.vakjes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 4px 20px;
}
.vakje {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.92rem;
  padding: 6px 0;
  cursor: pointer;
}
.vakje input { width: 17px; height: 17px; margin-top: 3px; flex: none; accent-color: var(--jade); }

/* ===============================================================
   FILTERBALK OP OVERZICHTSPAGINA
   =============================================================== */
.filterbalk {
  background: var(--wit);
  border: 1px solid var(--lijn);
  padding: 20px 22px;
  margin-bottom: 34px;
}

.filterbalk-rij {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)) auto;
  gap: 14px;
  align-items: end;
}

.filter-actief {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--lijn);
}

.filter-pil {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  font-weight: 600;
  background: var(--ink);
  color: var(--wit);
  padding: 5px 8px 5px 12px;
  border-radius: 100px;
  text-decoration: none;
}
.filter-pil b { font-weight: 800; opacity: .7; }

.resultaat-telling {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 22px;
}
.resultaat-telling strong { color: var(--ink); }

.geen-resultaat {
  background: var(--wit);
  border: 1px solid var(--lijn);
  padding: 48px 32px;
  text-align: center;
}
.geen-resultaat h3 { margin-bottom: 8px; }
.geen-resultaat p { margin-inline: auto; color: var(--muted); }

/* ===============================================================
   LANDINGSPAGINA'S
   =============================================================== */
.landing-kop {
  background: var(--ink);
  color: var(--wit);
  padding-block: clamp(48px, 7vw, 76px);
  position: relative;
  overflow: hidden;
}
.landing-kop::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 46px, rgba(184,134,47,.13) 46px 47px);
  pointer-events: none;
}
.landing-kop .wrap { position: relative; z-index: 1; }
.landing-kop h1 { max-width: 18ch; margin-bottom: 16px; }
.landing-kop p { color: rgba(255,255,255,0.78); max-width: 62ch; font-size: 1.05rem; }
.landing-kop .kruimels { color: rgba(255,255,255,0.6); padding-top: 0; }
.landing-kop .kruimels a { color: rgba(255,255,255,0.6); }
.landing-kop .kruimels a:hover { color: var(--wit); }

/* Aandachtspunten */
.letop {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-top: 3px solid var(--brass);
  padding: 32px 34px;
}
.letop h2 { font-size: 1.6rem; margin-bottom: 18px; }
.letop ol { margin: 0; padding-left: 22px; }
.letop li { margin-bottom: 12px; padding-left: 6px; line-height: 1.6; }
.letop li::marker { color: var(--brass); font-weight: 700; }

/* ===============================================================
   GIDSEN
   =============================================================== */
.gids-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: var(--lijn);
  border: 1px solid var(--lijn);
}

.gids-kaart {
  background: var(--paper);
  padding: 28px 26px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: background-color .16s ease;
}
.gids-kaart:hover { background: var(--wit); }

.gids-meta {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--brass);
  margin-bottom: 10px;
}
.gids-kaart h3 { font-size: 1.35rem; margin-bottom: 8px; }
.gids-kaart p { font-size: 0.92rem; color: var(--muted); margin: 0; }

/* Artikelpagina */
.artikel { max-width: 68ch; }
.artikel h2 {
  font-size: 1.75rem;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--lijn);
}
.artikel h2:first-of-type { margin-top: 8px; }
.artikel p { line-height: 1.75; font-size: 1.04rem; }

.artikel-lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--ink-3);
  border-left: 3px solid var(--brass);
  padding-left: 20px;
  margin-bottom: 36px;
}

/* ===============================================================
   VOETTEKST
   =============================================================== */
.voet {
  background: var(--ink);
  color: rgba(255,255,255,0.68);
  padding-block: 64px 32px;
  font-size: 0.9rem;
}

.voet-kolommen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 36px 32px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--lijn-licht);
}

.voet h4 {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--brass-licht);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.voet ul { list-style: none; margin: 0; padding: 0; }
.voet li { margin-bottom: 8px; line-height: 1.4; }
.voet a { color: rgba(255,255,255,0.68); text-decoration: none; }
.voet a:hover { color: var(--brass-licht); }

.voet-onder {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-top: 26px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.voet-onder ul { display: flex; gap: 20px; flex-wrap: wrap; }
.voet-onder li { margin: 0; }

/* Brede linkbak voor de combinatiepagina's */
.linkbak {
  padding-block: 40px;
  border-bottom: 1px solid var(--lijn-licht);
}
.linkbak h4 { margin-bottom: 14px; }
.linkbak-lijst {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}
.linkbak-lijst li { margin: 0; }
.linkbak-lijst li:not(:last-child)::after {
  content: "·";
  margin-inline: 10px;
  color: rgba(255,255,255,0.3);
}
.linkbak-lijst a { font-size: 0.87rem; }

/* ===============================================================
   OPROEPBLOK
   =============================================================== */
.oproep {
  background: var(--jade);
  color: var(--wit);
  padding-block: clamp(48px, 7vw, 76px);
}
.oproep h2 { color: var(--wit); max-width: 20ch; }
.oproep p { color: rgba(255,255,255,0.86); max-width: 54ch; }
.oproep .knop-licht { margin-top: 12px; }

/* ===============================================================
   ADMIN
   =============================================================== */
.admin-body { background: var(--paper); }

.admin-kop {
  background: var(--ink);
  color: var(--wit);
  padding-block: 18px;
  margin-bottom: 36px;
}
.admin-kop .wrap { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.admin-kop a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.92rem; font-weight: 600; }
.admin-kop a:hover { color: var(--wit); }
.admin-nav { display: flex; gap: 22px; }

.admin-tabel { width: 100%; border-collapse: collapse; background: var(--wit); border: 1px solid var(--lijn); }
.admin-tabel th, .admin-tabel td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--lijn); font-size: 0.92rem; }
.admin-tabel th { background: var(--paper); font-weight: 700; font-size: 0.82rem; }
.admin-tabel tr:last-child td { border-bottom: 0; }
.admin-tabel a { color: var(--jade); font-weight: 600; }

.inlog {
  max-width: 400px;
  margin: 90px auto;
  background: var(--wit);
  border: 1px solid var(--lijn);
  padding: 38px 34px;
}
.inlog h1 { font-size: 2rem; margin-bottom: 6px; }
.inlog p { color: var(--muted); font-size: 0.92rem; }

/* ===============================================================
   BEWEGING
   =============================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .zaal-kaart:hover { transform: none; }
}

/* --- Print ----------------------------------------------------- */
@media print {
  .kop, .voet, .zijbalk, .oproep { display: none; }
  body { background: #fff; }
}

/* --- Locatietypes, steden en chiprijen ------------------------- */
.sectie-alt { background: var(--wit); border-top: 1px solid var(--lijn); }

.sectie-titel {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 20px;
}

.sectie-noot { margin: 18px 0 0; color: var(--muted); font-size: 0.95rem; }
.sectie-noot a { color: var(--jade-donker); }

.chip-rij {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-licht {
  color: var(--ink);
  border-color: var(--lijn);
  background: var(--wit);
}

.chip-licht:hover { border-color: var(--brass); background: #FFFDF8; }
.chip-meta { color: var(--muted-licht); font-variant-numeric: tabular-nums; }

.type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  background: var(--lijn);
  border: 1px solid var(--lijn);
}

.type-kaart {
  display: block;
  background: var(--wit);
  padding: 28px 26px 24px;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.type-kaart:hover { background: #FFFDF8; }

.type-kaart h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 8px;
}

.type-kaart p { margin: 0 0 16px; color: var(--muted); font-size: 0.95rem; line-height: 1.55; }

.type-kaart-aantal {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--brass);
  border-top: 1px solid var(--brass-licht);
  padding-top: 8px;
  font-variant-numeric: tabular-nums;
}

.steden-blok { margin-bottom: 40px; }

.steden-blok-titel {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--lijn);
}

.steden-blok-titel a { color: inherit; text-decoration: none; }
.steden-blok-titel a:hover { color: var(--jade-donker); }

.steden-lijst {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 4;
  column-gap: 28px;
}

.steden-lijst li { break-inside: avoid; margin-bottom: 4px; }
.steden-lijst a { color: var(--ink); text-decoration: none; font-size: 0.94rem; }
.steden-lijst a:hover { color: var(--jade-donker); text-decoration: underline; }

.steden-lijst-aantal {
  display: inline-block;
  margin-left: 5px;
  font-size: 0.72rem;
  color: var(--wit);
  background: var(--brass);
  border-radius: 2px;
  padding: 0 5px;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 900px) { .steden-lijst { columns: 3; } }
@media (max-width: 640px) { .steden-lijst { columns: 2; } .type-grid { grid-template-columns: 1fr; } }
