/* ============================================================
   docs.css
   Laag voor de juridische documentpagina's (privacy, algemene
   voorwaarden). Alleen leesopmaak voor lange lopende tekst —
   verder dezelfde tokens en componenten als de rest van de site.
   ============================================================ */

/* De kop staat op een rustige band in plaats van in een hero:
   dit zijn documenten, geen verkooppagina's. */
.doc-head {
  padding: 150px 0 0;
  text-align: center;
}
.doc-head__eyebrow {
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.doc-head h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--text-cream);
}
.doc-head__meta {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(252, 252, 252, 0.5);
}

/* Leesbreedte: rond de 70 tekens per regel. Bij juridische tekst
   is dat het verschil tussen doorlezen en afhaken. */
.doc-body {
  max-width: 780px;
  margin: 56px auto 0;
  padding-bottom: 40px;
}
.doc-body > * + * { margin-top: 22px; }

.doc-body h2 {
  margin-top: 52px;
  margin-bottom: -4px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.25;
  font-weight: 400;
  color: var(--gold);
}
.doc-body h2:first-child { margin-top: 0; }

.doc-body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}
.doc-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.doc-body a:hover { color: var(--gold-bright); }
.doc-body strong { color: var(--text-cream); font-weight: 600; }

.doc-body ul,
.doc-body ol {
  padding-left: 0;
  list-style: none;
  counter-reset: doc-nr;
}
.doc-body li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}
.doc-body li + li { margin-top: 12px; }
/* Ongenummerd: een klein gouden ruitje. Genummerd: het cijfer zelf
   in goud, zodat je in de voorwaarden naar een lid kunt verwijzen. */
.doc-body ul li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 11px;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  background: var(--gold);
}
.doc-body ol li::before {
  counter-increment: doc-nr;
  content: counter(doc-nr) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
  color: var(--gold);
}

/* Adres- en contactblok krijgt een kader zodat het opvalt tussen
   de lopende tekst. */
.doc-contact {
  margin-top: 28px;
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(252, 252, 252, 0.03);
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}
.doc-contact strong { display: block; color: var(--text-cream); }

/* Terug-link onderaan */
.doc-back {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(209, 173, 125, 0.18);
  font-size: 14px;
}
.doc-back a { color: var(--gold); text-decoration: none; }
.doc-back a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .doc-head { padding-top: 120px; }
  .doc-body { margin-top: 40px; }
  .doc-body h2 { margin-top: 40px; }
}
