:root{
  --green:#1E3A34; --green-d:#16302A;
  --accent:#B5532A; --accent-d:#99421F;
  --bg:#EBE1CE; --paper:#F2EBDD; --card:#FAF6EC;
  --ink:#211C17; --muted:#6E6354; --hair:#E4DAC4;
  --display:'Newsreader', Georgia, serif;
  --body:'Source Sans 3', system-ui, sans-serif;
}
*{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0; background:var(--bg); color:var(--ink);
  font-family:var(--body); font-size:17px; line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
h1,h2{ font-family:var(--display); color:var(--green); line-height:1.08; margin:0; font-weight:600; }

.page{
  max-width:600px; margin:0 auto;
  padding: clamp(18px,5vw,40px) clamp(14px,4vw,22px) 48px;
}

/* ---------- merk ---------- */
.brand{ display:flex; align-items:center; gap:12px; margin:2px 2px 22px; }
.brand-mark{ width:46px; height:auto; flex:0 0 auto; }
.brand-words{ display:flex; flex-direction:column; line-height:1; }
.brand-name{ font-family:var(--display); font-weight:600; font-size:22px; color:var(--green); }
.brand-tag{ margin-top:5px; font-size:11px; letter-spacing:.13em; text-transform:uppercase; color:var(--muted); font-weight:600; }

/* ---------- hero ---------- */
.hero{
  background:var(--green); border-radius:18px; overflow:hidden;
  box-shadow:0 1px 2px rgba(0,0,0,.06), 0 26px 50px -34px rgba(0,0,0,.7);
  margin-bottom:18px;
}
.hero-in{ display:flex; flex-direction:column; padding: clamp(24px,6vw,40px) clamp(20px,5.5vw,38px) clamp(26px,6vw,40px); }
.hero-cta{ margin-top:2px; }
.kicker{ font-size:12px; letter-spacing:.16em; text-transform:uppercase; color:var(--accent);
  font-weight:700; margin:0 0 14px; }
.hero h1{ color:var(--paper); font-size:clamp(30px,8.5vw,46px); margin:0 0 16px; letter-spacing:-.01em; }
.lead{ color:#D7CDB9; margin:0 0 20px; font-size:clamp(15.5px,2.4vw,17.5px); }

.hero-info{ list-style:none; margin:0 0 20px; padding:0; display:grid; gap:15px; }
.hero-info li{ display:flex; gap:13px; align-items:flex-start; }
.info-ico{ flex:0 0 auto; width:38px; height:38px; border-radius:11px;
  background:rgba(242,235,221,.12); display:flex; align-items:center; justify-content:center; }
.info-ico svg{ width:20px; height:20px; fill:var(--accent); }
.hero-info p{ margin:0; color:#D7CDB9; font-size:14.5px; line-height:1.5; }
.hero-info b{ color:var(--paper); font-weight:600; }

.belofte{ margin:0 0 24px; padding:12px 0 12px 16px; border-left:3px solid var(--accent);
  color:#CFC4AF; font-size:14px; line-height:1.5; }
.belofte b{ color:var(--paper); font-weight:600; }

.hero-cta{ display:flex; flex-wrap:wrap; align-items:center; gap:14px 18px; }
.counter{ display:inline-flex; align-items:center; gap:9px; color:var(--paper); font-size:15px; }
.counter strong{ color:var(--accent); font-weight:700; font-variant-numeric:tabular-nums; }
.counter .dot{ width:8px; height:8px; border-radius:50%; background:var(--accent);
  box-shadow:0 0 0 0 rgba(181,83,42,.55); animation:puls 2.6s ease-out infinite; flex:0 0 auto; }
@keyframes puls{ 0%{ box-shadow:0 0 0 0 rgba(181,83,42,.5);} 70%{ box-shadow:0 0 0 8px rgba(181,83,42,0);} 100%{ box-shadow:0 0 0 0 rgba(181,83,42,0);} }

.hero-motif{ line-height:0; }
.hero-motif svg{ display:block; width:100%; height:26px; }

/* ---------- knop ---------- */
.btn{
  display:inline-block; font-family:var(--body); font-weight:700; font-size:16.5px;
  color:var(--paper); background:var(--accent); border:none; border-radius:999px;
  padding:13px 26px; cursor:pointer; text-decoration:none; text-align:center;
  transition:transform .12s ease, filter .12s ease; -webkit-appearance:none;
}
.btn:hover{ filter:brightness(1.05); transform:translateY(-1px); }
.btn:focus-visible{ outline:3px solid var(--paper); outline-offset:2px; }
.btn-block{ display:block; width:100%; margin-top:4px; }
.btn[disabled]{ opacity:.6; cursor:progress; transform:none; }

/* ---------- aanmeld-card ---------- */
.card{
  background:var(--card); border:1px solid var(--hair); border-radius:16px;
  padding: clamp(20px,5.5vw,32px);
  box-shadow:0 1px 2px rgba(0,0,0,.04), 0 20px 44px -34px rgba(0,0,0,.55);
}
.card h2{ font-size:clamp(21px,4.8vw,27px); margin:0 0 6px; }
.card-sub{ color:var(--muted); margin:0 0 22px; font-size:15.5px; }

.fields{ display:grid; grid-template-columns:1fr; column-gap:16px; }
.field{ margin-bottom:15px; }
.field label{ display:block; font-weight:600; font-size:14.5px; margin:0 0 6px; color:var(--ink); }
.field input{
  width:100%; font-family:var(--body); font-size:16.5px; color:var(--ink);
  background:#fff; border:1.5px solid var(--hair); border-radius:11px; padding:12px 14px;
  transition:border-color .12s ease, box-shadow .12s ease;
}
.field input:focus{ outline:none; border-color:var(--green); box-shadow:0 0 0 3px rgba(30,58,52,.13); }
.field input.invalid{ border-color:#9A4B33; background:#fdf5f2; }

.fout{ color:#9A4B33; font-size:13.5px; margin:6px 0 0; }
.form-fout{ margin-top:14px; text-align:center; }
.privacy{ color:var(--muted); font-size:13px; text-align:center; margin:13px 0 0; line-height:1.45; }

/* ---------- succes ---------- */
.card.success{ text-align:center; }
.success .check{ width:54px; height:54px; margin:2px auto 14px; border-radius:50%;
  background:var(--green); color:var(--paper); font-size:28px; line-height:54px; }
.success h2{ font-size:clamp(21px,4.8vw,27px); margin:0 0 8px; }
.success p{ color:var(--muted); margin:0; }

/* ---------- voet ---------- */
.foot{ margin-top:26px; text-align:center; }
.foot-motif{ line-height:0; margin-bottom:14px; }
.foot-motif svg{ display:block; width:100%; height:30px; }
.foot p{ color:var(--muted); font-size:13px; margin:0; max-width:46ch; margin-inline:auto; }

/* ---------- responsive ---------- */
@media (min-width:720px){
  .page{ max-width:720px; }
  .fields{ grid-template-columns:1fr 1fr; }
  .hero-info{ grid-template-columns:1fr 1fr; gap:18px 22px; align-items:start; }
}
@media (min-width:1024px){
  .page{ max-width:880px; }
  .hero-info{ grid-template-columns:repeat(3,1fr); gap:22px 24px; }
}
/* telefoon: knop direct onder de kop, tekst eronder */
@media (max-width:640px){
  .hero-cta{ order:1; margin:4px 0 20px; }
  .hero-body{ order:2; }
}

@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  .btn,.field input{ transition:none; }
  .counter .dot{ animation:none; }
}
