
/* ========================================
   DESIGN TOKENS
   ======================================== */
:root {
  /* Colors */
  --berg-groen: #3D6B4F;
  --bos-groen: #2A4A37;
  --blad-groen: #5A9E6F;
  --warm-zand: #F5F2ED;
  --linnen: #EDE8E0;
  --aarde-klei: #C47D3B;
  --aarde-klei-dark: #A8682F;
  --antraciet: #1A1A1A;
  --steen-grijs: #6B6560;
  --wolken-wit: #FAFAF8;
  --berg-groen-light: rgba(61,107,79,0.08);
  --berg-groen-hover: #335A43;
  --overlay-dark: rgba(42,74,55,0.85);

  /* Typography */
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', system-ui, sans-serif;

  /* Spacing (8px base) */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.05);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 8px 24px rgba(0,0,0,0.1);
  --shadow-btn: 0 2px 8px rgba(0,0,0,0.1);

  /* Layout */
  --max-width: 1160px;
  --text-width: 700px;

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--antraciet);
  background-color: var(--warm-zand);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--berg-groen); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--bos-groen); }
button { font-family: inherit; cursor: pointer; border: none; }
ul, ol { list-style: none; }
::selection { background: rgba(61,107,79,0.15); color: var(--antraciet); }

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.25; color: var(--antraciet); }
h1 { font-size: clamp(30px, 5vw, 48px); line-height: 1.15; }
h2 { font-size: clamp(26px, 3.5vw, 36px); line-height: 1.25; margin-bottom: var(--space-md); }
h3 { font-size: clamp(20px, 2.5vw, 24px); font-weight: 600; line-height: 1.3; margin-bottom: var(--space-sm); }
h4 { font-size: 18px; font-weight: 600; }
p { margin-bottom: var(--space-sm); }
p:last-child { margin-bottom: 0; }
.lead { font-size: clamp(18px, 2vw, 21px); line-height: 1.6; color: var(--steen-grijs); }
.small { font-size: 14px; color: var(--steen-grijs); }

/* ========================================
   LAYOUT
   ======================================== */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-md); }
.text-col { max-width: var(--text-width); }
.text-center { text-align: center; }
.section {
  padding: var(--space-xl) 0;
  position: relative;
}
.section--zand { background: var(--warm-zand); }
.section--wit { background: var(--wolken-wit); }
.section--linnen { background: var(--linnen); }
.section--groen { background: var(--bos-groen); color: var(--linnen); }
.section--groen h2, .section--groen h3 { color: var(--wolken-wit); }

@media (min-width: 768px) {
  .section { padding: var(--space-2xl) 0; }
}

/* Grid */
.grid-2 { display: grid; gap: var(--space-md); }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; gap: var(--space-lg); } }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.2;
}
.btn--primary {
  background: var(--aarde-klei);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover {
  background: var(--aarde-klei-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(196,125,59,0.3);
}
.btn--secondary {
  background: var(--berg-groen);
  color: #fff;
}
.btn--secondary:hover {
  background: var(--berg-groen-hover);
  color: #fff;
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--berg-groen);
  border: 1.5px solid var(--berg-groen);
}
.btn--outline:hover {
  background: var(--berg-groen-light);
  color: var(--berg-groen);
}
.btn--white {
  background: #fff;
  color: var(--berg-groen);
}
.btn--white:hover {
  background: var(--linnen);
  color: var(--bos-groen);
  transform: translateY(-1px);
}
.btn--sm { padding: 10px 20px; font-size: 15px; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-sm); align-items: center; }

/* ========================================
   TOPOGRAPHIC PATTERN (SVG bg)
   ======================================== */
.topo-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
}
.topo-bg svg { width: 100%; height: 100%; }

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  border-bottom-color: rgba(0,0,0,0.06);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 80px;
  transition: height 0.3s var(--ease-out);
}
.header.scrolled .header__inner { height: 64px; }

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo__icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  transition: all 0.3s var(--ease-out);
}
.header.scrolled .logo__icon { width: 34px; height: 34px; }
.logo__text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  color: var(--berg-groen);
  line-height: 1.1;
}
.logo__text span { display: block; font-size: 11px; font-family: var(--font-body); font-weight: 400; color: var(--steen-grijs); letter-spacing: 0.5px; text-transform: uppercase; margin-top: 1px; }

