/*
Theme Name: Zielkunde
Theme URI: https://www.zielkunde.be
Author: Merijn van den Bosch
Author URI: https://www.zielkunde.be
Description: Professioneel thema voor Zielkunde.be — psychologische begeleiding & zielkunde in Geel, Kempen. Hulp bij burn-out, stress, depressie en angst.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Private
Text Domain: zielkunde
Tags: one-page, psychologie, zielkunde, therapeutic
*/

/* ═══════════════════════════════════════════════════════════════
   ZIELKUNDE.BE — WordPress Theme Stylesheet
   Aesthetic: Refined organic luxury · warm earth tones · editorial
   ═══════════════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --clay:      #8B6F47;
  --clay-lt:   #c9a96e;
  --clay-pale: #f0e8dc;
  --clay-soft: #e8d9c5;
  --soil:      #3d2e1e;
  --cream:     #faf7f3;
  --parchment: #f5efe6;
  --white:     #ffffff;
  --sage:      #6b7c5c;
  --charcoal:  #2a2a2a;
  --mid:       #5c5040;
  --muted:     #9c8c7a;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:    4px;
  --radius-lg: 12px;
  --shadow:    0 2px 20px rgba(61,46,30,.08);
  --shadow-md: 0 8px 40px rgba(61,46,30,.12);

  --transition: 0.3s ease;
  --max-w: 1200px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utility ────────────────────────────────────────────────── */
.container { width: min(var(--max-w), 100%); margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: 760px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--clay-lt);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--soil);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--clay); }
.section-title--center { text-align: center; }
.section-intro {
  max-width: 680px;
  margin: 0 auto 3.5rem;
  text-align: center;
  color: var(--mid);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2.2rem;
  background: var(--clay);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .05em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn-primary:hover { background: var(--soil); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2rem;
  background: transparent;
  color: var(--clay);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .05em;
  border: 1px solid var(--clay);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-ghost:hover { background: var(--clay); color: var(--white); }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1.2rem 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(250,247,243,.95);
  backdrop-filter: blur(12px);
  padding: .8rem 0;
  box-shadow: 0 1px 0 rgba(139,111,71,.1);
}
.nav-container {
  width: min(var(--max-w), 100%);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.logo-text { line-height: 1.1; }
.logo-main {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--soil);
  letter-spacing: -.01em;
}
.logo-sub { display: inline; font-family: var(--font-display); font-size: 1.35rem; color: var(--clay); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: .875rem;
  font-weight: 400;
  color: var(--mid);
  letter-spacing: .02em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: var(--clay);
  transition: right var(--transition);
}
.nav-links a:hover::after, .nav-links a:hover { color: var(--clay); right: 0; }
.nav-cta {
  padding: .55rem 1.3rem !important;
  border: 1px solid var(--clay) !important;
  border-radius: var(--radius) !important;
  color: var(--clay) !important;
}
.nav-cta:hover { background: var(--clay) !important; color: var(--white) !important; }
.nav-cta::after { display: none !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--clay); transition: all var(--transition); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--cream);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 40%, rgba(201,169,110,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(139,111,71,.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-container {
  width: min(var(--max-w), 100%);
  margin: 0 auto;
  padding: 7rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .8s .1s ease forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--soil);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp .8s .25s ease forwards;
}
.hero-title em { font-style: italic; color: var(--clay); }
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp .8s .4s ease forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp .8s .55s ease forwards;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  opacity: 0;
  animation: fadeUp .8s .7s ease forwards;
}
.badge {
  display: inline-block;
  padding: .35rem .9rem;
  background: var(--clay-pale);
  color: var(--mid);
  font-size: .78rem;
  border-radius: 50px;
}
.hero-visual { display: flex; justify-content: center; align-items: center; opacity: 0; animation: fadeIn 1.2s .5s ease forwards; }
.hero-circle-outer {
  width: 380px; height: 380px;
  border: 1px solid rgba(139,111,71,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: rotate 30s linear infinite;
}
.hero-circle-mid {
  width: 280px; height: 280px;
  border: 1px solid rgba(139,111,71,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: rotate 20s linear infinite reverse;
}
.hero-circle-inner {
  width: 180px; height: 180px;
  background: var(--clay-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: rotate 15s linear infinite;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--muted);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}

/* ── Intro Strip ────────────────────────────────────────────── */
.intro-strip { background: var(--soil); padding: 3rem 0; }
.intro-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.intro-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,.1);
}
.intro-item:last-child { border-right: none; }
.intro-num { font-family: var(--font-display); font-size: 2rem; color: var(--clay-lt); opacity: .5; line-height: 1; flex-shrink: 0; }
.intro-item p { color: rgba(255,255,255,.8); font-size: .9rem; line-height: 1.6; padding-top: .3rem; }

