/* ════════════════════════════════════════════════════════════
   Verloskundige Praktijk Rijswijk — gedeeld designsysteem
   Stijl 1-op-1 uit de referentie-landingspagina.
   ════════════════════════════════════════════════════════════ */

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5% !important; scroll-behavior: smooth; }
body {
  font-family: var(--lp-font-body);
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--lp-color-text);
  background: var(--lp-color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
ol, ul { list-style: none; }

/* ─── DESIGN TOKENS ──────────────────────────────────── */
:root {
  --lp-color-primary:        #c8607c;
  --lp-color-primary-dark:   #a84d65;
  --lp-color-primary-tint:   rgba(200,96,124,0.10);
  --lp-color-secondary:      #2d4a6e;
  --lp-color-secondary-dark: #1e3350;
  --lp-color-accent:         #7b9aba;
  --lp-color-text:           #2c1e1a;
  --lp-color-text-muted:     #9b8778;
  --lp-color-bg:             #fdf8f4;
  --lp-color-bg-section:     #f5ede5;
  --lp-color-white:          #ffffff;
  --lp-color-border:         #e8d5c8;

  --lp-font-display: 'Asap', sans-serif;
  --lp-font-body:    'Open Sans', sans-serif;

  --lp-text-xs:   1.2rem;
  --lp-text-sm:   1.4rem;
  --lp-text-base: 1.6rem;
  --lp-text-lg:   1.8rem;
  --lp-text-xl:   2.0rem;
  --lp-text-2xl:  2.4rem;
  --lp-text-3xl:  3.0rem;

  --lp-space-xs:  0.8rem;
  --lp-space-sm:  1.6rem;
  --lp-space-md:  2.4rem;
  --lp-space-lg:  4.0rem;
  --lp-space-xl:  6.4rem;
  --lp-space-2xl: 9.6rem;

  --lp-radius-sm:   1.2rem;
  --lp-radius-md:   2.0rem;
  --lp-radius-lg:   3.2rem;
  --lp-radius-pill: 10rem;
  --lp-radius-full: 50%;

  --lp-shadow-sm: 0 2px 8px rgba(44,30,26,0.07);
  --lp-shadow-md: 0 6px 28px rgba(44,30,26,0.11);

  --lp-ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --lp-max-width: 120rem;

  /* gedeelde kolomindeling voor subpagina's (hero + artikel lijnen uit) */
  --lp-toc-col: 20rem;
  --lp-doc-gap: 6.4rem;

  --lp-check: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6 9 17l-5-5' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

/* ─── ACCESSIBILITY ──────────────────────────────────── */
.lp-skip-link {
  position: absolute; top: -100%; left: 1.6rem;
  background: var(--lp-color-secondary); color: var(--lp-color-white);
  padding: 0.8rem 1.6rem; font-size: 1.4rem; font-weight: 600;
  text-decoration: none; z-index: 9999;
  transition: top 150ms ease-out;
  border-radius: var(--lp-radius-pill);
}
.lp-skip-link:focus { top: 0.8rem; }
:focus-visible { outline: 3px solid var(--lp-color-primary); outline-offset: 3px; border-radius: var(--lp-radius-sm); }
:focus:not(:focus-visible) { outline: none; }

/* ─── LAYOUT UTILITIES ───────────────────────────────── */
.lp-container { width: 100%; max-width: var(--lp-max-width); margin: 0 auto; padding: 0 2.4rem; }
.lp-section { padding: var(--lp-space-2xl) 0; }
.lp-eyebrow {
  display: inline-block;
  font-size: var(--lp-text-sm); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--lp-color-primary); background: var(--lp-color-primary-tint);
  padding: 0.5rem 1.4rem; border-radius: var(--lp-radius-pill);
  margin-bottom: var(--lp-space-sm); font-family: var(--lp-font-display);
}
.lp-section-header { max-width: 64rem; margin-bottom: var(--lp-space-xl); }
.lp-section-header h2 {
  font-family: var(--lp-font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem); font-weight: 700;
  letter-spacing: -0.02em; color: var(--lp-color-text);
  margin: var(--lp-space-sm) 0; line-height: 1.15;
}
.lp-section-header__sub { color: var(--lp-color-text-muted); font-size: var(--lp-text-lg); line-height: 1.65; }
.lp-section-header--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ─── REVEAL ANIMATION ───────────────────────────────── */
.lp-reveal {
  opacity: 0; transform: translateY(1.4rem);
  transition: opacity 400ms var(--lp-ease-out), transform 400ms var(--lp-ease-out);
  transition-delay: var(--delay, 0ms);
}
.lp-reveal--visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .lp-reveal { transform: none; transition: opacity 300ms ease; } }

/* ─── BUTTONS ────────────────────────────────────────── */
.lp-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1.15rem 2.6rem; font-size: var(--lp-text-base); font-weight: 700;
  font-family: var(--lp-font-display);
  border-radius: var(--lp-radius-pill); border: 2px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: background-color 160ms ease-out, border-color 160ms ease-out, transform 120ms ease-out;
}
.lp-btn:active { transform: scale(0.97); }
.lp-btn--primary { background: var(--lp-color-primary); color: var(--lp-color-white); border-color: var(--lp-color-primary); }
.lp-btn--ghost { background: transparent; color: var(--lp-color-text); border-color: var(--lp-color-border); }
@media (hover: hover) and (pointer: fine) {
  .lp-btn--primary:hover { background: var(--lp-color-primary-dark); border-color: var(--lp-color-primary-dark); }
  .lp-btn--ghost:hover { border-color: var(--lp-color-primary); color: var(--lp-color-primary); }
}

/* ─── NAVIGATION ─────────────────────────────────────── */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.4rem 0; transition: background-color 200ms ease, box-shadow 200ms ease;
}
.lp-nav--scrolled { background: var(--lp-color-bg); box-shadow: 0 1px 0 var(--lp-color-border); }
.lp-nav__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--lp-space-md); }
.lp-nav__brand {
  display: flex; align-items: center; gap: 1rem; text-decoration: none;
  font-family: var(--lp-font-display); font-weight: 700;
  color: var(--lp-color-text); font-size: var(--lp-text-base);
}
.lp-nav__brand img { height: 3.6rem; width: auto; }
.lp-nav__links { display: flex; align-items: center; gap: var(--lp-space-sm); }
.lp-nav__links a {
  position: relative;
  font-size: var(--lp-text-sm); font-weight: 600;
  color: var(--lp-color-text); text-decoration: none;
  font-family: var(--lp-font-display); transition: color 160ms ease-out;
}
@media (hover: hover) and (pointer: fine) { .lp-nav__links a:hover { color: var(--lp-color-primary); } }
.lp-nav__links a.is-current { color: var(--lp-color-primary); }
.lp-nav__links a.is-current::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--lp-color-primary); border-radius: var(--lp-radius-pill); }
.lp-nav__cta { margin-left: var(--lp-space-sm); }
@media (max-width: 1024px) { .lp-nav__links { display: none; } .lp-nav__cta { display: none; } }

