/* ============================================================
   Praktijk Door — design system
   Kleuren afgeleid van flyer (sage/oudgroen + crème + warm zand)
   ============================================================ */

/* Accessibility utility: visueel verborgen, leesbaar voor screenreaders */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

:root {
  /* Kleurenpalet */
  --pd-sage: #7E9477;
  --pd-sage-dark: #5A6F54;
  --pd-sage-darker: #3F4F3B;
  --pd-cream: #F4EFE3;
  --pd-cream-soft: #FBF8F1;
  --pd-white: #FFFFFF;
  --pd-text: #2E3A2A;
  --pd-text-muted: #5C5F58;
  --pd-warm: #D8A26B;
  --pd-warm-dark: #B6824B;
  --pd-line: #E1DDD0;
  --pd-shadow: rgba(63, 79, 59, 0.12);
  --pd-wallpaper-url: url('https://static.wixstatic.com/media/32b04e_c21cb5df9a034928bbd6cf0c8a5711b5~mv2.jpg');

  /* Typografie */
  --font-display: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Schaal */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --maxw: 1140px;
  --maxw-narrow: 780px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--pd-text);
  background-color: var(--pd-cream-soft);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--pd-sage-dark); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover, a:focus-visible { color: var(--pd-sage-darker); }
button { font: inherit; }

/* Focus */
:focus-visible {
  outline: 3px solid var(--pd-warm);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Typografie ---------- */
h1, h2, h3, h4 {
  font-weight: 400;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--pd-sage-darker);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-4);
}
h1 { font-size: clamp(2.2rem, 5vw + 1rem, 3.6rem); font-weight: 400; }
h2 { font-size: clamp(1.7rem, 2.4vw + 1rem, 2.4rem); }
h3 { font-size: clamp(1.25rem, 1.4vw + 0.9rem, 1.55rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 var(--space-4); }
.lead {
  font-size: 1.2rem;
  color: var(--pd-text-muted);
  line-height: 1.55;
  max-width: 60ch;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
.container-narrow {
  width: 100%;
  max-width: var(--maxw-narrow);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
section { padding-block: var(--space-8); }
@media (min-width: 768px) {
  section { padding-block: var(--space-9); }
}

.section-cream {
  background-color: var(--pd-cream);
}
/* Geen wallpaper achter het donkergroene Locatie/Tarief/Werkgebied-blok */
.section-cream:has(.practical-grid),
.section-cream--plain {
  background-image: none;
  background-color: var(--pd-cream-soft);
}
.section-sage { background: var(--pd-sage); color: var(--pd-cream-soft); }
.section-sage h1, .section-sage h2, .section-sage h3, .section-sage h4 { color: var(--pd-cream-soft); }
.section-sage a { color: var(--pd-cream-soft); text-decoration-color: var(--pd-warm); }
.section-sage .lead { color: rgba(255,255,255,0.9); }

/* Eyebrow */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--pd-sage-dark);
  margin-bottom: var(--space-3);
}
.section-sage .eyebrow { color: var(--pd-warm); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--pd-sage-dark);
  color: var(--pd-cream-soft);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--pd-sage-darker);
  color: var(--pd-cream-soft);
}
.btn-secondary {
  background: transparent;
  color: var(--pd-sage-darker);
  border-color: var(--pd-sage-dark);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  background: var(--pd-sage-dark);
  color: var(--pd-cream-soft);
}
.section-sage .btn-primary {
  background: var(--pd-warm);
  color: var(--pd-sage-darker);
}
.section-sage .btn-primary:hover { background: var(--pd-warm-dark); color: var(--pd-cream-soft); }
.section-sage .btn-secondary {
  border-color: var(--pd-cream-soft);
  color: var(--pd-cream-soft);
}
.section-sage .btn-secondary:hover { background: var(--pd-cream-soft); color: var(--pd-sage-darker); }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