/* ── Over mij ───────────────────────────────────────────────── */
.over-mij { background: var(--parchment); }
.over-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }
.portrait-frame { position: relative; }
.portrait-foto {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.portrait-placeholder {
  aspect-ratio: 3/4;
  background: var(--clay-soft);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--muted);
  font-size: .85rem;
  text-align: center;
}
.portrait-deco {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 70%; height: 70%;
  border: 1px solid var(--clay-lt);
  border-radius: 2px;
  z-index: -1;
  opacity: .4;
}
.over-text-col p { color: var(--mid); margin-bottom: 1.2rem; font-size: 1.02rem; line-height: 1.85; }
.over-text-col em { color: var(--clay); font-style: italic; }
.credentials { margin-top: 2rem; display: flex; flex-direction: column; gap: .8rem; }
.credential { display: flex; align-items: center; gap: .75rem; font-size: .9rem; color: var(--mid); }

/* ── Vergelijk ──────────────────────────────────────────────── */
.vergelijk { background: var(--cream); }
.vergelijk-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: start; margin-top: 3rem; }
.vergelijk-card { padding: 2.5rem; border-radius: var(--radius); }
.vergelijk-card--klassiek { background: var(--white); border: 1px solid rgba(139,111,71,.15); }
.vergelijk-card--ziel { background: var(--soil); color: var(--cream); }
.vergelijk-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 400;
  margin-bottom: 1.5rem; padding-bottom: 1rem;
  border-bottom: 1px solid rgba(139,111,71,.2);
}
.vergelijk-card--ziel h3 { color: var(--clay-lt); border-color: rgba(201,169,110,.2); }
.vergelijk-card ul { display: flex; flex-direction: column; gap: .7rem; }
.vergelijk-card li { padding-left: 1.2rem; position: relative; font-size: .95rem; color: var(--mid); line-height: 1.6; }
.vergelijk-card li::before { content: '—'; position: absolute; left: 0; color: var(--clay-lt); }
.vergelijk-card--ziel li { color: rgba(250,247,243,.75); }
.vergelijk-card em { color: var(--clay-lt); }
.vergelijk-plus {
  display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem;
  border: 1px solid var(--clay); border-radius: 50%;
  color: var(--clay); font-size: 1.5rem; font-weight: 300;
  margin-top: 4rem; align-self: center;
}
.tag-extra {
  font-family: var(--font-body);
  font-size: .65rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--clay); color: var(--white);
  padding: .2rem .6rem; border-radius: 50px;
  margin-left: .5rem; vertical-align: middle;
}

/* ── Verschijnselen ─────────────────────────────────────────── */
.verschijnselen { background: var(--parchment); }
.klachten-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.klacht-card {
  background: var(--white); padding: 2rem;
  border-radius: var(--radius); border: 1px solid rgba(139,111,71,.1);
  transition: transform var(--transition), box-shadow var(--transition);
}
.klacht-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.klacht-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.klacht-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--soil); margin-bottom: .6rem; }
.klacht-card p { font-size: .9rem; color: var(--mid); line-height: 1.7; }

/* ── Behandelingen ──────────────────────────────────────────── */
.behandelingen { background: var(--soil); }
.behandelingen .section-label { color: var(--clay-lt); border-color: rgba(201,169,110,.3); }
.behandelingen .section-title { color: var(--cream); }
.behandelingen .section-intro { color: rgba(250,247,243,.65); }
.behandeling-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.behandeling-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(201,169,110,.15);
  padding: 2.5rem; border-radius: var(--radius);
  transition: background var(--transition), border-color var(--transition);
}
.behandeling-card:hover { background: rgba(255,255,255,.07); border-color: rgba(201,169,110,.3); }
.behandeling-nr { font-family: var(--font-display); font-size: 3rem; font-weight: 300; color: var(--clay-lt); opacity: .3; line-height: 1; margin-bottom: 1rem; }
.behandeling-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; color: var(--cream); margin-bottom: .8rem; }
.behandeling-card > p { font-size: .9rem; color: rgba(250,247,243,.65); line-height: 1.75; margin-bottom: 1.5rem; }
.behandeling-list { border-top: 1px solid rgba(201,169,110,.15); padding-top: 1.2rem; display: flex; flex-direction: column; gap: .5rem; }
.behandeling-list li { font-size: .82rem; color: rgba(201,169,110,.8); padding-left: 1rem; position: relative; }
.behandeling-list li::before { content: '›'; position: absolute; left: 0; color: var(--clay-lt); }