/* ─── HERO SPLIT ─────────────────────────────────────── */
.lp-hero-split {
  display: flex; align-items: center;
  background: var(--lp-color-bg);
  padding: calc(80px + var(--lp-space-lg)) 0 var(--lp-space-lg);
}
.lp-hero-split__inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--lp-space-xl); align-items: center; }
.lp-hero-split__copy { max-width: 52rem; }
.lp-hero-split__copy h1 {
  font-family: var(--lp-font-display);
  font-size: clamp(2.6rem, 4vw, 3.8rem); font-weight: 700;
  line-height: 1.1; letter-spacing: -0.025em;
  color: var(--lp-color-text); margin-bottom: var(--lp-space-sm);
}
.lp-hero-split__copy h1 em { font-style: normal; color: var(--lp-color-primary); }
.lp-hero-split__sub { font-size: var(--lp-text-lg); color: var(--lp-color-text-muted); line-height: 1.65; max-width: 46rem; margin-bottom: var(--lp-space-lg); }
.lp-hero-split__actions { display: flex; gap: var(--lp-space-sm); flex-wrap: wrap; margin-bottom: var(--lp-space-lg); }
.lp-hero-split__trust { display: flex; gap: var(--lp-space-md); flex-wrap: wrap; }
.lp-hero-split__trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: var(--lp-text-sm); color: var(--lp-color-text-muted); font-weight: 600; }
.lp-hero-split__trust-item svg { color: var(--lp-color-primary); flex-shrink: 0; }
.lp-hero-split__visual {
  position: relative; border-radius: var(--lp-radius-lg); overflow: hidden;
  aspect-ratio: 4/3; max-height: 42rem; background: var(--lp-color-bg-section); box-shadow: var(--lp-shadow-md);
}
.lp-hero-split__img { width: 100%; height: 100%; object-fit: cover; }
.lp-hero-split__badge {
  position: absolute; bottom: 2.4rem; left: 2.4rem;
  background: var(--lp-color-white); border-radius: var(--lp-radius-md);
  padding: 1.2rem 1.6rem; box-shadow: var(--lp-shadow-md);
  display: flex; align-items: center; gap: 1rem;
}
.lp-hero-split__badge-icon {
  width: 4rem; height: 4rem; border-radius: var(--lp-radius-full);
  background: var(--lp-color-primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.lp-hero-split__badge-icon svg { color: var(--lp-color-white); }
.lp-hero-split__badge-text strong { display: block; font-family: var(--lp-font-display); font-size: var(--lp-text-sm); font-weight: 700; color: var(--lp-color-text); }
.lp-hero-split__badge-text span { font-size: var(--lp-text-xs); color: var(--lp-color-text-muted); }
@media (max-width: 860px) {
  .lp-hero-split__inner { grid-template-columns: 1fr; }
  .lp-hero-split__visual { aspect-ratio: 16/9; order: -1; }
  .lp-hero-split { min-height: auto; padding-top: calc(80px + 4rem); }
}

/* ─── TIMELINE (uniek voor zwangerschap-landing) ─────── */
.lp-timeline { background: var(--lp-color-bg-section); padding: var(--lp-space-2xl) 0; }
.lp-timeline__track { position: relative; max-width: 78rem; margin: var(--lp-space-xl) auto 0; padding-left: 5.2rem; }
.lp-timeline__track::before {
  content: ''; position: absolute; left: 1.95rem; top: 0.6rem; bottom: 0.6rem; width: 3px;
  background: linear-gradient(180deg, var(--lp-color-primary) 0%, rgba(200,96,124,0.2) 100%); border-radius: var(--lp-radius-pill);
}
.lp-timeline__item { position: relative; padding-bottom: var(--lp-space-lg); }
.lp-timeline__item:last-child { padding-bottom: 0; }
.lp-timeline__dot {
  position: absolute; left: -5.2rem; top: 0; width: 4rem; height: 4rem;
  border-radius: var(--lp-radius-full); background: var(--lp-color-white);
  border: 3px solid var(--lp-color-primary); color: var(--lp-color-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--lp-font-display); font-weight: 700; font-size: var(--lp-text-base); box-shadow: var(--lp-shadow-sm);
}
.lp-timeline__week { font-family: var(--lp-font-display); font-size: var(--lp-text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--lp-color-primary); }
.lp-timeline__item h3 { font-family: var(--lp-font-display); font-size: var(--lp-text-xl); font-weight: 700; color: var(--lp-color-text); margin: 0.3rem 0 0.6rem; line-height: 1.25; }
.lp-timeline__item p { color: var(--lp-color-text-muted); font-size: var(--lp-text-base); line-height: 1.65; }
@media (max-width: 560px) { .lp-timeline__track { padding-left: 4.4rem; } .lp-timeline__dot { left: -4.4rem; width: 3.4rem; height: 3.4rem; font-size: var(--lp-text-sm); } .lp-timeline__track::before { left: 1.55rem; } }

/* ─── TOPIC CARDS ────────────────────────────────────── */
.lp-topics { background: var(--lp-color-bg); padding: var(--lp-space-2xl) 0; }
.lp-topics__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; margin-top: var(--lp-space-xl); }
.lp-topic-card {
  flex: 1 1 26rem; max-width: 36rem;
  display: flex; flex-direction: column; gap: 1rem;
  padding: var(--lp-space-md);
  border: 1.5px solid var(--lp-color-border); border-radius: var(--lp-radius-md);
  background: var(--lp-color-bg); text-decoration: none; color: inherit;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms var(--lp-ease-out);
}
@media (hover: hover) and (pointer: fine) { .lp-topic-card:hover { border-color: var(--lp-color-primary); box-shadow: var(--lp-shadow-md); transform: translateY(-4px); } }
.lp-topic-card__icon { width: 4rem; height: 4rem; border-radius: var(--lp-radius-full); background: var(--lp-color-primary-tint); display: flex; align-items: center; justify-content: center; color: var(--lp-color-primary); margin-bottom: 0.4rem; }
.lp-topic-card__icon svg { width: 2rem; height: 2rem; }
.lp-topic-card h3 { font-family: var(--lp-font-display); font-size: var(--lp-text-lg); font-weight: 700; color: var(--lp-color-text); }
.lp-topic-card p { color: var(--lp-color-text-muted); line-height: 1.55; font-size: var(--lp-text-sm); flex: 1; }
.lp-topic-card__more { font-family: var(--lp-font-display); font-weight: 700; font-size: var(--lp-text-sm); color: var(--lp-color-primary); display: inline-flex; align-items: center; gap: 0.4rem; }
@media (max-width: 900px) { .lp-topics__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .lp-topics__grid { grid-template-columns: 1fr; } }

/* ─── CARE CALLOUT (discreet — bv. miskraam) ─────────── */
.lp-care { background: var(--lp-color-bg-section); padding: var(--lp-space-xl) 0; }
.lp-care__box {
  display: flex; gap: var(--lp-space-lg); align-items: center;
  background: var(--lp-color-white); border: 1px solid var(--lp-color-border);
  border-left: 4px solid var(--lp-color-accent);
  border-radius: var(--lp-radius-md); padding: var(--lp-space-lg) var(--lp-space-xl);
}
.lp-care__icon { flex-shrink: 0; width: 5rem; height: 5rem; border-radius: var(--lp-radius-full); background: rgba(123,154,186,0.14); color: var(--lp-color-secondary); display: flex; align-items: center; justify-content: center; }
.lp-care__body { flex: 1; }
.lp-care__body h3 { font-family: var(--lp-font-display); font-size: var(--lp-text-lg); font-weight: 700; color: var(--lp-color-text); margin-bottom: 0.4rem; }
.lp-care__body p { color: var(--lp-color-text-muted); font-size: var(--lp-text-base); line-height: 1.6; }
.lp-care__body a { color: var(--lp-color-secondary); font-weight: 700; text-decoration: none; }
@media (hover: hover) and (pointer: fine) { .lp-care__body a:hover { text-decoration: underline; } }
@media (max-width: 640px) { .lp-care__box { flex-direction: column; align-items: flex-start; gap: var(--lp-space-md); padding: var(--lp-space-lg); } }

/* ─── SUBPAGE HERO ───────────────────────────────────── */
.lp-page-hero {
  background: var(--lp-color-bg);
  padding: calc(80px + var(--lp-space-xl)) 0 var(--lp-space-md);
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--lp-color-border);
}
.lp-page-hero::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at 80% -20%, var(--lp-color-primary-tint) 0%, transparent 55%); }
.lp-page-hero__inner {
  position: relative; max-width: var(--lp-max-width);
  display: grid; grid-template-columns: var(--lp-toc-col) minmax(0, 1fr);
  column-gap: var(--lp-doc-gap); align-items: start;
}
.lp-page-hero__inner > * { grid-column: 2; min-width: 0; }
@media (max-width: 940px) {
  .lp-page-hero__inner { grid-template-columns: 1fr; }
  .lp-page-hero__inner > * { grid-column: 1; }
}
.lp-breadcrumb { font-size: var(--lp-text-sm); color: var(--lp-color-text-muted); margin-bottom: var(--lp-space-md); display: flex; gap: 0.6rem; flex-wrap: wrap; }
.lp-breadcrumb a { color: var(--lp-color-primary); text-decoration: none; font-weight: 600; }
@media (hover: hover) and (pointer: fine) { .lp-breadcrumb a:hover { text-decoration: underline; } }
.lp-page-hero h1 {
  font-family: var(--lp-font-display);
  font-size: clamp(2.6rem, 4.5vw, 4rem); font-weight: 700;
  line-height: 1.1; letter-spacing: -0.025em; color: var(--lp-color-text); margin-bottom: var(--lp-space-md);
}
.lp-page-hero h1 em { font-style: normal; color: var(--lp-color-primary); }
.lp-page-hero__sub { font-size: var(--lp-text-lg); color: var(--lp-color-text-muted); line-height: 1.7; max-width: 60rem; }