/* ---------- Header / Navigatie ---------- */
.site-header {
  background: var(--pd-cream-soft);
  border-bottom: 1px solid var(--pd-line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(120%) blur(8px);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  padding-block: var(--space-3);
}
.site-logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--pd-sage-dark);
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.site-logo span { color: var(--pd-sage-darker); }
.site-nav { display: none; }
.site-nav ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: var(--space-5);
  align-items: center;
}
.site-nav a {
  text-decoration: none;
  color: var(--pd-text);
  font-weight: 500;
  padding: 0.4rem 0.1rem;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a[aria-current="page"] {
  color: var(--pd-sage-darker);
  border-bottom-color: var(--pd-warm);
}
.site-header__cta {
  display: none;
  align-items: center;
  gap: var(--space-3);
}
.header-phone {
  text-decoration: none;
  font-weight: 600;
  color: var(--pd-sage-darker);
  white-space: nowrap;
}
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--pd-sage-dark);
  color: var(--pd-sage-darker);
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.nav-toggle:hover { background: var(--pd-sage-dark); color: var(--pd-cream-soft); }
.nav-toggle svg { width: 22px; height: 22px; }

@media (min-width: 880px) {
  .site-nav { display: block; }
  .site-header__cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--pd-cream-soft);
  border-bottom: 1px solid var(--pd-line);
  padding: var(--space-4) var(--space-5) var(--space-5);
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-2); }
.mobile-nav a {
  display: block;
  padding: 0.7rem 0;
  font-weight: 500;
  text-decoration: none;
  color: var(--pd-text);
  border-bottom: 1px solid var(--pd-line);
}
.mobile-nav a[aria-current="page"] { color: var(--pd-sage-darker); }
.mobile-nav .btn { margin-top: var(--space-4); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background-color: var(--pd-cream);
  background-image: linear-gradient(rgba(244, 239, 227, 0.55), rgba(244, 239, 227, 0.55)), var(--pd-wallpaper-url);
  background-size: auto, 800px auto;
  background-repeat: repeat;
  overflow: hidden;
  padding-block: var(--space-8);
}
@media (min-width: 768px) {
  .hero { padding-block: var(--space-9); }
}
.hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(126,148,119,0.10), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(216,162,107,0.10), transparent 28%);
  pointer-events: none;
  z-index: 0;
}

/* Botanical band — subtiele bladrand bovenin de hero, geïnspireerd op de flyer */
.botanical-band {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  z-index: 1;
  pointer-events: none;
  background-repeat: repeat-x;
  background-position: center top;
  background-size: 320px 64px;
  opacity: 0.55;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 64'><g fill='none' stroke='%237E9477' stroke-width='1.4' stroke-linecap='round'><path d='M10 50 Q 30 30 50 50 T 90 50 T 130 50 T 170 50 T 210 50 T 250 50 T 290 50' opacity='0.55'/><path d='M30 18 q 8 6 6 18' opacity='0.6'/><path d='M30 18 q -6 8 -10 14' opacity='0.6'/><path d='M30 18 q 12 -2 16 6' opacity='0.6'/><path d='M70 14 q 4 12 -2 22' opacity='0.6'/><path d='M70 14 q -6 4 -10 12' opacity='0.6'/><path d='M70 14 q 8 4 14 12' opacity='0.6'/><path d='M120 22 q 6 6 4 18' opacity='0.6'/><path d='M120 22 q -8 0 -14 8' opacity='0.6'/><path d='M120 22 q 10 -4 18 0' opacity='0.6'/><path d='M170 16 q 6 8 0 22' opacity='0.6'/><path d='M170 16 q -8 4 -10 14' opacity='0.6'/><path d='M170 16 q 12 0 18 8' opacity='0.6'/><path d='M220 22 q 8 6 4 18' opacity='0.6'/><path d='M220 22 q -8 -2 -14 6' opacity='0.6'/><path d='M220 22 q 12 -2 18 6' opacity='0.6'/><path d='M270 18 q 4 8 -2 20' opacity='0.6'/><path d='M270 18 q -8 4 -10 12' opacity='0.6'/><path d='M270 18 q 10 0 16 8' opacity='0.6'/><circle cx='50' cy='32' r='2' fill='%23D8A26B' stroke='none'/><circle cx='100' cy='40' r='1.6' fill='%23D8A26B' stroke='none'/><circle cx='190' cy='30' r='2' fill='%23D8A26B' stroke='none'/><circle cx='240' cy='38' r='1.6' fill='%23D8A26B' stroke='none'/></g></svg>");
}

