/* ═══════════════════════════════════════════════════════════
   ENGELEN FLUISTEREN — Site Design System
   Mainstream Happinez-tier: warm, modern, professioneel
   Mobile-first responsive
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Achtergrond — zacht crème perkament */
  --bg:           oklch(96% 0.022 82);
  --bg-warm:      oklch(93% 0.030 80);
  --bg-card:      oklch(99% 0.010 82);

  /* Goud */
  --gold:         oklch(50% 0.16 76);
  --gold-soft:    oklch(66% 0.13 80);
  --gold-pale:    oklch(82% 0.10 82);

  /* Tekst */
  --text:         oklch(22% 0.04 60);
  --text-soft:    oklch(38% 0.04 270);
  --text-mute:    oklch(55% 0.04 270);

  /* Pastel accenten */
  --rose:         oklch(86% 0.07 358);
  --lavender:     oklch(86% 0.08 295);
  --sky:          oklch(88% 0.06 220);
  --sage:         oklch(89% 0.06 148);

  /* UI */
  --border:       oklch(58% 0.10 80 / 0.25);
  --border-soft:  oklch(58% 0.10 80 / 0.15);
  --shadow:       0 4px 20px oklch(55% 0.10 80 / 0.10);
  --shadow-lg:    0 12px 36px oklch(55% 0.12 80 / 0.16);

  /* Layout */
  --nav-h:        66px;
  --container:    1140px;
  --container-narrow: 720px;

  /* Type */
  --serif:        'Cormorant Garamond', Georgia, serif;
  --display:      'Cinzel', serif;
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Achtergrond gloed */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% -5%,  oklch(82% 0.12 82  / 0.55) 0%, transparent 65%),
    radial-gradient(ellipse 50% 45% at 10% 80%,  oklch(82% 0.10 310 / 0.42) 0%, transparent 60%),
    radial-gradient(ellipse 45% 50% at 88% 60%,  oklch(82% 0.10 55  / 0.38) 0%, transparent 60%);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--text); }

/* Container */
.container {
  position: relative; z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container-narrow {
  position: relative; z-index: 1;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ═══════════════ TYPOGRAFIE ═══════════════ */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.05em;
  margin: 0;
  text-wrap: balance;
}
h1 {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  letter-spacing: 0.08em;
  line-height: 1.2;
}
h2 {
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  letter-spacing: 0.08em;
  line-height: 1.25;
}
h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  line-height: 1.3;
}
p { margin: 0 0 1rem; }

.eyebrow {
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.lead {
  font-size: clamp(1.1rem, 2.3vw, 1.25rem);
  font-style: italic;
  color: var(--text-soft);
  line-height: 1.75;
}

/* ═══════════════ NAVIGATIE ═══════════════ */

.site-nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: oklch(98% 0.012 82 / 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  height: 100%;
  display: flex; align-items: center;
  padding: 0 1.25rem;
  max-width: var(--container);
  margin: 0 auto;
  gap: 1rem;
}
.nav-logo {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-decoration: none;
  display: flex; flex-direction: column;
  line-height: 1.1;
}
.nav-logo small {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--text-mute);
  font-weight: 400;
  margin-top: 2px;
}
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 0.6rem; }

/* Maanfase widget in nav */
.nav-maan {
  display: none;
  align-items: center; gap: 0.5rem;
  background: oklch(95% 0.025 82);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 5px 14px 5px 8px;
  font-size: 0.75rem;
  color: var(--text-soft);
  text-decoration: none;
  transition: all 0.2s;
}
.nav-maan:hover { border-color: var(--gold-soft); transform: translateY(-1px); color: var(--text); }
.nav-maan-sym { font-size: 1.1rem; line-height: 1; }
.nav-maan-naam { font-family: var(--display); font-size: 0.68rem; letter-spacing: 0.08em; }
@media (min-width: 540px) { .nav-maan { display: inline-flex; } }

.nav-burger {
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  background: oklch(98% 0.012 82);
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  transition: all 0.2s;
}
.nav-burger:hover { border-color: var(--gold-soft); }

