/* ════════════════════════════════════════════════════════
   CHAOSTUIN — MAIN.CSS
   Gedeelde stijlen voor alle pagina's.
   Aanpassen hier = overal bijgewerkt.
   ════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ───────────────────────────────────── */
:root {
  --nav-height: 64px;
  --moss:    #3D5229;
  --sage:    #7A8C5E;
  --straw:   #C8A96E;
  --cream:   #F5F0E8;
  --fog:     #EAE4D8;
  --leaf:    #5C7A3A;
  --rust:    #8B4513;
  --sky:     #7BA7BC;
}

/* ── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--earth);
}

/* ── GEDEELDE KNOPPEN ────────────────────────────────── */
.btn-primary {
  background: var(--straw);
  color: var(--earth);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #d4b47a; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  padding: 0.85rem 2rem;
  border: 1px solid rgba(245,240,232,0.35);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.03em;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--cream); background: rgba(245,240,232,0.08); }

/* ── NAV ─────────────────────────────────────────────── */
nav#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(61,82,41,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200,169,110,0.15);
  transition: padding 0.3s;
}
nav#nav.scrolled {
  background: rgba(44,36,22,0.97);
  border-bottom: 1px solid rgba(200,169,110,0.2);
  padding: 0.75rem 2rem;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-logo span { color: var(--straw); font-style: italic; }

.nav-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: nowrap;
  white-space: nowrap;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--straw); }

/* ── NAV DROPDOWN ────────────────────────────────────── */
.nav-dropdown-item {
  position: relative;
}
.nav-dropdown-toggle { cursor: pointer; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: rgba(44,36,22,0.97);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245,240,232,0.12);
  border-radius: 3px;
  list-style: none;
  min-width: 180px;
  padding: 0.5rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
/* Pijltje bovenaan dropdown */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid rgba(245,240,232,0.12);
}
/* Onzichtbare brug tussen nav-link en dropdown menu */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}
.nav-dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-dropdown li a:hover { color: var(--straw); background: rgba(245,240,232,0.06); }

/* ── ZOEKBALK ─────────────────────────────────────────── */
.nav-search {
  position: relative;
  display: flex;
  align-items: center;
}
.search-input {
  background: rgba(245,240,232,0.1);
  border: 1px solid rgba(245,240,232,0.2);
  border-radius: 2px;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  padding: 0.45rem 2.5rem 0.45rem 1rem;
  width: 180px;
  outline: none;
  transition: background 0.2s, border-color 0.2s, width 0.3s;
}
.search-input::placeholder { color: rgba(245,240,232,0.4); }
.search-input:focus {
  background: rgba(245,240,232,0.15);
  border-color: var(--straw);
  width: 210px;
}
.search-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(245,240,232,0.4);
  font-size: 0.85rem;
  pointer-events: none;
}
.search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--earth);
  border: 1px solid rgba(245,240,232,0.15);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 200;
  overflow: hidden;
  display: none;
  min-width: 280px;
}
.search-dropdown.open { display: block; }
.search-result-item {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: rgba(245,240,232,0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: background 0.15s;
  text-decoration: none;
}
.search-result-item:hover { background: rgba(245,240,232,0.08); color: var(--cream); }
.search-result-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--straw);
  background: rgba(200,169,110,0.15);
  padding: 2px 6px;
  border-radius: 2px;
  white-space: nowrap;
}
.search-not-found {
  padding: 1rem;
  font-size: 0.85rem;
  color: rgba(245,240,232,0.5);
  font-style: italic;
}
.search-not-found strong { color: var(--straw); font-style: normal; }
.search-divider { border: none; border-top: 1px solid rgba(245,240,232,0.08); margin: 0; }

.missed-btn {
  display: none;
  background: transparent;
  border: 1px solid rgba(200,169,110,0.4);
  color: var(--straw);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.missed-btn:hover { background: rgba(200,169,110,0.1); }
.missed-btn.has-items { display: inline-block; }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: #1a140d;
  padding: 3rem 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--cream);
  opacity: 0.5;
}
.footer-logo span { font-style: italic; color: var(--straw); }
footer p { font-size: 0.8rem; color: rgba(245,240,232,0.3); }

