/* ==========================================================================
   Hondenoppas Hoorn — Site stylesheet
   Built on the HappyPaws designsheet tokens.
   Sections: 1 Tokens · 2 Reset/base · 3 Typography · 4 Layout · 5 Buttons
   6 Header/nav · 7 Hero · 8 Proof bar · 9 Cards · 10 Illustrations
   11 Steps · 12 Tarieven · 13 Reviews · 14 Gebied/kaart · 15 FAQ
   16 CTA band · 17 Forms · 18 Breadcrumbs · 19 Prose · 20 Footer
   21 Utilities · 22 Responsive · 23 A11y/motion/print
   ========================================================================== */

/* 1 — Tokens ------------------------------------------------------------- */
:root {
  /* Primaire kleuren */
  --color-bosgroen: #2E4A3B;
  --color-bosgroen-dark: #25392D;
  --color-sage-groen: #567A57;
  --color-licht-sage: #DDE8D3;
  --color-licht-sage-2: #C6D8B8;
  --color-warm-beige: #F3EEE6;
  --color-wit: #FFFFFF;

  /* Accentkleuren */
  --color-zon-geel: #F4B942;
  --color-zacht-perzik: #F7CFAE;
  --color-warm-taupe: #A68F7A;
  --color-licht-grijs: #EAE7E2;

  /* Tekst */
  --text-primary: #1F3329;
  --text-secondary: #51625A;
  --text-muted: #8A958E;

  --page-bg: #FBF9F4;

  /* Typografie */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Radius & schaduw */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --shadow-soft: 0 4px 20px rgba(46, 74, 59, 0.06);
  --shadow-card: 0 2px 12px rgba(46, 74, 59, 0.08);
  --shadow-lift: 0 18px 40px -18px rgba(46, 74, 59, 0.28);

  /* Layout */
  --container: 1180px;
  --container-narrow: 760px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 7vw, 6rem);
}

/* 2 — Reset / base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 100%; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--page-bg);
  color: var(--text-primary);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--color-bosgroen); text-decoration-color: rgba(46, 74, 59, 0.28); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
:focus-visible { outline: 3px solid var(--color-sage-groen); outline-offset: 2px; border-radius: 4px; }

/* 3 — Typography --------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; color: var(--text-primary); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
em { font-style: italic; }
strong { font-weight: 700; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-size: .75rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--color-sage-groen);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 1.75rem; height: 2px; background: var(--color-sage-groen); border-radius: 2px; }
.eyebrow--center { justify-content: center; }
.section-title { max-width: 42rem; }
.section-title.is-center { margin-inline: auto; text-align: center; }
.section-lead { color: var(--text-secondary); font-size: 1.125rem; max-width: 46rem; margin-top: 1rem; }
.section-title.is-center + .section-lead { margin-inline: auto; text-align: center; }
.text-accent { font-style: italic; color: var(--color-sage-groen); }
.heart { color: var(--color-zon-geel); font-style: normal; }

/* 4 — Layout ------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--beige { background: var(--color-warm-beige); }
.section--sage { background: var(--color-licht-sage); }
.section--white { background: var(--color-wit); }
.bg-soft { background: linear-gradient(180deg, var(--page-bg) 0%, var(--color-warm-beige) 100%); }

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.stack > * + * { margin-top: 1rem; }
.section-head { margin-bottom: clamp(2rem, 4vw, 3rem); }

/* 5 — Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  padding: .85rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
  text-decoration: none; line-height: 1.1; text-align: center;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn--primary { background: var(--color-bosgroen); color: var(--color-wit); }
.btn--primary:hover { background: var(--color-bosgroen-dark); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn--secondary { background: transparent; color: var(--color-bosgroen); border-color: var(--color-bosgroen); }
.btn--secondary:hover { background: var(--color-bosgroen); color: var(--color-wit); transform: translateY(-2px); }
.btn--ghost { background: var(--color-wit); color: var(--color-bosgroen); border-color: var(--color-licht-grijs); box-shadow: var(--shadow-card); }
.btn--ghost:hover { border-color: var(--color-bosgroen); transform: translateY(-2px); }
.btn--accent { background: var(--color-zon-geel); color: #4a3611; }
.btn--accent:hover { filter: brightness(.96); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn--whatsapp { background: #25D366; color: #07331a; }
.btn--whatsapp:hover { filter: brightness(.96); transform: translateY(-2px); }
.btn--on-dark { background: var(--color-wit); color: var(--color-bosgroen); }
.btn--on-dark:hover { background: var(--color-licht-sage); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--lg { padding: 1rem 1.85rem; font-size: 1.05rem; }
.btn--sm { padding: .6rem 1.1rem; font-size: .9rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }
.arrow-link {
  display: inline-flex; align-items: center; gap: .45rem; font-weight: 600;
  color: var(--color-bosgroen); text-decoration: none;
}
.arrow-link svg { width: 1.1em; height: 1.1em; transition: transform .18s ease; }
.arrow-link:hover svg { transform: translateX(4px); }

/* 6 — Header / nav ------------------------------------------------------- */
.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 200;
  background: var(--color-bosgroen); color: #fff; padding: .6rem 1rem; border-radius: 0 0 var(--radius-md) var(--radius-md);
  transition: top .2s ease; text-decoration: none;
}
.skip-link:focus { top: 0; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 249, 244, 0.88); backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--color-licht-grijs);
}
.site-header__inner { display: flex; align-items: center; gap: 1.25rem; min-height: 72px; }
.brand-link { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; flex: none; }
.brand-link__logo { width: 38px; height: 38px; }
.brand-link__name { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--text-primary); letter-spacing: -.02em; line-height: 1; }
.brand-link__name span { display: block; font-family: var(--font-body); font-weight: 600; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--color-sage-groen); margin-top: 3px; }

