/* ============================================================
   Vereniging Veteranen Zwolle — Stijlblad
   Eén centraal stijlbestand voor de hele website.
   ============================================================ */

/* ---------- 1. Designtokens (kleuren, fonts, maten) ---------- */
:root {
  /* Kleuren — afgestemd op de huisstijl van veteranenzwolle.nl (blauw / donker / rood) */
  --navy:        #232838;   /* donker: header, footer, hero, koppen */
  --navy-700:    #2c3350;
  --navy-600:    #38427a;
  --navy-500:    #4a59a0;
  --gold:        #3f61a6;   /* zachter blauw accent (rustiger, zelfde sfeer) */
  --gold-dark:   #2f4a86;   /* donkerder blauw voor tekst/hover op lichte vlakken */
  --gold-soft:   #c7d4ec;   /* licht blauw voor accenten op donkere vlakken */
  --cream:       #f6f3ec;   /* warme, lichte achtergrond voor afwisselende secties */
  --cream-2:     #ece4d6;
  --ink:         #262320;    /* warm donker voor tekst */
  --muted:       #6c645a;    /* warm grijs */
  --line:        #e7e0d4;    /* warme lichte rand */
  --white:       #ffffff;
  --red:         #b23a48;    /* gedempt rood (herdenking) */
  --green-ok:    #2f7d52;
  --shadow-sm:   0 1px 3px rgba(35,40,56,.08), 0 1px 2px rgba(35,40,56,.06);
  --shadow-md:   0 6px 18px rgba(35,40,56,.10);
  --shadow-lg:   0 18px 40px rgba(35,40,56,.16);

  /* Typografie */
  --font-head: "Oswald", "Arial Narrow", Impact, sans-serif;
  --font-body: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Maatvoering */
  --container: 1160px;
  --radius:    12px;
  --radius-sm: 8px;
  --gap:       clamp(1rem, 2vw, 1.6rem);
}

/* ---------- 2. Basis / reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-600); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: .01em;
  color: var(--navy);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); }
p  { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.3rem; }
li { margin-bottom: .35rem; }
hr { border: none; border-top: 1px solid var(--line); margin: 2rem 0; }
strong { font-weight: 700; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

/* Skip-link voor toegankelijkheid */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--navy); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- 3. Layout-hulpmiddelen ---------- */
.container { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(2.6rem, 6vw, 4.8rem) 0; }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: #e8edf4; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.section--tight { padding-block: clamp(1.8rem, 4vw, 2.8rem); }
.center { text-align: center; }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 60ch; }
.center .lead { margin-inline: auto; }
.muted { color: var(--muted); }
.mt-0{margin-top:0}.mb-0{margin-bottom:0}

/* Sectiekop */
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: .6rem;
  display: inline-block;
}
.section--navy .eyebrow { color: var(--gold-soft); }
.section-head { max-width: 64ch; margin-bottom: clamp(1.6rem, 3vw, 2.6rem); }
.section-head.center { margin-inline: auto; }

/* Rasters */
.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- 4. Knoppen ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 500; letter-spacing: .03em;
  font-size: 1rem; text-transform: uppercase;
  padding: .8rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: all .18s ease; text-decoration: none; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--gold-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--gold); color: #fff; }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.5); color:#fff; }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-sm { padding: .5rem 1rem; font-size: .85rem; }
