/* MarcelZweedijk.nl — distinctive assets. Eén stylesheet voor beide pagina's. */
/* Zelf gehoste merkfonts — geen Google Fonts CDN.
   Scheelt een verzoek naar een derde partij en houdt de AVG-verhouding schoon. */
@font-face {
  font-family: 'Archivo Black';
  src: url('fonts/archivo-black-latin-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: Archivo;
  src: url('fonts/archivo-latin-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: Archivo;
  src: url('fonts/archivo-latin-600-normal.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: Archivo;
  src: url('fonts/archivo-latin-700-normal.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

:root {
  --inkt: #0b0b0b;
  --geel: #ffde59;
  --goud: #c4aa44;
  --grijs: #6b6b6b;
  --scheider: #c9c9c9;
  --offwhite: #e6e2d8;
  --wit: #fff;
  --papier: #faf9f6;
  --radius: 6px;
  --kol: 1080px;
  --smal: 760px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: Archivo, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--inkt);
  background: var(--papier);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .zwaar {
  font-family: 'Archivo Black', 'Arial Black', Archivo, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin: 0;
}

p { margin: 0 0 1em; }
a { color: inherit; }

.wrap { width: 100%; max-width: var(--kol); margin: 0 auto; padding: 0 24px; }
.smal { max-width: var(--smal); }

/* ---------- Logo & kop ---------- */
.merkbalk {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 0;
}
.logo { width: 42px; height: 27px; flex: none; display: block; }
.wordmark {
  font-family: 'Archivo Black', 'Arial Black', Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 1.3px;
  line-height: 1.1;
}
.rolregel {
  font-size: 8.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--grijs);
  margin-top: 3px;
}

.streep {
  width: 46px;
  height: 4px;
  background: var(--geel);
  border: 0;
  margin: 0 0 22px;
}

.pill {
  display: inline-block;
  background: var(--geel);
  color: var(--inkt);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
}

/* ---------- Donkere sectie ---------- */
.donker {
  background: var(--inkt);
  color: var(--offwhite);
}
.donker .wordmark { color: var(--wit); }
.donker .accent { color: var(--geel); }

.hero { padding: 8px 0 62px; }
.hero h1 { font-size: clamp(34px, 6vw, 60px); color: var(--wit); max-width: 15ch; }
.hero .lead {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--offwhite);
  max-width: 54ch;
  margin-top: 22px;
}
.hero .meta { color: var(--grijs); font-size: 14px; margin: 0; }

/* ---------- Formulier ---------- */
.kaart {
  background: var(--wit);
  color: var(--inkt); /* niet de donkere sectiekleur erven */
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}
.kaart.los { box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07); border: 1px solid #ece9e1; }

.veld { margin-bottom: 20px; }
.veld label { display: block; font-weight: 600; font-size: 15px; margin-bottom: 6px; }
.veld .hint { display: block; font-size: 13.5px; color: var(--grijs); margin-bottom: 9px; line-height: 1.5; }

input[type='text'], input[type='url'], input[type='email'], textarea {
  width: 100%;
  font: inherit;
  font-size: 16px;
  color: var(--inkt);
  background: #fbfaf7;
  border: 1.5px solid #ded9cd;
  border-radius: 4px;
  padding: 13px 14px;
}
textarea { min-height: 132px; resize: vertical; line-height: 1.55; }
input:focus, textarea:focus {
  outline: 0;
  border-color: var(--inkt);
  background: var(--wit);
  box-shadow: 0 0 0 3px rgba(255, 222, 89, 0.55);
}

.knop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  padding: 17px 28px;
  border: 0;
  border-radius: 4px;
  background: var(--geel);
  color: var(--inkt);
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.knop:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18); }
.knop:disabled { opacity: 0.55; cursor: default; }
.knop.breed { width: 100%; }
.knop.donkerknop { background: var(--inkt); color: var(--geel); }

.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.klein { font-size: 13px; color: var(--grijs); line-height: 1.6; }
.klein a { color: var(--grijs); }

.fout {
  background: #fff2f2;
  border-left: 4px solid #c0392b;
  color: #8c2a1e;
  padding: 13px 16px;
  border-radius: 3px;
  font-size: 15px;
  margin-bottom: 18px;
}
.gelukt {
  background: #f2fbf3;
  border-left: 4px solid #2e7d43;
  color: #1e5c2f;
  padding: 16px 18px;
  border-radius: 3px;
  font-size: 15.5px;
}

/* ---------- Wachtstand ---------- */
.wachten { text-align: center; padding: 18px 0 6px; }
.balk {
  height: 5px;
  background: #ece9e1;
  border-radius: 999px;
  overflow: hidden;
  margin: 22px 0 18px;
}
.balk i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--geel);
  border-radius: 999px;
  transition: width 0.9s linear;
}
.stap { font-size: 15.5px; color: var(--inkt); min-height: 1.6em; }
.stap b { font-weight: 600; }