/* Desktop Nav */
.nav { display: none; align-items: center; gap: 4px; }
@media (min-width: 900px) { .nav { display: flex; } }
.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--antraciet);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  position: relative;
}
.nav__link:hover { color: var(--berg-groen); background: var(--berg-groen-light); }
.nav__link.active { color: var(--berg-groen); }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 4px; }
.nav__dropdown-toggle svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nav__dropdown:hover .nav__dropdown-toggle svg { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--wolken-wit);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  padding: var(--space-xs);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s var(--ease-out);
}
.nav__dropdown:hover .nav__dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 15px;
  color: var(--antraciet);
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}
.nav__dropdown-menu a:hover { background: var(--berg-groen-light); color: var(--berg-groen); }
.nav__cta { margin-left: 8px; }

/* Mobile hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
@media (min-width: 900px) { .hamburger { display: none; } }
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--antraciet);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile CTA in header */
.header__mobile-cta {
  display: inline-flex;
}
@media (min-width: 900px) { .header__mobile-cta { display: none; } }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--warm-zand);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease-out);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu__links { text-align: center; }
.mobile-menu__links a {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--antraciet);
  padding: 14px 0;
  transition: color 0.2s;
}
.mobile-menu__links a:hover { color: var(--berg-groen); }
.mobile-menu__links .sub { font-size: 20px; font-weight: 400; padding: 10px 0; padding-left: var(--space-md); }
.mobile-menu__bottom {
  margin-top: var(--space-lg);
  text-align: center;
}
.mobile-menu__bottom .btn { margin-bottom: var(--space-sm); }
.mobile-menu__phone {
  display: block;
  margin-top: var(--space-md);
  font-size: 18px;
  font-weight: 500;
  color: var(--berg-groen);
}

/* ========================================
   MOBILE STICKY CTA BAR
   ======================================== */
.mobile-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--wolken-wit);
  border-top: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
  padding: 10px var(--space-sm);
  display: flex;
  gap: 10px;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease-out);
}
.mobile-cta-bar.visible { transform: translateY(0); }
.mobile-cta-bar .btn { flex: 1; text-align: center; padding: 13px 16px; font-size: 15px; }
.mobile-cta-bar .btn--phone {
  flex: 0 0 auto;
  width: 50px;
  padding: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--berg-groen);
  color: #fff;
  border-radius: var(--radius-sm);
}
.mobile-cta-bar .btn--phone:hover { background: var(--berg-groen-hover); color: #fff; }
.mobile-cta-bar .btn--phone svg { width: 20px; height: 20px; }
@media (min-width: 900px) { .mobile-cta-bar { display: none; } }

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: var(--space-xl);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
}
.hero__content { max-width: 560px; }
.hero__subtitle {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
  color: var(--steen-grijs);
  margin: var(--space-md) 0 var(--space-lg);
}
.hero__phone {
  margin-top: var(--space-md);
  font-size: 16px;
  color: var(--steen-grijs);
}
.hero__phone a { color: var(--berg-groen); font-weight: 600; }

/* Hero image placeholder */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__image-frame {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 48px rgba(42,74,55,0.15);
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* Decorative elements */
.hero__deco-1 {
  position: absolute;
  top: -60px;
  right: -40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90,158,111,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero__deco-2 {
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,125,59,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ========================================
   CARDS
   ======================================== */
.card {
  background: var(--wolken-wit);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}
.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--berg-groen-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--berg-groen);
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: var(--space-sm); }
.card p { color: var(--steen-grijs); margin-bottom: var(--space-md); }
.card .btn { margin-top: auto; }
.card--linnen { background: var(--linnen); }

/* ========================================
   VOOR WIE SECTION
   ======================================== */
.voor-wie__list {
  display: grid;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
.voor-wie__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--wolken-wit);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--blad-groen);
}
.voor-wie__item p { margin: 0; font-size: 16px; }

/* ========================================
   QUOTE
   ======================================== */
.quote-section { text-align: center; padding: var(--space-xl) 0; }
.quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.45;
  color: var(--berg-groen);
  max-width: 640px;
  margin: 0 auto var(--space-md);
}
.quote-attr {
  font-size: 15px;
  color: var(--steen-grijs);
  font-style: normal;
}

/* ========================================
   TESTIMONIALS CAROUSEL
   ======================================== */