.btn-danger { background: var(--red); color:#fff; }
.btn-danger:hover { background:#7c2625; color:#fff; }

/* ---------- 5. Header / navigatie ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(35,40,56,.98);
  color: #fff;
  border-bottom: 3px solid var(--gold);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .6rem 0; min-height: 68px;
}
.brand { display: flex; align-items: center; gap: .7rem; color: #fff; text-decoration: none; flex: none; }
.brand:hover { text-decoration: none; }
.brand__logo { width: 50px; height: 50px; flex: none; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; letter-spacing: .02em; line-height: 1.05; color: #fff; white-space: nowrap; }
@media (max-width: 400px) {
  .brand__name { font-size: .95rem; white-space: normal; line-height: 1; }
  .brand__logo { width: 40px; height: 40px; }
}
.brand__sub  { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-soft); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: .2rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: block; color: #dfe6f0; font-family: var(--font-head); font-weight: 400;
  text-transform: uppercase; letter-spacing: .04em; font-size: .95rem;
  padding: .55rem .8rem; border-radius: 7px; text-decoration: none; transition: background .15s, color .15s;
}
.nav-links a:hover { background: rgba(255,255,255,.1); color: #fff; }
.nav-links a.active { color: #fff; background: var(--gold); }

/* dropdown */
.has-sub { position: relative; }
.has-sub > .submenu {
  position: absolute; top: 100%; left: 0; min-width: 230px;
  background: #fff; border-radius: 10px; box-shadow: var(--shadow-lg);
  padding: .4rem; list-style: none; margin: .4rem 0 0;
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .16s ease;
  border: 1px solid var(--line);
}
.has-sub:hover > .submenu, .has-sub:focus-within > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { color: var(--ink); border-radius: 6px; }
.submenu a:hover { background: var(--cream); color: var(--navy); }

.nav-toggle {
  display: none; background: transparent; border: 2px solid rgba(255,255,255,.4);
  color: #fff; border-radius: 8px; padding: .45rem .6rem; cursor: pointer;
}
.nav-toggle svg { display:block; }

@media (max-width: 1180px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 68px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--navy-700); padding: .6rem 1.2rem 1.4rem; gap: 0;
    max-height: calc(100vh - 68px); overflow-y: auto;
    transform: translateY(-130%); transition: transform .25s ease; box-shadow: var(--shadow-lg);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: .85rem .4rem; border-bottom: 1px solid rgba(255,255,255,.08); border-radius: 0; }
  .has-sub > .submenu {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    background: transparent; border: none; padding: 0 0 0 1rem; margin: 0;
  }
  .submenu a { color: #c9d4e2; }
  .submenu a:hover { background: rgba(255,255,255,.08); color:#fff; }
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(35,40,56,.82) 0%, rgba(35,40,56,.92) 100%),
    radial-gradient(circle at 80% -10%, var(--navy-500), var(--navy) 60%);
}
.hero__pattern { position: absolute; inset: 0; opacity: .12; pointer-events: none; }
.hero__inner { position: relative; padding: clamp(3.2rem, 9vw, 7rem) 0; max-width: 760px; }
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero .lead { color: #d8e0ec; font-size: clamp(1.1rem, 2.4vw, 1.4rem); }
.hero__meta { display: flex; flex-wrap: wrap; gap: 1.4rem; margin: 1.6rem 0 2rem; }
.hero__meta div { display:flex; align-items:center; gap:.55rem; font-family: var(--font-head); letter-spacing:.04em; text-transform: uppercase; font-size:.9rem; color: var(--gold-soft); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; }
.page-hero { padding: clamp(2.4rem, 6vw, 4rem) 0 clamp(2rem, 4vw, 3rem); }
.page-hero .breadcrumb { color: var(--gold-soft); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; font-family: var(--font-head); margin-bottom: .6rem; }
.page-hero .breadcrumb a { color: var(--gold-soft); }

/* ---------- 7. Kaarten ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
a.card, a.card:hover { text-decoration: none; }
a.card .card__media { display: block; }
a.card .card__title { color: var(--navy); }
.card__media { aspect-ratio: 16 / 10; background: var(--navy-700); position: relative; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.card__date { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; color: var(--gold-dark); margin-bottom: .4rem; }
.card__title { font-size: 1.25rem; margin-bottom: .5rem; }
.card__title a { color: var(--navy); }
.card__excerpt { color: var(--muted); margin-bottom: 1rem; flex: 1; }
.card__desc { color: var(--muted); font-size: .92rem; line-height: 1.45; margin-bottom: .7rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card__more { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .05em; font-size: .85rem; color: var(--gold-dark); font-weight: 500; margin-top: auto; }

/* Placeholder-illustratie binnen media */
.media-fallback {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy-600), var(--navy));
  color: rgba(255,255,255,.6);
}
.media-fallback svg { width: 56px; height: 56px; opacity: .7; }

/* ---------- 8. Bestuur / personen ---------- */
.person { text-align: center; background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1rem 1.6rem; box-shadow: var(--shadow-sm); }
.person__avatar {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto .8rem;
  display: grid; place-items: center; background: var(--navy); color: var(--gold-soft);
  font-family: var(--font-head); font-size: 1.7rem; letter-spacing: .02em;
}
.person__avatar { overflow: hidden; padding: 0; }
.person__avatar img { width: 100%; height: 100%; object-fit: cover; }
.person__name { font-family: var(--font-head); font-size: 1.2rem; color: var(--navy); margin-bottom: .15rem; }
.person__role { color: var(--muted); font-size: .95rem; }