/* ── GEDEELDE SECTIE-ELEMENTEN ───────────────────────── */
.section-header { margin-bottom: 4rem; }

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--earth);
  line-height: 1.2;
}

.pillar-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--leaf);
  text-decoration: none;
  transition: color 0.3s;
}
.pillar-link:hover { color: var(--moss); }

/* ── ANIMATIONS ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(-20px, 15px) scale(1.03); }
  66%  { transform: translate(15px, -10px) scale(0.97); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── HOMEPAGE: HERO ──────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  background: var(--moss);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 4rem 6rem;
  position: relative;
  z-index: 2;
}
.hero-left::after {
  content: '';
  position: absolute;
  right: -60px;
  top: 0; bottom: 0;
  width: 120px;
  background: var(--moss);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  z-index: 3;
}
.site-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--straw);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.4s;
}
.hero-title em { font-style: italic; color: var(--straw); }
.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,240,232,0.75);
  max-width: 38ch;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.6s;
}
.hero-slogan {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-style: italic;
  color: var(--straw);
  line-height: 1.4;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.75s;
  border-left: 2px solid var(--straw);
  padding-left: 1rem;
}
.hero-ctas-wrapper { opacity: 0; animation: fadeUp 0.9s ease forwards 0.8s; }
.hero-ctas { display: flex; flex-direction: column; gap: 1.25rem; }
.hero-textblock {
  background: rgba(245,240,232,0.06);
  border: 1px solid rgba(245,240,232,0.12);
  border-radius: 3px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-block-text {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(245,240,232,0.72);
  margin: 0;
}
.hero-cta-btn { align-self: flex-start; font-size: 0.82rem; padding: 0.65rem 1.5rem; }

.hero-right { background: var(--fog); position: relative; overflow: hidden; }
.hero-right-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.photo-orbs { position: absolute; inset: 0; }
.photo-orb {
  border-radius: 50%; overflow: hidden; position: absolute;
  box-shadow: 0 20px 60px rgba(44,36,22,0.2);
}
.photo-orb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-orb.no-photo { opacity: 0.45; }
.photo-orb-1 { width: 400px; height: 400px; top: 40px; right: 40px; animation: drift 12s ease-in-out infinite; }
.photo-orb-1.no-photo { background: var(--sage); }
.photo-orb-2 { width: 250px; height: 250px; bottom: 60px; left: 40px; animation: drift 9s ease-in-out infinite reverse; }
.photo-orb-2.no-photo { background: var(--leaf); }
.photo-orb-3 { width: 163px; height: 163px; top: 55%; right: 12%; animation: drift 15s ease-in-out infinite 3s; }
.photo-orb-3.no-photo { background: var(--straw); }
.hero-quote { position: relative; z-index: 2; text-align: center; padding: 3rem; }
.hero-quote-mark {
  font-family: 'Playfair Display', serif; font-size: 8rem; line-height: 0.6;
  color: var(--sage); opacity: 0.4; display: block; margin-bottom: 1rem;
}
.hero-quote p {
  font-family: 'Playfair Display', serif; font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic; line-height: 1.5; color: var(--moss); max-width: 32ch; margin: 0 auto 1.5rem;
}
.hero-quote cite { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage); font-style: normal; }

/* ── HOMEPAGE: INTRO STRIP ───────────────────────────── */
.intro-strip {
  background: var(--earth);
  padding: 5rem 6rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}
.intro-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--straw); margin-bottom: 1rem;
}
.intro-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); color: var(--cream); line-height: 1.2;
}
.intro-strip p {
  font-size: 1.05rem; font-weight: 300; line-height: 1.8;
  color: rgba(245,240,232,0.7); max-width: 65ch;
}
.intro-strip p + p { margin-top: 1rem; }