/* Slide-over menu */
.menu-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: oklch(8% 0.04 60 / 0.45);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.menu-overlay.open { opacity: 1; pointer-events: auto; }
.menu-panel {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 201;
  width: min(380px, 88vw);
  background: var(--bg);
  border-left: 1px solid var(--border);
  box-shadow: -8px 0 40px oklch(15% 0.05 60 / 0.2);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 1.5rem 1.5rem 3rem;
}
.menu-panel.open { transform: translateX(0); }
.menu-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem;
}
.menu-title { font-family: var(--display); font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }
.menu-close {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-soft);
}
.menu-group { margin-bottom: 1.5rem; }
.menu-group-label {
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  padding-left: 0.4rem;
}
.menu-link {
  display: block;
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--text);
  text-decoration: none;
  padding: 11px 14px;
  border-radius: 10px;
  transition: all 0.2s;
}
.menu-link:hover { background: oklch(94% 0.025 82); color: var(--gold); }
.menu-link.actief { background: oklch(92% 0.04 82); color: var(--gold); }

/* ═══════════════ BUTTONS ═══════════════ */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 40px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: oklch(98% 0.012 82);
  box-shadow: 0 4px 16px oklch(55% 0.14 78 / 0.25);
}
.btn:hover {
  background: oklch(42% 0.16 76);
  color: oklch(98% 0.012 82);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px oklch(55% 0.14 78 / 0.35);
}
.btn-lg { padding: 18px 42px; font-size: 0.84rem; }
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--border);
  box-shadow: none;
}
.btn-ghost:hover { background: oklch(94% 0.025 82); border-color: var(--gold-soft); color: var(--gold); }

/* ═══════════════ CARDS ═══════════════ */

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pijler-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.pijler-kaart {
  display: flex; flex-direction: column;
  padding: 1.5rem 1.6rem 1.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  transition: all 0.28s ease;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.pijler-kaart:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gold-soft); }
.pijler-icoon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 0.9rem;
  border: 1px solid var(--border-soft);
}
.pijler-titel {
  font-family: var(--display);
  font-size: 1rem; font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.pijler-tekst { font-size: 0.97rem; color: oklch(42% 0.04 270); line-height: 1.65; flex: 1; }
.pijler-pijl { font-family: var(--display); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-top: 0.9rem; }

/* ═══════════════ HERO ═══════════════ */

.hero {
  position: relative; z-index: 1;
  padding: 2.5rem 1.25rem 2rem;
  text-align: center;
}
@media (min-width: 720px) {
  .hero { padding: 4rem 1.25rem 3rem; }
}
.hero-date {
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 0.7rem;
}
.hero h1 {
  margin-bottom: 1rem;
  color: var(--gold);
}
.hero-lead {
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: clamp(1.05rem, 2.3vw, 1.2rem);
  font-style: italic;
  color: var(--text-soft);
  line-height: 1.75;
  text-wrap: balance;
}
.hero-cta { margin-top: 0.5rem; }

/* Maanfase op homepage */
.maan-hero-card {
  display: inline-flex; align-items: center; gap: 0.8rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 22px 8px 12px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 1.5rem;
  transition: all 0.25s;
  box-shadow: var(--shadow);
}
.maan-hero-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.maan-hero-sym { font-size: 1.8rem; line-height: 1; }
.maan-hero-info { text-align: left; }
.maan-hero-naam { font-family: var(--display); font-size: 0.85rem; letter-spacing: 0.1em; color: var(--text); }
.maan-hero-energie { font-size: 0.78rem; font-style: italic; color: var(--text-mute); }

/* ═══════════════ SECTIES ═══════════════ */

.section {
  padding: 3rem 0;
}
@media (min-width: 720px) {
  .section { padding: 4.5rem 0; }
}
.section-tight { padding: 2rem 0; }
.section-head {
  text-align: center;
  margin-bottom: 2rem;
}
.section-head .eyebrow { margin-bottom: 0.6rem; display: block; }
.section-head h2 { color: var(--gold); }
.section-head .lead { max-width: 540px; margin: 0.6rem auto 0; }

/* ═══════════════ BELOFTE BANNER ═══════════════ */

.belofte {
  background: linear-gradient(135deg, var(--bg-warm), oklch(91% 0.04 82));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 1.25rem;
  text-align: center;
}
.belofte-tekst {
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.8vw, 1.5rem);
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: var(--text);
  max-width: 720px;
  margin: 0 auto;
  font-weight: 400;
  text-wrap: balance;
}

