:root{
  --primary:#0f172a;
  --accent:#2563eb;
  --bg:#ffffff;
  --fg:#1f2937;
  --muted:#6b7280;
  --surface:#f8fafc;
  --border:#e5e7eb;
  --font: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  --maxw:1120px;
}
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{margin:0;font-family:var(--font);color:var(--fg);background:var(--bg);line-height:1.6}
img{max-width:100%;height:auto;display:block}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}
h1,h2,h3{color:var(--primary);line-height:1.2;margin:0 0 .5em}
h1{font-size:clamp(2rem,5vw,3.25rem)}
h2{font-size:clamp(1.5rem,3vw,2.25rem)}
.container{max-width:var(--maxw);margin:0 auto;padding:0 1.25rem}
.section{padding:4rem 0}
.section--surface{background:var(--surface)}
.btn{display:inline-block;background:var(--accent);color:#fff;padding:.85rem 1.6rem;border-radius:.6rem;font-weight:600;transition:filter .15s}
.btn:hover{filter:brightness(.92);text-decoration:none}
.btn--ghost{background:transparent;color:var(--primary);border:1px solid var(--border)}
/* Header */
.site-header{position:sticky;top:0;z-index:30;background:color-mix(in srgb,var(--bg) 92%,transparent);backdrop-filter:blur(8px);border-bottom:1px solid var(--border)}
.site-header .container{display:flex;align-items:center;justify-content:space-between;min-height:64px}
.brand{display:flex;align-items:center;gap:.6rem;font-weight:700;color:var(--primary);font-size:1.15rem}
.brand img{height:36px;width:auto}
.nav{display:flex;gap:1.4rem;align-items:center}
.nav a{color:var(--primary);font-weight:500}
.nav-toggle{display:none;background:none;border:0;font-size:1.6rem;line-height:1;cursor:pointer;color:var(--primary)}
/* Hero */
.hero{padding:5rem 0;background:linear-gradient(180deg,var(--surface),var(--bg))}
.hero--image{color:#fff;background-size:cover;background-position:center;position:relative}
.hero--image::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.35),rgba(0,0,0,.6))}
.hero--image .container{position:relative}
.hero--image h1,.hero--image p{color:#fff}
.hero p{font-size:1.2rem;color:var(--muted);max-width:48ch}
.hero--image p{color:rgba(255,255,255,.9)}
/* Grids */
.grid{display:grid;gap:1.5rem}
.grid--3{grid-template-columns:repeat(3,1fr)}
.grid--2{grid-template-columns:repeat(2,1fr)}
.card{background:var(--bg);border:1px solid var(--border);border-radius:.9rem;padding:1.5rem}
.gallery img{border-radius:.75rem;width:100%;aspect-ratio:4/3;object-fit:cover}
.quote{font-size:1.1rem;font-style:italic;color:var(--fg)}
.quote-author{margin-top:.75rem;font-weight:600;color:var(--primary);font-style:normal}
.faq-item{border-bottom:1px solid var(--border);padding:1.1rem 0}
.faq-item h3{font-size:1.1rem;margin-bottom:.35rem}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:2rem;align-items:start}
address{font-style:normal;color:var(--muted);line-height:1.9}
.eyebrow{text-transform:uppercase;letter-spacing:.08em;font-size:.8rem;font-weight:700;color:var(--accent)}
/* Footer */
.site-footer{background:var(--primary);color:#cbd5e1;padding:2.5rem 0;margin-top:2rem}
.site-footer a{color:#fff}
.socials{display:flex;gap:1rem;margin-top:.75rem}
@media(max-width:768px){
  .grid--3,.grid--2,.contact-grid{grid-template-columns:1fr}
  .nav-toggle{display:block}
  .nav{display:none;position:absolute;top:64px;left:0;right:0;flex-direction:column;background:var(--bg);border-bottom:1px solid var(--border);padding:1rem 1.25rem}
  .nav.open{display:flex}
}

/* ── Templates (visual skins selected in the editor) ─────────────────────────
   "standaard" is the base style above. The two skins below restyle shape,
   spacing and emphasis without touching the member's colour/font theme. */

/* Modern — bold, spacious, rounded, high-contrast hero. */
[data-template="modern"]{--maxw:1200px}
[data-template="modern"] .section{padding:5.5rem 0}
[data-template="modern"] .hero{padding:7rem 0;background:linear-gradient(135deg,var(--primary),var(--accent));color:#fff}
[data-template="modern"] .hero h1,[data-template="modern"] .hero p{color:#fff}
[data-template="modern"] h1,[data-template="modern"] h2{text-transform:uppercase;letter-spacing:-.01em;font-weight:800}
[data-template="modern"] .btn{border-radius:999px;padding:.95rem 2rem}
[data-template="modern"] .card{border:0;border-radius:1.25rem;box-shadow:0 12px 30px rgba(2,6,23,.08)}
[data-template="modern"] .site-header{min-height:76px}
[data-template="modern"] .gallery img{border-radius:1rem}

/* Klassiek — restrained, squared corners, centered hero, traditional links. */
[data-template="klassiek"] .section{padding:3.5rem 0}
[data-template="klassiek"] .hero{text-align:center;background:var(--surface)}
[data-template="klassiek"] .hero p{margin-left:auto;margin-right:auto}
[data-template="klassiek"] h1,[data-template="klassiek"] h2,[data-template="klassiek"] h3{font-family:Georgia,'Times New Roman',serif}
[data-template="klassiek"] .btn{border-radius:2px}
[data-template="klassiek"] .card{border-radius:2px;border:1px solid var(--border)}
[data-template="klassiek"] .gallery img{border-radius:2px}
[data-template="klassiek"] main a{text-decoration:underline}
[data-template="klassiek"] .site-header{border-bottom-width:2px}