/* ── HOMEPAGE: KIES JE AANPAK ────────────────────────── */
.aanpak { padding: 7rem 6rem; background: var(--cream); }
.aanpak-intro { font-size: 1rem; font-weight: 300; line-height: 1.8; color: #5a5040; max-width: 65ch; margin-top: 1rem; }
.aanpak-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.aanpak-card {
  background: var(--fog); border-radius: 3px; padding: 2rem 2.25rem;
  border-left: 3px solid var(--sage); transition: border-color 0.2s, box-shadow 0.2s;
}
.aanpak-card:hover { border-color: var(--straw); box-shadow: 0 4px 20px rgba(44,36,22,0.08); }
.aanpak-card-header {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.5rem; padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(61,82,41,0.12);
}
.aanpak-icon { font-size: 2rem; line-height: 1; flex-shrink: 0; margin-top: 0.1rem; }
.aanpak-cat { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); margin-bottom: 0.25rem; }
.aanpak-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--moss); margin-bottom: 0.35rem; line-height: 1.2; }
.aanpak-lead { font-size: 0.85rem; font-weight: 300; color: #6a5f4a; line-height: 1.5; }
.aanpak-links { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }
.aanpak-links li { display: flex; gap: 0.85rem; align-items: flex-start; }
.aanpak-link-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.05rem; }
.aanpak-links strong { font-size: 0.9rem; font-weight: 500; color: var(--earth); display: block; margin-bottom: 0.2rem; }
.aanpak-links p { font-size: 0.82rem; font-weight: 300; color: #6a5f4a; line-height: 1.55; margin-bottom: 0; }
.aanpak-links .pillar-link { display: inline-block; margin-top: 0.1rem; margin-bottom: 0.75rem; }
.aanpak-footer {
  margin-top: 3rem; background: var(--moss); border-radius: 3px;
  padding: 2.5rem 3rem; display: flex; gap: 2rem; align-items: center;
}
.aanpak-footer-icon { font-size: 3rem; flex-shrink: 0; }
.aanpak-footer p { font-size: 1.05rem; font-weight: 300; line-height: 1.8; color: rgba(245,240,232,0.85); }

/* ── HOMEPAGE: CALCULATOR ────────────────────────────── */
.calc-section {
  background: var(--moss); padding: 7rem 6rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.calc-intro .section-label { color: var(--straw); }
.calc-intro h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--cream); line-height: 1.2; margin-bottom: 1.5rem; }
.calc-intro p { font-size: 1rem; font-weight: 300; line-height: 1.8; color: rgba(245,240,232,0.7); margin-bottom: 2rem; }
.calculator-widget { background: var(--cream); border-radius: 4px; padding: 2.5rem; }
.calc-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--moss); margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--fog); }
.calc-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.calc-row label { font-size: 0.85rem; font-weight: 400; color: #5a5040; min-width: 170px; }
.calc-row input[type=range] { flex: 1; accent-color: var(--leaf); }
.calc-row .val { font-size: 0.85rem; font-weight: 500; color: var(--moss); min-width: 52px; text-align: right; }
.calc-result { margin-top: 1.5rem; padding: 1.5rem; background: var(--moss); border-radius: 2px; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.calc-result-item { text-align: center; }
.calc-result-label { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,240,232,0.6); display: block; margin-bottom: 4px; }
.calc-result-val { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--straw); }
.calc-link { display: inline-block; margin-top: 1.25rem; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); text-decoration: none; }
.calc-link:hover { color: var(--straw); }