/* ═══════════════ FOOTER ═══════════════ */

.site-footer {
  position: relative; z-index: 1;
  background: oklch(94% 0.025 82);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand .nav-logo { font-size: 1.1rem; margin-bottom: 0.6rem; }
.footer-tagline { font-size: 0.95rem; font-style: italic; color: var(--text-soft); margin-bottom: 1rem; max-width: 360px; }
.footer-col h4 {
  font-family: var(--display); font-size: 0.7rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem;
}
.footer-col a {
  display: block;
  font-size: 0.92rem;
  color: var(--text-soft);
  margin-bottom: 0.5rem;
  text-decoration: none;
}
.footer-col a:hover { color: var(--gold); }

/* Nieuwsbrief signup */
.newsletter {
  margin-top: 1.2rem;
}
.newsletter-label {
  font-family: var(--display);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.newsletter-hint { font-size: 0.85rem; color: var(--text-soft); margin-bottom: 0.7rem; }
.newsletter-form { display: flex; gap: 8px; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1; min-width: 180px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 11px 18px;
  font-family: var(--serif); font-size: 0.95rem;
  color: var(--text); outline: none;
}
.newsletter-form input:focus { border-color: var(--gold-soft); }
.newsletter-form button {
  background: var(--gold); color: oklch(98% 0.012 82);
  border: none; border-radius: 40px;
  padding: 0 22px;
  font-family: var(--display);
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s;
}
.newsletter-form button:hover { background: oklch(42% 0.16 76); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-mute);
}
.footer-bottom a { color: var(--text-mute); margin-left: 1rem; }
.footer-bottom a:first-child { margin-left: 0; }

/* ═══════════════ UTILITY ═══════════════ */

.center { text-align: center; }
.fade-in { animation: fadeIn 0.5s ease both; }
@keyframes fadeIn { from { opacity:0; transform: translateY(8px); } to { opacity:1; transform: translateY(0); } }

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 2.5rem 0;
  border: none;
}


/* ═══════════════ NAV v2 — inline links + Trek-een-kaart CTA ═══════════════ */

.nav-links { display: none; align-items: center; gap: 0.2rem; margin-left: 1.2rem; }
@media (min-width: 920px) { .nav-links { display: inline-flex; } }
.nav-link {
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 20px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--gold); background: oklch(94% 0.025 82); }
.nav-link.actief { color: var(--gold); background: oklch(92% 0.04 82); }

.nav-cta {
  display: none;
  align-items: center; gap: 0.4rem;
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: oklch(98% 0.012 82);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 30px;
  padding: 9px 18px;
  text-decoration: none;
  box-shadow: 0 3px 12px oklch(55% 0.14 78 / 0.25);
  transition: all 0.22s;
  white-space: nowrap;
}
.nav-cta:hover { background: oklch(42% 0.16 76); color: oklch(98% 0.012 82); transform: translateY(-1px); }
@media (min-width: 560px) { .nav-cta { display: inline-flex; } }
@media (min-width: 560px) and (max-width: 1199px) { .nav-maan { display: none !important; } }
@media (min-width: 1200px) { .nav-maan { display: inline-flex; } }

.menu-cta {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--display);
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--gold); color: oklch(98% 0.012 82) !important;
  border-radius: 14px; padding: 14px 18px;
  text-decoration: none; margin-bottom: 1.5rem;
  box-shadow: 0 4px 14px oklch(55% 0.14 78 / 0.25);
}
.menu-cta:hover { background: oklch(42% 0.16 76); }

