:root {
  --teal: #0F5E5C;
  --teal-dark: #0a4543;
  --cream: #FAF7F2;
  --amber: #E6A23C;
  --amber-soft: #FBEFD3;
  --ink: #1d2b2a;
  --muted: #51635f;
  --line: #e7e1d6;
  --radius: 18px;
  --maxw: 1080px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Nunito', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Baloo 2', 'Nunito', system-ui, sans-serif; line-height: 1.15; color: var(--teal-dark); margin: 0 0 .4em; }
h1 { font-size: clamp(2rem, 5.5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.8vw, 2.1rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
a { color: var(--teal); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
section { padding: clamp(48px, 8vw, 84px) 0; }
.lead { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: var(--muted); max-width: 46ch; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 1.05rem;
  text-decoration: none; padding: 14px 26px; border-radius: 999px;
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--amber); color: #3a2600; box-shadow: 0 6px 18px rgba(230,162,60,.35); }
.btn-primary:hover { box-shadow: 0 8px 22px rgba(230,162,60,.45); }
.btn-ghost { background: transparent; color: var(--cream); border: 2px solid rgba(255,255,255,.5); }
.btn-teal { background: var(--teal); color: #fff; box-shadow: 0 6px 18px rgba(15,94,92,.3); }
.btn-resume { background: #fff; color: var(--teal-dark); box-shadow: 0 6px 18px rgba(0,0,0,.18); }
.btn-resume[hidden] { display: none; }

/* Header */
header.site {
  position: sticky; top: 0; z-index: 10;
  background: rgba(250,247,242,.9); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--teal-dark); text-decoration: none; }
.brand svg { width: 34px; height: 34px; border-radius: 9px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: .98rem; }
.nav-links a.cta { color: #3a2600; background: var(--amber); padding: 9px 18px; border-radius: 999px; }
.nav-links a:not(.cta):hover { color: var(--teal); }
@media (max-width: 760px) { .nav-links a:not(.cta) { display: none; } }

/* Hero */
.hero { background: linear-gradient(160deg, var(--teal) 0%, var(--teal-dark) 100%); color: var(--cream); position: relative; overflow: hidden; }
.hero::after { content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; border: 18px solid rgba(255,255,255,.06); border-radius: 50%; }
.hero h1 { color: #fff; }
.hero .lead { color: rgba(255,255,255,.86); }
.badge { display: inline-flex; align-items: center; gap: 8px; background: var(--amber-soft); color: #6b4a00; font-weight: 700; font-size: .92rem; padding: 7px 15px; border-radius: 999px; margin-bottom: 22px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.trust { margin-top: 22px; font-size: .92rem; color: rgba(255,255,255,.7); }

/* Generic grid of cards */
.grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); margin-top: 36px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.card .num { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: var(--amber-soft); color: #8a5a00; font-family: 'Baloo 2'; font-weight: 700; margin-bottom: 12px; }
.card h3 { margin-bottom: .3em; }
.card p { color: var(--muted); margin: 0; font-size: .98rem; }

.section-alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* USP list */
.usp { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.usp li { display: flex; gap: 12px; align-items: flex-start; }
.usp .check { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center; font-size: 14px; margin-top: 2px; }
.usp strong { display: block; }
.usp span.d { color: var(--muted); font-size: .96rem; }

/* FAQ */
.faq { margin-top: 30px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 4px 22px; margin-bottom: 12px; }
.faq summary { cursor: pointer; font-family: 'Baloo 2', sans-serif; font-weight: 600; font-size: 1.08rem; color: var(--teal-dark); padding: 16px 0; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--amber); line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { color: var(--muted); margin: 0 0 18px; }

/* CTA band */
.cta-band { background: var(--amber-soft); }
.cta-band .inner { text-align: center; }
.cta-band h2 { color: #6b4a00; }

/* Footer */
footer.site { background: var(--teal-dark); color: rgba(255,255,255,.8); padding: 48px 0 36px; }
footer .cols { display: flex; flex-wrap: wrap; gap: 30px 60px; justify-content: space-between; }
footer .brand { color: #fff; }
footer a { color: rgba(255,255,255,.8); text-decoration: none; }
footer a:hover { color: #fff; }
footer .tag { color: rgba(255,255,255,.6); max-width: 34ch; margin-top: 10px; }
footer .legal { margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: .88rem; color: rgba(255,255,255,.55); }
.fcol h4 { color: #fff; font-family: 'Baloo 2'; margin: 0 0 12px; font-size: 1rem; }
.fcol ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: .95rem; }

/* Subpagina's (stad + moment) */
.breadcrumb { font-size: .9rem; color: rgba(255,255,255,.72); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,.9); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.prose { max-width: 68ch; }
.prose p { font-size: 1.06rem; color: var(--ink); }
.prose h2 { margin-top: 1.1em; }
.facts { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.facts li { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; }
.facts b { display: block; font-family: 'Baloo 2', sans-serif; color: var(--teal-dark); font-size: 1.05rem; }
.facts span { color: var(--muted); font-size: .9rem; }
.card-more { margin: 14px 0 0 !important; }
.card-more a { color: #8a5a00; font-weight: 700; text-decoration: none; }
.card-more a:hover { text-decoration: underline; }