/* ── HOMEPAGE: 10 GEBODEN ────────────────────────────── */
.geboden { padding: 7rem 6rem; background: var(--fog); }
.geboden .section-header { text-align: center; margin-bottom: 5rem; }
.geboden-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; max-width: 900px; margin: 0 auto; border: 1px solid rgba(61,82,41,0.15); }
.gebot { padding: 2rem 2.5rem; border-bottom: 1px solid rgba(61,82,41,0.1); border-right: 1px solid rgba(61,82,41,0.1); display: flex; gap: 1.25rem; align-items: flex-start; transition: background 0.2s; }
.gebot:hover { background: rgba(61,82,41,0.05); }
.gebot:nth-child(even) { border-right: none; }
.gebot:nth-last-child(-n+2) { border-bottom: none; }
.gebot-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--straw); line-height: 1; min-width: 2rem; text-align: right; }
.gebot-text { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-style: italic; color: var(--moss); line-height: 1.4; padding-top: 0.3rem; }

/* ── HOMEPAGE: OVER ──────────────────────────────────── */
.over { background: var(--earth); padding: 7rem 6rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.over-text .section-label { color: var(--straw); }
.over-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--cream); line-height: 1.2; margin-bottom: 1.5rem; }
.over-text p { font-size: 1rem; font-weight: 300; line-height: 1.8; color: rgba(245,240,232,0.7); margin-bottom: 1rem; }
.over-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(245,240,232,0.1); }
.stat { background: rgba(245,240,232,0.04); padding: 2.5rem; text-align: center; }
.stat-val { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--straw); display: block; line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.8rem; font-weight: 400; color: rgba(245,240,232,0.5); letter-spacing: 0.05em; }

/* ── INHOUDSPAGINA'S (aanpak/, tools/) ───────────────── */
.page-header {
  background: var(--moss);
  padding: 3rem 4rem 4rem;
  width: 100%;
  box-sizing: border-box;
}
.page-header-inner { max-width: 1100px; margin: 0 auto; }

.breadcrumb {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.5);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--straw); text-decoration: none; }
.breadcrumb a:hover { color: var(--cream); }

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-lead {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,240,232,0.75);
  max-width: 55ch;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 6rem 6rem;
}

.content-section {
  margin-bottom: 3rem;
}
.content-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--moss);
  line-height: 1.2;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--fog);
}
.content-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--earth);
  margin: 1.5rem 0 0.5rem;
}
.content-section p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: #4a3f2f;
  margin-bottom: 1rem;
}
.content-section ul,
.content-section ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.content-section li {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: #4a3f2f;
  margin-bottom: 0.4rem;
}
.content-section strong { font-weight: 500; color: var(--earth); }

/* Tip / aandachtbox */
.tip-box {
  background: var(--fog);
  border-left: 3px solid var(--straw);
  border-radius: 2px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: #4a3f2f;
}
.tip-box strong { color: var(--moss); }

/* Navigatie vorige/volgende */
.page-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--fog);
  gap: 1rem;
}
.page-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  text-decoration: none;
  transition: color 0.2s;
}
.page-nav a:hover { color: var(--straw); }
.page-nav-up { color: var(--straw) !important; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 600px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 8rem 2.5rem 4rem; }
  .hero-left::after { display: none; }
  .hero-right { min-height: 300px; }
  .intro-strip, .calc-section, .over { grid-template-columns: 1fr; padding: 4rem 2.5rem; gap: 2.5rem; }
  .aanpak { padding: 4rem 2.5rem; }
  .aanpak-grid { grid-template-columns: 1fr; }
  .geboden { padding: 4rem 2.5rem; }
  .geboden-grid { grid-template-columns: 1fr; }
  .gebot:nth-child(even) { border-right: 1px solid rgba(61,82,41,0.1); }
  .gebot:nth-last-child(-n+2) { border-bottom: 1px solid rgba(61,82,41,0.1); }
  .gebot:last-child { border-bottom: none; }
  nav#nav { padding: 1.25rem 2rem; }
  nav#nav.scrolled { padding: 0.75rem 2rem; }
  .nav-links { display: none; }
  footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem; }
  .page-header { padding: 2rem 2.5rem 3rem; }
  .page-content { padding: 3rem 2.5rem 4rem; }
  .page-nav { flex-direction: column; text-align: center; }
}