/* Botanisch blad-accent (kleine decoratie boven titels) */
.botanical-mark {
  display: block;
  width: 96px;
  height: 22px;
  margin: 0 0 var(--space-3);
  color: var(--pd-warm);
  opacity: 0.85;
}
.text-center .botanical-mark { margin-inline: auto; }
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-7);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px) {
  .hero__inner { grid-template-columns: 1.1fr 0.9fr; gap: var(--space-8); }
}
.hero__title { margin-bottom: var(--space-4); }
.hero__sub {
  font-size: 1.2rem;
  color: var(--pd-text-muted);
  max-width: 56ch;
  margin-bottom: var(--space-5);
}
.hero__visual {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(2, 1fr);
}
.hero__visual .photo {
  position: relative;
  aspect-ratio: 1;
  background-color: var(--pd-sage);
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 24px var(--pd-shadow);
  isolation: isolate;
}
.hero__visual .photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 6px rgba(244, 239, 227, 0.65);
  pointer-events: none;
}
.hero__visual .photo:nth-child(1) { transform: translateY(-12px); }
.hero__visual .photo:nth-child(2) { transform: translateY(12px); }
.hero__visual .photo img { width: 100%; height: 100%; object-fit: cover; }

/* Foto-label voor placeholders (kan na vervanging weggehaald worden) */
.foto-label {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(63, 79, 59, 0.9);
  color: var(--pd-cream-soft);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  z-index: 2;
  pointer-events: none;
  white-space: nowrap;
}

/* ---------- Cards / Grid ---------- */
.grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.card {
  background: var(--pd-white);
  border: 1px solid var(--pd-line);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: transform .15s ease, box-shadow .15s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card > .btn {
  margin-top: auto;
  align-self: flex-start;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px var(--pd-shadow);
}
.card h3 { margin-top: 0; }
.card .icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--pd-cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pd-sage-darker);
  margin-bottom: var(--space-3);
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--pd-sage-darker);
}
.card-link::after {
  content: '→';
  transition: transform .15s ease;
}
.card-link:hover::after { transform: translateX(3px); }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 760px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.step {
  background: var(--pd-cream-soft);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  border-left: 4px solid var(--pd-warm);
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--pd-sage-dark);
  color: var(--pd-cream-soft);
  font-family: var(--font-display);
  font-size: 1.2rem;
  border-radius: 50%;
  margin-bottom: var(--space-3);
}

/* ---------- Recognise / herken je dit ---------- */
.recognise {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: var(--space-3);
}
@media (min-width: 720px) {
  .recognise { grid-template-columns: repeat(2, 1fr); }
}
.recognise li {
  background: var(--pd-cream-soft);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  font-style: italic;
  color: var(--pd-text);
  border-left: 3px solid var(--pd-sage);
}