.testimonials-wrap { position: relative; margin-top: var(--space-lg); }
.testimonials-grid {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.testimonials-grid::-webkit-scrollbar { display: none; }
.testimonial-card {
  background: var(--wolken-wit);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  min-width: 280px;
  flex: 0 0 85%;
}
@media (min-width: 768px) {
  .testimonial-card { flex: 0 0 calc(33.333% - 14px); min-width: auto; }
}
.testimonial-card blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--antraciet);
  flex: 1;
  margin-bottom: var(--space-md);
}
.testimonial-card__author {
  font-size: 14px;
  color: var(--steen-grijs);
  font-style: normal;
  border-top: 1px solid var(--linnen);
  padding-top: var(--space-sm);
}
.testimonial-card__author strong {
  color: var(--berg-groen);
  font-weight: 600;
}
.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
.testimonials-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--berg-groen);
  background: var(--wolken-wit);
  color: var(--berg-groen);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.testimonials-nav button:hover {
  background: var(--berg-groen);
  color: #fff;
}
.testimonials-nav button svg { width: 20px; height: 20px; }

/* ========================================
   INFO BLOCKS
   ======================================== */
.info-block {
  background: var(--wolken-wit);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
}
.info-block--linnen { background: var(--linnen); }
.info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.info-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}
.info-list__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--berg-groen);
  margin-top: 2px;
}
.info-list__item span { font-size: 16px; }

/* ========================================
   OVER / ABOUT
   ======================================== */
.about-grid {
  display: grid;
  gap: var(--space-lg);
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 320px 1fr; gap: var(--space-xl); }
}
.about-photo {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--linnen);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.kwalificaties {
  display: grid;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
.kwalificatie {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--berg-groen-light);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 15px;
}
.kwalificatie svg { width: 20px; height: 20px; color: var(--berg-groen); flex-shrink: 0; }

/* ========================================
   CONTACT / FORM
   ======================================== */
.contact-grid {
  display: grid;
  gap: var(--space-lg);
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
}
.form-group { margin-bottom: var(--space-md); }
.form-label {
  display: block;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--antraciet);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #D5CEC5;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--antraciet);
  background: var(--wolken-wit);
  transition: all 0.2s;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--berg-groen);
  box-shadow: 0 0 0 3px rgba(61,107,79,0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6560' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
}

/* Lead magnet form */
.lead-form {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.lead-form .form-input { flex: 1; min-width: 200px; }
@media (max-width: 600px) {
  .lead-form { flex-direction: column; }
  .lead-form .btn { width: 100%; }
}

/* ========================================
   LOCATIE
   ======================================== */
.locatie-card {
  background: var(--linnen);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
.locatie-card h3 svg { display: inline; vertical-align: middle; margin-right: 6px; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--bos-groen);
  color: var(--linnen);
  padding: var(--space-xl) 0 var(--space-md);
}
.footer a { color: var(--linnen); }
.footer a:hover { color: #fff; }
.footer__grid {
  display: grid;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1.2fr; }
}
.footer__logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-sm);
}
.footer__tagline { font-size: 15px; opacity: 0.75; margin-bottom: var(--space-md); }
.footer__socials { display: flex; gap: var(--space-sm); }
.footer__social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.footer__social:hover { background: rgba(255,255,255,0.2); }
.footer__social svg { width: 18px; height: 18px; }
.footer__heading { font-family: var(--font-heading); font-size: 16px; font-weight: 600; color: #fff; margin-bottom: var(--space-sm); }
.footer__links { display: flex; flex-direction: column; gap: var(--space-xs); }
.footer__links a { font-size: 15px; opacity: 0.8; transition: opacity 0.2s; }
.footer__links a:hover { opacity: 1; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-sm);
  font-size: 14px;
  opacity: 0.6;
}
@media (max-width: 767px) {
  .footer { padding-bottom: 80px; }
}

/* ========================================
   PAGE CONTENT
   ======================================== */

.page-hero {
  padding: 140px 0 var(--space-xl);
  position: relative;
}
@media (min-width: 768px) {
  .page-hero { padding: 160px 0 var(--space-2xl); }
}
.page-hero h1 { margin-bottom: var(--space-md); }
.page-hero .lead { max-width: var(--text-width); }

.content-section { max-width: var(--text-width); }
.content-section h2 { margin-top: var(--space-lg); }
.content-section h3 { margin-top: var(--space-md); }
.content-section ul {
  margin: var(--space-sm) 0;
  padding-left: 0;
}
.content-section ul li {
  position: relative;
  padding-left: var(--space-md);
  margin-bottom: var(--space-xs);
}
.content-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blad-groen);
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ========================================
   CONTOUR / TOPO DECORATION
   ======================================== */
.contour-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* ========================================
   GRATIS / LEAD MAGNET
   ======================================== */