/* ═══════════════ LEESBAARHEID v3 ═══════════════ */
body { font-size: 19px; line-height: 1.8; color: oklch(26% 0.035 65); }
.zo-sectie > p, .ef-article p, .blog-article p { color: oklch(28% 0.03 60); }
/* Content-links in lopende tekst duidelijk onderstreept */
.zo-body a:not(.btn):not(.chip):not(.mini-tile),
.ef-article a:not(.btn), .blog-article a:not(.btn) {
  color: oklch(44% 0.15 70); text-decoration: underline; text-decoration-color: var(--gold-pale); text-underline-offset: 3px;
}
.zo-body a:not(.btn):not(.chip):not(.mini-tile):hover { text-decoration-color: var(--gold); color: var(--gold); }

/* ═══════════════ IMAGE HERO (foto-banner) ═══════════════ */
.hero-img, .zo-hero-img { padding: 0; background: none; border-bottom: 1px solid var(--border-soft); }
.hero-img .hero-img-overlay, .zo-hero-img .zo-hero-overlay {
  position: relative;
  background-image:
    linear-gradient(to bottom, oklch(97% 0.02 82 / 0.62), oklch(96% 0.025 82 / 0.86) 70%, var(--bg) 100%),
    var(--bg-img);
  background-size: cover; background-position: center 35%;
  padding: 2.4rem 1.25rem 2.8rem; text-align: center;
}
.zo-hero-img .zo-hero-overlay { padding-top: 1.4rem; }
@media (min-width: 720px) {
  .hero-img .hero-img-overlay { padding: 4rem 1.25rem 4rem; }
  .zo-hero-img .zo-hero-overlay { padding: 1.8rem 1.25rem 3rem; }
}

/* Homepage hero met foto-achtergrond */
.hp-hero-photo { position: relative; overflow: hidden; }
.hp-hero-photo::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(to bottom, oklch(97% 0.02 82 / 0.70), oklch(96% 0.025 82 / 0.88) 75%, var(--bg) 100%),
    var(--bg-img);
  background-size: cover; background-position: center 30%;
}
.hp-hero-photo > * { position: relative; z-index: 1; }

/* ═══════════════ HOROSCOOP v2 ═══════════════ */

.crumbs { font-size: 0.82rem; color: var(--text-mute); margin-bottom: 1.6rem; position: relative; z-index: 1; }
.crumbs a { color: var(--text-mute); }
.crumbs a:hover { color: var(--gold); }
.crumbs span { margin: 0 0.35rem; opacity: 0.6; }
.crumbs b { color: var(--text-soft); font-weight: 500; }

.zo-hero {
  position: relative; z-index: 1;
  text-align: center;
  padding: 2rem 1.25rem 2.6rem;
  background:
    radial-gradient(ellipse 70% 90% at 50% -10%, oklch(90% 0.055 var(--h, 80) / 0.65) 0%, transparent 70%);
  border-bottom: 1px solid var(--border-soft);
}
.zo-medal {
  width: 108px; height: 108px;
  margin: 0.6rem auto 1.1rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--gold-pale);
  box-shadow: 0 0 0 7px oklch(90% 0.05 var(--h, 80) / 0.5), var(--shadow);
  position: relative;
}
.zo-medal::after {
  content: '✦'; position: absolute; top: -7px; right: 2px;
  font-size: 0.8rem; color: var(--gold-soft);
}
.zo-medal span {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.2rem; line-height: 1; color: var(--gold);
  font-variant-emoji: text;
}
.zo-naam { font-size: clamp(2rem, 5vw, 2.7rem); color: var(--gold); letter-spacing: 0.1em; }
.zo-sub { font-family: var(--display); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-soft); margin: 0.7rem 0 0.4rem; }
.zo-kw { justify-content: center; }
.str-kw { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 0.8rem 0 0; }
.str-kw span { font-family: var(--display); font-size: 0.68rem; letter-spacing: 0.14em; color: var(--gold); background: var(--bg-card); border: 1px solid var(--border-soft); padding: 5px 13px; border-radius: 20px; }