/* ---------- Practical info block ---------- */
.practical {
  background: var(--pd-sage-darker);
  color: var(--pd-cream-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 800px) {
  .practical { grid-template-columns: repeat(3, 1fr); }
}
.practical h3 {
  color: var(--pd-cream-soft);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 var(--space-2);
}
.practical p { margin: 0; color: rgba(255,255,255,0.92); }
.practical a { color: var(--pd-warm); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: var(--space-3); }
.faq details {
  background: var(--pd-white);
  border: 1px solid var(--pd-line);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
}
.faq details[open] { background: var(--pd-cream-soft); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  color: var(--pd-sage-darker);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--pd-warm);
  transition: transform .15s ease;
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > *:not(summary) { margin-top: var(--space-3); color: var(--pd-text); }

/* ---------- Form ---------- */
.form { display: grid; gap: var(--space-4); }
.form label {
  display: grid;
  gap: var(--space-2);
  font-weight: 500;
  color: var(--pd-sage-darker);
}
.form input,
.form textarea,
.form select {
  font: inherit;
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--pd-line);
  border-radius: var(--radius-sm);
  background: var(--pd-white);
  color: var(--pd-text);
}
.form textarea { min-height: 140px; resize: vertical; }
.form input:focus, .form textarea:focus, .form select:focus {
  border-color: var(--pd-sage-dark);
  outline-offset: 2px;
}
.form .form-row {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .form .form-row { grid-template-columns: 1fr 1fr; }
}
.form .checkbox {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-weight: 400;
  color: var(--pd-text);
}
.form .checkbox input { width: auto; margin-top: 0.25rem; }
.form .form-help {
  color: var(--pd-text-muted);
  font-size: 0.92rem;
}

/* ---------- WhatsApp floating ---------- */
.wa-float {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 100;
  background: #25D366;
  color: #fff;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
  text-decoration: none;
  transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.05); color: #fff; }
.wa-float svg { width: 28px; height: 28px; }
.wa-float::after {
  content: 'App Dorien';
  position: absolute;
  right: 70px;
  background: var(--pd-sage-darker);
  color: var(--pd-cream-soft);
  font-size: 0.85rem;
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .15s ease, transform .15s ease;
  pointer-events: none;
}
.wa-float:hover::after { opacity: 1; transform: translateX(0); }
@media (max-width: 600px) {
  .wa-float::after { display: none; }
}

/* ---------- Banner / disclaimer ---------- */
.note {
  background: var(--pd-cream);
  border-left: 4px solid var(--pd-warm);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  color: var(--pd-text);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--pd-sage-darker);
  color: var(--pd-cream-soft);
  padding-block: var(--space-7);
}
.site-footer a { color: var(--pd-cream-soft); }
.site-footer__inner {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .site-footer__inner { grid-template-columns: 1.2fr 1fr 1fr; }
}
.site-footer h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pd-warm);
  margin-bottom: var(--space-3);
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-2); }
.site-footer__brand p { color: rgba(255,255,255,0.85); max-width: 38ch; }
.site-footer__bottom {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.18);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

/* ---------- Article (Blog) ---------- */
.article {
  background: var(--pd-cream-soft);
  padding-block: var(--space-7);
}
.article__head {
  text-align: center;
  margin-bottom: var(--space-6);
}
.article__meta {
  font-size: 0.95rem;
  color: var(--pd-text-muted);
  margin-bottom: var(--space-3);
}
.article__body {
  max-width: 70ch;
  margin-inline: auto;
  font-size: 1.08rem;
  line-height: 1.75;
}
.article__body h2 { margin-top: var(--space-7); }
.article__body h3 { margin-top: var(--space-6); }
.article__body ul, .article__body ol {
  padding-left: 1.4rem;
  margin: 0 0 var(--space-4);
}
.article__body li { margin-bottom: var(--space-2); }
.article__body blockquote {
  border-left: 4px solid var(--pd-warm);
  background: var(--pd-cream);
  padding: var(--space-4) var(--space-5);
  margin: var(--space-5) 0;
  border-radius: var(--radius-md);
  font-style: italic;
}

/* Blog index */
.blog-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}
.blog-card {
  background: var(--pd-white);
  border: 1px solid var(--pd-line);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, box-shadow .15s ease;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px var(--pd-shadow); }