.primary-nav { margin-left: auto; }
.primary-nav__list { display: flex; align-items: center; gap: .25rem; }
.primary-nav a {
  display: inline-block; padding: .5rem .7rem; border-radius: var(--radius-sm);
  font-size: .95rem; font-weight: 500; color: var(--text-primary); text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.primary-nav a:hover { background: var(--color-licht-sage); color: var(--color-bosgroen); }
.primary-nav a[aria-current="page"] { color: var(--color-bosgroen); font-weight: 700; }
.header-cta { display: flex; align-items: center; gap: .6rem; flex: none; }
.header-phone { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; text-decoration: none; color: var(--color-bosgroen); white-space: nowrap; }
.header-phone svg { width: 1.05rem; height: 1.05rem; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: var(--radius-sm);
  align-items: center; justify-content: center; flex: none; border: 1px solid var(--color-licht-grijs); background: var(--color-wit);
}
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle__bars::before { transform: translateY(-6px); }
.nav-toggle__bars::after { transform: translateY(4px); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(0) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-2px) rotate(-45deg); }

/* 7 — Hero --------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5rem); background: linear-gradient(180deg, var(--page-bg) 0%, var(--color-warm-beige) 100%); }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__title { margin-bottom: 1.1rem; }
.hero__lead { font-size: 1.2rem; color: var(--text-secondary); max-width: 34rem; margin-bottom: 1.6rem; }
.hero__cta { margin-bottom: 1.5rem; }
.hero__bullets { display: grid; gap: .55rem; }
.hero__bullets li { display: flex; align-items: flex-start; gap: .6rem; font-weight: 500; font-size: .98rem; }
.hero__bullets svg { width: 1.25rem; height: 1.25rem; color: var(--color-sage-groen); flex: none; margin-top: .15rem; }
.hero__media { position: relative; }
.hero__panel {
  position: relative; border-radius: var(--radius-2xl); background: var(--color-licht-sage);
  padding: clamp(1.5rem, 3vw, 2.5rem); overflow: hidden; box-shadow: var(--shadow-soft);
  aspect-ratio: 5 / 4; display: grid; place-items: center;
}
.hero__panel::after { content: ""; position: absolute; inset: auto -10% -30% -10%; height: 55%; background: radial-gradient(120% 100% at 50% 100%, var(--color-licht-sage-2) 0%, transparent 70%); }
.hero__panel img { position: relative; z-index: 1; mix-blend-mode: multiply; width: min(100%, 460px); }
.hero__rating {
  position: absolute; left: clamp(.5rem, 2vw, 1.25rem); bottom: clamp(.5rem, 2vw, 1.25rem); z-index: 2;
  background: var(--color-wit); border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
  padding: .7rem .95rem; display: flex; align-items: center; gap: .6rem;
}
.hero__rating .stars { color: var(--color-zon-geel); font-size: .95rem; letter-spacing: 1px; }
.hero__rating strong { display: block; font-family: var(--font-display); font-size: 1.05rem; }
.hero__rating small { color: var(--text-secondary); font-size: .78rem; }

/* 8 — Proof bar ---------------------------------------------------------- */
.proof-bar { background: var(--color-bosgroen); color: #fff; }
.proof-bar__list { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem 1.5rem; padding-block: 1.1rem; }
.proof-bar__item { display: flex; align-items: center; gap: .55rem; font-size: .95rem; font-weight: 500; color: #EAF1E6; }
.proof-bar__item svg { width: 1.2rem; height: 1.2rem; color: var(--color-zon-geel); flex: none; }

/* 9 — Cards -------------------------------------------------------------- */
.card { background: var(--color-wit); border: 1px solid var(--color-licht-grijs); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); overflow: hidden; }
.card--pad { padding: clamp(1.4rem, 2.5vw, 2rem); }

.service-card { display: flex; flex-direction: column; background: var(--color-wit); border: 1px solid var(--color-licht-grijs); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); transition: transform .2s ease, box-shadow .2s ease; height: 100%; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.service-card__media { background: var(--color-licht-sage); aspect-ratio: 3 / 2; display: grid; place-items: center; padding: 1rem; }
.service-card__media img { mix-blend-mode: multiply; width: min(82%, 260px); }
.service-card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.service-card__body h3 { margin-bottom: .5rem; }
.service-card__body p { color: var(--text-secondary); font-size: .98rem; margin-bottom: 1rem; }
.service-card__body .arrow-link { margin-top: auto; }

.feature { background: var(--color-wit); border: 1px solid var(--color-licht-grijs); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-card); height: 100%; }
.feature__icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: grid; place-items: center; background: var(--color-licht-sage); color: var(--color-bosgroen); margin-bottom: 1rem; }
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.feature p { color: var(--text-secondary); font-size: .96rem; }