/* ─── ARTICLE LAYOUT (subpagina met inhoudsopgave) ───── */
.lp-prose-section { background: var(--lp-color-bg); padding: var(--lp-space-lg) 0 var(--lp-space-2xl); }
.lp-article { display: grid; grid-template-columns: var(--lp-toc-col) minmax(0, 1fr); column-gap: var(--lp-doc-gap); align-items: start; }

/* Sticky inhoudsopgave */
.lp-toc { position: sticky; top: 10rem; }
.lp-toc__label {
  font-family: var(--lp-font-display); font-weight: 700; font-size: var(--lp-text-xs);
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--lp-color-text-muted);
  margin-bottom: var(--lp-space-sm);
}
.lp-toc ul { display: flex; flex-direction: column; gap: 0.2rem; border-left: 2px solid var(--lp-color-border); }
.lp-toc a {
  display: block; padding: 0.6rem 0 0.6rem var(--lp-space-md); margin-left: -2px;
  border-left: 2px solid transparent;
  font-size: var(--lp-text-sm); line-height: 1.4; color: var(--lp-color-text-muted);
  text-decoration: none; transition: color 160ms ease, border-color 160ms ease;
}
@media (hover: hover) and (pointer: fine) { .lp-toc a:hover { color: var(--lp-color-primary); } }
.lp-toc a.is-active { color: var(--lp-color-primary); border-left-color: var(--lp-color-primary); font-weight: 700; }
@media (max-width: 940px) {
  .lp-article { grid-template-columns: 1fr; gap: var(--lp-space-lg); }
  .lp-toc { position: static; background: var(--lp-color-bg-section); border-radius: var(--lp-radius-md); padding: var(--lp-space-md) var(--lp-space-lg); }
  .lp-toc ul { border-left: none; gap: 0; }
  .lp-toc a { padding: 0.5rem 0; margin-left: 0; border-left: none; }
  .lp-toc a.is-active { border-left: none; }
}