.zo-body { max-width: 760px; margin: 0 auto; padding: 1.5rem 1.25rem 3rem; position: relative; z-index: 1; }
.zo-sectie { margin-top: 2.6rem; }
.zo-sectie h2 { color: var(--gold); font-size: clamp(1.25rem, 3vw, 1.55rem); margin-bottom: 0.8rem; }
.zo-sectie > p { font-size: 1.06rem; line-height: 1.85; }

/* Daghoroscoop-kaart */
.dh-card { padding: 1.8rem 1.7rem; margin-top: 2rem; background: linear-gradient(160deg, var(--bg-card), oklch(96% 0.03 82)); }
.dh-kop { color: var(--gold); margin: 0.3rem 0 0.7rem; font-size: 1.45rem; }
.dh-tekst { margin-bottom: 1rem; }
.dh-lijst { list-style: none; margin: 0 0 1rem; padding: 0; }
.dh-lijst li { padding: 0.45rem 0 0.45rem 1.5rem; position: relative; font-size: 1rem; line-height: 1.7; border-top: 1px solid var(--border-soft); }
.dh-lijst li::before { content: '✦'; position: absolute; left: 0.1rem; color: var(--gold-soft); font-size: 0.75rem; top: 0.65rem; }
.dh-engel { font-style: italic; color: var(--text-soft); background: oklch(94% 0.03 82); border-radius: 12px; padding: 0.8rem 1rem; }
.dh-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; font-size: 0.92rem; color: var(--text-soft); margin-top: 0.8rem; }
.dh-meta b { color: var(--gold); font-weight: 600; }
.dh-cta { margin-top: 1.3rem; }

/* Feiten-grid */
.facts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.7rem; }
.fact { background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: 12px; padding: 0.75rem 0.9rem; }
.fact-label { display: block; font-family: var(--display); font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem; }
.fact-val { font-size: 0.95rem; color: var(--text); line-height: 1.4; }

/* Sterk / leren kolommen */
.twocol { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 1.2rem; }
@media (min-width: 640px) { .twocol { grid-template-columns: 1fr 1fr; } }
.kol { padding: 1.2rem 1.4rem; }
.kol h3 { font-size: 0.95rem; color: var(--gold); margin-bottom: 0.6rem; letter-spacing: 0.1em; }
.kol ul { margin: 0; padding-left: 1.1rem; }
.kol li { margin-bottom: 0.4rem; font-size: 0.99rem; line-height: 1.6; }
.kol-sterk { border-top: 3px solid oklch(75% 0.1 148); }
.kol-leren { border-top: 3px solid oklch(78% 0.1 82); }

/* Compatibiliteit */
.compat-intro { font-family: var(--display); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-soft); margin: 1.1rem 0 0.5rem; }
.compat-chips { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.chip { font-family: var(--display); font-size: 0.8rem; letter-spacing: 0.08em; text-decoration: none; padding: 9px 16px; border-radius: 30px; border: 1px solid var(--border); background: var(--bg-card); color: var(--text); transition: all 0.2s; }
.chip:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--gold); border-color: var(--gold-soft); }
.chip-goed { border-color: oklch(75% 0.09 148); }
.chip-uitdaging { border-color: oklch(80% 0.08 55); }
.compat-note { margin-top: 1.1rem; font-size: 0.97rem; }

/* Spiritueel blok */
.spirit-blok { padding: 1.6rem 1.7rem; background: linear-gradient(150deg, var(--bg-card), oklch(93% 0.045 var(--h, 80) / 0.55)); }
.spirit-blok h2 { margin-top: 0; }
.spirit-affirmatie { font-size: 1.12rem; color: var(--gold); margin-top: 0.8rem; }
.spirit-flex { display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap; }
.spirit-steen { width: 150px; height: 150px; border-radius: 18px; object-fit: cover; box-shadow: var(--shadow); border: 1px solid var(--gold-pale); flex-shrink: 0; }
.spirit-tekst { flex: 1; min-width: 240px; }
@media (max-width: 520px) { .spirit-steen { width: 110px; height: 110px; } }