.link-card { display: flex; align-items: center; gap: .8rem; background: var(--color-wit); border: 1px solid var(--color-licht-grijs); border-radius: var(--radius-md); padding: .9rem 1.1rem; text-decoration: none; color: var(--text-primary); font-weight: 600; box-shadow: var(--shadow-card); transition: transform .18s ease, border-color .18s ease; }
.link-card:hover { transform: translateY(-2px); border-color: var(--color-sage-groen); }
.link-card svg { width: 1.2rem; height: 1.2rem; color: var(--color-sage-groen); margin-left: auto; }

/* Split media + copy block */
.media-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.media-split--reverse .media-split__media { order: 2; }
.media-split__copy h2 { margin-bottom: 1rem; }
.media-split__copy p { color: var(--text-secondary); }

/* 10 — Illustration frames ---------------------------------------------- */
.illu { border-radius: var(--radius-xl); display: grid; place-items: center; padding: clamp(1.25rem, 3vw, 2.25rem); overflow: hidden; }
.illu--sage { background: var(--color-licht-sage); }
.illu--beige { background: var(--color-warm-beige); }
.illu--perzik { background: var(--color-zacht-perzik); }
.illu--white { background: var(--color-wit); border: 1px solid var(--color-licht-grijs); }
.illu img { mix-blend-mode: multiply; }
.illu--white img { mix-blend-mode: normal; }
.illu-round { aspect-ratio: 1; border-radius: 50%; }