/* ---------- Vertrouwensregel ---------- */
.punten {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 12px 30px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.punten li {
  font-size: 14.5px;
  color: var(--offwhite);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.punten li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 11px;
  height: 4px;
  background: var(--geel);
}

/* ---------- Resultaatpagina ---------- */
.resultaatkop { padding: 6px 0 54px; }
.resultaatkop h1 { font-size: clamp(30px, 5.2vw, 52px); color: var(--wit); max-width: 18ch; }
.resultaatkop h1 .accent { color: var(--geel); }
.resultaatkop .wat { color: var(--offwhite); font-size: 18px; max-width: 52ch; margin-top: 18px; }

.blok { padding: 56px 0; }
.bloklabel {
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--grijs);
  font-weight: 600;
  margin-bottom: 10px;
}
.blok h2 { font-size: clamp(24px, 3.4vw, 32px); margin-bottom: 18px; }
.diagnose { font-size: 19px; line-height: 1.62; max-width: 62ch; }

.tip {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 20px;
  padding: 32px 0;
  border-top: 1px solid #e7e3d9;
}
.tip:first-of-type { border-top: 0; }
.tipnr {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--geel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo Black', 'Arial Black', Arial, sans-serif;
  font-size: 17px;
}
.tip h3 { font-size: clamp(20px, 2.6vw, 25px); margin-bottom: 10px; }
.laag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 600;
  color: #8a7420;
  border: 1px solid #e9dfae;
  border-radius: 3px;
  padding: 3px 8px;
  margin-bottom: 16px;
}
.tipveld { margin-bottom: 15px; max-width: 66ch; }
.tipveld .label {
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--grijs);
  font-weight: 600;
  display: block;
  margin-bottom: 3px;
}
.tipveld p { margin: 0; font-size: 16.5px; line-height: 1.62; }
.hefboom {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  color: #8a7420;
  background: #fdf6dd;
  border-radius: 3px;
  padding: 4px 10px;
  margin-top: 4px;
}

.geelblok {
  background: var(--geel);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 40px);
}
.inktblok {
  background: var(--inkt);
  color: var(--offwhite);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 40px);
}
.inktblok h2 { color: var(--geel); }
.geelblok h2, .inktblok h2 { font-size: clamp(21px, 3vw, 27px); margin-bottom: 12px; }
.geelblok p:last-child, .inktblok p:last-child { margin-bottom: 0; }

.slot { font-size: 19px; line-height: 1.62; max-width: 58ch; }

.voet { background: var(--inkt); color: var(--grijs); padding: 40px 0; font-size: 14px; }
.voet a { color: var(--offwhite); text-decoration: none; }
.voet a:hover { text-decoration: underline; }

.bron { font-size: 12.5px; color: #9a9a9a; line-height: 1.6; margin-top: 34px; }

.tweekolom {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 800px) {
  .tweekolom { grid-template-columns: 1fr; gap: 28px; }
  .tip { grid-template-columns: 44px 1fr; gap: 0 14px; }
  .tipnr { width: 34px; height: 34px; font-size: 15px; }
}

@media print {
  .geenprint { display: none !important; }
  body { background: #fff; font-size: 12pt; }
  .blok { padding: 18pt 0; }
  .tip { break-inside: avoid; }
}