/* ─── PROSE (subpagina-inhoud) ───────────────────────── */
.lp-prose { max-width: 72rem; }
.lp-prose__lead { font-size: var(--lp-text-xl); line-height: 1.6; color: var(--lp-color-text); margin-bottom: var(--lp-space-lg); }
.lp-prose h2 {
  position: relative;
  font-family: var(--lp-font-display); font-size: clamp(2rem, 3vw, 2.6rem); font-weight: 700;
  letter-spacing: -0.015em; color: var(--lp-color-text); line-height: 1.2;
  margin: var(--lp-space-xl) 0 var(--lp-space-sm); padding-top: var(--lp-space-md);
  scroll-margin-top: 10rem;
}
.lp-prose h2::before { content: ''; position: absolute; top: 0; left: 0; width: 3.6rem; height: 3px; background: var(--lp-color-primary); border-radius: var(--lp-radius-pill); }
.lp-prose h2:first-child { margin-top: 0; }
.lp-prose h3 { scroll-margin-top: 10rem; }
.lp-prose h3 {
  font-family: var(--lp-font-display); font-size: var(--lp-text-xl); font-weight: 700;
  color: var(--lp-color-text); margin: var(--lp-space-lg) 0 var(--lp-space-xs);
}
.lp-prose p { color: var(--lp-color-text); font-size: var(--lp-text-base); line-height: 1.8; margin-bottom: var(--lp-space-md); }
.lp-prose ul, .lp-prose ol { margin: 0 0 var(--lp-space-md) 0; padding-left: 0; }
.lp-prose ul li, .lp-prose ol li {
  position: relative; padding-left: 2.8rem; margin-bottom: var(--lp-space-xs);
  color: var(--lp-color-text); line-height: 1.7; font-size: var(--lp-text-base);
}
.lp-prose ul li::before {
  content: ''; position: absolute; left: 0; top: 0.95rem;
  width: 0.8rem; height: 0.8rem; border-radius: var(--lp-radius-full); background: var(--lp-color-primary);
}
.lp-prose ol { counter-reset: lpc; }
.lp-prose ol li { counter-increment: lpc; }
.lp-prose ol li::before {
  content: counter(lpc); position: absolute; left: 0; top: 0.15rem;
  width: 2rem; height: 2rem; border-radius: var(--lp-radius-full);
  background: var(--lp-color-primary-tint); color: var(--lp-color-primary);
  font-family: var(--lp-font-display); font-weight: 700; font-size: var(--lp-text-xs);
  display: flex; align-items: center; justify-content: center;
}
.lp-prose a { color: var(--lp-color-primary); font-weight: 600; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
@media (hover: hover) and (pointer: fine) { .lp-prose a:hover { color: var(--lp-color-primary-dark); } }
.lp-prose strong { font-weight: 700; color: var(--lp-color-text); }
.lp-prose em { font-style: italic; }
.lp-prose img { height: auto; border-radius: var(--lp-radius-md); margin: var(--lp-space-md) 0; box-shadow: var(--lp-shadow-sm); }
.lp-prose hr { border: none; border-top: 1px solid var(--lp-color-border); margin: var(--lp-space-xl) 0; }

/* Callout box binnen prose */
.lp-callout {
  background: var(--lp-color-primary-tint); border-left: 3px solid var(--lp-color-primary);
  border-radius: var(--lp-radius-md); padding: var(--lp-space-md) var(--lp-space-lg);
  margin: var(--lp-space-lg) 0;
}
.lp-callout strong { display: block; font-family: var(--lp-font-display); color: var(--lp-color-primary); text-transform: uppercase; letter-spacing: 0.06em; font-size: var(--lp-text-sm); margin-bottom: 0.6rem; }
.lp-callout p:last-child, .lp-callout ul:last-child { margin-bottom: 0; }
.lp-callout--alert { background: rgba(168,77,101,0.08); border-left-color: var(--lp-color-primary-dark); }

/* Info card grid (bv. checklist meenemen) */
.lp-prose .lp-checklist { background: var(--lp-color-bg-section); border-radius: var(--lp-radius-md); padding: var(--lp-space-md) var(--lp-space-lg); margin: var(--lp-space-md) 0; }
.lp-prose .lp-checklist li::before { content: ''; top: 0.55rem; width: 1.4rem; height: 1.4rem; border-radius: 0.3rem; background: var(--lp-color-primary); -webkit-mask: var(--lp-check) center/contain no-repeat; mask: var(--lp-check) center/contain no-repeat; }

/* ─── KAARTEN & CHIPS BINNEN PROSE ───────────────────── */
.lp-cardgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(26rem, 1fr)); gap: var(--lp-space-md); margin: var(--lp-space-md) 0 var(--lp-space-lg); }
.lp-cardgrid--tight { grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr)); }
.lp-infocard {
  background: var(--lp-color-white); border: 1px solid var(--lp-color-border);
  border-radius: var(--lp-radius-md); padding: var(--lp-space-md);
  display: flex; flex-direction: column; gap: 0.7rem;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms var(--lp-ease-out);
}
@media (hover: hover) and (pointer: fine) { a.lp-infocard:hover { border-color: var(--lp-color-primary); box-shadow: var(--lp-shadow-md); transform: translateY(-3px); } }
.lp-infocard { text-decoration: none; color: inherit; }
.lp-infocard__tag { align-self: flex-start; font-family: var(--lp-font-display); font-size: var(--lp-text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--lp-color-primary); background: var(--lp-color-primary-tint); padding: 0.3rem 1rem; border-radius: var(--lp-radius-pill); }
.lp-infocard h3 { margin: 0; font-family: var(--lp-font-display); font-size: var(--lp-text-lg); font-weight: 700; color: var(--lp-color-text); line-height: 1.25; padding-top: 0; }
.lp-infocard h3::before { display: none; }
.lp-infocard p { margin: 0; color: var(--lp-color-text-muted); font-size: var(--lp-text-sm); line-height: 1.65; }
.lp-infocard a:not(.lp-infocard) { color: var(--lp-color-primary); font-weight: 600; text-decoration: none; }
.lp-infocard__link { margin-top: auto; font-family: var(--lp-font-display); font-weight: 700; font-size: var(--lp-text-sm); color: var(--lp-color-primary); display: inline-flex; align-items: center; gap: 0.4rem; }

/* Chips (korte labels, bv. echo-types of weken) */
.lp-prose .lp-chips { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: var(--lp-space-sm) 0 var(--lp-space-lg); }
.lp-prose .lp-chips li { padding: 0.6rem 1.4rem; margin: 0; background: var(--lp-color-bg-section); border: 1px solid var(--lp-color-border); border-radius: var(--lp-radius-pill); font-size: var(--lp-text-sm); font-weight: 600; color: var(--lp-color-text); }
.lp-prose .lp-chips li::before { content: none; }
.lp-prose .lp-chips--week li { background: var(--lp-color-primary-tint); border-color: transparent; color: var(--lp-color-primary-dark); font-family: var(--lp-font-display); }

/* Groepskop binnen prose */
.lp-prose .lp-group-intro { color: var(--lp-color-text-muted); font-size: var(--lp-text-base); margin-top: -0.4rem; margin-bottom: var(--lp-space-md); }

/* ─── BLOG: meta, filters & kaarten ──────────────────── */
.lp-article-meta {
  font-family: var(--lp-font-display); font-weight: 600;
  font-size: var(--lp-text-sm); color: var(--lp-color-text-muted);
  letter-spacing: 0.02em;
}

.lp-filters { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: var(--lp-space-xl); }
.lp-filter-chip {
  font-family: var(--lp-font-display); font-weight: 700; font-size: var(--lp-text-sm);
  color: var(--lp-color-text); background: var(--lp-color-white);
  border: 1.5px solid var(--lp-color-border); border-radius: var(--lp-radius-pill);
  padding: 0.7rem 1.6rem; cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}
@media (hover: hover) and (pointer: fine) { .lp-filter-chip:hover { border-color: var(--lp-color-primary); color: var(--lp-color-primary); } }
.lp-filter-chip.is-active { background: var(--lp-color-primary); border-color: var(--lp-color-primary); color: var(--lp-color-white); }