/* 11 — Steps ------------------------------------------------------------- */
.steps { counter-reset: step; }
.step { position: relative; background: var(--color-wit); border: 1px solid var(--color-licht-grijs); border-radius: var(--radius-lg); padding: 2.25rem 1.5rem 1.6rem; box-shadow: var(--shadow-card); height: 100%; }
.step__num { counter-increment: step; position: absolute; top: -22px; left: 1.5rem; width: 44px; height: 44px; border-radius: 50%; background: var(--color-bosgroen); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; display: grid; place-items: center; box-shadow: var(--shadow-card); }
.step__num::before { content: counter(step); }
.step h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.step p { color: var(--text-secondary); font-size: .97rem; }

/* 12 — Tarieven ---------------------------------------------------------- */
.price-table { width: 100%; border-collapse: collapse; background: var(--color-wit); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--color-licht-grijs); }
.price-table caption { caption-side: bottom; font-size: .85rem; color: var(--text-secondary); padding-top: .75rem; text-align: left; }
.price-table th, .price-table td { padding: .95rem 1.1rem; text-align: left; border-bottom: 1px solid var(--color-licht-grijs); }
.price-table thead th { background: var(--color-licht-sage); color: var(--color-bosgroen); font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover { background: var(--page-bg); }
.price-table .price { font-family: var(--font-display); font-weight: 700; color: var(--color-bosgroen); white-space: nowrap; }

.price-card { background: var(--color-wit); border: 1px solid var(--color-licht-grijs); border-radius: var(--radius-lg); padding: 1.75rem 1.6rem; box-shadow: var(--shadow-card); height: 100%; display: flex; flex-direction: column; }
.price-card.is-featured { border-color: var(--color-bosgroen); box-shadow: var(--shadow-lift); position: relative; }
.price-card.is-featured::before { content: "Populair"; position: absolute; top: -.8rem; right: 1.25rem; background: var(--color-zon-geel); color: #4a3611; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: .25rem .7rem; border-radius: 999px; }
.price-card h3 { font-size: 1.25rem; margin-bottom: .35rem; }
.price-card__price { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--color-bosgroen); line-height: 1; margin: .5rem 0 .25rem; }
.price-card__price small { font-family: var(--font-body); font-size: .9rem; font-weight: 500; color: var(--text-secondary); }
.price-card ul { margin: 1rem 0 1.5rem; display: grid; gap: .55rem; }
.price-card li { display: flex; gap: .55rem; align-items: flex-start; font-size: .96rem; color: var(--text-secondary); }
.price-card li svg { width: 1.1rem; height: 1.1rem; color: var(--color-sage-groen); flex: none; margin-top: .2rem; }
.price-card .btn { margin-top: auto; }

/* 13 — Reviews ----------------------------------------------------------- */
.rating-summary { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; background: var(--color-wit); border: 1px solid var(--color-licht-grijs); border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; box-shadow: var(--shadow-card); }
.rating-summary__score { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--color-bosgroen); line-height: 1; }
.stars { color: var(--color-zon-geel); letter-spacing: 2px; }
.stars--lg { font-size: 1.35rem; }

.review-card { background: var(--color-wit); border: 1px solid var(--color-licht-grijs); border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: var(--shadow-card); height: 100%; display: flex; flex-direction: column; }
.review-card .stars { margin-bottom: .75rem; }
.review-card blockquote { font-size: 1.02rem; color: var(--text-primary); margin-bottom: 1.2rem; }
.review-card__author { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.review-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--color-licht-sage); color: var(--color-bosgroen); display: grid; place-items: center; font-weight: 700; font-family: var(--font-display); flex: none; }
.review-card__meta strong { display: block; font-size: .95rem; }
.review-card__meta span { font-size: .82rem; color: var(--text-secondary); }