/* FAQ */
.faq-item { background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: 14px; margin-bottom: 0.7rem; overflow: hidden; }
.faq-item summary { cursor: pointer; list-style: none; padding: 1rem 1.2rem; font-family: var(--display); font-size: 0.95rem; letter-spacing: 0.04em; color: var(--text); display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color 0.2s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--gold); flex-shrink: 0; transition: transform 0.25s; }
.faq-item[open] summary { color: var(--gold); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-a { padding: 0 1.2rem 1rem; }
.faq-a p { margin: 0; font-size: 1rem; line-height: 1.75; color: var(--text-soft); }

/* Mini-grid alle tekens */
.mini-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(105px, 1fr)); gap: 0.6rem; }
.mini-tile { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; text-decoration: none; background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: 12px; padding: 0.8rem 0.4rem; color: var(--text-soft); font-size: 0.82rem; transition: all 0.2s; }
.mini-tile:hover { border-color: var(--gold-soft); transform: translateY(-2px); color: var(--gold); }
.mini-tile.actief { border-color: var(--gold); background: oklch(94% 0.035 82); }
.mini-glyph { font-family: Georgia, serif; font-size: 1.4rem; color: var(--gold); font-variant-emoji: text; }
.zo-verder { display: flex; gap: 0.8rem; flex-wrap: wrap; justify-content: center; margin-top: 1.8rem; }

/* Horoscoop-overzicht v2 */
.horo-lijst { display: grid; grid-template-columns: 1fr; gap: 0.9rem; max-width: 860px; margin: 0 auto; }
@media (min-width: 760px) { .horo-lijst { grid-template-columns: 1fr 1fr; } }
.horo-tile2 { display: flex; align-items: flex-start; gap: 1rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 1.15rem 1.3rem; text-decoration: none; color: inherit; box-shadow: var(--shadow); transition: all 0.25s; position: relative; overflow: hidden; }
.horo-tile2::before { content: ''; position: absolute; inset: 0 auto 0 0; width: 4px; background: oklch(82% 0.09 var(--h, 80)); }
.horo-tile2:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--gold-soft); }
.ht2-glyph { font-family: Georgia, serif; font-size: 1.9rem; color: var(--gold); line-height: 1.2; flex-shrink: 0; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: oklch(93% 0.045 var(--h, 80) / 0.6); font-variant-emoji: text; }
.ht2-main { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.ht2-naam { font-family: var(--display); font-size: 1.02rem; letter-spacing: 0.06em; color: var(--text); }
.ht2-range { font-size: 0.75rem; font-style: italic; color: var(--text-mute); }
.ht2-teaser { font-size: 0.92rem; color: var(--text-soft); line-height: 1.55; margin-top: 0.3rem; font-style: italic; }
.ht2-pijl { margin-left: auto; align-self: center; font-family: var(--display); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
@media (max-width: 500px) { .ht2-pijl { display: none; } }

/* === 100x sprint additions === */

/* ═══ 100x — Mega-footer, Verder lezen, newsletter capture ═══ */
.footer-newsletter {
  max-width: 720px; margin: 0 auto 2.5rem;
  padding: 1.6rem 1.2rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--bg-warm), oklch(91% 0.04 82));
  text-align: center;
}
.newsletter-eyebrow {
  font-family: var(--display);
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 0.4rem;
}
.newsletter-h {
  font-family: var(--display);
  font-size: 1.15rem; font-weight: 500;
  color: var(--text); margin: 0 0 0.4rem;
}
.newsletter-thanks {
  color: var(--gold); font-family: var(--display); font-size: 1rem;
}
.footer-mega {
  display: grid; gap: 1.6rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px){ .footer-mega { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px){ .footer-mega { grid-template-columns: repeat(5, 1fr); } }
.footer-mega .footer-col h4 {
  font-family: var(--display); font-size: 0.78rem;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 0.7rem;
}
.footer-mega .footer-col a {
  display: block; color: var(--text-soft);
  font-size: 0.92rem; padding: 0.25rem 0; text-decoration: none;
  line-height: 1.45;
}
.footer-mega .footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 0.8rem 1.2rem;
  align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border);
  margin-top: 2rem; padding-top: 1.2rem;
  font-size: 0.82rem; color: var(--text-soft);
}
.footer-meta a { color: var(--text-soft); margin-left: 0.6rem; text-decoration: underline; text-decoration-color: var(--gold-soft); }
.footer-meta a:hover { color: var(--gold); }