.lp-bloggrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(27rem, 1fr)); gap: var(--lp-space-md); }
.lp-bloggrid__empty { color: var(--lp-color-text-muted); margin-top: var(--lp-space-lg); }
.lp-blogcard {
  display: flex; flex-direction: column; gap: 1rem;
  background: var(--lp-color-bg); border: 1.5px solid var(--lp-color-border);
  border-radius: var(--lp-radius-md); padding: var(--lp-space-md);
  text-decoration: none; color: inherit;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms var(--lp-ease-out);
}
@media (hover: hover) and (pointer: fine) { .lp-blogcard:hover { border-color: var(--lp-color-primary); box-shadow: var(--lp-shadow-md); transform: translateY(-4px); } }
.lp-blogcard__tag {
  align-self: flex-start; font-family: var(--lp-font-display); font-size: var(--lp-text-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--lp-color-primary);
  background: var(--lp-color-primary-tint); padding: 0.35rem 1rem; border-radius: var(--lp-radius-pill);
}
.lp-blogcard h3 {
  font-family: var(--lp-font-display); font-size: var(--lp-text-lg); font-weight: 700;
  color: var(--lp-color-text); line-height: 1.25;
}
.lp-blogcard p { color: var(--lp-color-text-muted); font-size: var(--lp-text-sm); line-height: 1.55; flex: 1; }
.lp-blogcard__meta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--lp-font-display); font-weight: 700; font-size: var(--lp-text-sm); color: var(--lp-color-primary);
}

/* ─── VERDER LEZEN (sibling-onderwerpen) ─────────────── */
.lp-related { background: var(--lp-color-bg-section); padding: var(--lp-space-2xl) 0; }
.lp-related__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr)); gap: var(--lp-space-md); margin-top: var(--lp-space-lg); }
.lp-related-card {
  display: flex; align-items: center; gap: var(--lp-space-md);
  background: var(--lp-color-white); border: 1px solid var(--lp-color-border);
  border-radius: var(--lp-radius-md); padding: var(--lp-space-md) var(--lp-space-lg);
  text-decoration: none; color: inherit;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms var(--lp-ease-out);
}
@media (hover: hover) and (pointer: fine) { .lp-related-card:hover { border-color: var(--lp-color-primary); box-shadow: var(--lp-shadow-md); transform: translateY(-3px); } }
.lp-related-card__icon { flex-shrink: 0; width: 4rem; height: 4rem; border-radius: var(--lp-radius-full); background: var(--lp-color-primary-tint); color: var(--lp-color-primary); display: flex; align-items: center; justify-content: center; }
.lp-related-card__txt { flex: 1; }
.lp-related-card__txt strong { display: block; font-family: var(--lp-font-display); font-weight: 700; font-size: var(--lp-text-base); color: var(--lp-color-text); }
.lp-related-card__txt span { font-size: var(--lp-text-sm); color: var(--lp-color-text-muted); }
.lp-related-card__arrow { flex-shrink: 0; color: var(--lp-color-primary); }

/* ─── AANMELD CTA ────────────────────────────────────── */
.lp-aanmeld { background: var(--lp-color-primary); padding: var(--lp-space-2xl) 0; position: relative; overflow: hidden; }
.lp-aanmeld::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at 10% 80%, rgba(45,74,110,0.35) 0%, transparent 60%); }
.lp-aanmeld__inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: var(--lp-space-xl); align-items: start; }
.lp-aanmeld__copy { color: var(--lp-color-white); padding-top: var(--lp-space-md); }
.lp-aanmeld__copy .lp-eyebrow { background: rgba(255,255,255,0.18); color: var(--lp-color-white); }
.lp-aanmeld__copy h2 { font-family: var(--lp-font-display); font-size: clamp(2.4rem, 3.5vw, 3.4rem); font-weight: 700; letter-spacing: -0.02em; color: var(--lp-color-white); margin: var(--lp-space-sm) 0 var(--lp-space-md); line-height: 1.15; }
.lp-aanmeld__copy p { font-size: var(--lp-text-lg); color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: var(--lp-space-xl); }
.lp-aanmeld__phone { display: flex; align-items: center; gap: 1.2rem; margin-bottom: var(--lp-space-md); }
.lp-aanmeld__phone-icon { width: 4.4rem; height: 4.4rem; border-radius: var(--lp-radius-full); background: rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lp-aanmeld__phone-icon svg { color: var(--lp-color-white); }
.lp-aanmeld__phone div strong { display: block; font-family: var(--lp-font-display); font-weight: 700; font-size: var(--lp-text-sm); color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.2rem; }
.lp-aanmeld__phone div a { font-family: var(--lp-font-display); font-size: var(--lp-text-xl); font-weight: 700; color: var(--lp-color-white); text-decoration: none; }
.lp-aanmeld__hours { display: flex; flex-direction: column; gap: 0.3rem; }
.lp-aanmeld__hours strong { font-family: var(--lp-font-display); font-weight: 700; font-size: var(--lp-text-sm); color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; }
.lp-aanmeld__hours span { font-size: var(--lp-text-sm); color: rgba(255,255,255,0.75); }
.lp-aanmeld__form-wrap { background: var(--lp-color-white); border-radius: var(--lp-radius-lg); padding: var(--lp-space-xl); box-shadow: var(--lp-shadow-md); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: var(--lp-space-lg); min-height: 32rem; }
.lp-aanmeld__cta-icon { width: 7.2rem; height: 7.2rem; border-radius: var(--lp-radius-full); background: var(--lp-color-primary-tint); display: flex; align-items: center; justify-content: center; color: var(--lp-color-primary); }
.lp-aanmeld__cta-heading { font-family: var(--lp-font-display); font-weight: 700; font-size: var(--lp-text-2xl); color: var(--lp-color-text); line-height: 1.2; }
.lp-aanmeld__cta-text { font-size: var(--lp-text-lg); color: var(--lp-color-text-muted); line-height: 1.65; max-width: 36rem; }
.lp-btn--aanmeld { background: var(--lp-color-primary); color: var(--lp-color-white); border-color: var(--lp-color-primary); font-size: var(--lp-text-lg); padding: 1.4rem 3.6rem; }
@media (hover: hover) and (pointer: fine) { .lp-btn--aanmeld:hover { background: var(--lp-color-primary-dark); border-color: var(--lp-color-primary-dark); } }
.lp-aanmeld__cta-note { font-size: var(--lp-text-xs); color: var(--lp-color-text-muted); }
@media (max-width: 860px) { .lp-aanmeld__inner { grid-template-columns: 1fr; } }

/* ─── FOOTER ─────────────────────────────────────────── */
.lp-footer { background: var(--lp-color-text); color: rgba(255,255,255,0.65); padding: var(--lp-space-xl) 0; }
.lp-footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--lp-space-lg); }
.lp-footer__brand { font-family: var(--lp-font-display); font-weight: 700; font-size: var(--lp-text-base); color: var(--lp-color-white); }
.lp-footer__brand span { display: block; font-size: var(--lp-text-sm); font-weight: 400; color: rgba(255,255,255,0.45); margin-top: 0.3rem; }
.lp-footer__links { display: flex; gap: var(--lp-space-lg); flex-wrap: wrap; }
.lp-footer__links a { font-size: var(--lp-text-sm); color: rgba(255,255,255,0.5); text-decoration: none; transition: color 160ms ease-out; }
@media (hover: hover) and (pointer: fine) { .lp-footer__links a:hover { color: var(--lp-color-white); } }