.blog-card .tag {
  display: inline-block;
  background: var(--pd-cream);
  color: var(--pd-sage-darker);
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  align-self: flex-start;
}
.blog-card h3 {
  font-size: 1.25rem;
  margin: 0;
}
.blog-card p { color: var(--pd-text-muted); margin: 0; }
.blog-card .read { margin-top: auto; font-weight: 600; color: var(--pd-sage-darker); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-3 { margin-top: var(--space-3); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mb-0 { margin-bottom: 0; }
.divider {
  border: 0;
  height: 1px;
  background: var(--pd-line);
  margin: var(--space-7) 0;
}
.skip-link {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: static;
  width: auto; height: auto;
  background: var(--pd-warm);
  color: var(--pd-sage-darker);
  padding: var(--space-3);
  text-decoration: none;
  border-radius: var(--radius-sm);
}

/* SVG botanical accent (optional) */
.botanical-accent {
  display: block;
  margin: 0 auto var(--space-5);
  color: var(--pd-warm);
  width: 56px; height: 14px;
  opacity: 0.9;
}

/* ============================================================
   FLYER-ECHO DESIGN — gebaseerd op de PD-flyer
   ============================================================ */

/* --- Sub-page hero in flyer-stijl: kleinere brand-aanduiding + h1 + intro --- */
.subpage-hero {
  position: relative;
  background-color: var(--pd-cream);
  background-image: linear-gradient(rgba(244, 239, 227, 0.55), rgba(244, 239, 227, 0.55)), var(--pd-wallpaper-url);
  background-size: auto, 800px auto;
  background-repeat: repeat;
  padding-top: var(--space-9);
  padding-bottom: var(--space-8);
  overflow: hidden;
}
.subpage-hero .container { position: relative; z-index: 2; }
.subpage-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: center;
}
@media (min-width: 880px) {
  .subpage-hero__inner { grid-template-columns: 1.2fr 0.8fr; gap: var(--space-8); }
}
.subpage-hero h1 {
  font-size: clamp(2rem, 3.5vw + 0.6rem, 3.4rem);
  font-weight: 400;
  margin: 0;
  line-height: 1.12;
}
.subpage-hero__intro {
  margin-top: var(--space-5);
  font-size: 1.15rem;
  color: var(--pd-text-muted);
  line-height: 1.6;
  max-width: 56ch;
}
.subpage-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

/* Sub-page hero photo (klein) */
.subpage-hero__photo {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--pd-sage);
  background-size: cover;
  background-position: center;
  border: 8px solid var(--pd-cream-soft);
  box-shadow: 0 18px 42px rgba(63,79,59,0.22);
  margin-inline: auto;
  isolation: isolate;
}
.subpage-hero__photo .foto-label {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(63, 79, 59, 0.92);
  color: var(--pd-cream-soft);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 0.22rem 0.6rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  z-index: 5;
  pointer-events: none;
  white-space: nowrap;
}

/* --- Brand-block: groot, in serif, midden --- */
.brand-block {
  text-align: center;
  padding-block: var(--space-6) var(--space-5);
  position: relative;
  z-index: 2;
}
.brand-block__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.2rem, 8vw + 0.2rem, 5.5rem);
  color: var(--pd-sage-dark);
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0;
}
.brand-block__tagline {
  margin-top: var(--space-3);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw + 0.6rem, 2rem);
  color: var(--pd-sage-darker);
  letter-spacing: 0.02em;
}
.brand-block__tagline::before,
.brand-block__tagline::after {
  content: '— ';
  color: var(--pd-warm);
  font-style: normal;
  margin: 0 .3em;
}
.brand-block__tagline::after { content: ' —'; }

