/* ═══════════════════════════════════════════
   CSS VARIABLES
   ═══════════════════════════════════════════ */
:root {
  --cream: #F4EBE0;
  --cream-light: #FAF6F1;
  --beige: #E7D3BE;
  --beige-soft: #EDE0D0;
  --sage: #E0EBD8;
  --sage-deep: #C5D6B8;
  --green-dark: #3E5248;
  --navy: #0F2E3D;
  --navy-soft: #1A3F52;
  --rust: #9A4A1E;
  --rust-light: #B5632F;
  --terracotta: #C47A52;
  --white: #FFFFFF;
  --text-body: #3A3228;
  --text-muted: #6A5F58;
  --text-light: #8A7F77;

  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Public Sans', -apple-system, sans-serif;

  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.4s var(--ease-out);
  --transition-fast: 0.25s var(--ease-out);

  --radius-leaf: 62% 38% 56% 44% / 44% 56% 44% 56%;
  --radius-leaf-alt: 38% 62% 44% 56% / 56% 44% 56% 44%;
  --radius-blob: 50% 50% 45% 55% / 55% 45% 55% 45%;
  --radius-soft: 24px;
  --radius-pill: 100px;

  --shadow-sm: 0 2px 12px rgba(15, 46, 61, 0.06);
  --shadow-md: 0 8px 32px rgba(15, 46, 61, 0.08);
  --shadow-lg: 0 16px 56px rgba(15, 46, 61, 0.1);
  --shadow-glow: 0 0 40px rgba(154, 74, 30, 0.08);
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::selection { background: var(--beige); color: var(--navy); }

/* ═══════════════════════════════════════════
   PAGE SYSTEM
   ═══════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(244, 235, 224, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(231, 211, 190, 0);
  transition: all var(--transition);
}
.nav.scrolled {
  border-bottom-color: rgba(231, 211, 190, 0.5);
  box-shadow: 0 4px 30px rgba(15, 46, 61, 0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 38px;
  height: 38px;
  position: relative;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo-name {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  color: var(--rust);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-item { position: relative; }
.nav-link {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.01em;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.nav-link:hover { color: var(--rust); background: rgba(154, 74, 30, 0.04); }
.nav-arrow { font-size: 0.6rem; transition: transform var(--transition-fast); opacity: 0.5; }
.nav-item:hover .nav-arrow { transform: rotate(180deg); opacity: 1; }

.nav-cta {
  padding: 0.55rem 1.3rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  cursor: pointer;
}
.nav-cta:hover {
  background: var(--rust);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(154, 74, 30, 0.2);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border-radius: 16px;
  padding: 0.5rem;
  min-width: 210px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  pointer-events: none;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.dropdown-link {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--transition-fast);
  border-radius: 10px;
}
.dropdown-link:hover { background: var(--cream); color: var(--rust); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition-fast);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0; bottom: 0;
  background: rgba(244, 235, 224, 0.98);
  backdrop-filter: blur(20px);
  padding: 1rem 1.5rem 2rem;
  z-index: 999;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-nav-link {
  display: block;
  padding: 0.85rem 0;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--navy);
  border-bottom: 1px solid rgba(231, 211, 190, 0.5);
  cursor: pointer;
}
.mobile-nav-link:active { color: var(--rust); }
.mobile-sub-wrap { padding-left: 0.5rem; }
.mobile-sub-label {
  display: block;
  padding: 0.85rem 0 0.3rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--rust);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: none;
}
.mobile-sub-link {
  display: block;
  padding: 0.55rem 0.8rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 8px;
}
.mobile-sub-link:active { color: var(--rust); background: rgba(154,74,30,0.04); }

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  line-height: 1.2;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--navy-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 46, 61, 0.2);
}
.btn-rust {
  background: var(--rust);
  color: var(--white);
}
.btn-rust:hover {
  background: var(--rust-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(154, 74, 30, 0.25);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--navy);
  color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}
.btn-arrow::after { content: ' →'; font-weight: 300; }
.btn-sm { padding: 0.6rem 1.3rem; font-size: 0.82rem; }

/* ═══════════════════════════════════════════
   SHARED SECTION STYLES
   ═══════════════════════════════════════════ */
section, .section-wrap { padding: 6rem clamp(1.5rem, 4vw, 3rem); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-narrow { max-width: 800px; margin: 0 auto; }

.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.7rem;
}
.section-heading {
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: 1.12;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.section-heading.xl { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.section-heading.lg { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.section-heading.md { font-size: clamp(1.4rem, 2.5vw, 2rem); }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px clamp(1.5rem, 4vw, 3rem) 60px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
}
.hero-bg-shape.one {
  right: -8vw; top: 10%;
  width: min(55vw, 700px);
  height: min(55vw, 700px);
  background: radial-gradient(ellipse at 30% 40%, var(--beige-soft) 0%, var(--beige) 60%, transparent 72%);
  opacity: 0.7;
}
.hero-bg-shape.two {
  right: 15vw; bottom: -5%;
  width: min(25vw, 300px);
  height: min(25vw, 300px);
  background: var(--sage);
  opacity: 0.3;
}
.hero-bg-shape.three {
  left: -5vw; bottom: 15%;
  width: min(18vw, 200px);
  height: min(18vw, 200px);
  background: var(--beige);
  opacity: 0.2;
  border-radius: var(--radius-leaf);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content {
  animation: heroFadeIn 1s var(--ease-out) both;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.15s var(--ease-out) both;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6.5vw, 5rem);
  font-weight: 200;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  opacity: 0;
  animation: fadeUp 0.8s 0.25s var(--ease-out) both;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--rust);
}
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  max-width: 460px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s var(--ease-out) both;
}
.hero-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.55s var(--ease-out) both;
}
.hero-image-wrap {
  position: relative;
  opacity: 0;
  animation: fadeIn 1.2s 0.4s var(--ease-out) both;
}
.hero-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-blob);
  overflow: hidden;
  position: relative;
}
.hero-img-accent {
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--sage);
  bottom: -20px; left: -30px;
  z-index: -1;
  opacity: 0;
  animation: fadeIn 1s 0.8s var(--ease-out) both;
}
.hero-img-accent-2 {
  position: absolute;
  width: 80px; height: 80px;
  border-radius: var(--radius-leaf);
  background: var(--beige);
  top: -15px; right: 30px;
  z-index: -1;
  opacity: 0;
  animation: fadeIn 1s 1s var(--ease-out) both;
}