/* 14 — Gebied / kaart ---------------------------------------------------- */
.area-map { background: var(--color-licht-sage); border-radius: var(--radius-xl); padding: clamp(1.5rem, 4vw, 3rem); position: relative; overflow: hidden; }
.area-map svg { width: 100%; height: auto; }
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: .85rem; }
.area-pill { display: flex; align-items: center; gap: .55rem; background: var(--color-wit); border: 1px solid var(--color-licht-grijs); border-radius: 999px; padding: .65rem 1.1rem; text-decoration: none; color: var(--text-primary); font-weight: 600; font-size: .95rem; transition: transform .15s ease, border-color .15s ease; box-shadow: var(--shadow-card); }
.area-pill:hover { transform: translateY(-2px); border-color: var(--color-sage-groen); }
.area-pill svg { width: 1.05rem; height: 1.05rem; color: var(--color-sage-groen); }

/* 15 — FAQ --------------------------------------------------------------- */
.faq { display: grid; gap: .85rem; max-width: 52rem; }
.faq__item { background: var(--color-wit); border: 1px solid var(--color-licht-grijs); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); }
.faq__item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.35rem; font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--text-primary); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: ""; flex: none; width: 22px; height: 22px; background: var(--color-licht-sage); border-radius: 50%; position: relative; transition: transform .2s ease; }
.faq__plus { position: relative; flex: none; width: 22px; height: 22px; }
.faq__item summary .faq__plus::before, .faq__item summary .faq__plus::after { content: ""; position: absolute; top: 50%; left: 50%; width: 11px; height: 2px; background: var(--color-bosgroen); transform: translate(-50%, -50%); transition: transform .2s ease; }
.faq__item summary .faq__plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] summary .faq__plus::after { transform: translate(-50%, -50%) rotate(0); }
.faq__item summary::after { display: none; }
.faq__answer { padding: 0 1.35rem 1.25rem; color: var(--text-secondary); }
.faq__answer p { margin-bottom: .75rem; }