/* --- Volle botanische 'header'-strook (verborgen op verzoek) --- */
.flyer-pattern { display: none !important; }
.flyer-pattern--legacy {
  position: absolute;
  inset: 0 0 auto 0;
  height: 220px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
  background-repeat: repeat-x;
  background-position: center top;
  background-size: 480px 220px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 480 220'><g fill='none' stroke='%237E9477' stroke-width='1.4' stroke-linecap='round'><path d='M-10 200 Q 30 130 80 180 T 170 180 T 250 175 T 340 180 T 430 175 T 510 180' stroke-width='1.2' opacity='0.55'/><g opacity='0.7'><path d='M40 30 q 6 14 4 30 q -2 8 -8 14'/><path d='M40 30 q -10 6 -16 18'/><path d='M40 30 q 12 -2 20 6'/><path d='M40 30 q 6 -10 -2 -22'/><circle cx='40' cy='30' r='2.4' fill='%23D8A26B' stroke='none'/></g><g opacity='0.7'><path d='M120 70 q -8 14 -2 30'/><path d='M120 70 q -16 -2 -22 12'/><path d='M120 70 q 14 4 18 18'/><path d='M120 70 q -2 -16 8 -22'/><circle cx='120' cy='70' r='2' fill='%23D8A26B' stroke='none'/></g><g opacity='0.7'><path d='M200 40 q 8 14 2 30'/><path d='M200 40 q 14 6 18 22'/><path d='M200 40 q -10 4 -18 16'/><path d='M200 40 q 0 -16 8 -24'/><circle cx='200' cy='40' r='2.2' fill='%23D8A26B' stroke='none'/></g><g opacity='0.7'><path d='M290 80 q 6 12 -2 24'/><path d='M290 80 q -14 0 -20 12'/><path d='M290 80 q 16 4 20 18'/><path d='M290 80 q -2 -14 6 -22'/><circle cx='290' cy='80' r='2' fill='%23D8A26B' stroke='none'/></g><g opacity='0.7'><path d='M370 40 q 8 14 2 30'/><path d='M370 40 q -14 6 -18 22'/><path d='M370 40 q 14 4 22 16'/><path d='M370 40 q 2 -14 -6 -22'/><circle cx='370' cy='40' r='2.2' fill='%23D8A26B' stroke='none'/></g><g opacity='0.7'><path d='M450 80 q -10 12 -2 28'/><path d='M450 80 q 16 -4 22 10'/><path d='M450 80 q -16 -2 -22 14'/><path d='M450 80 q 8 -14 -2 -22'/><circle cx='450' cy='80' r='2' fill='%23D8A26B' stroke='none'/></g></g></svg>");
}

/* --- Hero-flyer: cream block met brand + claim, geen padding-bottom --- */
.flyer-hero {
  position: relative;
  background-color: var(--pd-cream);
  background-image: linear-gradient(rgba(244, 239, 227, 0.55), rgba(244, 239, 227, 0.55)), var(--pd-wallpaper-url);
  background-size: auto, 800px auto;
  background-repeat: repeat;
  padding-top: var(--space-9);
  padding-bottom: var(--space-6);
  overflow: visible;
}
.flyer-hero .container { position: relative; z-index: 2; }
.flyer-hero__claim {
  max-width: none;
  margin: var(--space-6) auto 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw + 0.4rem, 2.4rem);
  text-align: center;
  color: var(--pd-text);
  line-height: 1.18;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
/* Op smal mobiel mag wrappen om overflow te voorkomen */
@media (max-width: 520px) {
  .flyer-hero__claim {
    white-space: normal;
    font-size: clamp(1.3rem, 5.5vw, 1.7rem);
  }
}
.flyer-hero__cta {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-6);
}

/* --- Sage panel — directly under flyer-hero, with cascade overlap --- */
.sage-panel {
  position: relative;
  background: var(--pd-sage);
  color: var(--pd-cream-soft);
  padding-block: calc(var(--space-8) + 100px) var(--space-9);
  overflow: visible;
}
.sage-panel h2, .sage-panel h3, .sage-panel h4 { color: var(--pd-cream-soft); }
.sage-panel a { color: var(--pd-warm); }
.sage-panel .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  position: relative;
  z-index: 2;
}
@media (min-width: 880px) {
  .sage-panel .container { grid-template-columns: 320px 1fr; align-items: center; gap: var(--space-9); }
}