/* ═══════════════════════════════════════════
   INTRO SECTION
   ═══════════════════════════════════════════ */
.intro { background: var(--cream-light); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.intro-img-wrap { position: relative; }
.intro-img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-leaf);
  overflow: hidden;
}
.intro-img-deco {
  position: absolute;
  bottom: -25px; right: -25px;
  width: 140px; height: 140px;
  background: var(--sage);
  border-radius: 50%;
  z-index: -1;
}
.intro-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}
.intro-text h2 { margin-bottom: 1.5rem; }
.intro-text .btn { margin-top: 0.6rem; }

/* ═══════════════════════════════════════════
   HERKEN JE DIT
   ═══════════════════════════════════════════ */
.herken {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.herken::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(154,74,30,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.herken .section-label { color: var(--beige); }
.herken .section-heading { color: var(--white); margin-bottom: 2.5rem; max-width: 500px; }
.herken-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}
.herken-items { display: flex; flex-direction: column; gap: 0.8rem; }
.herken-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  border-left: 3px solid var(--rust);
  transition: all var(--transition-fast);
}
.herken-item:hover { background: rgba(255,255,255,0.07); }
.herken-item p { font-size: 0.95rem; line-height: 1.6; color: rgba(255,255,255,0.8); }
.herken-quote-box {
  background: rgba(255,255,255,0.05);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  margin-top: 1rem;
}
.herken-quote-mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--rust);
  opacity: 0.4;
  position: absolute;
  top: 0.8rem; left: 1.5rem;
}
.herken-quote-box blockquote {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin-top: 1.5rem;
}
.herken-quote-box cite {
  display: block;
  margin-top: 1.2rem;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--beige);
  letter-spacing: 0.06em;
}
.herken-cta { margin-top: 2rem; }