/* ════════ OVER ONS-componenten (verhuisd uit inline) ════════ */
/* ─── HERO INTRO (centered — unique to Over ons) ─────── */
    .lp-hero-intro {
      background: var(--lp-color-bg);
      padding: calc(80px + var(--lp-space-2xl)) 0 var(--lp-space-2xl);
      text-align: center;
      position: relative; overflow: hidden;
    }
    .lp-hero-intro::before {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background: radial-gradient(ellipse at 50% -10%, var(--lp-color-primary-tint) 0%, transparent 55%);
    }
    .lp-hero-intro__inner { position: relative; max-width: 72rem; margin: 0 auto; }
    .lp-hero-intro h1 {
      font-family: var(--lp-font-display);
      font-size: clamp(2.8rem, 5vw, 4.6rem); font-weight: 700;
      line-height: 1.08; letter-spacing: -0.025em;
      color: var(--lp-color-text);
      margin-bottom: var(--lp-space-md);
    }
    .lp-hero-intro h1 em { font-style: normal; color: var(--lp-color-primary); }
    .lp-hero-intro__sub {
      font-size: var(--lp-text-lg); color: var(--lp-color-text-muted);
      line-height: 1.7; max-width: 56rem; margin: 0 auto var(--lp-space-xl);
    }
    .lp-hero-intro__actions {
      display: flex; gap: var(--lp-space-sm); flex-wrap: wrap; justify-content: center;
    }

    /* ─── ABOUT INTRO SPLIT ──────────────────────────────── */
    .lp-about { background: var(--lp-color-bg); padding: var(--lp-space-2xl) 0; }
    .lp-about__inner {
      display: grid; grid-template-columns: 1.05fr 0.95fr;
      gap: var(--lp-space-xl); align-items: center;
    }
    .lp-about__copy p {
      color: var(--lp-color-text-muted); font-size: var(--lp-text-lg);
      line-height: 1.75; margin-bottom: var(--lp-space-md);
    }
    .lp-about__copy p:last-child { margin-bottom: 0; }
    .lp-about__copy strong { color: var(--lp-color-text); font-weight: 700; }
    .lp-about__region {
      margin-top: var(--lp-space-lg); padding: var(--lp-space-md) var(--lp-space-lg);
      background: var(--lp-color-bg-section); border-radius: var(--lp-radius-md);
      border-left: 3px solid var(--lp-color-primary);
      font-size: var(--lp-text-base); color: var(--lp-color-text-muted);
    }
    .lp-about__region strong {
      display: block; font-family: var(--lp-font-display);
      font-size: var(--lp-text-sm); text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--lp-color-primary); margin-bottom: 0.4rem;
    }
    .lp-about__visual {
      position: relative; border-radius: var(--lp-radius-lg); overflow: hidden;
      aspect-ratio: 4/5; background: var(--lp-color-bg-section);
      box-shadow: var(--lp-shadow-md);
    }
    .lp-about__visual img { width: 100%; height: 100%; object-fit: cover; }
    @media (max-width: 860px) {
      .lp-about__inner { grid-template-columns: 1fr; }
      .lp-about__visual { aspect-ratio: 16/9; order: -1; }
    }

    /* ─── TEAM GRID ──────────────────────────────────────── */
    .lp-team { background: var(--lp-color-bg-section); padding: var(--lp-space-2xl) 0; }
    .lp-team__grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--lp-space-lg);
      margin-top: var(--lp-space-xl);
    }
    .lp-team-card {
      background: var(--lp-color-white); border-radius: var(--lp-radius-lg);
      overflow: hidden; box-shadow: var(--lp-shadow-sm);
      border: 1px solid var(--lp-color-border);
      transition: transform 200ms var(--lp-ease-out), box-shadow 200ms ease;
    }
    @media (hover: hover) and (pointer: fine) {
      .lp-team-card:hover { transform: translateY(-4px); box-shadow: var(--lp-shadow-md); }
    }
    .lp-team-card__photo { aspect-ratio: 4/3; background: var(--lp-color-bg-section); }
    .lp-team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
    .lp-team-card__body { padding: var(--lp-space-md); }
    .lp-team-card__role {
      display: inline-block; font-family: var(--lp-font-display);
      font-size: var(--lp-text-xs); font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.1em;
      color: var(--lp-color-primary); background: var(--lp-color-primary-tint);
      padding: 0.4rem 1.1rem; border-radius: var(--lp-radius-pill);
      margin-bottom: var(--lp-space-sm);
    }
    .lp-team-card__names {
      font-family: var(--lp-font-display); font-size: var(--lp-text-xl);
      font-weight: 700; color: var(--lp-color-text); line-height: 1.25;
      margin-bottom: 0.6rem;
    }
    .lp-team-card__desc { color: var(--lp-color-text-muted); font-size: var(--lp-text-sm); line-height: 1.6; }
    @media (max-width: 900px) { .lp-team__grid { grid-template-columns: 1fr; max-width: 44rem; margin-left: auto; margin-right: auto; } }

    /* ─── QUALITY CHECKLIST ──────────────────────────────── */
    .lp-quality { background: var(--lp-color-bg); padding: var(--lp-space-2xl) 0; }
    .lp-quality__inner {
      display: grid; grid-template-columns: 0.85fr 1.15fr;
      gap: var(--lp-space-xl); align-items: start;
    }
    .lp-quality__copy p {
      color: var(--lp-color-text-muted); font-size: var(--lp-text-base);
      line-height: 1.75; margin-bottom: var(--lp-space-md);
    }
    .lp-quality__badge {
      margin-top: var(--lp-space-md); display: inline-flex; align-items: center; gap: 0.8rem;
      font-family: var(--lp-font-display); font-weight: 700; font-size: var(--lp-text-sm);
      color: var(--lp-color-primary); background: var(--lp-color-primary-tint);
      padding: 0.8rem 1.6rem; border-radius: var(--lp-radius-pill);
    }
    .lp-quality__list { display: flex; flex-direction: column; gap: var(--lp-space-sm); }
    .lp-quality__item {
      display: flex; gap: var(--lp-space-md); align-items: flex-start;
      background: var(--lp-color-bg-section); border-radius: var(--lp-radius-md);
      padding: var(--lp-space-md) var(--lp-space-lg);
    }
    .lp-quality__check {
      flex-shrink: 0; width: 2.8rem; height: 2.8rem; border-radius: var(--lp-radius-full);
      background: var(--lp-color-primary); color: var(--lp-color-white);
      display: flex; align-items: center; justify-content: center;
    }
    .lp-quality__item p { font-size: var(--lp-text-base); color: var(--lp-color-text); line-height: 1.6; }
    @media (max-width: 860px) { .lp-quality__inner { grid-template-columns: 1fr; } }

    /* ─── LOCATIONS ──────────────────────────────────────── */
    .lp-locations { background: var(--lp-color-bg-section); padding: var(--lp-space-2xl) 0; }
    .lp-locations__grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--lp-space-md);
      margin-top: var(--lp-space-xl);
    }
    .lp-location-card {
      background: var(--lp-color-white); border-radius: var(--lp-radius-md);
      padding: var(--lp-space-lg) var(--lp-space-md);
      border: 1px solid var(--lp-color-border);
      display: flex; flex-direction: column; gap: var(--lp-space-sm);
      transition: border-color 200ms ease, box-shadow 200ms ease;
    }
    @media (hover: hover) and (pointer: fine) {
      .lp-location-card:hover { border-color: var(--lp-color-primary); box-shadow: var(--lp-shadow-md); }
    }
    .lp-location-card__pin {
      width: 4.4rem; height: 4.4rem; border-radius: var(--lp-radius-full);
      background: var(--lp-color-primary-tint); color: var(--lp-color-primary);
      display: flex; align-items: center; justify-content: center; margin-bottom: var(--lp-space-xs);
    }
    .lp-location-card__days {
      font-family: var(--lp-font-display); font-size: var(--lp-text-xs); font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.1em; color: var(--lp-color-primary);
    }
    .lp-location-card h3 {
      font-family: var(--lp-font-display); font-size: var(--lp-text-lg);
      font-weight: 700; color: var(--lp-color-text); line-height: 1.25;
    }
    .lp-location-card__addr { color: var(--lp-color-text-muted); font-size: var(--lp-text-base); }
    .lp-location-card__access {
      margin-top: auto; padding-top: var(--lp-space-sm);
      border-top: 1px solid var(--lp-color-border);
      font-size: var(--lp-text-sm); color: var(--lp-color-text-muted); line-height: 1.6;
    }
    @media (max-width: 900px) { .lp-locations__grid { grid-template-columns: 1fr; max-width: 44rem; margin-left: auto; margin-right: auto; } }