.sage-panel__intro {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.8vw + 0.4rem, 1.8rem);
  line-height: 1.4;
  margin: 0 0 var(--space-5);
  color: var(--pd-cream-soft);
}
.sage-panel__body {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
}
.sage-panel__body p { margin-bottom: var(--space-4); }
.sage-panel__cta {
  margin-top: var(--space-5);
  display: flex; gap: var(--space-3); flex-wrap: wrap;
}

/* --- Photo cascade — drie ronde foto's overlappend, zoals flyer --- */
.photo-cascade {
  position: relative;
  display: block;
  margin-top: -200px;
  margin-bottom: var(--space-4);
  z-index: 3;
  max-width: 320px;
  margin-inline: auto;
  width: 100%;
}
.photo-cascade .photo {
  position: relative;
  aspect-ratio: 1;
  background-color: var(--pd-cream-soft);
  background-size: cover;
  background-position: center;
  border: 8px solid var(--pd-cream-soft);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(63,79,59,0.28);
  isolation: isolate;
}
.photo-cascade .photo:nth-child(1) {
  width: 60%;
  margin-left: 0;
  z-index: 4;
}
.photo-cascade .photo:nth-child(2) {
  width: 70%;
  margin-left: 30%;
  margin-top: -32px;
  z-index: 3;
}
.photo-cascade .photo:nth-child(3) {
  width: 55%;
  margin-left: 8%;
  margin-top: -24px;
  z-index: 2;
}

/* Foto-label zichtbaarheid */
.photo-cascade .photo .foto-label,
.hero__visual .photo .foto-label {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(63, 79, 59, 0.92);
  color: var(--pd-cream-soft);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 0.22rem 0.6rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  z-index: 5;
  pointer-events: none;
  white-space: nowrap;
}

/* Mobile: cascade kleiner + iets minder opwaartse offset */
@media (max-width: 879px) {
  .photo-cascade {
    margin-top: -140px;
    max-width: 260px;
  }
}

/* --- Decoratieve leaf-divider tussen secties --- */
.leaf-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding-block: var(--space-6);
  gap: var(--space-3);
  color: var(--pd-warm);
}
.leaf-divider svg { width: 22px; height: 16px; }
.leaf-divider .line {
  height: 1px;
  background: var(--pd-line);
  flex: 0 1 100px;
}
.section-sage .leaf-divider .line { background: rgba(255,255,255,0.25); }
.section-sage .leaf-divider { color: var(--pd-warm); }

/* --- Recognise-list: leaf bullets --- */
.recognise-leaves {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-4);
}
@media (min-width: 720px) {
  .recognise-leaves { grid-template-columns: 1fr 1fr; gap: var(--space-5); }
}
.recognise-leaves li {
  position: relative;
  padding: var(--space-4) var(--space-5) var(--space-4) calc(var(--space-5) + 28px);
  background: var(--pd-cream-soft);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--pd-text);
  line-height: 1.5;
  border-left: 3px solid var(--pd-sage);
}
.recognise-leaves li::before {
  content: '';
  position: absolute;
  left: var(--space-5);
  top: 22px;
  width: 18px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 14'><path d='M1 7 Q 5 0 9 7 Q 13 0 17 7 Q 13 14 9 7 Q 5 14 1 7 Z' fill='%237E9477'/></svg>");
}