/* ═══════════════════════════════════════════
   AANBOD / SERVICES OVERVIEW
   ═══════════════════════════════════════════ */
.aanbod { background: var(--cream); }
.aanbod-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.aanbod-header p { color: var(--text-muted); margin-top: 0.8rem; }

.aanbod-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.aanbod-category {
  background: var(--white);
  border-radius: var(--radius-soft);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.aanbod-category:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.aanbod-cat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.aanbod-cat-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.aanbod-cat-icon.coaching { background: var(--beige-soft); }
.aanbod-cat-icon.beweging { background: var(--sage); }
.aanbod-cat-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--navy);
}
.aanbod-list { display: flex; flex-direction: column; gap: 0.4rem; }
.aanbod-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 0.93rem;
  color: var(--text-body);
}
.aanbod-link:hover { background: var(--cream); color: var(--rust); }
.aanbod-link .arrow { opacity: 0; transform: translateX(-5px); transition: all var(--transition-fast); font-size: 0.8rem; }
.aanbod-link:hover .arrow { opacity: 1; transform: translateX(0); }

/* Service Cards (alternative display) */
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.dienst-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}
.dienst-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.dienst-card-img {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}
.dienst-card-img > div {
  width: 100%; height: 100%;
  transition: transform 0.6s var(--ease-out);
}
.dienst-card:hover .dienst-card-img > div { transform: scale(1.05); }
.dienst-card-body { padding: 1.5rem; }
.dienst-card-body h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.dienst-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.dienst-card-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--rust);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition-fast);
}
.dienst-card:hover .dienst-card-link { gap: 0.6rem; }

/* ═══════════════════════════════════════════
   QUOTE BANNER
   ═══════════════════════════════════════════ */