/* ─── MOBIEL MENU (hamburger) ─────────────────────────── */
.lp-nav__toggle { display: none; background: none; border: 0; cursor: pointer; width: 4.4rem; height: 4.4rem; padding: 1.1rem; flex-direction: column; justify-content: space-between; }
.lp-nav__toggle span { display: block; height: 2px; width: 100%; background: var(--lp-color-text); border-radius: 2px; transition: transform 220ms var(--lp-ease-out), opacity 150ms ease; }
.lp-nav--open .lp-nav__toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.lp-nav--open .lp-nav__toggle span:nth-child(2) { opacity: 0; }
.lp-nav--open .lp-nav__toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
@media (max-width: 1024px) {
  .lp-nav__toggle { display: flex; }
  .lp-nav--open { background: var(--lp-color-bg); box-shadow: 0 1px 0 var(--lp-color-border); }
  .lp-nav__links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--lp-color-bg); flex-direction: column; align-items: stretch; gap: 0; padding: 0.8rem 2.4rem 2rem; box-shadow: var(--lp-shadow-md); }
  .lp-nav--open .lp-nav__links { display: flex; }
  .lp-nav__links a { padding: 1.3rem 0; font-size: var(--lp-text-base); border-bottom: 1px solid var(--lp-color-border); }
  .lp-nav__links a.is-current::after { display: none; }
  .lp-nav--open .lp-nav__cta { display: inline-flex; margin: 1.4rem 0 0; align-self: flex-start; }
}

/* Breadcrumb gecentreerd binnen de gecentreerde Over ons-hero */
.lp-hero-intro .lp-breadcrumb { justify-content: center; }