/* ── Werkwijze ──────────────────────────────────────────────── */
.werkwijze { background: var(--cream); }
.stappen-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  margin-top: 3rem;
}
.stap { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.2rem; padding: 0 1rem; }
.stap-nr {
  width: 60px; height: 60px;
  border: 1px solid var(--clay); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 300; color: var(--clay);
}
.stap-content h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--soil); margin-bottom: .5rem; }
.stap-content p { font-size: .88rem; color: var(--mid); line-height: 1.7; }
.stap-lijn { margin-top: 30px; height: 1px; background: linear-gradient(90deg, var(--clay-lt), var(--clay-pale)); width: 40px; flex-shrink: 0; }

/* ── Praktisch ──────────────────────────────────────────────── */
.praktisch { background: var(--parchment); }
.praktisch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.praktisch-card { background: var(--white); padding: 2rem; border-radius: var(--radius); border: 1px solid rgba(139,111,71,.12); }
.praktisch-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.praktisch-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--soil); margin-bottom: .8rem; }
.praktisch-card p { font-size: .9rem; color: var(--mid); line-height: 1.7; margin-bottom: .6rem; }
.praktisch-detail { font-size: .82rem !important; color: var(--muted) !important; padding-top: .8rem; border-top: 1px solid var(--clay-pale); }

/* ── Quote ──────────────────────────────────────────────────── */
.quote-section { background: var(--clay-pale); padding: 5rem 0; }
.big-quote { text-align: center; max-width: 700px; margin: 0 auto; }
.big-quote p { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 300; font-style: italic; color: var(--soil); line-height: 1.45; margin-bottom: 1.5rem; }
.big-quote cite { font-size: .85rem; font-style: normal; color: var(--clay); letter-spacing: .1em; text-transform: uppercase; }

/* ── Contact ────────────────────────────────────────────────── */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: .8rem; margin: 1.8rem 0; }
.contact-link { display: flex; align-items: center; gap: .75rem; color: var(--mid); font-size: .95rem; transition: color var(--transition); }
.contact-link:hover { color: var(--clay); }
.praktijk-hours h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 500; color: var(--soil); margin-bottom: .8rem; }
.praktijk-hours table { width: 100%; }
.praktijk-hours td { padding: .3rem 0; font-size: .88rem; color: var(--mid); }
.praktijk-hours td:last-child { text-align: right; color: var(--clay); }
.contact-form-wrap { background: var(--white); padding: 3rem; border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid rgba(139,111,71,.08); }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .78rem; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; color: var(--mid); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: .85rem 1rem;
  border: 1px solid rgba(139,111,71,.2); border-radius: var(--radius);
  background: var(--cream); font-family: var(--font-body); font-size: .95rem; color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--clay); box-shadow: 0 0 0 3px rgba(139,111,71,.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B6F47' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.radio-group { display: flex; flex-wrap: wrap; gap: .75rem; }
.radio-label { display: flex; align-items: center; gap: .5rem; font-size: .9rem; color: var(--mid); cursor: pointer; padding: .45rem .9rem; border: 1px solid rgba(139,111,71,.2); border-radius: var(--radius); transition: all var(--transition); }
.radio-label:has(input:checked) { border-color: var(--clay); background: var(--clay-pale); color: var(--clay); }
.radio-label input { display: none; }
.form-privacy .checkbox-label { display: flex; align-items: flex-start; gap: .75rem; font-size: .85rem; color: var(--mid); cursor: pointer; line-height: 1.6; }
.form-privacy input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--clay); padding: 0; }
.form-privacy a { color: var(--clay); text-decoration: underline; }
.btn-submit { width: 100%; justify-content: center; padding: 1rem; font-size: 1rem; margin-top: .5rem; }
.form-success { background: #f0f7f3; border: 1px solid #c5dece; border-radius: var(--radius); padding: 1.5rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.form-success strong { color: #2d6a4f; }
.form-success p { font-size: .9rem; color: #4a7c59; }
.form-error { background: #fdf0f0; border: 1px solid #e8c5c5; border-radius: var(--radius); padding: 1rem; font-size: .9rem; color: #8b3a3a; }
.form-error a { color: var(--clay); text-decoration: underline; }

/* ── Privacy ─────────────────────────────────────────────────── */
.privacy-section { background: var(--parchment); }
.privacy-text h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--soil); margin: 1.5rem 0 .5rem; }
.privacy-text p { font-size: .9rem; color: var(--mid); line-height: 1.75; margin-bottom: .5rem; }
.privacy-text a { color: var(--clay); text-decoration: underline; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer { background: var(--soil); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 2rem; }
.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.45); line-height: 1.7; margin-top: 1rem; }
.footer-nav h4, .footer-contact h4, .footer-service h4 { font-size: .7rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--clay-lt); margin-bottom: 1.2rem; }
.footer-nav ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-nav a { font-size: .88rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-nav a:hover { color: var(--clay-lt); }
.footer-contact p, .footer-contact a { font-size: .88rem; color: rgba(255,255,255,.5); display: block; margin-bottom: .4rem; }
.footer-contact a:hover { color: var(--clay-lt); }
.footer-service p { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.8; margin-bottom: .6rem; }
.footer-region { font-size: .78rem !important; color: rgba(255,255,255,.3) !important; }
.footer-bottom { text-align: center; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.35); line-height: 1.7; }
.footer-bottom a { color: rgba(201,169,110,.6); text-decoration: underline; }
.footer-disclaimer { margin-top: .5rem; font-size: .72rem !important; color: rgba(255,255,255,.2) !important; }