/* 16 — CTA band ---------------------------------------------------------- */
.cta-band { background: var(--color-bosgroen); color: #fff; border-radius: var(--radius-2xl); padding: clamp(2.25rem, 5vw, 3.75rem); position: relative; overflow: hidden; text-align: center; }
.cta-band::before { content: ""; position: absolute; right: -40px; top: -40px; width: 220px; height: 220px; background: radial-gradient(circle, rgba(244,185,66,.18) 0%, transparent 70%); }
.cta-band h2 { color: #fff; max-width: 30rem; margin: 0 auto 1rem; }
.cta-band p { color: #D8E4D2; max-width: 36rem; margin: 0 auto 1.75rem; }
.cta-band .btn-row { justify-content: center; position: relative; z-index: 1; }
.cta-band__paw { position: absolute; left: -30px; bottom: -40px; width: 180px; opacity: .12; }

/* 17 — Forms ------------------------------------------------------------- */
.form-card { background: var(--color-wit); border: 1px solid var(--color-licht-grijs); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.25rem); box-shadow: var(--shadow-soft); }
.form-grid { display: grid; gap: 1.1rem; }
.form-grid--2 { grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-weight: 600; font-size: .92rem; }
.field .req { color: #b3402e; }
.field input, .field select, .field textarea {
  font: inherit; padding: .75rem .9rem; border: 1.5px solid var(--color-licht-grijs); border-radius: var(--radius-sm);
  background: var(--page-bg); color: var(--text-primary); transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--color-sage-groen); box-shadow: 0 0 0 3px rgba(86,122,87,.18); }
.field textarea { resize: vertical; min-height: 130px; }
.field--full { grid-column: 1 / -1; }
.form-hint { font-size: .85rem; color: var(--text-secondary); }
.form-note { background: var(--color-licht-sage); border-radius: var(--radius-md); padding: .9rem 1.1rem; font-size: .9rem; color: var(--color-bosgroen); }
.form-success { display: none; background: var(--color-licht-sage); border: 1px solid var(--color-sage-groen); border-radius: var(--radius-md); padding: 1rem 1.2rem; color: var(--color-bosgroen); font-weight: 600; }
.checkbox-row { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: var(--text-secondary); }
.checkbox-row input { width: 1.1rem; height: 1.1rem; margin-top: .2rem; flex: none; }

/* 18 — Breadcrumbs ------------------------------------------------------- */
.breadcrumbs { padding-block: .9rem; font-size: .85rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; }
.breadcrumbs li { display: flex; align-items: center; gap: .4rem; color: var(--text-secondary); }
.breadcrumbs a { color: var(--color-sage-groen); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs li + li::before { content: "›"; color: var(--text-muted); }
.breadcrumbs [aria-current="page"] { color: var(--text-primary); font-weight: 600; }

/* Page hero (interior pages) */
.page-hero { background: linear-gradient(180deg, var(--page-bg) 0%, var(--color-warm-beige) 100%); padding-block: clamp(2rem, 4vw, 3.25rem) clamp(2.5rem, 5vw, 4rem); }
.page-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.page-hero__title { margin-bottom: 1rem; }
.page-hero__lead { font-size: 1.15rem; color: var(--text-secondary); margin-bottom: 1.5rem; }
.page-hero--simple { text-align: center; }
.page-hero--simple .page-hero__lead { margin-inline: auto; max-width: 42rem; }

/* 19 — Prose (blog/legal) ------------------------------------------------ */
.prose { max-width: 46rem; }
.prose > * + * { margin-top: 1.15rem; }
.prose h2 { margin-top: 2.5rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.prose h3 { margin-top: 1.75rem; }
.prose p, .prose li { color: #2a3b32; font-size: 1.08rem; line-height: 1.75; }
.prose ul, .prose ol { padding-left: 1.3rem; display: grid; gap: .5rem; }
.prose ul li { list-style: none; position: relative; padding-left: 1.5rem; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .65em; width: .5rem; height: .5rem; background: var(--color-sage-groen); border-radius: 50%; }
.prose ol { list-style: decimal; }
.prose ol li { padding-left: .3rem; }
.prose a { color: var(--color-bosgroen); font-weight: 600; }
.prose blockquote { border-left: 4px solid var(--color-sage-groen); background: var(--color-licht-sage); padding: 1rem 1.3rem; border-radius: 0 var(--radius-md) var(--radius-md) 0; font-style: italic; color: var(--text-primary); }
.prose figure { margin: 1.75rem 0; }
.prose figure img { border-radius: var(--radius-lg); width: 100%; }
.prose figcaption { font-size: .85rem; color: var(--text-secondary); margin-top: .5rem; text-align: center; }
.prose table { width: 100%; border-collapse: collapse; font-size: .98rem; }
.prose th, .prose td { padding: .7rem .8rem; border-bottom: 1px solid var(--color-licht-grijs); text-align: left; }
.prose thead th { background: var(--color-licht-sage); }
.callout { background: var(--color-warm-beige); border: 1px solid var(--color-licht-grijs); border-radius: var(--radius-lg); padding: 1.25rem 1.4rem; }
.callout strong { color: var(--color-bosgroen); }

/* Article layout + meta */
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.article-meta { display: flex; flex-wrap: wrap; gap: .5rem 1rem; color: var(--text-secondary); font-size: .9rem; margin-bottom: 1.5rem; }
.article-meta time { font-weight: 600; }
.toc { position: sticky; top: 92px; background: var(--color-wit); border: 1px solid var(--color-licht-grijs); border-radius: var(--radius-lg); padding: 1.25rem 1.4rem; box-shadow: var(--shadow-card); }
.toc h2 { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--color-sage-groen); font-family: var(--font-body); margin-bottom: .75rem; }
.toc a { display: block; padding: .3rem 0; font-size: .92rem; color: var(--text-secondary); text-decoration: none; }
.toc a:hover { color: var(--color-bosgroen); }
.tag { display: inline-block; background: var(--color-licht-sage); color: var(--color-bosgroen); font-size: .78rem; font-weight: 600; padding: .25rem .7rem; border-radius: 999px; }

/* Blog cards */
.post-card { display: flex; flex-direction: column; background: var(--color-wit); border: 1px solid var(--color-licht-grijs); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); transition: transform .2s ease, box-shadow .2s ease; height: 100%; text-decoration: none; color: inherit; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.post-card__media { background: var(--color-warm-beige); aspect-ratio: 16 / 10; display: grid; place-items: center; padding: 1rem; }
.post-card__media img { mix-blend-mode: multiply; width: min(70%, 220px); }
.post-card__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-card__body h3 { font-size: 1.18rem; margin: .6rem 0 .5rem; }
.post-card__body p { color: var(--text-secondary); font-size: .95rem; margin-bottom: 1rem; }
.post-card__body .arrow-link { margin-top: auto; }

/* 20 — Footer ------------------------------------------------------------ */
.site-footer { background: var(--color-bosgroen); color: #D8E4D2; margin-top: var(--section-y); }
.site-footer a { color: #D8E4D2; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-block: clamp(2.5rem, 5vw, 4rem); }
.footer-brand__name { display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: #fff; margin-bottom: 1rem; }
.footer-brand__name svg { width: 34px; height: 34px; }
.footer-brand p { color: #B9CDB2; font-size: .95rem; max-width: 26rem; }
.footer-col h2 { font-family: var(--font-body); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--color-zon-geel); margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: .55rem; font-size: .95rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: .6rem; font-size: .95rem; margin-bottom: .7rem; }
.footer-contact svg { width: 1.1rem; height: 1.1rem; color: var(--color-zon-geel); flex: none; margin-top: .2rem; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.25rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); display: grid; place-items: center; }
.footer-social a:hover { background: rgba(255,255,255,.1); }
.footer-social svg { width: 18px; height: 18px; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.14); padding-block: 1.25rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem 1.5rem; font-size: .85rem; color: #A9BFA3; }
.site-footer__bottom ul { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; }

/* 21 — Utilities --------------------------------------------------------- */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; } .mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; }
.lead { font-size: 1.2rem; color: var(--text-secondary); }
.muted { color: var(--text-secondary); }
.pill-list { display: flex; flex-wrap: wrap; gap: .6rem; }
.cert-badges { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.25rem; }
.cert-badge { display: inline-flex; align-items: center; gap: .5rem; background: var(--color-licht-sage); color: var(--color-bosgroen); font-weight: 600; font-size: .88rem; padding: .5rem .9rem; border-radius: 999px; }
.cert-badge svg { width: 1.05rem; height: 1.05rem; }
.divider { height: 1px; background: var(--color-licht-grijs); border: 0; margin-block: var(--section-y); }
.anchor-offset { scroll-margin-top: 92px; }

/* 22 — Responsive -------------------------------------------------------- */
@media (max-width: 1024px) {
  .site-footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 520px; }
  .page-hero__grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .toc { position: static; }
}
@media (max-width: 860px) {
  .primary-nav { position: fixed; inset: 72px 0 auto 0; background: var(--page-bg); border-bottom: 1px solid var(--color-licht-grijs); transform: translateY(-130%); transition: transform .25s ease; box-shadow: var(--shadow-soft); max-height: calc(100vh - 72px); overflow-y: auto; margin-left: 0; }
  .primary-nav.is-open { transform: translateY(0); }
  .primary-nav__list { flex-direction: column; align-items: stretch; padding: 1rem var(--gutter); gap: .15rem; }
  .primary-nav a { padding: .85rem .6rem; border-radius: var(--radius-sm); }
  .primary-nav a:not(:last-child) { border-bottom: 1px solid var(--color-licht-grijs); border-radius: 0; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .header-cta .btn { display: none; }
  .header-cta .header-phone span { display: none; }
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .media-split, .media-split--reverse { grid-template-columns: 1fr; }
  .media-split--reverse .media-split__media { order: -1; }
  .form-grid--2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .proof-bar__list { gap: .6rem 1rem; }
  .proof-bar__item { font-size: .85rem; width: calc(50% - .5rem); }
  .site-footer__top { grid-template-columns: 1fr; }
  .hero__rating { position: static; margin-top: 1rem; width: fit-content; }
  .price-card__price { font-size: 2rem; }
}

/* 23 — A11y / motion / print -------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
@media print {
  .site-header, .site-footer, .cta-band, .nav-toggle, .hero__rating { display: none !important; }
  body { background: #fff; }
  a { text-decoration: underline; }
}