/* ---------- 9. Agenda / evenementen ---------- */
.event {
  display: grid; grid-template-columns: 92px 1fr; gap: 1.2rem; align-items: stretch;
  background:#fff; border:1px solid var(--line);
  border-radius: var(--radius); padding: 1.1rem 1.3rem; box-shadow: var(--shadow-sm);
}
.event__date {
  text-align: center; background: var(--navy); color:#fff; border-radius: var(--radius-sm);
  padding: .6rem .2rem; align-self: center;
}
.event__day  { font-family: var(--font-head); font-size: 2rem; line-height: 1; }
.event__mon  { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; color: var(--gold-soft); }
.event__yr   { font-size: .72rem; color: #b9c4d4; }
.event__body h3 { margin-bottom: .25rem; }
.event__meta { display:flex; flex-wrap:wrap; gap: .4rem 1.2rem; color: var(--muted); font-size: .92rem; }
.event__meta span { display:inline-flex; align-items:center; gap:.4rem; }
.tag { display:inline-block; font-family:var(--font-head); text-transform:uppercase; letter-spacing:.06em; font-size:.72rem; padding:.2rem .6rem; border-radius:999px; background: var(--cream-2); color: var(--navy-700); }
.tag--herdenking { background: #f0dcdc; color: var(--red); }

/* ---------- 10. Links- & sponsorkaarten ---------- */
.linklist { display:grid; gap:.6rem; }
.linkrow {
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-sm);
  padding: .9rem 1.1rem; box-shadow: var(--shadow-sm); transition: border-color .15s, transform .15s;
}
.linkrow:hover { border-color: var(--gold); transform: translateX(3px); text-decoration:none; }
.linkrow span { font-weight: 600; color: var(--navy); }
.linkrow small { color: var(--muted); }
.linkrow .arr { color: var(--gold-dark); font-size: 1.2rem; }

.sponsor {
  display:grid; place-items:center; text-align:center; gap:.6rem;
  background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.2rem; box-shadow: var(--shadow-sm); min-height: 150px; transition: transform .15s, box-shadow .15s;
}
.sponsor:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sponsor__mark {
  font-family: var(--font-head); font-size: 1.5rem; letter-spacing:.03em; color: var(--navy);
  background: var(--cream); border:1px dashed var(--gold); border-radius: 10px; padding: .8rem 1.2rem;
}
.sponsor__name { font-weight:600; color: var(--navy); }
.sponsor img { max-height: 74px; max-width: 88%; object-fit: contain; }

/* ---------- 11. Artikel / losse pagina ---------- */
.prose { max-width: 72ch; }
.prose img { border-radius: var(--radius); margin: 1.4rem 0; box-shadow: var(--shadow-sm); }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose blockquote {
  margin: 1.4rem 0; padding: .6rem 1.2rem; border-left: 4px solid var(--gold);
  background: var(--cream); color: var(--navy-700); font-style: italic; border-radius: 0 8px 8px 0;
}
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1.3rem 0; border: 1px solid var(--line); border-radius: var(--radius); }
table.data { border-collapse: collapse; width: 100%; min-width: 720px; font-size: .92rem; }
table.data th, table.data td { text-align: left; vertical-align: top; padding: .7rem .85rem; border-bottom: 1px solid var(--line); }
table.data thead th { background: var(--cream-2); color: var(--navy); font-family: var(--font-head); font-weight: 600; letter-spacing: .02em; }
table.data tbody tr:nth-child(even) { background: var(--cream); }
table.data ul { margin: 0; padding-left: 1.05rem; }
table.data li { margin-bottom: .15rem; }
/* Op telefoon: tabel als kaartjes (label boven elke waarde) i.p.v. zijwaarts scrollen */
@media (max-width: 680px) {
  .table-scroll { overflow: visible; border: none; margin: 1rem 0; }
  table.data { min-width: 0; }
  table.data thead { position: absolute; left: -9999px; }
  table.data tr { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: .3rem 1rem .6rem; margin-bottom: 1rem; }
  table.data tbody tr:nth-child(even) { background: #fff; }
  table.data td { display: block; border: none; border-bottom: 1px solid var(--line); padding: .6rem 0; }
  table.data td:last-child { border-bottom: none; }
  table.data td::before { content: attr(data-label); display: block; font-family: var(--font-head); text-transform: uppercase; font-size: .7rem; letter-spacing: .07em; color: var(--gold-dark); margin-bottom: .25rem; }
}
.article-meta { color: var(--muted); font-size:.95rem; margin-bottom:1.4rem; display:flex; flex-wrap:wrap; gap:.3rem 1rem; }
.article-hero { aspect-ratio: 21/9; border-radius: var(--radius); overflow:hidden; margin-bottom:1.6rem; box-shadow: var(--shadow-md); background: var(--navy-700); }
.article-hero img { width:100%; height:100%; object-fit:cover; }
.gallery { display:grid; grid-template-columns:repeat(auto-fill, minmax(150px, 1fr)); gap:.7rem; margin:1.2rem 0 0; }
.gallery img { width:100%; height:130px; object-fit:cover; border-radius:8px; box-shadow: var(--shadow-sm); transition: opacity .15s; }
.gallery a, .gallery button { cursor: zoom-in; display: block; }
.gallery button { width: 100%; padding: 0; border: 0; background: none; font: inherit; -webkit-appearance: none; appearance: none; }
.gallery a:hover img, .gallery button:hover img { opacity:.9; }
.article-hero img { cursor: zoom-in; }

/* Lightbox (foto's vergroten in een bericht) */
.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(15,18,26,.93); display: none; align-items: center; justify-content: center; padding: 2rem; }
.lightbox.open { display: flex; }
.lightbox__img { max-width: 100%; max-height: 88vh; width: auto; height: auto; object-fit: contain; border-radius: 4px; }
.lightbox__close, .lightbox__nav { position: fixed; background: rgba(255,255,255,.14); border: none; color:#fff; cursor: pointer; border-radius: 50%; width: 48px; height: 48px; font-size: 1.7rem; line-height: 1; display: grid; place-items: center; transition: background .15s; }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.3); }
.lightbox__close { top: 1.1rem; right: 1.1rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 1.1rem; }
.lightbox__nav--next { right: 1.1rem; }
.lightbox__counter { position: fixed; bottom: 1.2rem; left: 50%; transform: translateX(-50%); color:#fff; font-size:.9rem; background: rgba(0,0,0,.45); padding:.3rem .9rem; border-radius: 999px; }
@media (max-width: 600px) { .lightbox { padding: 1rem; } .lightbox__close, .lightbox__nav { width: 42px; height: 42px; } }

/* Fotoarchief: jaartallenbalk */
.jaarbar { position: sticky; top: 0; z-index: 60; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 4px 12px rgba(0,0,0,.05); padding: .6rem 0; }
.jaarbar__scroll { display: flex; gap: .45rem; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 2px; }
.jaar-chip { flex: none; display: inline-flex; align-items: center; gap: .35rem; font-family: var(--font-head); font-size: .92rem; letter-spacing: .03em; color: var(--navy); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .3rem .85rem; transition: border-color .15s, background .15s; }
.jaar-chip small { color: var(--muted); font-size: .75rem; }
.jaar-chip:hover { border-color: var(--gold); background: var(--cream); text-decoration: none; }
button.jaar-chip { cursor: pointer; }
.jaar-chip.is-active { background: var(--gold); border-color: var(--gold); color: #fff; }
.jaar-chip.is-active small { color: rgba(255,255,255,.85); }
.chipbar { display: flex; gap: .45rem; flex-wrap: wrap; margin-bottom: 1.5rem; }

/* Agenda: maandkopjes tussen de items */
.agenda-month { font-size: 1.05rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-dark); margin: 1rem 0 0; padding-bottom: .3rem; border-bottom: 1px solid var(--cream-2); }
.grid .agenda-month:first-child { margin-top: 0; }

/* Cookiemelding */
.cookiebar { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 300; max-width: 760px; margin-inline: auto; background: var(--navy-700); color: #e8edf4; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: 1rem 1.2rem; display: flex; gap: 1rem; align-items: center; justify-content: center; flex-wrap: wrap; box-shadow: var(--shadow-lg); }
.cookiebar p { margin: 0; font-size: .92rem; line-height: 1.5; flex: 1 1 320px; }
.cookiebar a { color: var(--gold-soft); }
.cookiebar .cookie-actions { display: flex; gap: .5rem; flex: none; }
@media (max-width: 520px) { .cookiebar { left: 8px; right: 8px; bottom: 8px; } .cookiebar .cookie-actions { width: 100%; } .cookiebar .cookie-actions .btn { flex: 1; } }

/* ---------- 12. Info / contact-blokken ---------- */
.info-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); height:100%; }
.info-card h3 { display:flex; align-items:center; gap:.6rem; }
.info-card .icon { width: 34px; height:34px; flex:none; color: var(--gold-dark); }
.info-list { list-style:none; padding:0; margin:0; }
.info-list li { display:flex; gap:.7rem; padding:.5rem 0; border-bottom:1px dashed var(--line); min-width:0; }
.info-list li:last-child { border-bottom:none; }
.info-list .lbl { min-width: 92px; flex:none; color: var(--muted); }
.info-list .val { font-weight:600; color: var(--navy); min-width:0; overflow-wrap:anywhere; word-break:break-word; }
.info-list .val a { overflow-wrap:anywhere; word-break:break-word; }
@media (max-width: 380px){ .info-list li { flex-wrap:wrap; gap:.15rem; } .info-list .lbl { min-width:0; } }

.callout {
  background: var(--navy-700); color:#eef2f8; border-radius: var(--radius); padding: 1.6rem 1.8rem;
  display:flex; gap:1.2rem; align-items:center; flex-wrap:wrap; box-shadow: var(--shadow-md);
}
.callout .icon { width:46px; height:46px; color: var(--gold); flex:none; }
.callout strong { color:#fff; }

/* ---------- 13. Formulieren ---------- */
.field { margin-bottom: 1.1rem; }
.field label { display:block; font-weight:600; color: var(--navy); margin-bottom:.35rem; }
.field .hint { font-weight:400; color: var(--muted); font-size:.9rem; }
input[type=text], input[type=email], input[type=date], input[type=time],
input[type=url], input[type=search], input[type=password], select, textarea {
  width:100%; font: inherit; color: var(--ink);
  padding: .7rem .9rem; border:1px solid var(--line); border-radius: var(--radius-sm);
  background:#fff; transition: border-color .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(199,154,75,.2); outline:none; }
textarea { min-height: 160px; resize: vertical; line-height:1.6; }
.form-row { display:grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px){ .form-row { grid-template-columns:1fr; } }

/* ---------- 14. Footer ---------- */
.site-footer { background: var(--navy); color: #c3cdda; padding: clamp(2.6rem,5vw,3.6rem) 0 1.4rem; border-top: 3px solid var(--gold); }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
@media (max-width: 860px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.7rem 2rem; } }
@media (max-width: 560px){
  .footer-grid { grid-template-columns: 1fr; gap: 1.9rem; text-align: center; }
  .footer-brand, .social { justify-content: center; }
  .site-footer p { margin-left: auto; margin-right: auto; max-width: 40ch; }
  .footer-links li { margin-bottom: .55rem; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: .5rem; margin-top: 1.8rem; }
}
.site-footer h4 { color:#fff; text-transform:uppercase; letter-spacing:.08em; font-size: 1rem; margin-bottom: .9rem; }
.site-footer a { color:#c3cdda; }
.site-footer a:hover { color: var(--gold-soft); }
.site-footer a.btn-primary { color:#fff; }
.site-footer a.btn-primary:hover { background: var(--gold-dark); color:#fff; }
.footer-links { list-style:none; padding:0; margin:0; }
.footer-links li { margin-bottom: .45rem; }
.footer-brand { display:flex; align-items:center; gap:.7rem; margin-bottom:1rem; }
.footer-brand svg { width:40px; height:40px; }
.footer-brand img { width:44px; height:44px; object-fit:contain; }
.footer-brand span { font-family: var(--font-head); font-size:1.15rem; color:#fff; text-transform:uppercase; letter-spacing:.04em; }
.social { display:flex; gap:.6rem; margin-top:1rem; }
.social a { width:40px; height:40px; display:grid; place-items:center; border:1px solid rgba(255,255,255,.2); border-radius:50%; color:#fff; transition: all .15s; }
.social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.social svg { width:20px; height:20px; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.12); margin-top:2.2rem; padding-top:1.2rem; display:flex; flex-wrap:wrap; gap:.6rem 1.4rem; justify-content:space-between; font-size:.88rem; color:#9aa7b8; }

/* ---------- 15. Diversen ---------- */
.notice { background: var(--cream); border:1px solid var(--gold-soft); border-radius:8px; padding:1rem 1.2rem; margin-bottom:1.2rem; }
.notice--ok { background:#e9f4ee; border-color:#bfe0cd; }
.notice--warn { background:#fdf3e7; border-color:#f3d8b0; }
.empty-state { text-align:center; color: var(--muted); padding: 2.4rem; border:2px dashed var(--line); border-radius: var(--radius); }
.badge-anchor { scroll-margin-top: 90px; }
.divider-flower { display:block; width:60px; height:auto; margin: 0 auto 1rem; color: var(--gold); }

/* Print */
@media print {
  .site-header, .site-footer, .nav-toggle, .hero__cta { display:none !important; }
  body { font-size: 11pt; }
}