.quote-banner {
  background: var(--sage);
  padding: 5rem clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, transparent 70%);
  border-radius: 50%;
}
.quote-banner blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--navy);
  max-width: 680px;
  margin: 0 auto 0.8rem;
  line-height: 1.5;
  position: relative;
}
.quote-banner .attribution {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--green-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   WERKWIJZE / THREE B'S
   ═══════════════════════════════════════════ */
.werkwijze { background: var(--beige-soft); }
.werkwijze-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.werkwijze h2 { margin-bottom: 1rem; }
.werkwijze-lead { font-size: 1.02rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.75; }
.pillars { display: flex; flex-direction: column; gap: 1.3rem; margin-bottom: 2rem; }
.pillar {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.pillar-icon {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.15rem;
}
.pillar-text h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.pillar-text p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.werkwijze-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.werkwijze-img {
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1;
}
.werkwijze-img:nth-child(2) { margin-top: 3rem; }
.werkwijze-img:nth-child(3) { margin-top: -2rem; }

/* ═══════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════ */
.reviews { background: var(--cream-light); }
.reviews-header { text-align: center; margin-bottom: 3rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-stars { color: var(--terracotta); font-size: 0.85rem; letter-spacing: 3px; margin-bottom: 0.8rem; }
.review-text {
  font-style: italic;
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.review-author { font-size: 0.8rem; font-weight: 600; color: var(--navy); letter-spacing: 0.04em; text-transform: uppercase; }
.review-role { font-size: 0.75rem; color: var(--text-light); margin-top: 0.15rem; }

/* ═══════════════════════════════════════════
   IMPRESSIE / GALLERY
   ═══════════════════════════════════════════ */
.impressie { background: var(--cream); }
.impressie-header { text-align: center; margin-bottom: 2.5rem; }
.impressie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 1rem;
}
.impressie-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.impressie-item:nth-child(1) { grid-row: 1 / 3; border-radius: var(--radius-leaf); }
.impressie-item:nth-child(5) { grid-row: 1 / 3; grid-column: 4; border-radius: var(--radius-leaf-alt); }

/* ═══════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════ */
.cta-banner {
  background: var(--green-dark);
  padding: 5rem clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(154,74,30,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner .section-label { color: var(--sage); }
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,0.75); margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 5rem clamp(1.5rem, 4vw, 3rem) 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.88rem; margin-top: 1rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col li { font-size: 0.88rem; cursor: pointer; transition: color var(--transition-fast); }
.footer-col li:hover { color: var(--beige); }

.footer-newsletter { margin-top: 0.5rem; }
.footer-newsletter p { font-size: 0.85rem; margin-bottom: 0.8rem; }
.newsletter-form {
  display: flex;
  gap: 0.5rem;
}
.newsletter-form input {
  flex: 1;
  padding: 0.65rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition-fast);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--rust); }
.newsletter-form button {
  padding: 0.65rem 1.2rem;
  background: var(--rust);
  color: var(--white);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--rust-light); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ═══════════════════════════════════════════
   INNER PAGES SHARED
   ═══════════════════════════════════════════ */
.breadcrumb {
  padding: 96px clamp(1.5rem, 4vw, 3rem) 1.2rem;
  background: var(--cream);
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.breadcrumb-inner span { cursor: pointer; transition: color var(--transition-fast); }
.breadcrumb-inner span:hover { color: var(--rust); }
.breadcrumb-inner .sep { color: var(--text-light); opacity: 0.5; cursor: default; }

.page-hero {
  padding: 2rem clamp(1.5rem, 4vw, 3rem) 5rem;
  background: var(--cream);
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}
.page-hero p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.page-hero .btn { margin-top: 0.8rem; }
.page-hero-img {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-blob);
}

.page-text-section {
  padding: 5rem clamp(1.5rem, 4vw, 3rem);
  background: var(--cream-light);
}
.page-text-inner {
  max-width: 780px;
  margin: 0 auto;
}
.page-text-inner h2 { margin-bottom: 1.2rem; }
.page-text-inner p { font-size: 1rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 1.1rem; }

.resultaten {
  background: var(--sage);
  padding: 5rem clamp(1.5rem, 4vw, 3rem);
}
.resultaten-inner { max-width: 1200px; margin: 0 auto; }
.resultaten h2 { margin-bottom: 2rem; }
.resultaten-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
.resultaat-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background: var(--white);
  border-radius: 12px;
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.5;
}
.resultaat-check {
  color: var(--green-dark);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   OVER MIJ PAGE
   ═══════════════════════════════════════════ */
.over-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.over-img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-leaf-alt);
  overflow: hidden;
}
.over-text h1 { margin-bottom: 1.2rem; }
.over-text p { font-size: 0.97rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 1rem; }
.over-quote {
  font-style: italic;
  color: var(--green-dark);
  border-left: 3px solid var(--rust);
  padding-left: 1.2rem;
  margin: 1.5rem 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.6;
}
.opleidingen {
  background: var(--beige-soft);
  padding: 5rem clamp(1.5rem, 4vw, 3rem);
}
.opleiding-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.opleiding-item {
  background: var(--white);
  border-radius: 14px;
  padding: 1.3rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
  transition: all var(--transition-fast);
}
.opleiding-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.opleiding-icon { font-size: 1.3rem; }

/* ═══════════════════════════════════════════
   AGENDA PAGE
   ═══════════════════════════════════════════ */
.agenda-grid { max-width: 900px; margin: 2rem auto 0; }
.agenda-item {
  display: grid;
  grid-template-columns: 90px 1fr auto auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.3rem 1.8rem;
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 0.8rem;
  transition: all var(--transition-fast);
}
.agenda-item:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.agenda-date { text-align: center; }
.agenda-date .day {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
}
.agenda-date .month {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rust);
  font-weight: 500;
}
.agenda-info h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.15rem;
}
.agenda-info p { font-size: 0.84rem; color: var(--text-light); }
.agenda-tag {
  padding: 0.35rem 0.9rem;
  background: var(--sage);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--green-dark);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════
   LIBRARY PAGE
   ═══════════════════════════════════════════ */
.library-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.library-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: all var(--transition);
}
.library-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.library-card-img { height: 180px; }
.library-card-body { padding: 1.5rem; }
.library-card-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rust);
  font-weight: 500;
}
.library-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--navy);
  margin: 0.4rem 0;
}
.library-card-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }

/* ═══════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h1 { margin-bottom: 1rem; }
.contact-info > p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1rem; line-height: 1.75; }
.contact-details { display: flex; flex-direction: column; gap: 0.8rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.92rem;
  color: var(--navy);
}
.contact-detail-icon {
  width: 38px; height: 38px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.contact-wa-cta { margin-top: 1.8rem; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-soft);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--navy);
  transition: all var(--transition-fast);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(62, 82, 72, 0.08);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit-btn { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-success p { color: var(--text-muted); }

/* ═══════════════════════════════════════════
   REIKI BENEFITS (reusable)
   ═══════════════════════════════════════════ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
.benefit-card {
  background: var(--white);
  border-radius: 18px;
  padding: 1.8rem;
  text-align: center;
  transition: all var(--transition-fast);
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.benefit-card .icon { font-size: 1.6rem; margin-bottom: 0.7rem; }
.benefit-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.benefit-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.55; }

/* ═══════════════════════════════════════════
   IMAGE PLACEHOLDERS
   ═══════════════════════════════════════════ */
.img-ph { width: 100%; height: 100%; }
.img-ph-coaching { background: linear-gradient(145deg, var(--beige-soft) 0%, #c9a882 45%, var(--rust) 100%); }
.img-ph-yoga { background: linear-gradient(145deg, var(--sage) 0%, #9ab89e 50%, var(--green-dark) 100%); }
.img-ph-dans { background: linear-gradient(145deg, #f0d4b8 0%, var(--terracotta) 50%, #8a431f 100%); }
.img-ph-pilates { background: linear-gradient(145deg, #dce8d4 0%, #a8c09a 50%, #5a7a5e 100%); }
.img-ph-meditatie { background: linear-gradient(145deg, var(--beige) 0%, #b5a48e 50%, var(--navy) 100%); }
.img-ph-rachele { background: linear-gradient(145deg, #ede0d0 0%, #c4a07a 50%, #7a5a3a 100%); }
.img-ph-warm { background: linear-gradient(145deg, var(--cream) 0%, var(--beige) 50%, var(--terracotta) 100%); }
.img-ph-navy { background: linear-gradient(145deg, var(--sage) 0%, #7aa0a5 50%, var(--navy) 100%); }
.img-ph-soft { background: linear-gradient(145deg, #faf6f1 0%, var(--beige-soft) 50%, #c9b99e 100%); }
.img-ph-forest { background: linear-gradient(145deg, #d4e0cc 0%, #8aaa7e 50%, var(--green-dark) 100%); }
.img-ph-reiki { background: linear-gradient(145deg, var(--sage) 0%, #b8ccb0 50%, var(--green-dark) 100%); }

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .diensten-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .impressie-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: 180px 180px; }
  .impressie-item:nth-child(5) { display: none; }
  .impressie-item:nth-child(1) { grid-row: 1 / 3; }
}

@media (max-width: 768px) {
  section, .section-wrap { padding: 4rem 1.5rem; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 100px 1.5rem 50px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-image-wrap { display: none; }
  .hero h1 { font-size: clamp(2.4rem, 8vw, 3.2rem); }

  .intro-grid,
  .herken-grid,
  .werkwijze-grid,
  .contact-grid,
  .page-hero-inner,
  .over-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .intro-img-wrap { order: -1; max-width: 400px; }
  .herken-quote-box { display: none; }
  .aanbod-categories { grid-template-columns: 1fr; }
  .diensten-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .opleiding-list { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .resultaten-list { grid-template-columns: 1fr; }
  .werkwijze-visual { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .impressie-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px 160px; }
  .impressie-item:nth-child(1) { grid-row: auto; border-radius: 16px; }
  .impressie-item:nth-child(5) { display: none; }
  .impressie-item:nth-child(6) { display: none; }
  .library-grid { grid-template-columns: 1fr; }
  .agenda-item { grid-template-columns: 70px 1fr auto; }
  .agenda-item .btn { display: none; }
  .breadcrumb { padding: 86px 1.5rem 1rem; }
  .page-hero { padding: 1.5rem 1.5rem 4rem; }
  .opleiding-list { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
}