/* ── Back to top ─────────────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 46px; height: 46px;
  background: var(--clay); color: var(--white);
  border: none; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(10px);
  transition: all var(--transition); z-index: 800;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--soil); }

/* ── Cookie ──────────────────────────────────────────────────── */
.cookie-overlay {
  position: fixed; inset: 0;
  background: rgba(42,35,28,.5);
  backdrop-filter: blur(4px);
  z-index: 9998; opacity: 0;
  transition: opacity 0.4s ease; pointer-events: none;
}
.cookie-overlay.active { opacity: 1; pointer-events: all; }
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9999; transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.cookie-banner.active { transform: translateY(0); }
.cookie-inner {
  background: var(--cream); border-top: 1px solid rgba(139,111,71,.2);
  padding: 2.5rem; max-width: 900px; margin: 0 auto;
}
.cookie-logo-sm { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; font-family: var(--font-display); font-size: 1rem; color: var(--clay); }
.cookie-inner h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--soil); margin-bottom: .75rem; }
.cookie-inner > p { font-size: .88rem; color: var(--mid); line-height: 1.7; margin-bottom: 1.5rem; max-width: 640px; }
.cookie-options { display: flex; flex-direction: column; gap: .8rem; margin-bottom: 1.8rem; padding: 1.2rem; background: rgba(139,111,71,.05); border-radius: 4px; border: 1px solid rgba(139,111,71,.1); }
.cookie-toggle { display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.toggle-label strong { display: block; font-size: .88rem; font-weight: 500; color: var(--soil); }
.toggle-label small { font-size: .75rem; color: var(--muted); }
.toggle-switch { position: relative; flex-shrink: 0; }
.toggle-switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.slider { display: block; width: 44px; height: 24px; background: #d4c4b0; border-radius: 12px; position: relative; transition: background .3s; cursor: pointer; }
.slider::after { content: ''; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; background: white; border-radius: 50%; transition: transform .3s; box-shadow: 0 1px 3px rgba(0,0,0,.2); }
.toggle-switch input:checked + .slider { background: var(--clay); }
.toggle-switch input:checked + .slider::after { transform: translateX(20px); }
.toggle-switch.disabled .slider { background: var(--clay); opacity: .6; cursor: not-allowed; }
.toggle-switch.disabled .slider::after { transform: translateX(20px); }
.cookie-buttons { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1rem; }
.btn-cookie-accept { padding: .7rem 1.6rem; background: var(--clay); color: white; border: none; border-radius: 3px; font-family: var(--font-body); font-size: .85rem; font-weight: 500; cursor: pointer; transition: background .25s; }
.btn-cookie-accept:hover { background: var(--soil); }
.btn-cookie-save { padding: .7rem 1.6rem; background: transparent; color: var(--clay); border: 1px solid var(--clay); border-radius: 3px; font-family: var(--font-body); font-size: .85rem; font-weight: 500; cursor: pointer; transition: all .25s; }
.btn-cookie-save:hover { background: var(--clay); color: white; }
.btn-cookie-decline { padding: .7rem 1.4rem; background: transparent; color: var(--muted); border: none; font-family: var(--font-body); font-size: .82rem; cursor: pointer; text-decoration: underline; }
.cookie-legal { font-size: .75rem; color: var(--muted); }
.cookie-legal a { color: var(--clay); text-decoration: underline; }

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes rotate {
  to { transform: rotate(360deg); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.field-error { border-color: #c0392b !important; box-shadow: 0 0 0 3px rgba(192,57,43,.1) !important; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stappen-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .stap-lijn { width: 1px; height: 30px; background: linear-gradient(180deg, var(--clay-lt), var(--clay-pale)); margin: 0 auto; }
  .vergelijk-grid { grid-template-columns: 1fr; }
  .vergelijk-plus { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .hero-badges { justify-content: center; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .intro-item:last-child { border-bottom: none; }
  .over-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-form-wrap { padding: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    align-items: center; justify-content: center;
    gap: 2rem; z-index: 999;
  }
  .nav-links.open a { font-size: 1.1rem; }
  .nav-toggle { display: flex; z-index: 1000; position: relative; }
  .cookie-inner { padding: 1.5rem; }
  .cookie-buttons { flex-direction: column; }
}