/* --- Card thema's met botanische hoek --- */
.theme-card {
  position: relative;
  background: var(--pd-cream-soft);
  border: 1px solid var(--pd-line);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  overflow: hidden;
}
.theme-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px var(--pd-shadow);
  border-color: var(--pd-sage);
}
.theme-card::before {
  /* botanische hoek-decoratie */
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 90px;
  height: 90px;
  opacity: 0.2;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 90'><g fill='none' stroke='%237E9477' stroke-width='1.4' stroke-linecap='round'><path d='M45 12 q 8 14 4 30 q -2 12 -10 18'/><path d='M45 12 q -14 8 -22 22'/><path d='M45 12 q 16 -2 24 10'/><path d='M45 12 q 4 -14 -8 -22'/><circle cx='45' cy='12' r='2.4' fill='%23D8A26B' stroke='none'/></g></svg>");
}
.theme-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--pd-sage-darker);
  position: relative;
}
.theme-card p {
  margin: 0;
  color: var(--pd-text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
  position: relative;
}
.theme-card .read-more {
  margin-top: auto;
  font-weight: 600;
  color: var(--pd-sage-darker);
  display: inline-flex; align-items: center; gap: 0.4rem;
  position: relative;
}
.theme-card .read-more::after {
  content: '→'; transition: transform .15s ease;
}
.theme-card:hover .read-more::after { transform: translateX(4px); }

/* --- Stappen-rij in flyer-stijl --- */
.flow-steps {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
  counter-reset: step;
  margin-top: var(--space-7);
}
@media (min-width: 720px) {
  .flow-steps { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
}
@media (min-width: 1024px) {
  .flow-steps { grid-template-columns: repeat(4, 1fr); }
}
.flow-step {
  position: relative;
  padding-top: var(--space-7);
}
.flow-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--pd-warm);
  line-height: 1;
  display: block;
  margin-bottom: var(--space-3);
  letter-spacing: -0.03em;
}
.flow-step h3 {
  font-size: 1.25rem;
  margin: 0 0 var(--space-2);
}
.flow-step p {
  font-size: 1rem;
  color: var(--pd-text-muted);
  line-height: 1.55;
  margin: 0;
}
.section-sage .flow-step h3 { color: var(--pd-cream-soft); }
.section-sage .flow-step p { color: rgba(255,255,255,0.88); }

/* --- Quote-blok --- */
.quote-block {
  max-width: 68ch;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.35rem, 1.6vw + 0.5rem, 1.8rem);
  line-height: 1.35;
  color: var(--pd-sage-darker);
  position: relative;
}
.quote-block::before, .quote-block::after {
  font-family: var(--font-display);
  color: var(--pd-warm);
  font-size: 3rem;
  line-height: 0;
  vertical-align: -.4em;
  font-style: normal;
  opacity: 0.85;
}
.quote-block::before { content: '“'; margin-right: 0.1em; }
.quote-block::after { content: '”'; margin-left: 0.1em; }

/* --- Practical info — flyer-stijl met sage en warme accenten --- */
.practical-grid {
  background: var(--pd-sage-darker);
  color: var(--pd-cream-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
  position: relative;
  overflow: hidden;
}
@media (min-width: 800px) { .practical-grid { grid-template-columns: repeat(3, 1fr); } }
.practical-grid::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 160px; height: 160px;
  opacity: 0.15;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'><g fill='none' stroke='%23D8A26B' stroke-width='1.6' stroke-linecap='round'><path d='M80 20 q 10 24 6 50 q -4 16 -14 24'/><path d='M80 20 q -22 14 -32 36'/><path d='M80 20 q 26 -2 36 18'/><path d='M80 20 q 4 -22 -12 -34'/><circle cx='80' cy='20' r='3' fill='%23D8A26B' stroke='none'/></g></svg>");
}
.practical-grid > div { position: relative; }
.practical-grid h3 {
  color: var(--pd-warm);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 var(--space-3);
  font-family: var(--font-body);
  font-weight: 600;
}
.practical-grid p { margin: 0; color: rgba(255,255,255,0.92); line-height: 1.55; }
.practical-grid a { color: var(--pd-warm); }

/* --- Logo accent (klein blad) --- */
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.site-logo::before {
  content: '';
  width: 18px; height: 14px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 14'><path d='M1 7 Q 5 0 9 7 Q 13 0 17 7 Q 13 14 9 7 Q 5 14 1 7 Z' fill='%23D8A26B'/></svg>");
}

/* Print */
@media print {
  .wa-float, .nav-toggle, .site-header__cta { display: none; }
}