/* ─── ONZE PRAKTIJK — missie-statement + fotostrip (Over ons) ─── */
.lp-mission { background: var(--lp-color-secondary); color: var(--lp-color-white); padding: var(--lp-space-2xl) 0; }
.lp-mission__intro { max-width: 66rem; margin: 0 auto; text-align: center; }
.lp-mission .lp-eyebrow { background: rgba(255,255,255,0.14); color: var(--lp-color-white); }
.lp-mission h2 { font-family: var(--lp-font-display); font-size: clamp(2.2rem, 3.5vw, 3.2rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; color: var(--lp-color-white); margin: var(--lp-space-sm) 0 var(--lp-space-md); }
.lp-mission p { color: rgba(255,255,255,0.82); font-size: var(--lp-text-lg); line-height: 1.7; margin-bottom: var(--lp-space-md); }
.lp-mission p:last-child { margin-bottom: 0; }
.lp-mission strong { color: var(--lp-color-white); font-weight: 700; }
.lp-mission__region { margin-top: var(--lp-space-sm); font-size: var(--lp-text-base); color: rgba(255,255,255,0.7); }
.lp-mission__gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--lp-space-md); margin-top: var(--lp-space-xl); }
.lp-mission__gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--lp-radius-md); box-shadow: var(--lp-shadow-md); }
@media (max-width: 760px) { .lp-mission__gallery { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .lp-mission__gallery { grid-template-columns: 1fr; } }

/* ─── AANMELD-MODAL ───────────────────────────────────── */
body.lp-modal-open { overflow: hidden; }
.lp-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: flex-start; justify-content: center; padding: var(--lp-space-lg) var(--lp-space-md); background: rgba(44,30,26,0.55); overflow-y: auto; }
.lp-modal[hidden] { display: none; }
.lp-modal__panel { position: relative; width: 100%; max-width: 64rem; margin: auto; background: var(--lp-color-white); border-radius: var(--lp-radius-lg); padding: var(--lp-space-xl); box-shadow: var(--lp-shadow-md); }
.lp-modal__close { position: absolute; top: var(--lp-space-md); right: var(--lp-space-md); width: 4rem; height: 4rem; border-radius: var(--lp-radius-full); border: 1.5px solid var(--lp-color-border); background: var(--lp-color-bg); color: var(--lp-color-text); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color 160ms ease, color 160ms ease; }
@media (hover: hover) and (pointer: fine) { .lp-modal__close:hover { border-color: var(--lp-color-primary); color: var(--lp-color-primary); } }
.lp-modal h2 { font-family: var(--lp-font-display); font-size: clamp(2rem, 3vw, 2.6rem); font-weight: 700; color: var(--lp-color-text); line-height: 1.15; padding-right: 4rem; }
.lp-modal__sub { color: var(--lp-color-text-muted); font-size: var(--lp-text-base); margin-top: 0.6rem; }
.lp-form { margin-top: var(--lp-space-lg); }
.lp-form__group { border: 0; padding: 0; margin: 0 0 var(--lp-space-lg); min-width: 0; }
.lp-form__group legend { font-family: var(--lp-font-display); font-weight: 700; font-size: var(--lp-text-xl); color: var(--lp-color-text); padding-bottom: var(--lp-space-xs); margin-bottom: var(--lp-space-md); border-bottom: 1px solid var(--lp-color-border); width: 100%; }
.lp-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--lp-space-md); }
.lp-field { display: flex; flex-direction: column; gap: 0.6rem; font-family: var(--lp-font-display); font-weight: 600; font-size: var(--lp-text-sm); color: var(--lp-color-text); }
.lp-field--full { grid-column: 1 / -1; }
.lp-field .req { color: var(--lp-color-primary); }
.lp-field input, .lp-field select, .lp-field textarea {
  font-family: var(--lp-font-body); font-size: var(--lp-text-base); font-weight: 400;
  color: var(--lp-color-text); background: var(--lp-color-bg);
  border: 1.5px solid var(--lp-color-border); border-radius: var(--lp-radius-md);
  padding: 1.05rem 1.4rem; width: 100%; min-width: 0; max-width: 100%;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.lp-field input[type="date"], .lp-field input[type="number"], .lp-field input[type="tel"] { -webkit-appearance: none; appearance: none; }
.lp-field input[type="date"]::-webkit-date-and-time-value { text-align: left; }
.lp-field input:focus, .lp-field select:focus, .lp-field textarea:focus { outline: none; border-color: var(--lp-color-primary); box-shadow: 0 0 0 3px var(--lp-color-primary-tint); }
.lp-field textarea { resize: vertical; min-height: 9rem; }
.lp-form__actions { display: flex; flex-direction: column; gap: 0.8rem; align-items: flex-start; margin-top: var(--lp-space-xs); }
.lp-form__note { font-size: var(--lp-text-xs); color: var(--lp-color-text-muted); }
.lp-modal__done { text-align: center; padding: var(--lp-space-lg) 0; }
.lp-modal__done-icon { width: 6rem; height: 6rem; border-radius: var(--lp-radius-full); background: var(--lp-color-primary-tint); color: var(--lp-color-primary); display: flex; align-items: center; justify-content: center; margin: 0 auto var(--lp-space-md); }
.lp-modal__done p { color: var(--lp-color-text-muted); margin: 0.6rem 0 var(--lp-space-lg); }
@media (max-width: 640px) {
  .lp-form__grid { grid-template-columns: 1fr; }
  .lp-modal__panel { padding: var(--lp-space-lg) var(--lp-space-md); }
}

/* aanmeldformulier — radio's, numerieke velden & akkoord */
.lp-field__label { font-family: var(--lp-font-display); font-weight: 600; font-size: var(--lp-text-sm); color: var(--lp-color-text); }
.lp-radiogroup { display: flex; flex-wrap: wrap; gap: 0.8rem 1.8rem; margin-top: 0.4rem; }
.lp-radio { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--lp-font-body); font-weight: 400; font-size: var(--lp-text-base); color: var(--lp-color-text); cursor: pointer; }
.lp-radio input, .lp-acceptance input { accent-color: var(--lp-color-primary); width: 1.8rem; height: 1.8rem; flex-shrink: 0; }
.lp-acceptance { display: flex; align-items: flex-start; gap: 1rem; font-family: var(--lp-font-body); font-weight: 400; font-size: var(--lp-text-sm); color: var(--lp-color-text-muted); line-height: 1.5; margin-bottom: var(--lp-space-md); cursor: pointer; }
.lp-acceptance a { color: var(--lp-color-primary); font-weight: 600; }

/* Vangnet tegen overflow door lange woorden/URL's */
.lp-prose, .lp-topic-card, .lp-blogcard, .lp-infocard, .lp-related-card__txt, .lp-mission, .lp-card, .lp-callout, .lp-field { overflow-wrap: break-word; }

/* ─── FIJNE STANDAARDEN (polish) ──────────────────────── */
html { scroll-padding-top: 9rem; scrollbar-gutter: stable; }
:root { accent-color: var(--lp-color-primary); color-scheme: light; }
* { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--lp-color-primary-tint); color: var(--lp-color-text); }
.lp-hero-split__copy h1, .lp-page-hero h1, .lp-section-header h2, .lp-mission h2, .lp-prose h2, .lp-modal h2 { text-wrap: balance; }
.lp-prose p, .lp-hero-split__sub, .lp-section-header__sub, .lp-page-hero__sub, .lp-mission p { text-wrap: pretty; }

/* ─── STICKY FOOTER ───────────────────────────────────── */
body { min-height: 100vh; display: flex; flex-direction: column; }
#lp-main { flex: 1 0 auto; }

/* ─── PRINT ───────────────────────────────────────────── */
@media print {
  .lp-nav, .lp-nav__toggle, .lp-skip-link, .lp-footer, .lp-modal, .lp-aanmeld, .lp-related, .lp-toc, .lp-hero-split__visual, .lp-mission__gallery, .lp-topic-card__more, .lp-blogcard__meta { display: none !important; }
  body { background: #fff; color: #000; display: block; }
  .lp-reveal { opacity: 1 !important; transform: none !important; }
  .lp-page-hero, .lp-hero-split, .lp-prose-section, .lp-section, .lp-topics, .lp-timeline, .lp-mission { padding: 1.2rem 0 !important; }
  .lp-hero-split__inner, .lp-article { display: block !important; }
  a { color: #000 !important; }
  * { box-shadow: none !important; }
}


/* === WordPress integratie === */
.admin-bar .lp-nav { top: 32px; }
@media screen and (max-width: 782px){ .admin-bar .lp-nav { top: 46px; } }
.wp-site-blocks,.is-root-container,.entry-content,.wp-block-post-content{max-width:none!important;padding:0!important;margin:0!important;}

/* WordPress global-styles overschrijft soms kopkleuren: forceer donkere koppen op lichte secties */
h1,h2,h3,h4,h5,h6{ text-transform:none !important; color:var(--lp-color-text) !important; }
/* donkere secties houden witte koppen */
.lp-mission h2,.lp-aanmeld__copy h2,.lp-testimonials h2,.lp-mission h3,.lp-aanmeld__copy h3{ color:var(--lp-color-white) !important; }
/* accentwoord in hero-koppen blijft de merkkleur */
.lp-hero-split__copy h1 em,.lp-page-hero h1 em{ color:var(--lp-color-primary) !important; }