/* Verder lezen */
.verder-lezen {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.4rem 1.25rem 2.2rem;
  text-align: center;
}
.verder-lezen .eyebrow {
  font-family: var(--display);
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 0.4rem;
}
.verder-lezen h2 {
  font-family: var(--display); font-size: 1.4rem; font-weight: 500;
  margin: 0 0 1.3rem; color: var(--text);
}
.vl-grid {
  display: grid; gap: 0.8rem;
  grid-template-columns: 1fr;
  max-width: 920px; margin: 0 auto;
}
@media (min-width: 640px){ .vl-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px){ .vl-grid { grid-template-columns: 1fr 1fr 1fr; } }
.vl-link {
  display: block; background: #fff;
  border: 1px solid var(--border); border-radius: 10px;
  padding: 0.9rem 1.1rem; text-align: left;
  color: var(--text); text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
  font-size: 0.95rem;
}
.vl-link:hover { border-color: var(--gold-soft); transform: translateY(-2px); color: var(--gold); }

/* Homepage 100x: diepe paden grid */
.diepe-paden {
  padding: 3rem 1.25rem 4rem;
  background: linear-gradient(180deg, transparent 0%, var(--bg-warm) 100%);
}
.diepe-paden .container { max-width: 1100px; margin: 0 auto; }
.diepe-paden .eyebrow {
  text-align: center; display: block;
  font-family: var(--display);
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.4rem;
}
.diepe-paden h2 {
  font-family: var(--display); font-size: clamp(1.6rem, 4vw, 2rem); font-weight: 500;
  text-align: center; margin: 0 0 2rem; color: var(--text);
}
.dp-row {
  display: grid; gap: 0.6rem;
  grid-template-columns: 1fr;
  margin-bottom: 1.6rem;
}
@media (min-width: 640px){ .dp-row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px){ .dp-row { grid-template-columns: repeat(4, 1fr); } }
.dp-row a {
  display: block; background: #fff;
  border: 1px solid var(--border); border-radius: 10px;
  padding: 0.85rem 1rem; text-decoration: none; color: var(--text);
  font-size: 0.9rem; line-height: 1.3;
}
.dp-row a:hover { border-color: var(--gold-soft); color: var(--gold); }
.dp-row-label {
  font-family: var(--display);
  font-size: 0.74rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.55rem;
  text-align: center;
}

/* Overzicht-pagina */
.overzicht-page { padding: 3rem 1.25rem; }
.overzicht-page .container { max-width: 1100px; margin: 0 auto; }
.overzicht-page h1 {
  text-align: center; font-family: var(--display); font-weight: 500;
  font-size: clamp(2rem, 5vw, 2.6rem); color: var(--gold);
  margin-bottom: 0.5rem;
}
.overzicht-page .lead { text-align: center; max-width: 680px; margin: 0 auto 2.5rem; color: var(--text-soft); }
.overzicht-section {
  margin-bottom: 2.5rem;
  padding: 1.6rem; border: 1px solid var(--border); border-radius: 12px;
  background: #fff;
}
.overzicht-section h2 {
  font-family: var(--display); font-size: 1.2rem; font-weight: 500;
  color: var(--text); margin: 0 0 1rem; letter-spacing: 0.04em;
}
.overzicht-section ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0.35rem 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px){ .overzicht-section ul { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px){ .overzicht-section ul { grid-template-columns: 1fr 1fr 1fr; } }
.overzicht-section a { color: var(--text); text-decoration: none; font-size: 0.92rem; padding: 0.2rem 0; display: block; }
.overzicht-section a:hover { color: var(--gold); }