.lead-magnet-card {
  background: var(--wolken-wit);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-lg) var(--space-lg);
  box-shadow: var(--shadow-card);
  border: 2px solid var(--berg-groen-light);
  position: relative;
  overflow: hidden;
}
.lead-magnet-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--berg-groen), var(--blad-groen));
}
.teaser-card {
  background: var(--linnen);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  opacity: 0.8;
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: block; } }
.hide-desktop { display: block; }
@media (min-width: 768px) { .hide-desktop { display: none; } }

@media (max-width: 767px) {
  .hero { min-height: auto; padding-top: 100px; padding-bottom: var(--space-lg); }
  .hero__visual { order: -1; }
  .hero__image-frame { max-width: 280px; aspect-ratio: 1/1; border-radius: 50%; }
  .card { padding: var(--space-md); }
}

/* ========================================
   PRAKTIJK INFO TABLE
   ======================================== */
.praktijk-info {
  display: grid;
  gap: 2px;
  background: rgba(0,0,0,0.04);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: var(--space-md) 0;
}
.praktijk-info__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  background: var(--wolken-wit);
  font-size: 15px;
}
.praktijk-info__label {
  padding: 12px 16px;
  font-weight: 600;
  color: var(--berg-groen);
  background: var(--berg-groen-light);
}
.praktijk-info__value { padding: 12px 16px; }

@media (max-width: 600px) {
  .praktijk-info__row { grid-template-columns: 1fr; }
}

/* Grotere inputvelden op mobiel (design doc: 52px) */
@media (max-width: 767px) {
  .form-input,
  .form-select,
  .form-textarea { padding: 16px; font-size: 16px; }
}

/* ========================================
   VERSCHIL SECTION
   ======================================== */
.verschil-grid {
  display: grid;
  gap: var(--space-md);
}
@media (min-width: 768px) {
  .verschil-grid { grid-template-columns: 1fr 1fr; }
}
.verschil-card {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--linnen);
}
.verschil-card h4 { color: var(--berg-groen); margin-bottom: var(--space-xs); font-family: var(--font-heading); }

/* success message */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-lg);
}
.form-success.show { display: block; }

/* ========================================
   SFEER BANNER (full-width photo strip)
   ======================================== */
.sfeer-banner {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
}
@media (min-width: 768px) { .sfeer-banner { height: 420px; } }
.sfeer-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.sfeer-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(245,242,237,0.15) 0%, rgba(245,242,237,0) 30%, rgba(245,242,237,0) 70%, rgba(245,242,237,0.3) 100%);
  pointer-events: none;
}

/* Bergpad page hero image */
.bergpad-hero-img {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  margin: var(--space-lg) 0;
}
.bergpad-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.form-success svg { width: 48px; height: 48px; color: var(--berg-groen); margin-bottom: var(--space-sm); }

/* ========================================
   ARTIKELEN / BLOG
   ======================================== */
.artikel-grid {
  display: grid;
  gap: var(--space-md);
}
@media (min-width: 600px) { .artikel-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .artikel-grid { grid-template-columns: 1fr 1fr 1fr; } }

.artikel-card {
  background: var(--wolken-wit);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  transition: all 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.artikel-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}
.artikel-card__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--berg-groen);
  background: var(--berg-groen-light);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: var(--space-sm);
  align-self: flex-start;
}
.artikel-card h3 {
  font-size: clamp(18px, 2.2vw, 21px);
  margin-bottom: var(--space-xs);
  line-height: 1.35;
}
.artikel-card p {
  color: var(--steen-grijs);
  font-size: 15px;
  margin-bottom: var(--space-md);
  flex: 1;
}
.artikel-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 13px;
  color: var(--steen-grijs);
  margin-bottom: var(--space-md);
}
.artikel-card__meta svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Artikel detail page */
.artikel-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 15px;
  color: var(--steen-grijs);
  margin-top: var(--space-sm);
}
.artikel-meta svg { width: 16px; height: 16px; }
.artikel-meta span { display: flex; align-items: center; gap: 6px; }

.artikel-terug {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--berg-groen);
  margin-bottom: var(--space-lg);
  transition: gap 0.2s;
}
.artikel-terug:hover { gap: 10px; color: var(--bos-groen); }
.artikel-terug svg { width: 18px; height: 18px; }

.artikel-cta {
  background: var(--linnen);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  margin-top: var(--space-xl);
}
.artikel-cta h3 { margin-bottom: var(--space-sm); }
.artikel-cta p { color: var(--steen-grijs); margin-bottom: var(--space-md); max-width: 480px; margin-left: auto; margin-right: auto; }
