/* ── SEO pagina stijlen ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #f5f0e8;
  --bg-diep:    #ede6d6;
  --ink:        #2c2416;
  --ink-soft:   #6b5e45;
  --sage:       #7a9e7e;
  --sage-light: #a8c5ac;
  --gold:       #c9a84c;
  --card:       #fff;
  --border:     #e5ddd0;
  --radius:     12px;
}

body {
  font-family: 'Jost', sans-serif;
  background-color: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: 1.6rem;
  letter-spacing: 0.2em; color: var(--ink);
  text-decoration: none;
}
.hoofd-nav a {
  font-size: 0.85rem; font-weight: 300;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-soft); text-decoration: none;
  transition: color 0.2s;
}
.hoofd-nav a:hover { color: var(--sage); }

/* ── Hero ── */
.hero {
  max-width: 760px; margin: 0 auto;
  padding: 5rem 2rem 3rem;
  text-align: center;
}
.emoji-groot {
  display: block; font-size: 3.5rem;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.25; color: var(--ink);
  margin-bottom: 1rem;
}
.hero h1 em { font-style: italic; color: var(--sage); }
.intro {
  font-size: 1.05rem; font-weight: 300;
  color: var(--ink-soft); max-width: 540px;
  margin: 0 auto 2rem;
}
.cta-knop {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--sage);
  color: #fff; border-radius: 100px;
  font-family: 'Jost', sans-serif;
  font-weight: 300; font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
  box-shadow: 0 4px 20px rgba(122,158,126,0.3);
}
.cta-knop:hover {
  background: #5f8463;
  transform: translateY(-2px);
}

/* ── Scheidingslijn ── */
.scheiding {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 3rem;
}

/* ── Affirmatielijst ── */
.aff-sectie {
  max-width: 760px; margin: 0 auto;
  padding: 0 2rem 4rem;
}
.aff-lijst {
  list-style: none;
  display: flex; flex-direction: column; gap: 1rem;
  counter-reset: affirmatie;
}
.aff-item {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(44,36,22,0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}
.aff-item:hover {
  box-shadow: 0 6px 24px rgba(44,36,22,0.09);
  transform: translateY(-1px);
}
.nummer {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--bg-diep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 300;
  color: var(--ink-soft);
  margin-top: 2px;
}
.aff-item p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  line-height: 1.5; color: var(--ink);
}

/* ── Andere onderwerpen ── */
.andere-onderwerpen {
  max-width: 760px; margin: 0 auto;
  padding: 0 2rem 5rem;
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}
.andere-onderwerpen h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: 1.6rem;
  margin-bottom: 1.5rem; color: var(--ink);
}
.onderwerp-links {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
}
.onderwerp-chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.9rem; font-weight: 300;
  color: var(--ink); text-decoration: none;
  transition: all 0.2s;
}
.onderwerp-chip:hover {
  border-color: var(--sage);
  background: rgba(122,158,126,0.08);
  color: var(--sage);
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.85rem; font-weight: 300;
  color: var(--ink-soft);
}
.site-footer a {
  color: var(--sage); text-decoration: none;
}
.site-footer a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .site-header { padding: 1rem; }
  .hero { padding: 3rem 1.25rem 2rem; }
  .aff-sectie, .andere-onderwerpen { padding-left: 1.25rem; padding-right: 1.25rem; }
  .aff-item { padding: 1.25rem; }
  .site-footer { flex-direction: column; text-align: center; }
}
